HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5Easy_scalar.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 "default_io_impl.hpp"
14
15namespace H5Easy {
16
17namespace detail {
18
19/*
20Base template for partial specialization: the fallback if specialized templates don't match.
21Used e.g. for scalars.
22*/
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,
27 const T& data,
28 const std::vector<size_t>& idx,
29 const DumpOptions& options) {
30 std::vector<size_t> ones(idx.size(), 1);
31
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()) {
37 throw detail::error(
38 file,
39 path,
40 "H5Easy::dump: Dimension of the index and the existing field do not match");
41 }
42 for (size_t i = 0; i < dims.size(); ++i) {
43 shape[i] = std::max(dims[i], idx[i] + 1);
44 }
45 if (shape != dims) {
46 dataset.resize(shape);
47 }
48 dataset.select(idx, ones).write(data);
49 if (options.flush()) {
50 file.flush();
51 }
52 return dataset;
53 }
54
55 const size_t unlim = DataSpace::UNLIMITED;
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");
62 }
63 }
64 std::vector<size_t> shape(idx.size());
65 for (size_t i = 0; i < idx.size(); ++i) {
66 shape[i] = idx[i] + 1;
67 }
68 DataSpace dataspace = DataSpace(shape, unlim_shape);
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()) {
74 file.flush();
75 }
76 return dataset;
77 }
78
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>();
84 }
85};
86
87} // namespace detail
88} // namespace H5Easy
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