11#include "../H5Easy.hpp"
18inline Exception error(
const File& file,
const std::string& path,
const std::string& message) {
19 std::ostringstream ss;
20 ss << message << std::endl
21 <<
"Path: " << path << std::endl
22 <<
"Filename: " << file.getName() << std::endl;
23 return Exception(ss.str());
27inline Exception dump_error(File& file,
const std::string& path) {
28 if (file.getObjectType(path) == ObjectType::Dataset) {
31 "H5Easy: Dataset already exists, dump with H5Easy::DumpMode::Overwrite "
32 "to overwrite (with an array of the same shape).");
37 "H5Easy: path exists, but does not correspond to a Dataset. Dump not possible.");
43inline DataSet initDataset(File& file,
44 const std::string& path,
45 const std::vector<size_t>& shape,
46 const DumpOptions& options) {
47 if (!file.exist(path)) {
48 if (!options.compress() && !options.isChunked()) {
49 return file.createDataSet<T>(path,
DataSpace(shape), {}, {},
true);
51 std::vector<hsize_t> chunks(shape.begin(), shape.end());
52 if (options.isChunked()) {
53 chunks = options.getChunkSize();
54 if (chunks.size() != shape.size()) {
55 throw error(file, path,
"H5Easy::dump: Incorrect rank ChunkSize");
59 props.add(Chunking(chunks));
60 if (options.compress()) {
62 props.add(Deflate(options.getCompressionLevel()));
64 return file.createDataSet<T>(path,
DataSpace(shape), props, {},
true);
66 }
else if (options.overwrite() && file.getObjectType(path) == ObjectType::Dataset) {
67 DataSet dataset = file.getDataSet(path);
68 if (dataset.getDimensions() != shape) {
69 throw error(file, path,
"H5Easy::dump: Inconsistent dimensions");
73 throw dump_error(file, path);
78inline DataSet initScalarDataset(File& file,
79 const std::string& path,
81 const DumpOptions& options) {
82 if (!file.exist(path)) {
83 return file.createDataSet<T>(path,
DataSpace::From(data), {}, {},
true);
84 }
else if (options.overwrite() && file.getObjectType(path) == ObjectType::Dataset) {
85 DataSet dataset = file.getDataSet(path);
86 if (dataset.getElementCount() != 1) {
87 throw error(file, path,
"H5Easy::dump: Existing field not a scalar");
91 throw dump_error(file, path);
94template <
class File,
class F>
95auto apply_attr_func_impl(File& file,
const std::string& path, F f) {
96 auto type = file.getObjectType(path);
97 if (type == ObjectType::Group) {
98 auto group = file.getGroup(path);
100 }
else if (type == ObjectType::Dataset) {
101 auto dataset = file.getDataSet(path);
104 throw error(file, path,
"path is not the root, a group or a dataset.");
109auto apply_attr_func(
const H5Easy::File& file,
const std::string& path, F f) {
110 return apply_attr_func_impl(file, path, f);
114auto apply_attr_func(
H5Easy::File& file,
const std::string& path, F f) {
115 return apply_attr_func_impl(file, path, f);
120inline Attribute initAttribute(File& file,
121 const std::string& path,
122 const std::string& key,
123 const std::vector<size_t>& shape,
124 const DumpOptions& options) {
125 auto get_attribute = [&](
auto& obj) {
126 if (!obj.hasAttribute(key)) {
127 return obj.template createAttribute<T>(key,
DataSpace(shape));
128 }
else if (options.overwrite()) {
129 Attribute attribute = obj.getAttribute(key);
130 DataSpace dataspace = attribute.getSpace();
131 if (dataspace.getDimensions() != shape) {
132 throw error(file, path,
"H5Easy::dumpAttribute: Inconsistent dimensions");
138 "H5Easy: Attribute exists, overwrite with H5Easy::DumpMode::Overwrite.");
141 if (!file.exist(path)) {
142 throw error(file, path,
"H5Easy::dumpAttribute: path does not exist");
145 return apply_attr_func(file, path, get_attribute);
150inline Attribute initScalarAttribute(File& file,
151 const std::string& path,
152 const std::string& key,
154 const DumpOptions& options) {
155 auto get_attribute = [&](
auto& obj) {
156 if (!obj.hasAttribute(key)) {
158 }
else if (options.overwrite()) {
159 Attribute attribute = obj.getAttribute(key);
160 DataSpace dataspace = attribute.getSpace();
161 if (dataspace.getElementCount() != 1) {
162 throw error(file, path,
"H5Easy::dumpAttribute: Existing field not a scalar");
168 "H5Easy: Attribute exists, overwrite with H5Easy::DumpMode::Overwrite.");
171 if (!file.exist(path)) {
172 throw error(file, path,
"H5Easy::dumpAttribute: path does not exist");
175 apply_attr_func(file, path, get_attribute);
static DataSpace From(const T &value)
Automatically deduce the DataSpace from a container/value.
Definition H5Dataspace_misc.hpp:128
File class.
Definition H5File.hpp:25
PropertyList< PropertyType::DATASET_CREATE > DataSetCreateProps
Definition H5PropertyList.hpp:198
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:62