-
Notifications
You must be signed in to change notification settings - Fork 163
/
H5Easy.hpp
400 lines (352 loc) · 11.1 KB
/
H5Easy.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
/*
* Copyright (c), 2017, Adrien Devresse <[email protected]>
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*
*/
/// \brief
/// Read/dump DataSets or Attribute using a minimalistic syntax.
/// To this end, the functions are templated, and accept:
/// - Any type accepted by HighFive
/// - Eigen objects
/// - xtensor objects
/// - OpenCV objects
#pragma once
#include <string>
#include <vector>
// optionally enable xtensor plug-in and load the library
#ifdef XTENSOR_VERSION_MAJOR
#ifndef H5_USE_XTENSOR
#define H5_USE_XTENSOR
#endif
#endif
#ifdef H5_USE_XTENSOR
#include <xtensor/xarray.hpp>
#include <xtensor/xtensor.hpp>
#include "xtensor.hpp"
#endif
// optionally enable Eigen plug-in and load the library
#ifdef EIGEN_WORLD_VERSION
#ifndef H5_USE_EIGEN
#define H5_USE_EIGEN
#endif
#endif
#ifdef H5_USE_EIGEN
#include <Eigen/Eigen>
#include "eigen.hpp"
#endif
// optionally enable OpenCV plug-in and load the library
#ifdef CV_MAJOR_VERSION
#ifndef H5_USE_OPENCV
#define H5_USE_OPENCV
#endif
#endif
#ifdef H5_USE_OPENCV
#include <opencv2/opencv.hpp>
#include "experimental/opencv.hpp"
#endif
#include "H5File.hpp"
namespace H5Easy {
using HighFive::AtomicType;
using HighFive::Attribute;
using HighFive::Chunking;
using HighFive::DataSet;
using HighFive::DataSetCreateProps;
using HighFive::DataSpace;
using HighFive::Deflate;
using HighFive::Exception;
using HighFive::File;
using HighFive::ObjectType;
using HighFive::Shuffle;
///
/// \brief Write mode for DataSets
enum class DumpMode {
Create = 0, /*!< Dump only if DataSet does not exist, otherwise throw. */
Overwrite = 1 /*!< Create or overwrite if DataSet of correct shape exists, otherwise throw. */
};
///
/// \brief Signal to enable/disable automatic flushing after write operations.
enum class Flush {
False = 0, /*!< No automatic flushing. */
True = 1 /*!< Automatic flushing. */
};
///
/// \brief Signal to set compression level for written DataSets.
class Compression {
public:
///
/// \brief Enable compression with the highest compression level (9).
/// or disable compression (set compression level to 0).
///
/// \param enable ``true`` to enable with highest compression level
explicit Compression(bool enable = true);
///
/// \brief Set compression level.
///
/// \param level the compression level
template <class T>
Compression(T level);
///
/// \brief Return compression level.
inline unsigned get() const;
private:
unsigned m_compression_level;
};
///
/// \brief Define options for dumping data.
///
/// By default:
/// - DumpMode::Create
/// - Flush::True
/// - Compression: false
/// - ChunkSize: automatic
class DumpOptions {
public:
///
/// \brief Constructor: accept all default settings.
DumpOptions() = default;
///
/// \brief Constructor: overwrite (some of the) defaults.
/// \param args any of DumpMode(), Flush(), Compression() in arbitrary number and order.
template <class... Args>
DumpOptions(Args... args) {
set(args...);
}
///
/// \brief Overwrite H5Easy::DumpMode setting.
/// \param mode: DumpMode.
inline void set(DumpMode mode);
///
/// \brief Overwrite H5Easy::Flush setting.
/// \param mode Flush.
inline void set(Flush mode);
///
/// \brief Overwrite H5Easy::Compression setting.
/// \param level Compression.
inline void set(const Compression& level);
///
/// \brief Overwrite any setting(s).
/// \param arg any of DumpMode(), Flush(), Compression in arbitrary number and order.
/// \param args any of DumpMode(), Flush(), Compression in arbitrary number and order.
template <class T, class... Args>
inline void set(T arg, Args... args);
///
/// \brief Set chunk-size. If the input is rank (size) zero, automatic chunking is enabled.
/// \param shape Chunk size along each dimension.
template <class T>
inline void setChunkSize(const std::vector<T>& shape);
///
/// \brief Set chunk-size. If the input is rank (size) zero, automatic chunking is enabled.
/// \param shape Chunk size along each dimension.
inline void setChunkSize(std::initializer_list<size_t> shape);
///
/// \brief Get overwrite-mode.
/// \return bool
inline bool overwrite() const;
///
/// \brief Get flush-mode.
/// \return bool
inline bool flush() const;
///
/// \brief Get compress-mode.
/// \return bool
inline bool compress() const;
///
/// \brief Get compression level.
/// \return [0..9]
inline unsigned getCompressionLevel() const;
///
/// \brief Get chunking mode: ``true`` is manually set, ``false`` if chunk-size should be
/// computed automatically.
/// \return bool
inline bool isChunked() const;
///
/// \brief Get chunk size. Use DumpOptions::getChunkSize to check if chunk-size should
/// be automatically computed.
inline std::vector<hsize_t> getChunkSize() const;
private:
bool m_overwrite = false;
bool m_flush = true;
unsigned m_compression_level = 0;
std::vector<hsize_t> m_chunk_size = {};
};
///
/// \brief Get the size of an existing DataSet in an open HDF5 file.
///
/// \param file opened file (has to be readable)
/// \param path path of the DataSet
///
/// \return Size of the DataSet
inline size_t getSize(const File& file, const std::string& path);
///
/// \brief Get the shape of an existing DataSet in an readable file.
///
/// \param file opened file (has to be readable)
/// \param path Path of the DataSet
///
/// \return the shape of the DataSet
inline std::vector<size_t> getShape(const File& file, const std::string& path);
///
/// \brief Write object (templated) to a (new) DataSet in an open HDF5 file.
///
/// \param file opened file (has to be writeable)
/// \param path path of the DataSet
/// \param data the data to write (any supported type)
/// \param mode write mode
///
/// \return The newly created DataSet
///
template <class T>
inline DataSet dump(File& file,
const std::string& path,
const T& data,
DumpMode mode = DumpMode::Create);
///
/// \brief Write object (templated) to a (new) DataSet in an open HDF5 file.
///
/// \param file opened file (has to be writeable)
/// \param path path of the DataSet
/// \param data the data to write (any supported type)
/// \param options dump options
///
/// \return The newly created DataSet
///
template <class T>
inline DataSet dump(File& file, const std::string& path, const T& data, const DumpOptions& options);
///
/// \brief Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
///
/// \param file opened file (has to be writeable)
/// \param path path of the DataSet
/// \param data the data to write (any supported type)
/// \param idx the indices to which to write
///
/// \return The newly created DataSet
///
template <class T>
inline DataSet dump(File& file,
const std::string& path,
const T& data,
const std::vector<size_t>& idx);
///
/// \brief Write a scalar to a (new, extendable) DataSet in an open HDF5 file.
///
/// \param file open File (has to be writeable)
/// \param path path of the DataSet
/// \param data the data to write (any supported type)
/// \param idx the indices to which to write
///
/// \return The newly created DataSet
///
template <class T>
inline DataSet dump(File& file,
const std::string& path,
const T& data,
const std::initializer_list<size_t>& idx);
///
/// \brief Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
///
/// \param file opened file (has to be writeable)
/// \param path path of the DataSet
/// \param data the data to write (any supported type)
/// \param idx the indices to which to write
/// \param options dump options
///
/// \return The newly created DataSet
///
template <class T>
inline DataSet dump(File& file,
const std::string& path,
const T& data,
const std::vector<size_t>& idx,
const DumpOptions& options);
///
/// \brief Write a scalar to a (new, extendible) DataSet in an open HDF5 file.
///
/// \param file opened file (has to be writeable)
/// \param path path of the DataSet
/// \param data the data to write (any supported type)
/// \param idx the indices to which to write
/// \param options dump options
///
/// \return The newly created DataSet
///
template <class T>
inline DataSet dump(File& file,
const std::string& path,
const T& data,
const std::initializer_list<size_t>& idx,
const DumpOptions& options);
///
/// \brief Load entry ``{i, j, ...}`` from a DataSet in an open HDF5 file to a scalar.
///
/// \param file opened file (has to be writeable)
/// \param idx the indices to load
/// \param path path of the DataSet
///
/// \return The read data
///
template <class T>
inline T load(const File& file, const std::string& path, const std::vector<size_t>& idx);
///
/// \brief Load a DataSet in an open HDF5 file to an object (templated).
///
/// \param file opened file (has to be writeable)
/// \param path path of the DataSet
///
/// \return The read data
///
template <class T>
inline T load(const File& file, const std::string& path);
///
/// \brief Write object (templated) to a (new) Attribute in an open HDF5 file.
///
/// \param file opened file (has to be writeable)
/// \param path path of the DataSet
/// \param key name of the attribute
/// \param data the data to write (any supported type)
/// \param mode write mode
///
/// \return The newly created DataSet
///
template <class T>
inline Attribute dumpAttribute(File& file,
const std::string& path,
const std::string& key,
const T& data,
DumpMode mode = DumpMode::Create);
///
/// \brief Write object (templated) to a (new) Attribute in an open HDF5 file.
///
/// \param file opened file (has to be writeable)
/// \param path path of the DataSet
/// \param key name of the attribute
/// \param data the data to write (any supported type)
/// \param options dump options
///
/// \return The newly created DataSet
///
template <class T>
inline Attribute dumpAttribute(File& file,
const std::string& path,
const std::string& key,
const T& data,
const DumpOptions& options);
///
/// \brief Load a Attribute in an open HDF5 file to an object (templated).
///
/// \param file opened file (has to be writeable)
/// \param path path of the DataSet
/// \param key name of the attribute
///
/// \return The read data
///
template <class T>
inline T loadAttribute(const File& file, const std::string& path, const std::string& key);
} // namespace H5Easy
#include "h5easy_bits/H5Easy_Eigen.hpp"
#include "h5easy_bits/H5Easy_misc.hpp"
#include "h5easy_bits/H5Easy_public.hpp"
#include "h5easy_bits/H5Easy_scalar.hpp"