forked from BlueBrain/HighFive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathH5Easy.hpp
390 lines (342 loc) · 10.2 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
/*
* 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)
*
*/
#ifndef H5EASY_HPP
#define H5EASY_HPP
#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>
#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>
#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>
#endif
#include "H5File.hpp"
namespace H5Easy {
using HighFive::Attribute;
using HighFive::AtomicType;
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 Enable/disable automatic flushing after write operations.
enum class Flush
{
False = 0, /*!< No automatic flushing. */
True = 1 /*!< Automatic flushing. */
};
///
/// \brief 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).
explicit Compression(bool enable = true);
//
// \brief Set compression level.
template <class T>
Compression(T level);
//
// \brief Return compression level.
inline unsigned get() const;
private:
unsigned m_compression_level;
};
///
/// \brief Options for dumping data.
///
/// By default:
/// - DumpMode::Create
/// - Flush::True
/// - Compression(false)
/// - ChunkSize: automatic.
class DumpOptions
{
public:
///
/// \brief Constructor: accept all defaults.
DumpOptions() = default;
///
/// \brief Constructor: overwrite (some of the) defaults.
/// \param Any of DumpMode, Flush, Compression in arbitrary number and order.
template <class... Args>
DumpOptions(Args... args)
{
set(args...);
}
///
/// \brief Overwrite setting.
/// \param mode: DumpMode.
inline void set(DumpMode mode);
///
/// \brief Overwrite setting.
/// \param flush Flush.
inline void set(Flush mode);
///
/// \brief Overwrite setting.
/// \param level Compression.
inline void set(const Compression& level);
///
/// \brief Overwrite settings.
/// \param 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 Check to overwrite.
inline bool overwrite() const;
///
/// \brief Check to flush.
inline bool flush() const;
///
/// \brief Check to compress.
inline bool compress() const;
///
/// \brief Get compression level.
inline unsigned getCompressionLevel() const;
///
/// \brief Check if chunk-size is manually set (or should be computed automatically).
inline bool isChunked() const;
///
/// \brief Get chunk size.
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 A readable opened file
/// \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 A readable opened file
/// \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 Writeable opened file
/// \param path Path of the DataSet
/// \param data Data to write
/// \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 Writeable opened file
/// \param path Path of the DataSet
/// \param data Data 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 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
/// \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
/// \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
/// \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
/// \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 rank-two 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 Writeable opened file
/// \param path Path of the DataSet
/// \param key Name of the attribute
/// \param data Data to write
/// \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 Writeable opened file
/// \param path Path of the DataSet
/// \param key Name of the attribute
/// \param data Data to write
/// \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_opencv.hpp"
#include "h5easy_bits/H5Easy_public.hpp"
#include "h5easy_bits/H5Easy_scalar.hpp"
#include "h5easy_bits/H5Easy_vector.hpp"
#include "h5easy_bits/H5Easy_xtensor.hpp"
#endif // H5EASY_HPP