HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
default_io_impl.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
3 *
4 * Distributed under the Boost Software License, Version 1.0.
5 * (See accompanying file LICENSE_1_0.txt or copy at
6 * http://www.boost.org/LICENSE_1_0.txt)
7 *
8 */
9#pragma once
10
11#include "../H5Easy.hpp"
12#include "H5Easy_misc.hpp"
13#include "H5Easy_scalar.hpp"
14
15namespace H5Easy {
16namespace detail {
17
18using HighFive::details::inspector;
19
20template <typename T>
21struct default_io_impl {
22 inline static std::vector<size_t> shape(const T& data) {
23 return inspector<T>::getDimensions(data);
24 }
25
26 inline static DataSet dump(File& file,
27 const std::string& path,
28 const T& data,
29 const DumpOptions& options) {
30 using value_type = typename inspector<T>::base_type;
31 DataSet dataset = initDataset<value_type>(file, path, shape(data), options);
32 dataset.write(data);
33 if (options.flush()) {
34 file.flush();
35 }
36 return dataset;
37 }
38
39 inline static T load(const File& file, const std::string& path) {
40 return file.getDataSet(path).read<T>();
41 }
42
43 inline static Attribute dumpAttribute(File& file,
44 const std::string& path,
45 const std::string& key,
46 const T& data,
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()) {
52 file.flush();
53 }
54 return attribute;
55 }
56
57 inline static T loadAttribute(const File& file,
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>();
62 };
63
64 return apply_attr_func(file, path, read_attribute);
65 }
66};
67
68} // namespace detail
69} // namespace H5Easy
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