IODA
Variable_Creation_Parameters_c.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-2021 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /*! \addtogroup ioda_variable_creation_parameters
8  *
9  * @{
10  * \file Variable_Creation_Parameters_c.cpp
11  * \brief @link ioda_variable_creation_parameters C bindings @endlink for
12  * ioda::VariableCreationParameters, used in ioda::Has_Variables::create.
13  */
14 
15 #include "./structs_c.h"
16 #include "ioda/C/Group_c.h"
18 #include "ioda/Group.h"
19 
20 extern "C" {
21 
23  C_TRY;
24  Expects(params != nullptr);
25  delete params;
27 }
28 
30  C_TRY;
31  auto* res = new ioda_variable_creation_parameters;
32  Expects(res != nullptr);
33  C_CATCH_AND_RETURN(res, NULL);
34 }
35 
38  C_TRY;
39  Expects(p != nullptr);
40  auto* res = new ioda_variable_creation_parameters;
41  Expects(res != nullptr);
42  res->params = p->params;
43  C_CATCH_AND_RETURN(res, NULL);
44 }
45 
47  bool doChunking, size_t Ndims,
48  const ptrdiff_t* chunks) {
49  C_TRY;
50  Expects(p != nullptr);
51  p->params.chunk = doChunking;
52  if (doChunking) {
53  Expects(chunks != nullptr);
54  p->params.chunks.resize(Ndims);
55  for (size_t i = 0; i < Ndims; ++i)
56  p->params.chunks[i] = gsl::narrow<ioda::Dimensions_t>(chunks[i]);
57  }
59 }
60 
62  C_TRY;
63  Expects(p != nullptr);
64  p->params.noCompress();
66 }
67 
69  int level) {
70  C_TRY;
71  Expects(p != nullptr);
72  p->params.compressWithGZIP(level);
74 }
75 
77  unsigned PixelsPerBlock, unsigned options) {
78  C_TRY;
79  Expects(p != nullptr);
80  p->params.compressWithSZIP(PixelsPerBlock, options);
82 }
83 
84 // Fill value
85 #define IODA_VCP_FILL_IMPL(funcnamestr, Type) \
86  IODA_DL void funcnamestr(struct ioda_variable_creation_parameters* p, Type value) { \
87  C_TRY; \
88  Expects(p != nullptr); \
89  p->params.setFillValue<Type>(value); \
90  C_CATCH_AND_TERMINATE; \
91  }
92 
93 C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(ioda_variable_creation_parameters_setFillValue,
95 }
96 
97 /// @}
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.
std::vector< Dimensions_t > chunks
Manually specify the chunks. Never directly use. Use getChunks(...) instead.
Definition: Has_Variables.h:87
void compressWithSZIP(unsigned PixelsPerBlock=16, unsigned options=4)
bool chunk
Do we chunk this variable? Required for extendible / compressible Variables.
Definition: Has_Variables.h:84
ioda::VariableCreationParameters params
Definition: structs_c.h:39
C wrappers for ioda classes and structures. Private header. Can have C++!