11#include "../H5Easy.hpp"
18using HighFive::details::inspector;
21struct default_io_impl {
22 inline static std::vector<size_t> shape(
const T& data) {
23 return inspector<T>::getDimensions(data);
26 inline static DataSet
dump(File& file,
27 const std::string& path,
29 const DumpOptions& options) {
30 using value_type =
typename inspector<T>::base_type;
31 DataSet dataset = initDataset<value_type>(file, path, shape(data), options);
33 if (options.flush()) {
39 inline static T
load(
const File& file,
const std::string& path) {
40 return file.getDataSet(path).read<T>();
44 const std::string& path,
45 const std::string& key,
47 const DumpOptions& options) {
48 using value_type =
typename inspector<T>::base_type;
49 Attribute attribute = initAttribute<value_type>(file, path, key, shape(data), options);
50 attribute.write(data);
51 if (options.flush()) {
58 const std::string& path,
59 const std::string& key) {
60 auto read_attribute = [&key](
const auto& obj) {
61 return obj.getAttribute(key).template read<T>();
64 return apply_attr_func(file, path, read_attribute);
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:62
DataSet dump(File &file, const std::string &path, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:99
T loadAttribute(const File &file, const std::string &path, const std::string &key)
Load a Attribute in an open HDF5 file to an object (templated).
Definition H5Easy_public.hpp:166
Attribute dumpAttribute(File &file, const std::string &path, const std::string &key, const T &data, DumpMode mode=DumpMode::Create)
Write object (templated) to a (new) Attribute in an open HDF5 file.
Definition H5Easy_public.hpp:148
T load(const File &file, const std::string &path, const std::vector< size_t > &idx)
Load entry {i, j, ...} from a DataSet in an open HDF5 file to a scalar.
Definition H5Easy_public.hpp:138