23 Expects(att !=
nullptr);
31 Expects(att !=
nullptr);
33 Expects(res !=
nullptr);
39 #define IODA_ATTRIBUTE_ISA_IMPL(funcnamestr, Type) \
40 IODA_DL int funcnamestr(const ioda_attribute* att) { \
42 Expects(att != nullptr); \
43 bool res = att->att.isA<Type>(); \
44 C_CATCH_AND_RETURN((res) ? 1 : 0, -1); \
51 #define IODA_ATTRIBUTE_WRITE(funcnamestr, Type) \
52 IODA_DL bool funcnamestr(ioda_attribute* att, size_t sz, const Type* vals) { \
54 Expects(att != nullptr); \
55 Expects(vals != nullptr); \
56 att->att.write<Type>(gsl::span<const Type>(vals, sz)); \
57 C_CATCH_AND_RETURN(true, false); \
64 Expects(att !=
nullptr);
65 Expects(vals !=
nullptr);
66 std::vector<std::string> vdata(sz);
67 for (
size_t i = 0; i < sz; ++i) vdata[i] = std::string(vals[i]);
74 #define IODA_ATTRIBUTE_READ(funcnamestr, Type) \
75 IODA_DL bool funcnamestr(const ioda_attribute* att, size_t sz, Type* vals) { \
77 Expects(att != nullptr); \
78 Expects(vals != nullptr); \
79 att->att.read<Type>(gsl::span<Type>(vals, sz)); \
80 C_CATCH_AND_RETURN(true, false); \
87 Expects(att !=
nullptr);
88 std::vector<std::string> vdata;
89 att->
att.
read<std::string>(vdata);
Interfaces for ioda::Attribute and related classes.
C bindings for ioda::Attribute
C bindings interface to templated C++ ioda classes and functions.
virtual Dimensions getDimensions() const
Get Attribute's dimensions.
virtual Attribute_Implementation write(gsl::span< char > data, const Type &type)
The fundamental write function. Backends overload this function to implement all write operations.
virtual Attribute_Implementation read(gsl::span< char > data, const Type &in_memory_dataType) const
The fundamental read function. Backends overload this function to implement all read operations.
IODA_DL void ioda_attribute_destruct(struct ioda_attribute *att)
Deallocates an attribute.
#define IODA_ATTRIBUTE_ISA_IMPL(funcnamestr, Type)
C_TEMPLATE_FUNCTION_DEFINITION(ioda_attribute_isa, IODA_ATTRIBUTE_ISA_IMPL)
IODA_DL ioda_string_ret_t * ioda_attribute_read_str(const ioda_attribute *att)
#define IODA_ATTRIBUTE_READ(funcnamestr, Type)
#define IODA_ATTRIBUTE_WRITE(funcnamestr, Type)
IODA_DL bool ioda_attribute_write_str(ioda_attribute *att, size_t sz, const char *const *vals)
ioda_dimensions * ioda_attribute_get_dimensions(const ioda_attribute *att)
C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(ioda_attribute_write, IODA_ATTRIBUTE_WRITE)
#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.
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