73 unsigned int DimensionNumber,
88 unsigned int DimensionNumber,
127 const char* dimensionScaleName);
159 unsigned int DimensionNumber,
181 #define IODA_VARIABLE_ISA_TEMPLATE(funcnamestr, junk) \
182 IODA_DL int funcnamestr(const struct ioda_variable* var);
205 #define IODA_VARIABLE_WRITE_FULL_TEMPLATE(funcnamestr, Type) \
206 IODA_DL bool funcnamestr(struct ioda_variable* var, size_t sz, const Type* vals);
221 const char*
const* vals);
247 #define IODA_VARIABLE_READ_FULL_TEMPLATE(funcnamestr, Type) \
248 IODA_DL bool funcnamestr(const struct ioda_variable* var, size_t sz, Type* vals);
279 #define IODA_VARIABLE_ISA_FUNC_TEMPLATE(shortnamestr, basenamestr) \
280 int (*shortnamestr)(const struct ioda_variable*);
284 #define IODA_VARIABLE_WRITE_FULL_FUNC_TEMPLATE(shortnamestr, basenamestr, Type) \
285 bool (*shortnamestr)(struct ioda_variable*, size_t, const Type*);
291 #define IODA_VARIABLE_READ_FULL_FUNC_TEMPLATE(shortnamestr, basenamestr, Type) \
292 bool (*shortnamestr)(const struct ioda_variable*, size_t, Type*);
C bindings for ioda::Has_Attributes
#define IODA_VARIABLE_ISA_FUNC_TEMPLATE(shortnamestr, basenamestr)
#define IODA_VARIABLE_READ_FULL_FUNC_TEMPLATE(shortnamestr, basenamestr, Type)
#define IODA_VARIABLE_WRITE_FULL_FUNC_TEMPLATE(shortnamestr, basenamestr, Type)
C bindings interface to templated C++ ioda classes and functions.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
#define IODA_VARIABLE_ISA_TEMPLATE(funcnamestr, junk)
See ioda_variable_isa .
C_TEMPLATE_FUNCTION_DECLARATION(ioda_variable_isa, IODA_VARIABLE_ISA_TEMPLATE)
IODA_DL struct ioda_string_ret_t * ioda_variable_read_full_str(const struct ioda_variable *var)
Read strings from a variable.
#define IODA_VARIABLE_READ_FULL_TEMPLATE(funcnamestr, Type)
See ioda_variable_read_full .
C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(ioda_variable_write_full, IODA_VARIABLE_WRITE_FULL_TEMPLATE)
#define IODA_VARIABLE_WRITE_FULL_TEMPLATE(funcnamestr, Type)
See ioda_variable_write_full .
IODA_DL bool ioda_variable_write_full_str(struct ioda_variable *var, size_t sz, const char *const *vals)
Write a sequence of strings to a variable.
IODA_DL size_t ioda_variable_getDimensionScaleName(const struct ioda_variable *var, size_t len_out, char *out)
Get the name of the dimension scale.
IODA_DL bool ioda_variable_setDimScale(struct ioda_variable *var, size_t n_dims, const struct ioda_variable *const *dims)
Convenience function to set a sequence of scales on a variable.
IODA_DL int ioda_variable_isDimensionScale(const struct ioda_variable *var)
Check if a variable acts as a dimension scale.
IODA_DL struct ioda_dimensions * ioda_variable_get_dimensions(const struct ioda_variable *)
Gets an variable's dimensions.
IODA_DL bool ioda_variable_detachDimensionScale(struct ioda_variable *var, unsigned int DimensionNumber, const struct ioda_variable *scale)
Detach a dimension scale from a variable.
IODA_DL bool ioda_variable_setIsDimensionScale(struct ioda_variable *var, size_t sz_name, const char *dimensionScaleName)
Convert a variable into a dimension scale.
IODA_DL void ioda_variable_destruct(struct ioda_variable *var)
Deallocates an variable.
IODA_DL bool ioda_variable_resize(struct ioda_variable *var, size_t N, const long *newDims)
Resize a variable.
IODA_DL struct ioda_has_attributes * ioda_variable_atts(const struct ioda_variable *var)
Access a variable's attributes.
IODA_DL int ioda_variable_isDimensionScaleAttached(const struct ioda_variable *var, unsigned int DimensionNumber, const struct ioda_variable *scale)
Is the variable "scale" attached as dimension "DimensionNumber" to variable "var"?
IODA_DL bool ioda_variable_attachDimensionScale(struct ioda_variable *var, unsigned int DimensionNumber, const struct ioda_variable *scale)
Attach a dimension scale to a variable.
Class-like encapsulation of C has_attributes functions.
Class-like encapsulation of C variable functions.
int(* isDimensionScale)(const struct ioda_variable *)
bool(* write_full_str)(struct ioda_variable *, size_t, const char *const *)
void(* destruct)(struct ioda_variable *)
bool(* resize)(struct ioda_variable *, size_t, const long *)
C_TEMPLATE_FUNCTION_DECLARATION_3(isA, ioda_variable_isa, IODA_VARIABLE_ISA_FUNC_TEMPLATE)
size_t(* getDimensionScaleName)(const struct ioda_variable *, size_t, char *)
bool(* setDimScale)(struct ioda_variable *, size_t, const struct ioda_variable *const *)
bool(* attachDimensionScale)(struct ioda_variable *, unsigned int, const struct ioda_variable *)
int(* isDimensionScaleAttached)(const struct ioda_variable *, unsigned int, const struct ioda_variable *)
struct c_has_attributes atts
bool(* detachDimensionScale)(struct ioda_variable *, unsigned int, const struct ioda_variable *)
bool(* setIsDimensionScale)(struct ioda_variable *, size_t, const char *)
C_TEMPLATE_FUNCTION_DECLARATION_4_NOSTR(write_full, ioda_variable_write_full, IODA_VARIABLE_WRITE_FULL_FUNC_TEMPLATE)
Return type when arrays of strings are encountered.