IODA
Engines_c.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_engines Engines
9  * \brief Provides the C-style interface for the ioda::Engines namespace.
10  * \ingroup ioda_c_api
11  *
12  * @{
13  * \file Engines_c.h
14  * \brief @link ioda_engines C bindings @endlink for ioda::Engines
15  */
16 #include <stdbool.h>
17 
18 #include "../defs.h"
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 struct ioda_group;
25 
26 /// \brief Options when opening a file.
28  /// Open in read-only mode.
30  /// Open in read-write mode.
32 };
33 /// \brief Options when creating a file.
35  /// Create a new file. If a file already exists, overwrite it.
37  /// Create a new file. If a file already exists at the path, fail.
39 };
40 
41 /// \brief Create a new ObsStore instance.
42 /// \todo Document the ObsStore engine.
43 /// \return The new instance, encapsulated as a ioda_group.
44 /// \see ioda::Engines::ObsStore::createRootGroup.
46 
47 /// \brief Create a new in-memory data store, backed by HDF5.
48 /// \param filename is an identifier to the "file" that HDF5 is accessing. Multiple opens of the
49 /// same identifier open the same object.
50 /// \param sz_filename is strlen(filename). Needed by Fortran bindings.
51 /// \param flush_on_close denotes whether the in-memory object should be flushed (written)
52 /// to disk once it is closed. Useful for debugging. If true, then file "filename" will
53 /// be created on success.
54 /// \param increment_len_bytes represents the size of new memory allocations that occur when
55 /// data is written to the in-memory storage. Basically, when the engine needs more memory,
56 /// allocate additional blocks with this size.
57 /// \return The new instance, encapsulated as a ioda_group.
58 /// \todo Clarify whether flush_on_close truncates a file or fails if it exists. Add an option?
59 /// \see ioda::Engines::HH::createMemoryFile.
61  size_t sz_filename, const char* filename, bool flush_on_close,
62  long increment_len_bytes); // NOLINT: cppcheck complains about long
63 
64 /// \brief Open a handle to a file that is backed by HDF5.
65 /// \param filename is the path to the file.
66 /// \param sz_filename is strlen(filename). Needed by Fortran bindings.
67 /// \param mode is the access mode (read or read/write).
68 /// \return The file, encapsulated as a ioda_group.
69 IODA_DL struct ioda_group* ioda_Engines_HH_openFile(size_t sz_filename, const char* filename,
71 /// \brief Create a new file using the HDF5 interface.
72 /// \param filename is the path to the file.
73 /// \param sz_filename is strlen(filename). Needed by Fortran bindings.
74 /// \param mode is the access mode. Essentially, is the file created if a file with the same
75 /// name already exists?
76 IODA_DL struct ioda_group* ioda_Engines_HH_createFile(size_t sz_filename, const char* filename,
78 
79 /// \brief Function used in the ioda C examples and unit tests to construct different
80 /// backends based on different command-line parameters.
81 /// \param argc is the number of command-line arguments.
82 /// \param argv is the command-line arguments.
83 /// \param defaultFilename is a default file to be used in case no command-line arguments are
84 /// specified.
86  const char* defaultFilename);
87 
88 /// Class-like encapsulation of ioda::Engines::ObsStore functions.
90  struct ioda_group* (*createRootGroup)();
91 };
92 /// Class-like encapsulation of ioda::Engines::HH functions.
94  struct ioda_group* (*createMemoryFile)(size_t, const char*, bool,
95  long); // NOLINT: cppcheck complains about long
96  struct ioda_group* (*openFile)(size_t, const char*, enum ioda_Engines_BackendOpenModes);
97  struct ioda_group* (*createFile)(size_t, const char*, enum ioda_Engines_BackendCreateModes);
98 };
99 /// Class-like encapsulation of ioda::Engines functions.
101  struct ioda_group* (*constructFromCmdLine)(int, char**, const char*);
102 
103  struct c_ioda_engines_HH HH;
105 };
106 
107 #ifdef __cplusplus
108 }
109 #endif
110 
111 /// @} // End Doxygen block
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
IODA_DL struct ioda_group * ioda_Engines_HH_createMemoryFile(size_t sz_filename, const char *filename, bool flush_on_close, long increment_len_bytes)
Create a new in-memory data store, backed by HDF5.
Definition: Engines_c.cpp:34
ioda_Engines_BackendCreateModes
Options when creating a file.
Definition: Engines_c.h:34
IODA_DL struct ioda_group * ioda_Engines_HH_openFile(size_t sz_filename, const char *filename, enum ioda_Engines_BackendOpenModes mode)
Open a handle to a file that is backed by HDF5.
Definition: Engines_c.cpp:47
IODA_DL struct ioda_group * ioda_Engines_ObsStore_createRootGroup()
Create a new ObsStore instance.
Definition: Engines_c.cpp:26
ioda_Engines_BackendOpenModes
Options when opening a file.
Definition: Engines_c.h:27
IODA_DL struct ioda_group * ioda_Engines_HH_createFile(size_t sz_filename, const char *filename, enum ioda_Engines_BackendCreateModes mode)
Create a new file using the HDF5 interface.
Definition: Engines_c.cpp:62
IODA_DL struct ioda_group * ioda_Engines_constructFromCmdLine(int argc, char **argv, const char *defaultFilename)
Function used in the ioda C examples and unit tests to construct different backends based on differen...
Definition: Engines_c.cpp:79
@ ioda_Engines_BackendCreateModes_Fail_If_Exists
Create a new file. If a file already exists at the path, fail.
Definition: Engines_c.h:38
@ ioda_Engines_BackendCreateModes_Truncate_If_Exists
Create a new file. If a file already exists, overwrite it.
Definition: Engines_c.h:36
@ ioda_Engines_BackendOpenModes_Read_Only
Open in read-only mode.
Definition: Engines_c.h:29
@ ioda_Engines_BackendOpenModes_Read_Write
Open in read-write mode.
Definition: Engines_c.h:31
Class-like encapsulation of ioda::Engines::HH functions.
Definition: Engines_c.h:93
Class-like encapsulation of ioda::Engines::ObsStore functions.
Definition: Engines_c.h:89
Class-like encapsulation of ioda::Engines functions.
Definition: Engines_c.h:100
struct c_ioda_engines_ObsStore ObsStore
Definition: Engines_c.h:104
struct c_ioda_engines_HH HH
Definition: Engines_c.h:103