23 Expects(vars !=
nullptr);
31 Expects(vars !=
nullptr);
32 std::vector<std::string> vals = vars->
vars.
list();
40 Expects(vars !=
nullptr);
41 Expects(
name !=
nullptr);
48 Expects(vars !=
nullptr);
49 Expects(
name !=
nullptr);
58 Expects(vars !=
nullptr);
59 Expects(
name !=
nullptr);
61 Expects(res !=
nullptr);
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; \
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); \
85 = has_vars->vars.create<Type>(std::string(name, sz_name), vdims, vmaxdims, params->params); \
86 C_CATCH_RETURN_FREE(res, nullptr, res); \
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.
Return type when arrays of strings are encountered.
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