32 static std::random_device rd;
33 static std::mt19937 gen(rd());
34 static std::uniform_int_distribution<> dis(0, 255);
40 for (
unsigned i = 0; i < len; i++) {
42 std::stringstream hexstream;
43 hexstream << std::hex << rc;
44 auto hex = hexstream.str();
45 ss << (hex.length() < 2 ?
'0' + hex : hex);
57 std::lock_guard<std::mutex> l{m};
59 std::array<std::string, 5> uuid
62 = uuid[0] +
"-" + uuid[1] +
"-" + uuid[2] +
"-" + uuid[3] +
"-" + uuid[4] +
".hdf5";
66 const std::map<HDF5_Version, H5F_libver_t>
map_h5ver
69 #if H5_VERSION_GE(1, 10, 0)
72 #if H5_VERSION_GE(1, 12, 0)
78 #if H5_VERSION_GE(1, 10, 0)
90 static const std::map<BackendCreateModes, unsigned int> m{
95 errOpts.
add(
"filename", filename);
96 errOpts.
add(
"mode", mode);
97 errOpts.
add(
"flush_on_close", flush_on_close);
98 errOpts.
add(
"increment_len", increment_len);
99 errOpts.
add(
"compat", compat);
101 hid_t plid = H5Pcreate(H5P_FILE_ACCESS);
103 HH_hid_t pl(plid, Handles::Closers::CloseHDF5PropertyList::CloseP);
105 if (0 > H5Pset_fapl_core(pl.get(), increment_len, flush_on_close))
109 if (0 > H5Pset_libver_bounds(pl.get(),
map_h5ver.at(compat.first),
map_h5ver.at(compat.second)))
112 HH_hid_t f = H5Fcreate(filename.c_str(), m.at(mode), H5P_DEFAULT, pl.get());
117 return ::ioda::Group{backend};
123 static const std::map<BackendCreateModes, unsigned int> m{
128 errOpts.
add(
"filename", filename);
129 errOpts.
add(
"mode", mode);
130 errOpts.
add(
"compat", compat);
132 hid_t plid = H5Pcreate(H5P_FILE_ACCESS);
134 HH_hid_t pl(plid, Handles::Closers::CloseHDF5PropertyList::CloseP);
137 if (0 > H5Pset_libver_bounds(pl.get(),
map_h5ver.at(compat.first),
map_h5ver.at(compat.second)))
140 HH_hid_t f = H5Fcreate(filename.c_str(), m.at(mode), H5P_DEFAULT, pl.get());
144 return ::ioda::Group{backend};
149 static const std::map<BackendOpenModes, unsigned int> m{
153 errOpts.
add(
"filename", filename);
154 errOpts.
add(
"mode", mode);
155 errOpts.
add(
"compat", compat);
157 hid_t plid = H5Pcreate(H5P_FILE_ACCESS);
159 HH_hid_t pl(plid, Handles::Closers::CloseHDF5PropertyList::CloseP);
160 if (0 > H5Pset_libver_bounds(pl.get(),
map_h5ver.at(compat.first),
map_h5ver.at(compat.second)))
163 HH_hid_t f = H5Fopen(filename.c_str(), m.at(mode), pl.get());
168 return ::ioda::Group{backend};
174 static const std::map<BackendOpenModes, unsigned int> m{
178 errOpts.
add(
"filename", filename);
179 errOpts.
add(
"mode", mode);
180 errOpts.
add(
"flush_on_close", flush_on_close);
181 errOpts.
add(
"increment_len", increment_len);
182 errOpts.
add(
"compat", compat);
184 hid_t plid = H5Pcreate(H5P_FILE_ACCESS);
186 HH_hid_t pl(plid, Handles::Closers::CloseHDF5PropertyList::CloseP);
188 const auto h5Result = H5Pset_fapl_core(pl.get(), increment_len, flush_on_close);
190 if (0 > H5Pset_libver_bounds(pl.get(),
map_h5ver.at(compat.first),
map_h5ver.at(compat.second)))
193 HH_hid_t f = H5Fopen(filename.c_str(), m.at(mode), pl.get());
199 return ::ioda::Group{backend};
204 static bool inited =
false;
210 bool canSZIP =
false;
220 static bool inited =
false;
226 bool canSZIP =
false;
237 static const std::map<HDF5_Version, std::string> names {
249 unsigned maj = 0, min = 0, rel = 0;
250 if (H5get_libversion(&maj, &min, &rel) < 0)
throw Exception(
"Bad HDF5 return value",
ioda_Here());
251 os <<
" (" << maj <<
"." << min <<
"." << rel <<
")";
260 os <<
"HDF5_Version_Range: [" << range.first <<
", " << range.second <<
"]";
Interfaces for ioda::Group and related classes.
HDF5 engine implementation of Attribute.
HDF5 resource handles in C++.
The ioda exception class.
Groups are a new implementation of ObsSpaces.
Quick and easy key-value container that stringifies all values.
Options & add(const std::string &key, const T &value)
Adds an option. Throws if the same name already exists.
Common preprocessor definitions used throughout IODA.
IODA_DL Group createFile(const std::string &filename, BackendCreateModes mode, HDF5_Version_Range compat=defaultVersionRange())
Create a ioda::Group backed by an HDF5 file.
IODA_DL HDF5_Version_Range defaultVersionRange()
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.
IODA_DL Capabilities getCapabilitiesFileEngine()
Get capabilities of the HDF5 file-backed engine.
IODA_DL std::string genUniqueName()
Convenience function to generate a random file name.
HDF5_Version
HDF5 library format versions.
IODA_DL Capabilities getCapabilitiesInMemoryEngine()
Get capabilities of the HDF5 memory-backed engine.
IODA_DL Group openMemoryFile(const std::string &filename, BackendOpenModes mode=BackendOpenModes::Read_Only, bool flush_on_close=false, size_t increment_len_bytes=1000000, HDF5_Version_Range compat=defaultVersionRange())
Map an HDF5 file in memory and open a ioda::Group.
IODA_DL Group createMemoryFile(const std::string &filename, BackendCreateModes mode, bool flush_on_close=false, size_t increment_len_bytes=1000000, HDF5_Version_Range compat=defaultVersionRange())
Create a ioda::Group backed by the HDF5 in-memory-store.
std::pair< HDF5_Version, HDF5_Version > HDF5_Version_Range
@ Earliest
Use the earliest possible HDF5 format for storing objects.
@ V18
Use the latest HDF5 v1.8 format for storing objects.
@ V110
Use the latest HDF5 v1.10 format for storing objects.
@ Latest
Use the latest possible HDF5 format for storing objects.
@ V112
Use the latest HDF5 v1.12 format for storing objects.
@ Unsupported
The feature causes an exception if used.
@ Supported
The feature always works.
@ Fail_If_Exists
If the file already exists, fail with an error.
@ Truncate_If_Exists
If the file already exists, overwrite it.
@ Read_Write
Open the file in read-write mode.
@ Read_Only
Open the file in read-only mode.
Functions that are helpful in creating a new ioda::Group that is backed by HDF5.
unsigned int random_char()
std::string generate_hex(const unsigned int len)
const std::map< HDF5_Version, H5F_libver_t > map_h5ver
IODA_DL std::ostream & operator<<(std::ostream &os, const HDF5_Version &ver)
stream operator
Struct defining what an engine can/cannot do.
Capability_Mask canCompressWithGZIP
Capability_Mask canCompressWithSZIP