HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5Easy.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
17
18#pragma once
19
20#include <string>
21#include <vector>
22
23// optionally enable xtensor plug-in and load the library
24#ifdef XTENSOR_VERSION_MAJOR
25#ifndef H5_USE_XTENSOR
26#define H5_USE_XTENSOR
27#endif
28#endif
29
30#ifdef H5_USE_XTENSOR
31#include <xtensor/xarray.hpp>
32#include <xtensor/xtensor.hpp>
33#include "xtensor.hpp"
34#endif
35
36// optionally enable Eigen plug-in and load the library
37#ifdef EIGEN_WORLD_VERSION
38#ifndef H5_USE_EIGEN
39#define H5_USE_EIGEN
40#endif
41#endif
42
43#ifdef H5_USE_EIGEN
44#include <Eigen/Eigen>
45#include "eigen.hpp"
46#endif
47
48// optionally enable OpenCV plug-in and load the library
49#ifdef CV_MAJOR_VERSION
50#ifndef H5_USE_OPENCV
51#define H5_USE_OPENCV
52#endif
53#endif
54
55#ifdef H5_USE_OPENCV
56#include <opencv2/opencv.hpp>
58#endif
59
60#include "H5File.hpp"
61
62namespace H5Easy {
63
72using HighFive::File;
75
78enum class DumpMode {
79 Create = 0,
80 Overwrite = 1
81};
82
85enum class Flush {
86 False = 0,
87 True = 1
88};
89
93 public:
99 explicit Compression(bool enable = true);
100
105 template <class T>
106 Compression(T level);
107
110 inline unsigned get() const;
111
112 private:
113 unsigned m_compression_level;
114};
115
125 public:
128 DumpOptions() = default;
129
133 template <class... Args>
134 DumpOptions(Args... args) {
135 set(args...);
136 }
137
141 inline void set(DumpMode mode);
142
146 inline void set(Flush mode);
147
151 inline void set(const Compression& level);
152
157 template <class T, class... Args>
158 inline void set(T arg, Args... args);
159
163 template <class T>
164 inline void setChunkSize(const std::vector<T>& shape);
165
169 inline void setChunkSize(std::initializer_list<size_t> shape);
170
174 inline bool overwrite() const;
175
179 inline bool flush() const;
180
184 inline bool compress() const;
185
189 inline unsigned getCompressionLevel() const;
190
195 inline bool isChunked() const;
196
200 inline std::vector<hsize_t> getChunkSize() const;
201
202 private:
203 bool m_overwrite = false;
204 bool m_flush = true;
205 unsigned m_compression_level = 0;
206 std::vector<hsize_t> m_chunk_size = {};
207};
208
216inline size_t getSize(const File& file, const std::string& path);
217
225inline std::vector<size_t> getShape(const File& file, const std::string& path);
226
237template <class T>
238inline DataSet dump(File& file,
239 const std::string& path,
240 const T& data,
242
253template <class T>
254inline DataSet dump(File& file, const std::string& path, const T& data, const DumpOptions& options);
255
266template <class T>
267inline DataSet dump(File& file,
268 const std::string& path,
269 const T& data,
270 const std::vector<size_t>& idx);
271
282template <class T>
283inline DataSet dump(File& file,
284 const std::string& path,
285 const T& data,
286 const std::initializer_list<size_t>& idx);
287
299template <class T>
300inline DataSet dump(File& file,
301 const std::string& path,
302 const T& data,
303 const std::vector<size_t>& idx,
304 const DumpOptions& options);
305
317template <class T>
318inline DataSet dump(File& file,
319 const std::string& path,
320 const T& data,
321 const std::initializer_list<size_t>& idx,
322 const DumpOptions& options);
323
333template <class T>
334inline T load(const File& file, const std::string& path, const std::vector<size_t>& idx);
335
344template <class T>
345inline T load(const File& file, const std::string& path);
346
358template <class T>
359inline Attribute dumpAttribute(File& file,
360 const std::string& path,
361 const std::string& key,
362 const T& data,
364
376template <class T>
377inline Attribute dumpAttribute(File& file,
378 const std::string& path,
379 const std::string& key,
380 const T& data,
381 const DumpOptions& options);
382
392template <class T>
393inline T loadAttribute(const File& file, const std::string& path, const std::string& key);
394
395} // namespace H5Easy
396
Signal to set compression level for written DataSets.
Definition H5Easy.hpp:92
unsigned get() const
Return compression level.
Definition H5Easy_public.hpp:27
Define options for dumping data.
Definition H5Easy.hpp:124
bool flush() const
Get flush-mode.
Definition H5Easy_public.hpp:62
bool isChunked() const
Get chunking mode: true is manually set, false if chunk-size should be computed automatically.
Definition H5Easy_public.hpp:74
std::vector< hsize_t > getChunkSize() const
Get chunk size. Use DumpOptions::getChunkSize to check if chunk-size should be automatically computed...
Definition H5Easy_public.hpp:78
DumpOptions()=default
Constructor: accept all default settings.
unsigned getCompressionLevel() const
Get compression level.
Definition H5Easy_public.hpp:70
bool overwrite() const
Get overwrite-mode.
Definition H5Easy_public.hpp:58
void set(DumpMode mode)
Overwrite H5Easy::DumpMode setting.
Definition H5Easy_public.hpp:31
bool compress() const
Get compress-mode.
Definition H5Easy_public.hpp:66
DumpOptions(Args... args)
Constructor: overwrite (some of the) defaults.
Definition H5Easy.hpp:134
void setChunkSize(const std::vector< T > &shape)
Set chunk-size. If the input is rank (size) zero, automatic chunking is enabled.
Definition H5Easy_public.hpp:50
create an HDF5 DataType from a C++ type
Definition H5DataType.hpp:189
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:47
Definition H5PropertyList.hpp:499
Class representing a dataset.
Definition H5DataSet.hpp:30
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
Definition H5PropertyList.hpp:518
Basic HighFive Exception class.
Definition H5Exception.hpp:23
File class.
Definition H5File.hpp:25
HDF5 property Lists.
Definition H5PropertyList.hpp:158
Definition H5PropertyList.hpp:546
Read/dump DataSets or Attribute using a minimalistic syntax. To this end, the functions are templated...
Definition H5Easy.hpp:62
size_t getSize(const File &file, const std::string &path)
Get the size of an existing DataSet in an open HDF5 file.
Definition H5Easy_public.hpp:82
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
DumpMode
Write mode for DataSets.
Definition H5Easy.hpp:78
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
std::vector< size_t > getShape(const File &file, const std::string &path)
Get the shape of an existing DataSet in an readable file.
Definition H5Easy_public.hpp:86
Flush
Signal to enable/disable automatic flushing after write operations.
Definition H5Easy.hpp:85
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24