51 for (
const auto &
s : labels) {
62 bool desc,
bool formulas)
63 : fname(file), timeChunk(chunking),
64 enableDescriptions(desc), enableFormula(formulas),
70 H5::Exception::dontPrint();
83 dumpCount > 0 ? H5F_ACC_RDWR : H5F_ACC_TRUNC);
111 group =
base.openGroup(name);
112 }
catch (
const H5::FileIException&
e) {
113 group =
base.createGroup(name);
114 }
catch (
const H5::GroupIException& e) {
115 group =
base.createGroup(name);
124 assert(!
path.empty());
134 hsize_t fdims[1] = { 0, };
149 warn_once(
"HDF5 stat files don't support distributions.\n");
155 warn_once(
"HDF5 stat files don't support vector distributions.\n");
164 hsize_t fdims[3] = { 0, info.
x, info.
y };
165 H5::DataSet data_set =
appendStat(info, 3, fdims, info.
cvec.data());
194 warn_once(
"HDF5 stat files don't support sparse histograms.\n");
204 hsize_t fdims[2] = { 0, vr.size() };
205 H5::DataSet data_set =
appendStat(info, 2, fdims, vr.data());
221 H5::Group group =
path.top();
222 H5::DataSet data_set;
223 H5::DataSpace fspace;
230 data_set = group.openDataSet(info.
name);
231 data_set.extend(dims);
232 fspace = data_set.getSpace();
236 H5::DSetCreatPropList props;
240 std::copy(dims, dims + rank, max_dims.begin());
241 max_dims[0] = H5S_UNLIMITED;
245 std::copy(dims, dims + rank, chunk_dims.begin());
247 props.setChunk(rank, chunk_dims.data());
252 fspace = H5::DataSpace(rank, dims, max_dims.data());
253 data_set = group.createDataSet(info.
name, H5::PredType::NATIVE_DOUBLE,
263 H5::DataSpace mspace(rank, dims);
267 fspace.selectHyperslab(H5S_SELECT_SET, dims, foffset.data());
268 data_set.write(data, H5::PredType::NATIVE_DOUBLE, mspace, fspace);
277 H5::StrType
type(H5::PredType::C_S1, H5T_VARIABLE);
278 hsize_t dims[1] = { values.size(), };
279 H5::DataSpace space(1, dims);
280 H5::Attribute attribute = loc.createAttribute(name, type, space);
281 attribute.write(type, values.data());
289 for (
int i = 0;
i < values.size(); ++
i)
290 cstrs[
i] = values[
i].c_str();
297 const std::string &value)
299 H5::StrType
type(H5::PredType::C_S1, value.length() + 1);
300 hsize_t dims[1] = { 1, };
301 H5::DataSpace space(1, dims);
302 H5::Attribute attribute = loc.createAttribute(name,
type, space);
303 attribute.write(
type, value.c_str());
309 hsize_t dims[1] = { 1, };
310 H5::DataSpace space(1, dims);
311 H5::Attribute attribute = loc.createAttribute(
312 name, H5::PredType::NATIVE_DOUBLE, space);
313 attribute.write(H5::PredType::NATIVE_DOUBLE, &value);
317 std::unique_ptr<Output>
318 initHDF5(
const std::string &filename,
unsigned chunking,
319 bool desc,
bool formulas)
321 return std::unique_ptr<Output>(
std::string resolve(const std::string &name) const
Returns relative file names prepended with name of this directory.
bool emptyStrings(const T &labels)
Check if all strings in a container are empty.
std::string name
The name of the stat.
std::vector< std::string > subdescs
const std::string & name()
std::vector< std::string > subnames
Names and descriptions of subfields.
std::vector< std::string > y_subnames
virtual Result result() const =0
std::vector< std::string > subnames
Names and descriptions of subfields.
void addMetaData(H5::DataSet &loc, const char *name, const std::vector< const char *> &values)
Helper function to add a string vector attribute to a stat.
void beginGroup(const char *name) override
virtual const VResult & result() const =0
VCounter cvec
Local storage for the entry values, used for printing.
H5::DataSet appendVectorInfo(const VectorInfo &info)
Helper function to append vector stats and set their metadata.
H5::DataSet appendStat(const Info &info, int rank, hsize_t *dims, const double *data)
Helper function to append an n-dimensional double stat to the file.
std::vector< std::string > subdescs
void visit(const ScalarInfo &info) override
const bool enableDescriptions
std::stack< H5::Group > path
bool valid() const override
std::unique_ptr< Output > initHDF5(const std::string &filename, unsigned chunking, bool desc, bool formulas)
std::string desc
The description of the stat.