65 #define IODA_ATTRIBUTE_INST_TEMPLATE(shortnamestr, basenamestr) \
66 res.Attribute.shortnamestr = basenamestr;
80 #define IODA_HAS_ATTRIBUTES_INST_TEMPLATE(shortnamestr, basenamestr) \
81 res.Has_Attributes.shortnamestr = basenamestr;
100 #define IODA_VCP_INST_TEMPLATE(shortnamestr, basenamestr) \
101 res.VariableCreationParams.shortnamestr = basenamestr;
129 #define IODA_VARIABLE_INST_TEMPLATE(shortnamestr, basenamestr) \
130 res.Variable.shortnamestr = basenamestr;
154 #define IODA_HAS_VARIABLES_INST_TEMPLATE(shortnamestr, basenamestr) \
155 res.Has_Variables.shortnamestr = basenamestr;
IODA_DL struct ioda_dimensions * ioda_attribute_get_dimensions(const struct ioda_attribute *att)
Gets an attribute's dimensions.
IODA_DL void ioda_attribute_destruct(struct ioda_attribute *att)
Deallocates an attribute.
#define C_TEMPLATE_FUNCTION_DECLARATION_3_NOSTR(shortname, basename, PATTERN)
#define C_TEMPLATE_FUNCTION_DECLARATION_3(shortname, basename, PATTERN)
c_ioda use_c_ioda()
Creates and returns a c_ioda struct that has all of the function pointers filled in.
IODA_DL bool ioda_dimensions_get_dim_cur(const struct ioda_dimensions *d, size_t n, ptrdiff_t *val)
Get the current size of the n-th dimension.
IODA_DL bool ioda_dimensions_get_dim_max(const struct ioda_dimensions *d, size_t n, ptrdiff_t *val)
Get the maximum size of the n-th dimension.
IODA_DL bool ioda_dimensions_set_dimensionality(struct ioda_dimensions *d, size_t N)
Set dimensionality of the dimensions container.
IODA_DL bool ioda_dimensions_set_dim_max(struct ioda_dimensions *d, size_t n, ptrdiff_t sz)
Set the maximum size of the n-th dimension.
IODA_DL bool ioda_dimensions_get_dimensionality(const struct ioda_dimensions *d, size_t *val)
Gets dimensionality (i.e. number of dimensions)
IODA_DL bool ioda_dimensions_set_dim_cur(struct ioda_dimensions *d, size_t n, ptrdiff_t sz)
Set the current size of the n-th dimension.
IODA_DL bool ioda_dimensions_get_num_elements(const struct ioda_dimensions *d, size_t *val)
Get the number of distinct elements in the dimensions object (the product of each dimension size).
IODA_DL void ioda_dimensions_destruct(struct ioda_dimensions *d)
Deallocates a dimensions container.
IODA_DL struct ioda_group * ioda_Engines_HH_createMemoryFile(size_t sz_filename, const char *filename, bool flush_on_close, long increment_len_bytes)
Create a new in-memory data store, backed by HDF5.
IODA_DL struct ioda_group * ioda_Engines_HH_openFile(size_t sz_filename, const char *filename, enum ioda_Engines_BackendOpenModes mode)
Open a handle to a file that is backed by HDF5.
IODA_DL struct ioda_group * ioda_Engines_ObsStore_createRootGroup()
Create a new ObsStore instance.
IODA_DL struct ioda_group * ioda_Engines_HH_createFile(size_t sz_filename, const char *filename, enum ioda_Engines_BackendCreateModes mode)
Create a new file using the HDF5 interface.
IODA_DL struct ioda_group * ioda_Engines_constructFromCmdLine(int argc, char **argv, const char *defaultFilename)
Function used in the ioda C examples and unit tests to construct different backends based on differen...
IODA_DL void ioda_group_destruct(struct ioda_group *grp)
Frees a ioda_group.
IODA_DL struct ioda_string_ret_t * ioda_group_list(const struct ioda_group *grp)
Lists all one-level child groups.
IODA_DL struct ioda_has_attributes * ioda_group_atts(const struct ioda_group *grp)
Access a group's attributes.
IODA_DL int ioda_group_exists(const struct ioda_group *base, size_t child_sz, const char *child)
Check if a group exists.
IODA_DL struct ioda_group * ioda_group_create(struct ioda_group *base, size_t sz, const char *name)
Create a group.
IODA_DL struct ioda_has_variables * ioda_group_vars(const struct ioda_group *grp)
Access a group's variables.
IODA_DL struct ioda_group * ioda_group_open(const struct ioda_group *base, size_t sz, const char *name)
Open a group.
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 struct ioda_attribute * ioda_has_attributes_open(const struct ioda_has_attributes *has_atts, size_t sz_name, const char *name)
Open (access) an attribute by name.
IODA_DL void ioda_has_attributes_destruct(struct ioda_has_attributes *has_atts)
Deallocates a ioda_has_attributes_object.
IODA_DL struct ioda_string_ret_t * ioda_has_attributes_list(const struct ioda_has_attributes *)
List the names of the attributes associated with an object.
IODA_DL bool ioda_has_attributes_remove(struct ioda_has_attributes *has_atts, size_t sz_name, const char *name)
Remove an attribute.
IODA_DL int ioda_has_attributes_exists(const struct ioda_has_attributes *has_atts, size_t sz_name, const char *name)
Check if an attribute exists.
IODA_DL struct ioda_variable * ioda_has_variables_open(const struct ioda_has_variables *has_vars, size_t sz_name, const char *name)
Open (access) a variable by name.
IODA_DL struct ioda_string_ret_t * ioda_has_variables_list(const struct ioda_has_variables *)
List the names of the variables associated with an object.
IODA_DL bool ioda_has_variables_remove(struct ioda_has_variables *has_vars, size_t sz_name, const char *name)
Remove a variable.
IODA_DL int ioda_has_variables_exists(const struct ioda_has_variables *has_vars, size_t sz_name, const char *name)
Check if a variable exists.
IODA_DL void ioda_has_variables_destruct(struct ioda_has_variables *has_vars)
Deallocates a ioda_has_variables.
IODA_DL void ioda_string_ret_t_destruct(struct ioda_string_ret_t *)
Deallocate a returned string object.
IODA_DL void ioda_variable_creation_parameters_compressWithGZIP(struct ioda_variable_creation_parameters *params, int level)
Compress with GZIP.
IODA_DL void ioda_variable_creation_parameters_chunking(struct ioda_variable_creation_parameters *params, bool doChunking, size_t Ndims, const ptrdiff_t *chunks)
Set chunking options.
void(* destruct)(struct ioda_variable_creation_parameters *)
void(* compressWithGZIP)(struct ioda_variable_creation_parameters *, int)
void(* compressWithSZIP)(struct ioda_variable_creation_parameters *, unsigned, unsigned)
IODA_DL void ioda_variable_creation_parameters_compressWithSZIP(struct ioda_variable_creation_parameters *params, unsigned PixelsPerBlock, unsigned options)
Compress with SZIP.
void(* chunking)(struct ioda_variable_creation_parameters *, bool, size_t, const ptrdiff_t *)
struct ioda_variable_creation_parameters *(* clone)(const struct ioda_variable_creation_parameters *)
IODA_DL void ioda_variable_creation_parameters_noCompress(struct ioda_variable_creation_parameters *params)
Disable compression.
IODA_DL void ioda_variable_creation_parameters_destruct(struct ioda_variable_creation_parameters *params)
Deallocates variable creation parameters.
IODA_DL struct ioda_variable_creation_parameters * ioda_variable_creation_parameters_create()
Allocates a new variable creation parameters instance.
struct ioda_variable_creation_parameters *(* create)()
IODA_DL struct ioda_variable_creation_parameters * ioda_variable_creation_parameters_clone(const struct ioda_variable_creation_parameters *source)
Make a copy of an existing variable creation parameters object.
void(* noCompress)(struct ioda_variable_creation_parameters *)
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.
#define IODA_HAS_VARIABLES_INST_TEMPLATE(shortnamestr, basenamestr)
#define IODA_VARIABLE_INST_TEMPLATE(shortnamestr, basenamestr)
#define IODA_VCP_INST_TEMPLATE(shortnamestr, basenamestr)
#define IODA_HAS_ATTRIBUTES_INST_TEMPLATE(shortnamestr, basenamestr)
#define IODA_ATTRIBUTE_INST_TEMPLATE(shortnamestr, basenamestr)
C bindings for ioda-engines.
bool(* setDimensionality)(struct ioda_dimensions *, size_t)
bool(* setDimMax)(struct ioda_dimensions *, size_t, ptrdiff_t)
bool(* getNumElements)(const struct ioda_dimensions *, size_t *)
bool(* getDimMax)(const struct ioda_dimensions *, size_t, ptrdiff_t *)
void(* destruct)(struct ioda_dimensions *)
bool(* getDimensionality)(const struct ioda_dimensions *, size_t *)
bool(* setDimCur)(struct ioda_dimensions *, size_t, ptrdiff_t)
bool(* getDimCur)(const struct ioda_dimensions *, size_t, ptrdiff_t *)
struct ioda_string_ret_t *(* list)(const struct ioda_has_attributes *)
bool(* rename_att)(struct ioda_has_attributes *, size_t, const char *, size_t, const char *)
struct ioda_attribute *(* open)(const struct ioda_has_attributes *, size_t, const char *)
int(* exists)(const struct ioda_has_attributes *, size_t, const char *)
void(* destruct)(struct ioda_has_attributes *)
bool(* remove)(struct ioda_has_attributes *, size_t, const char *)
struct ioda_variable *(* open)(const struct ioda_has_variables *, size_t, const char *)
struct c_variable_creation_parameters VariableCreationParams
struct ioda_string_ret_t *(* list)(const struct ioda_has_variables *)
void(* destruct)(struct ioda_has_variables *)
int(* exists)(const struct ioda_has_variables *, size_t, const char *)
bool(* remove)(struct ioda_has_variables *, size_t, const char *)
struct ioda_group *(* createFile)(size_t, const char *, enum ioda_Engines_BackendCreateModes)
struct ioda_group *(* openFile)(size_t, const char *, enum ioda_Engines_BackendOpenModes)
struct ioda_group *(* createMemoryFile)(size_t, const char *, bool, long)
struct ioda_group *(* createRootGroup)()
struct c_ioda_engines_ObsStore ObsStore
struct c_ioda_engines_HH HH
struct ioda_group *(* constructFromCmdLine)(int, char **, const char *)
int(* exists)(const struct ioda_group *, size_t, const char *)
struct ioda_string_ret_t *(* list)(const struct ioda_group *)
struct ioda_has_variables *(* getVars)(const struct ioda_group *)
struct ioda_has_attributes *(* getAtts)(const struct ioda_group *)
struct ioda_group *(* create)(struct ioda_group *, size_t, const char *)
struct ioda_group *(* open)(const struct ioda_group *, size_t, const char *)
struct c_has_attributes atts
struct c_has_variables vars
void(* destruct)(struct ioda_group *)
struct c_variable Variable
struct c_variable_creation_parameters VariableCreationParams
struct c_dimensions Dimensions
struct c_attribute Attribute
struct c_ioda_engines Engines
struct c_has_attributes Has_Attributes
struct c_ioda_group Group
struct c_has_variables Has_Variables
void(* destruct)(struct ioda_string_ret_t *)
int(* isDimensionScale)(const struct ioda_variable *)
struct ioda_dimensions *(* getDimensions)(const struct ioda_variable *)
struct ioda_has_attributes *(* getAtts)(const struct ioda_variable *)
void(* destruct)(struct ioda_variable *)
bool(* resize)(struct ioda_variable *, size_t, const long *)
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 *)