22 Expects(atts !=
nullptr);
30 Expects(atts !=
nullptr);
31 std::vector<std::string> vals = atts->
atts.
list();
39 Expects(atts !=
nullptr);
40 Expects(
name !=
nullptr);
47 Expects(atts !=
nullptr);
48 Expects(
name !=
nullptr);
57 Expects(atts !=
nullptr);
58 Expects(
name !=
nullptr);
60 Expects(res !=
nullptr);
66 size_t sz_new,
const char* newname) {
68 Expects(atts !=
nullptr);
69 Expects(oldname !=
nullptr);
70 Expects(newname !=
nullptr);
71 atts->
atts.
rename(std::string(oldname, sz_old), std::string(newname, sz_new));
75 #define IODA_HAS_ATTRIBUTES_CREATE_IMPL(funcnamestr, Type) \
76 IODA_DL ioda_attribute* funcnamestr(ioda_has_attributes* has_atts, size_t sz_name, \
77 const char* name, size_t n_dims, const long* dims) { \
78 ioda_attribute* res = nullptr; \
80 Expects(has_atts != nullptr); \
81 Expects(name != nullptr); \
82 Expects(dims != nullptr); \
83 std::vector<ioda::Dimensions_t> vdims(n_dims); \
84 for (size_t i = 0; i < n_dims; ++i) vdims[i] = (ioda::Dimensions_t)dims[i]; \
85 res = new ioda_attribute; \
86 Expects(res != nullptr); \
87 res->att = has_atts->atts.create<Type>(std::string(name, sz_name), vdims); \
88 C_CATCH_RETURN_FREE(res, nullptr, res); \
Interfaces for ioda::Group and related classes.
C bindings for ioda::Group
C bindings interface to templated C++ ioda classes and functions.
virtual std::vector< std::string > list() const
virtual void remove(const std::string &attname)
Delete an Attribute with the specified name.
virtual Attribute open(const std::string &name) const
Open an Attribute by name.
virtual void rename(const std::string &oldName, const std::string &newName)
Rename an Attribute.
virtual bool exists(const std::string &attname) const
Does an Attribute with the specified name exist?
#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_string_ret_t * ioda_has_attributes_list(const ioda_has_attributes *atts)
IODA_DL bool ioda_has_attributes_rename(struct ioda_has_attributes *has_atts, size_t sz_oldname, const char *oldname, size_t sz_newname, const char *newname)
Rename an attribute.
IODA_DL void ioda_has_attributes_destruct(struct ioda_has_attributes *has_atts)
Deallocates a ioda_has_attributes_object.
C_TEMPLATE_FUNCTION_DEFINITION(ioda_has_attributes_create, IODA_HAS_ATTRIBUTES_CREATE_IMPL)
IODA_DL bool ioda_has_attributes_remove(struct ioda_has_attributes *has_atts, size_t sz_name, const char *name)
Remove an attribute.
ioda_attribute * ioda_has_attributes_open(const ioda_has_attributes *atts, size_t sz, const char *name)
#define IODA_HAS_ATTRIBUTES_CREATE_IMPL(funcnamestr, Type)
int ioda_has_attributes_exists(const ioda_has_attributes *atts, 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