11#include "../H5Easy.hpp"
23template <
typename T,
typename =
void>
24struct io_impl:
public default_io_impl<T> {
25 inline static DataSet dump_extend(File& file,
26 const std::string& path,
28 const std::vector<size_t>& idx,
29 const DumpOptions& options) {
30 std::vector<size_t> ones(idx.size(), 1);
32 if (file.exist(path)) {
33 DataSet dataset = file.getDataSet(path);
34 std::vector<size_t> dims = dataset.getDimensions();
35 std::vector<size_t> shape = dims;
36 if (dims.size() != idx.size()) {
40 "H5Easy::dump: Dimension of the index and the existing field do not match");
42 for (
size_t i = 0; i < dims.size(); ++i) {
43 shape[i] = std::max(dims[i], idx[i] + 1);
46 dataset.resize(shape);
48 dataset.select(idx, ones).write(data);
49 if (options.flush()) {
56 std::vector<size_t> unlim_shape(idx.size(), unlim);
57 std::vector<hsize_t> chunks(idx.size(), 10);
58 if (options.isChunked()) {
59 chunks = options.getChunkSize();
60 if (chunks.size() != idx.size()) {
61 throw error(file, path,
"H5Easy::dump: Incorrect dimension ChunkSize");
64 std::vector<size_t> shape(idx.size());
65 for (
size_t i = 0; i < idx.size(); ++i) {
66 shape[i] = idx[i] + 1;
70 props.add(Chunking(chunks));
71 DataSet dataset = file.createDataSet(path, dataspace, AtomicType<T>(), props, {},
true);
72 dataset.select(idx, ones).write(data);
73 if (options.flush()) {
79 inline static T load_part(
const File& file,
80 const std::string& path,
81 const std::vector<size_t>& idx) {
82 std::vector<size_t> ones(idx.size(), 1);
83 return file.getDataSet(path).select(idx, ones).read<T>();
static const size_t UNLIMITED
Magic value to specify that a DataSpace can grow without limit.
Definition H5DataSpace.hpp:49
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