IODA
Engines_c.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /*! \addtogroup ioda_engines
8  * @{
9  * \file Engines_c.cpp
10  * \brief @link ioda_engines C bindings @endlink for ioda::Engines
11  */
12 
13 #include "ioda/C/Engines_c.h"
14 
15 #include <iostream>
16 #include <stdexcept>
17 
18 #include "./structs_c.h"
19 #include "ioda/C/c_binding_macros.h" // C_TRY and C_CATCH_AND_TERMINATE
20 #include "ioda/Engines/HH.h"
21 #include "ioda/Engines/ObsStore.h"
22 #include "ioda/Exception.h"
23 
24 extern "C" {
25 
27  ioda_group* res = nullptr;
28  C_TRY;
29  res = new ioda_group;
31  C_CATCH_RETURN_FREE(res, NULL, res);
32 }
33 
35  size_t sz_filename, const char* filename, bool flush_on_close,
36  long increment_len_bytes // NOLINT(google-runtime-int): HDF5 detail must be exposed.
37 ) {
38  ioda_group* res = nullptr;
39  C_TRY;
40  res = new ioda_group;
42  std::string(filename, sz_filename), ioda::Engines::BackendCreateModes::Truncate_If_Exists,
43  flush_on_close, (size_t)increment_len_bytes);
44  C_CATCH_RETURN_FREE(res, NULL, res);
45 }
46 
47 IODA_DL ioda_group* ioda_Engines_HH_openFile(size_t sz_filename, const char* filename,
49  ioda_group* res = nullptr;
50  C_TRY;
51  res = new ioda_group;
52 
53  const std::map<ioda_Engines_BackendOpenModes, ioda::Engines::BackendOpenModes> m{
56  if (!m.count(mode)) throw ioda::Exception("Unimplemented Backend Open Mode", ioda_Here());
57 
58  res->g = ioda::Engines::HH::openFile(std::string(filename, sz_filename), m.at(mode));
59  C_CATCH_RETURN_FREE(res, NULL, res);
60 }
61 
62 IODA_DL ioda_group* ioda_Engines_HH_createFile(size_t sz_filename, const char* filename,
64  ioda_group* res = nullptr;
65  C_TRY;
66  res = new ioda_group;
67 
68  const std::map<ioda_Engines_BackendCreateModes, ioda::Engines::BackendCreateModes> m{
73  if (!m.count(mode)) throw ioda::Exception("Unimplemented Backend Creation Mode", ioda_Here());
74 
75  res->g = ioda::Engines::HH::createFile(std::string(filename, sz_filename), m.at(mode));
76  C_CATCH_RETURN_FREE(res, NULL, res);
77 }
78 
80  const char* defaultFilename) {
81  ioda_group* res = nullptr;
82  C_TRY;
83  res = new ioda_group;
84  res->g = ioda::Engines::constructFromCmdLine(argc, argv, std::string{defaultFilename});
85  C_CATCH_RETURN_FREE(res, NULL, res);
86 }
87 }
88 
89 /// @}
C bindings for ioda::Engines
IODA's error system.
HDF5 engine.
ObsStore engine.
C bindings interface to templated C++ ioda classes and functions.
The ioda exception class.
Definition: Exception.h:54
#define C_CATCH_RETURN_FREE(retval_on_success, retval_on_error, freeable)
Like C_CATCH_AND_RETURN, but free any in-function allocated C resource before returning to avoid memo...
#define C_TRY
Goes with C_CATCH_AND_TERMINATE.
#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 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 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
IODA_DL Group createRootGroup()
Create a ioda::Group backed by an OsbStore Group object.
Definition: ObsStore.cpp:24
IODA_DL Group constructFromCmdLine(int argc, char **argv, const std::string &defaultFilename)
This is a wrapper function around the constructBackend function for creating a backend based on comma...
Definition: Factory.cpp:21
@ 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.
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
#define ioda_Here()
ioda::Group g
Definition: structs_c.h:21
C wrappers for ioda classes and structures. Private header. Can have C++!