IODA
Variable_Creation_Parameters_c.h
Go to the documentation of this file.
1 #pragma once
2 /*
3  * (C) Copyright 2020-2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /*! \defgroup ioda_variable_creation_parameters Variable Creation Parameters
9  * \brief Provides the C-style interface for ioda::VariableCreationParameters.
10  * \ingroup ioda_c_api
11  *
12  * @{
13  * \file Variable_Creation_Parameters_c.h
14  * \brief @link ioda_variable_creation_parameters C bindings @endlink for
15  * ioda::VariableCreationParameters, used in ioda::Has_Variables::create.
16  */
17 #include <stdbool.h>
18 
19 #include "../defs.h"
20 #include "./c_binding_macros.h"
21 
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25 
26 struct ioda_group;
27 struct ioda_has_attributes;
28 struct ioda_attribute;
29 struct ioda_has_variables;
30 struct ioda_variable;
32 
33 /// \brief Deallocates variable creation parameters.
34 /// \param params is the parameters object to be destructed.
37 
38 /// \brief Allocates a new variable creation parameters instance.
39 /// \returns A new instance of ioda_variable_creation_parameters.
41 
42 /// \brief Make a copy of an existing variable creation parameters object.
43 /// \param[in] source is the object to be copied.
44 /// \returns a clone of source if source is valid.
45 /// \returns NULL if source is invalid.
46 /// \pre source should be valid.
48  const struct ioda_variable_creation_parameters* source);
49 
50 /// @name Set fill value
51 /// @{
52 
53 /// \def IODA_VCP_FILL_TEMPLATE
54 /// \brief Sets a template for the fill value functions.
55 /// \details This is documentation for a series of functions in C that attempt to emulate C++
56 /// templates using macro magic. The template parameter SUFFIX is written into the function
57 /// name.
58 /// \tparam SUFFIX is the type (long, int64_t) that is appended to this function name in the C
59 /// interface.
60 /// \param[in] params is the parameters object.
61 /// \param data is the fill value, applied as a bit pattern (the type here does not strictly
62 /// need to match the variable's type).
63 #define IODA_VCP_FILL_TEMPLATE(funcnamestr, typ) \
64  IODA_DL void funcnamestr(struct ioda_variable_creation_parameters* params, typ data);
65 C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(ioda_variable_creation_parameters_setFillValue,
67 
68 /// @}
69 /// @name Chunking
70 /// @{
71 
72 /// \brief Set chunking options.
73 /// \param[in] params is the parameters object.
74 /// \param doChunking is a flag indicating whether chunking should be used.
75 /// \param Ndims is the dimensionality of chunks. Ignored if doChunking is false.
76 /// \param[in] chunks is a sequence of chunk lengths along each dimension. Ignored if doChunking
77 /// is false.
78 /// \note Chunking dimensionality must match the dimensionality of the variable to be created.
79 /// \note Chunk lengths must be nonzero, but this function accepts zero lengths because
80 /// later on these values might be "filled in" using hints from dimension scales.
81 /// \pre params must be valid.
82 /// \pre chunks must have size Ndims.
84  struct ioda_variable_creation_parameters* params, bool doChunking, size_t Ndims,
85  const ptrdiff_t* chunks);
86 
87 /// @}
88 /// @name Compression
89 /// @{
90 
91 /// \brief Disable compression.
92 /// \param[in] params is the parameters object.
93 /// \pre params is valid.
96 
97 /// \brief Compress with GZIP.
98 /// \param[in] params is the parameters object.
99 /// \param level is the compression level [0-9]. Nine is the highest level, but it is also the
100 /// slowest. One is the lowest level. Zero denotes no compression, but the GZIP filter
101 /// is still turned on. To disable, call ioda_variable_creation_parameters_noCompress instead.
102 /// \pre params must be valid.
103 /// \pre level ranges from zero to nine, inclusive.
105  struct ioda_variable_creation_parameters* params, int level);
106 
107 /// \brief Compress with SZIP.
108 /// \param[in] params is the parameters object.
109 /// \param PixelsPerBlock specifies the pixels per block.
110 /// \param options specified additional options for this filter.
111 /// \see VariableCreationParameters::compressWithSZIP for parameter meanings.
112 /// \pre params must be valid.
113 /// \pre PixelsPerBlock and options must be valid values according to the SZIP documentation.
115  struct ioda_variable_creation_parameters* params, unsigned PixelsPerBlock, unsigned options);
116 
117 /// @}
118 /// @name Attributes
119 /// @todo Implement these!
120 /// @todo Attribute_Creator_Store should derive from Has_Attributes.
121 
122 /*!
123  * @brief Class-like encapsulation of C variable creation parameters functions.
124  * @see c_ioda for an example.
125  * @see use_c_ioda for an example.
126  * @todo Add attributes!
127  */
130  struct ioda_variable_creation_parameters* (*create)();
131  struct ioda_variable_creation_parameters* (*clone)(
132  const struct ioda_variable_creation_parameters*);
133 
134  // Fill values
135 #define IODA_VCP_FILL_TEMPLATE2(funcnamestr, typ) \
136  void (*funcnamestr)(struct ioda_variable_creation_parameters*, typ);
138 
139  void (*chunking)(struct ioda_variable_creation_parameters*, bool, size_t, const ptrdiff_t*);
142  void (*compressWithSZIP)(struct ioda_variable_creation_parameters*, unsigned, unsigned);
143  // Attributes TODO
144 };
145 
146 #ifdef __cplusplus
147 }
148 #endif
149 
150 /// @} // End Doxygen block
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.
Definition: defs.h:110
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)
#define IODA_VCP_FILL_TEMPLATE2(funcnamestr, typ)
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 *)
C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(setFillValue, IODA_VCP_FILL_TEMPLATE2)
#define IODA_VCP_FILL_TEMPLATE(funcnamestr, typ)
Sets a template for the fill value functions.
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.
C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(ioda_variable_creation_parameters_setFillValue, IODA_VCP_FILL_TEMPLATE)
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 *)
Class-like encapsulation of C variable creation parameters functions.