24 Expects(
params !=
nullptr);
32 Expects(res !=
nullptr);
39 Expects(p !=
nullptr);
41 Expects(res !=
nullptr);
47 bool doChunking,
size_t Ndims,
50 Expects(p !=
nullptr);
53 Expects(
chunks !=
nullptr);
55 for (
size_t i = 0; i < Ndims; ++i)
63 Expects(p !=
nullptr);
71 Expects(p !=
nullptr);
77 unsigned PixelsPerBlock,
unsigned options) {
79 Expects(p !=
nullptr);
85 #define IODA_VCP_FILL_IMPL(funcnamestr, Type) \
86 IODA_DL void funcnamestr(struct ioda_variable_creation_parameters* p, Type value) { \
88 Expects(p != nullptr); \
89 p->params.setFillValue<Type>(value); \
90 C_CATCH_AND_TERMINATE; \
Interfaces for ioda::Group and related classes.
C bindings for ioda::Group
C bindings interface to templated C++ ioda classes and functions.
#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_TRY
Goes with C_CATCH_AND_TERMINATE.
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.
IODA_DL void ioda_variable_creation_parameters_compressWithSZIP(struct ioda_variable_creation_parameters *params, unsigned PixelsPerBlock, unsigned options)
Compress with SZIP.
ioda_variable_creation_parameters * ioda_variable_creation_parameters_clone(const ioda_variable_creation_parameters *p)
C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(ioda_variable_creation_parameters_setFillValue, IODA_VCP_FILL_IMPL)
IODA_DL void ioda_variable_creation_parameters_noCompress(struct ioda_variable_creation_parameters *params)
Disable compression.
#define IODA_VCP_FILL_IMPL(funcnamestr, Type)
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.
void compressWithGZIP(int level=6)
std::vector< Dimensions_t > chunks
Manually specify the chunks. Never directly use. Use getChunks(...) instead.
void compressWithSZIP(unsigned PixelsPerBlock=16, unsigned options=4)
bool chunk
Do we chunk this variable? Required for extendible / compressible Variables.
ioda::VariableCreationParameters params
C wrappers for ioda classes and structures. Private header. Can have C++!