26 Expects(var !=
nullptr);
34 Expects(var !=
nullptr);
43 Expects(var !=
nullptr);
45 Expects(res !=
nullptr);
52 Expects(var !=
nullptr);
54 for (
size_t i = 0; i < N; ++i)
55 nd[i] = gsl::narrow<ioda::Selection::VecDimensions_t::value_type>(
newDims[i]);
63 Expects(var !=
nullptr);
64 Expects(scale !=
nullptr);
72 Expects(var !=
nullptr);
73 Expects(scale !=
nullptr);
81 Expects(var !=
nullptr);
82 Expects(dims !=
nullptr);
83 std::vector<ioda::Variable>
newDims;
85 for (
size_t i = 0; i < N; ++i) {
86 Expects(dims[i] !=
nullptr);
87 newDims.push_back(dims[i]->var);
95 Expects(var !=
nullptr);
101 const char* dimensionScaleName) {
103 Expects(var !=
nullptr);
104 Expects(dimensionScaleName !=
nullptr);
111 Expects(var !=
nullptr);
115 "Dimension scale name is too large.",
ioda_Here());
116 if (!out)
return name.size() + 1;
117 Expects(out !=
nullptr);
124 unsigned int DimensionNumber,
127 Expects(var !=
nullptr);
128 Expects(scale !=
nullptr);
134 #define IODA_VARIABLE_ISA_IMPL(funcnamestr, Type) \
135 IODA_DL int funcnamestr(const ioda_variable* var) { \
137 Expects(var != nullptr); \
138 bool ret = var->var.isA<Type>(); \
139 C_CATCH_AND_RETURN((ret) ? 1 : 0, -1); \
146 #define IODA_VARIABLE_WRITE_FULL(funcnamestr, Type) \
147 IODA_DL bool funcnamestr(ioda_variable* var, size_t sz, const Type* vals) { \
149 Expects(var != nullptr); \
150 Expects(vals != nullptr); \
151 var->var.write<Type>(gsl::span<const Type>(vals, sz)); \
152 C_CATCH_AND_RETURN(true, false); \
159 Expects(var !=
nullptr);
160 Expects(vals !=
nullptr);
161 std::vector<std::string> vdata(sz);
162 for (
size_t i = 0; i < sz; ++i) vdata[i] = std::string(vals[i]);
169 #define IODA_VARIABLE_READ_FULL(funcnamestr, Type) \
170 IODA_DL bool funcnamestr(const ioda_variable* var, size_t sz, Type* vals) { \
172 Expects(var != nullptr); \
173 Expects(vals != nullptr); \
174 var->var.read<Type>(gsl::span<Type>(vals, sz)); \
175 C_CATCH_AND_RETURN(true, false); \
182 Expects(var !=
nullptr);
183 std::vector<std::string> vdata;
184 var->
var.
read<std::string>(vdata);
Interfaces for ioda::Type and related classes.
Interfaces for ioda::Variable and related classes.
C bindings for ioda::Variable
C bindings interface to templated C++ ioda classes and functions.
The ioda exception class.
virtual Variable attachDimensionScale(unsigned int DimensionNumber, const Variable &scale)
Attach a dimension scale to this Variable.
Variable setDimScale(const std::vector< Variable > &dims)
Set dimensions (convenience function to several invocations of attachDimensionScale).
virtual Variable setIsDimensionScale(const std::string &dimensionScaleName)
Designate this table as a dimension scale.
Has_Attributes atts
Attributes.
virtual bool isDimensionScaleAttached(unsigned int DimensionNumber, const Variable &scale) const
Is a dimension scale attached to this Variable in a certain position?
virtual bool isDimensionScale() const
Is this Variable used as a dimension scale?
virtual Variable detachDimensionScale(unsigned int DimensionNumber, const Variable &scale)
Detach a dimension scale.
virtual Dimensions getDimensions() const
std::string getDimensionScaleName() const
Get the name of this Variable's defined dimension scale.
virtual Variable read(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
Read the Variable - as char array. Ordering is row-major.
virtual Variable write(gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
The fundamental write function. Backends overload this function to implement all write operations.
virtual Variable resize(const std::vector< Dimensions_t > &newDims)
Resize the variable.
#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.
std::vector< Dimensions_t > VecDimensions_t
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_write_full_str(ioda_variable *var, size_t sz, const char *const *vals)
Write a sequence of strings to a variable.
#define IODA_VARIABLE_WRITE_FULL(funcnamestr, Type)
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.
#define IODA_VARIABLE_READ_FULL(funcnamestr, Type)
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.
C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(ioda_variable_write_full, IODA_VARIABLE_WRITE_FULL)
IODA_DL bool ioda_variable_resize(struct ioda_variable *var, size_t N, const long *newDims)
Resize a variable.
IODA_DL ioda_string_ret_t * ioda_variable_read_full_str(const ioda_variable *var)
#define IODA_VARIABLE_ISA_IMPL(funcnamestr, Type)
C_TEMPLATE_FUNCTION_DEFINITION(ioda_variable_isa, IODA_VARIABLE_ISA_IMPL)
ioda_has_attributes * ioda_variable_atts(const ioda_variable *var)
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.
ioda_dimensions * ioda_variable_get_dimensions(const ioda_variable *var)
IODA_DL size_t COMPAT_strncpy_s(char *dest, size_t destSz, const char *src, size_t srcSz)
Safe char array copy.
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