24 Expects(
g !=
nullptr);
32 Expects(
g !=
nullptr);
33 std::vector<std::string> vals =
g->g.list();
41 Expects(
g !=
nullptr);
42 Expects(
name !=
nullptr);
49 Expects(
g !=
nullptr);
50 Expects(
name !=
nullptr);
52 Expects(res !=
nullptr);
53 res->
g =
g->g.create(std::string(
name, sz));
60 Expects(
g !=
nullptr);
61 Expects(
name !=
nullptr);
63 Expects(res !=
nullptr);
64 res->
g =
g->g.open(std::string(
name, sz));
71 Expects(
g !=
nullptr);
73 res->
atts =
g->g.atts;
80 Expects(
g !=
nullptr);
82 res->
vars =
g->g.vars;
Interfaces for ioda::Group and related classes.
C bindings for ioda::Group
C bindings interface to templated C++ ioda classes and functions.
#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.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
IODA_DL ioda_has_variables * ioda_group_vars(const ioda_group *g)
IODA_DL void ioda_group_destruct(struct ioda_group *grp)
Frees a ioda_group.
ioda_group * ioda_group_open(const ioda_group *g, size_t sz, const char *name)
IODA_DL struct ioda_group * ioda_group_create(struct ioda_group *base, size_t sz, const char *name)
Create a group.
IODA_DL ioda_has_attributes * ioda_group_atts(const ioda_group *g)
ioda_string_ret_t * ioda_group_list(const ioda_group *g)
int ioda_group_exists(const ioda_group *g, size_t sz, const char *name)
ioda::Has_Attributes atts
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