IODA
HH.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /*! \defgroup ioda_cxx_engines_pub_HH HDF5 Engine
9  * \brief HDF5 Engine
10  * \ingroup ioda_cxx_engines_pub
11  *
12  * @{
13  * \file HH.h
14  * \brief HDF5 engine
15  */
16 
17 #include <iostream>
18 #include <string>
19 #include <utility>
20 
21 #include "../defs.h"
22 #include "Capabilities.h"
23 #include "Factory.h"
24 
25 namespace ioda {
26 class Group;
27 
28 namespace Engines {
29 /// \brief Functions that are helpful in creating a new ioda::Group that is backed by HDF5.
30 namespace HH {
31 /// \brief HDF5 library format versions
32 /// \ingroup ioda_cxx_engines_pub_HH
33 /// \note When changing, you need to update the ostream operators.
34 enum class HDF5_Version {
35  Earliest, ///< Use the earliest possible HDF5 format for storing objects.
36  V18, ///< Use the latest HDF5 v1.8 format for storing objects.
37  V110, ///< Use the latest HDF5 v1.10 format for storing objects.
38  V112, ///< Use the latest HDF5 v1.12 format for storing objects.
39  Latest ///< Use the latest possible HDF5 format for storing objects.
40 };
41 /// \ingroup ioda_cxx_engines_pub_HH
42 typedef std::pair<HDF5_Version, HDF5_Version> HDF5_Version_Range;
43 /// \ingroup ioda_cxx_engines_pub_HH
45 
46 /// \brief Convenience function to generate a random file name.
47 /// \see createMemoryFile
48 /// \ingroup ioda_cxx_engines_pub_HH
49 IODA_DL std::string genUniqueName();
50 
51 /// \brief Create a ioda::Group backed by an HDF5 file.
52 /// \ingroup ioda_cxx_engines_pub_HH
53 /// \param filename is the file name.
54 /// \param mode is the creation mode.
55 /// \param compat is the range of HDF5 versions that should be able to access this file.
56 IODA_DL Group createFile(const std::string& filename, BackendCreateModes mode,
58 
59 /// \brief Open a ioda::Group backed by an HDF5 file.
60 /// \ingroup ioda_cxx_engines_pub_HH
61 /// \param filename is the file name.
62 /// \param mode is the access mode.
63 /// \param compat is the range of HDF5 versions that should be able to access this file.
64 IODA_DL Group openFile(const std::string& filename, BackendOpenModes mode,
66 
67 /// \brief Create a ioda::Group backed by the HDF5 in-memory-store.
68 /// \ingroup ioda_cxx_engines_pub_HH
69 /// \param filename is the name of the file if it gets flushed
70 /// (written) to disk. Otherwise, it is a unique identifier.
71 /// If this id is reused, then we are re-opening the store.
72 /// \param mode is the creation mode. This only matters if
73 /// the file is flushed to disk.
74 /// \param flush_on_close instructs us to flush the memory
75 /// image to the disk when done.
76 /// If false, then the image is never written to disk.
77 /// \param increment_len_bytes is the length (in bytes) of
78 /// the initial memory image. As the image grows larger,
79 /// then additional memory allocations will be performed.
80 /// \param compat is the range of HDF5 versions that should be able to access this file.
81 IODA_DL Group createMemoryFile(const std::string& filename,
82  BackendCreateModes mode, // = BackendCreateModes::Fail_If_Exists,
83  bool flush_on_close = false, size_t increment_len_bytes = 1000000,
85 
86 /// \brief Map an HDF5 file in memory and open a ioda::Group.
87 /// \ingroup ioda_cxx_engines_pub_HH
88 /// \param filename is the name of the file to be opened.
89 /// \param mode is the access mode.
90 /// \param flush_on_close instructs us to flush the memory image
91 /// to the disk when done. If false, then the image is never written to disk.
92 /// \param increment_len_bytes is the length (in bytes) of the initial
93 /// memory image. As the image grows larger, then additional memory
94 /// allocations will be performed of increment_len bytes.
95 /// \param compat is the range of HDF5 versions that should be able to access this file.
96 ///
97 /// \details
98 /// While using openMemoryFile to open an existing file, if
99 /// flush_on_close is set to 1 and the mode is set to
100 /// BackendOpenModes::Read_Write, any change to the file contents are
101 /// saved to the file when the file is closed. If flush_on_close is set
102 /// to 0 and the flags for mode is set to BackendOpenModes::Read_Write,
103 /// any change to the file contents will be lost when the file is closed.
104 /// If the mode for openMemoryFile is set to BackendOpenModes::Read_Only,
105 /// no change to the file is allowed either in memory or on file.
106 IODA_DL Group openMemoryFile(const std::string& filename,
108  bool flush_on_close = false, size_t increment_len_bytes = 1000000,
110 
111 /// \brief Get capabilities of the HDF5 file-backed engine
112 /// \ingroup ioda_cxx_engines_pub_HH
114 
115 /// \brief Get capabilities of the HDF5 memory-backed engine
116 /// \ingroup ioda_cxx_engines_pub_HH
118 
119 /// stream operator
120 IODA_DL std::ostream& operator<<(std::ostream& os, const HDF5_Version& ver);
121 /// stream operator
122 IODA_DL std::ostream& operator<<(std::ostream& os, const HDF5_Version_Range& range);
123 
124 } // namespace HH
125 } // namespace Engines
126 } // namespace ioda
127 
128 /// @}
129 
130 
Structs that describe backend capabilities.
Definitions for setting up backends with file and memory I/O.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
IODA_DL Group createFile(const std::string &filename, BackendCreateModes mode, HDF5_Version_Range compat=defaultVersionRange())
Create a ioda::Group backed by an HDF5 file.
Definition: HH.cpp:120
IODA_DL HDF5_Version_Range defaultVersionRange()
Definition: HH.cpp:77
IODA_DL Group openFile(const std::string &filename, BackendOpenModes mode, HDF5_Version_Range compat=defaultVersionRange())
Open a ioda::Group backed by an HDF5 file.
Definition: HH.cpp:147
IODA_DL Capabilities getCapabilitiesFileEngine()
Get capabilities of the HDF5 file-backed engine.
Definition: HH.cpp:202
IODA_DL std::string genUniqueName()
Convenience function to generate a random file name.
Definition: HH.cpp:50
HDF5_Version
HDF5 library format versions.
Definition: HH.h:34
IODA_DL Capabilities getCapabilitiesInMemoryEngine()
Get capabilities of the HDF5 memory-backed engine.
Definition: HH.cpp:218
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.
Definition: HH.cpp:171
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.
Definition: HH.cpp:86
std::pair< HDF5_Version, HDF5_Version > HDF5_Version_Range
Definition: HH.h:42
@ 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.
BackendCreateModes
Definition: Factory.h:44
@ Read_Only
Open the file in read-only mode.
IODA_DL std::ostream & operator<<(std::ostream &os, const HDF5_Version &ver)
stream operator
Definition: HH.cpp:234
Struct defining what an engine can/cannot do.
Definition: Capabilities.h:47