IODA
Has_Variables_c.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-2021 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_has_variables
8  * @{
9  * \file Has_Variables_c.cpp
10  * \brief @link ioda_has_variables C bindings @endlink for ioda::Has_Variables
11  */
12 
13 #include "ioda/C/Has_Variables_c.h"
14 
15 #include "./structs_c.h"
17 #include "ioda/Group.h"
18 
19 extern "C" {
20 
22  C_TRY;
23  Expects(vars != nullptr);
24  delete vars;
26 }
27 
29  ioda_string_ret_t* res = nullptr;
30  C_TRY;
31  Expects(vars != nullptr);
32  std::vector<std::string> vals = vars->vars.list();
33 
34  res = create_str_vector_c(vals);
35  C_CATCH_RETURN_FREE(res, nullptr, res);
36 }
37 
38 int ioda_has_variables_exists(const ioda_has_variables* vars, size_t sz, const char* name) {
39  C_TRY;
40  Expects(vars != nullptr);
41  Expects(name != nullptr);
42  bool exists = vars->vars.exists(std::string(name, sz));
43  C_CATCH_AND_RETURN((exists) ? 1 : 0, -1);
44 }
45 
46 bool ioda_has_variables_remove(ioda_has_variables* vars, size_t sz, const char* name) {
47  C_TRY;
48  Expects(vars != nullptr);
49  Expects(name != nullptr);
50  vars->vars.remove(std::string(name, sz));
51  C_CATCH_AND_RETURN(true, false);
52 }
53 
55  const char* name) {
56  ioda_variable* res = nullptr;
57  C_TRY;
58  Expects(vars != nullptr);
59  Expects(name != nullptr);
60  res = new ioda_variable;
61  Expects(res != nullptr);
62  res->var = vars->vars.open(std::string(name, sz));
63  C_CATCH_RETURN_FREE(res, nullptr, res);
64 }
65 
66 #define IODA_HAS_VARIABLES_CREATE_IMPL(funcnamestr, Type) \
67  IODA_DL ioda_variable* funcnamestr(ioda_has_variables* has_vars, size_t sz_name, \
68  const char* name, size_t n_dims, const long* dims, \
69  const long* max_dims, \
70  const struct ioda_variable_creation_parameters* params) { \
71  ioda_variable* res = nullptr; \
72  C_TRY; \
73  Expects(has_vars != nullptr); \
74  Expects(name != nullptr); \
75  Expects(dims != nullptr); \
76  Expects(max_dims != nullptr); \
77  Expects(params != nullptr); \
78  std::vector<ioda::Dimensions_t> vdims(n_dims); \
79  for (size_t i = 0; i < n_dims; ++i) vdims[i] = (ioda::Dimensions_t)dims[i]; \
80  std::vector<ioda::Dimensions_t> vmaxdims(n_dims); \
81  for (size_t i = 0; i < n_dims; ++i) vmaxdims[i] = (ioda::Dimensions_t)max_dims[i]; \
82  res = new ioda_variable; \
83  Expects(res != nullptr); \
84  res->var \
85  = has_vars->vars.create<Type>(std::string(name, sz_name), vdims, vmaxdims, params->params); \
86  C_CATCH_RETURN_FREE(res, nullptr, res); \
87  }
88 
90 }
91 
92 /// @}
Interfaces for ioda::Group and related classes.
C bindings for ioda::Has_Variables
C bindings interface to templated C++ ioda classes and functions.
virtual Variable open(const std::string &name) const
Open a Variable by name.
virtual std::vector< std::string > list() const
virtual bool exists(const std::string &name) const
Does a Variable with the specified name exist?
virtual void remove(const std::string &name)
Delete an Attribute with the specified name.
#define C_CATCH_AND_RETURN(retval_on_success, retval_on_error)
This macro catches C++ exceptions.
#define C_CATCH_AND_TERMINATE
Catch C++ exceptions before they go across code boundaries.
#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.
ioda_variable * ioda_has_variables_open(const ioda_has_variables *vars, size_t sz, const char *name)
int ioda_has_variables_exists(const ioda_has_variables *vars, size_t sz, const char *name)
ioda_string_ret_t * ioda_has_variables_list(const ioda_has_variables *vars)
IODA_DL bool ioda_has_variables_remove(struct ioda_has_variables *has_vars, size_t sz_name, const char *name)
Remove a variable.
#define IODA_HAS_VARIABLES_CREATE_IMPL(funcnamestr, Type)
C_TEMPLATE_FUNCTION_DEFINITION(ioda_has_variables_create, IODA_HAS_VARIABLES_CREATE_IMPL)
IODA_DL void ioda_has_variables_destruct(struct ioda_has_variables *has_vars)
Deallocates a ioda_has_variables.
ioda::Has_Variables vars
Definition: structs_c.h:27
Return type when arrays of strings are encountered.
Definition: String_c.h:24
ioda::Variable var
Definition: structs_c.h:33
C wrappers for ioda classes and structures. Private header. Can have C++!
ioda_string_ret_t * create_str_vector_c(const std::vector< std::string > &vdata) noexcept
Definition: structs_c.h:43