199 lines
5.7 KiB
C++
199 lines
5.7 KiB
C++
/* ----------------------------------------------------------------------
|
|
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
|
https://lammps.sandia.gov/, Sandia National Laboratories
|
|
Steve Plimpton, sjplimp@sandia.gov
|
|
|
|
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
|
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
|
certain rights in this software. This software is distributed under
|
|
the GNU General Public License.
|
|
|
|
See the README file in the top-level LAMMPS directory.
|
|
------------------------------------------------------------------------- */
|
|
|
|
#include "dump_local_gz.h"
|
|
#include "domain.h"
|
|
#include "error.h"
|
|
#include "update.h"
|
|
|
|
|
|
#include <cstring>
|
|
|
|
|
|
using namespace LAMMPS_NS;
|
|
|
|
DumpLocalGZ::DumpLocalGZ(LAMMPS *lmp, int narg, char **arg) :
|
|
DumpLocal(lmp, narg, arg)
|
|
{
|
|
gzFp = nullptr;
|
|
|
|
compression_level = Z_BEST_COMPRESSION;
|
|
|
|
if (!compressed)
|
|
error->all(FLERR,"Dump local/gz only writes compressed files");
|
|
}
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
DumpLocalGZ::~DumpLocalGZ()
|
|
{
|
|
if (gzFp) gzclose(gzFp);
|
|
gzFp = nullptr;
|
|
fp = nullptr;
|
|
}
|
|
|
|
|
|
/* ----------------------------------------------------------------------
|
|
generic opening of a dump file
|
|
ASCII or binary or gzipped
|
|
some derived classes override this function
|
|
------------------------------------------------------------------------- */
|
|
|
|
void DumpLocalGZ::openfile()
|
|
{
|
|
// single file, already opened, so just return
|
|
|
|
if (singlefile_opened) return;
|
|
if (multifile == 0) singlefile_opened = 1;
|
|
|
|
// if one file per timestep, replace '*' with current timestep
|
|
|
|
char *filecurrent = filename;
|
|
if (multiproc) filecurrent = multiname;
|
|
|
|
if (multifile) {
|
|
char *filestar = filecurrent;
|
|
filecurrent = new char[strlen(filestar) + 16];
|
|
char *ptr = strchr(filestar,'*');
|
|
*ptr = '\0';
|
|
if (padflag == 0)
|
|
sprintf(filecurrent,"%s" BIGINT_FORMAT "%s",
|
|
filestar,update->ntimestep,ptr+1);
|
|
else {
|
|
char bif[8],pad[16];
|
|
strcpy(bif,BIGINT_FORMAT);
|
|
sprintf(pad,"%%s%%0%d%s%%s",padflag,&bif[1]);
|
|
sprintf(filecurrent,pad,filestar,update->ntimestep,ptr+1);
|
|
}
|
|
*ptr = '*';
|
|
if (maxfiles > 0) {
|
|
if (numfiles < maxfiles) {
|
|
nameslist[numfiles] = new char[strlen(filecurrent)+1];
|
|
strcpy(nameslist[numfiles],filecurrent);
|
|
++numfiles;
|
|
} else {
|
|
remove(nameslist[fileidx]);
|
|
delete[] nameslist[fileidx];
|
|
nameslist[fileidx] = new char[strlen(filecurrent)+1];
|
|
strcpy(nameslist[fileidx],filecurrent);
|
|
fileidx = (fileidx + 1) % maxfiles;
|
|
}
|
|
}
|
|
}
|
|
|
|
// each proc with filewriter = 1 opens a file
|
|
|
|
if (filewriter) {
|
|
std::string mode;
|
|
if (append_flag) {
|
|
mode = fmt::format("ab{}", compression_level);
|
|
} else {
|
|
mode = fmt::format("wb{}", compression_level);
|
|
}
|
|
|
|
gzFp = gzopen(filecurrent, mode.c_str());
|
|
|
|
if (gzFp == nullptr) error->one(FLERR,"Cannot open dump file");
|
|
} else gzFp = nullptr;
|
|
|
|
// delete string with timestep replaced
|
|
|
|
if (multifile) delete [] filecurrent;
|
|
}
|
|
|
|
void DumpLocalGZ::write_header(bigint ndump)
|
|
{
|
|
if ((multiproc) || (!multiproc && me == 0)) {
|
|
if (unit_flag && !unit_count) {
|
|
++unit_count;
|
|
gzprintf(gzFp,"ITEM: UNITS\n%s\n",update->unit_style);
|
|
}
|
|
if (time_flag) gzprintf(gzFp,"ITEM: TIME\n%.16g\n",compute_time());
|
|
|
|
gzprintf(gzFp,"ITEM: TIMESTEP\n");
|
|
gzprintf(gzFp,BIGINT_FORMAT "\n",update->ntimestep);
|
|
gzprintf(gzFp,"ITEM: NUMBER OF %s\n",label);
|
|
gzprintf(gzFp,BIGINT_FORMAT "\n",ndump);
|
|
if (domain->triclinic) {
|
|
gzprintf(gzFp,"ITEM: BOX BOUNDS xy xz yz %s\n",boundstr);
|
|
gzprintf(gzFp,"%-1.16e %-1.16e %-1.16e\n",boxxlo,boxxhi,boxxy);
|
|
gzprintf(gzFp,"%-1.16e %-1.16e %-1.16e\n",boxylo,boxyhi,boxxz);
|
|
gzprintf(gzFp,"%-1.16e %-1.16e %-1.16e\n",boxzlo,boxzhi,boxyz);
|
|
} else {
|
|
gzprintf(gzFp,"ITEM: BOX BOUNDS %s\n",boundstr);
|
|
gzprintf(gzFp,"%-1.16e %-1.16e\n",boxxlo,boxxhi);
|
|
gzprintf(gzFp,"%-1.16e %-1.16e\n",boxylo,boxyhi);
|
|
gzprintf(gzFp,"%-1.16e %-1.16e\n",boxzlo,boxzhi);
|
|
}
|
|
gzprintf(gzFp,"ITEM: %s %s\n",label,columns);
|
|
}
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void DumpLocalGZ::write_data(int n, double *mybuf)
|
|
{
|
|
if (buffer_flag == 1) {
|
|
gzwrite(gzFp,mybuf,sizeof(char)*n);
|
|
|
|
} else {
|
|
int i,j;
|
|
int m = 0;
|
|
for (i = 0; i < n; i++) {
|
|
for (j = 0; j < size_one; j++) {
|
|
if (vtype[j] == INT)
|
|
gzprintf(gzFp,vformat[j],static_cast<int> (mybuf[m]));
|
|
else gzprintf(gzFp,vformat[j],mybuf[m]);
|
|
m++;
|
|
}
|
|
gzprintf(gzFp,"\n");
|
|
}
|
|
}
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
void DumpLocalGZ::write()
|
|
{
|
|
DumpLocal::write();
|
|
if (filewriter) {
|
|
if (multifile) {
|
|
gzclose(gzFp);
|
|
gzFp = nullptr;
|
|
} else {
|
|
if (flush_flag)
|
|
gzflush(gzFp,Z_SYNC_FLUSH);
|
|
}
|
|
}
|
|
}
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
int DumpLocalGZ::modify_param(int narg, char **arg)
|
|
{
|
|
int consumed = DumpLocal::modify_param(narg, arg);
|
|
if (consumed == 0) {
|
|
if (strcmp(arg[0],"compression_level") == 0) {
|
|
if (narg < 2) error->all(FLERR,"Illegal dump_modify command");
|
|
int min_level = Z_DEFAULT_COMPRESSION;
|
|
int max_level = Z_BEST_COMPRESSION;
|
|
compression_level = utils::inumeric(FLERR, arg[1], false, lmp);
|
|
if (compression_level < min_level || compression_level > max_level)
|
|
error->all(FLERR, fmt::format("Illegal dump_modify command: compression level must in the range of [{}, {}]", min_level, max_level));
|
|
return 2;
|
|
}
|
|
}
|
|
return consumed;
|
|
}
|