IODA
Has_Variables_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_has_variables Has_Variables
9  * \brief Provides the C-style interface for ioda::Has_Variables objects.
10  * \ingroup ioda_c_api
11  *
12  * @{
13  * \file Has_Variables_c.h
14  * \brief @link ioda_has_variables C bindings @endlink for ioda::Has_Variables
15  */
16 #include <stdbool.h>
17 
18 #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;
33 
34 /// \brief Deallocates a ioda_has_variables.
35 /// \param has_vars is the object.
37 
38 /// \brief List the names of the variables associated with an object.
40 
41 /// \brief Check if a variable exists.
42 /// \param[in] has_vars is the base container of the variables.
43 /// \see ioda_group_vars to get the variable container from a group.
44 /// \param[in] name is the candidate variable name.
45 /// \param sz_name is strlen(name). Needed for Fortran compatability.
46 /// \returns 1 if the variable exists.
47 /// \returns 0 if the variable does not exist.
48 /// \returns -1 on failure, such as when a precondition is invalid.
49 /// \pre has_vars must be valid.
50 /// \pre name must be valid.
51 IODA_DL int ioda_has_variables_exists(const struct ioda_has_variables* has_vars, size_t sz_name,
52  const char* name);
53 
54 /// \brief Remove a variable.
55 /// \param[in] has_vars is the container of the variable.
56 /// \param[in] name is the variable name.
57 /// \param sz_name is strlen(name). Fortran compatability.
58 /// \returns true if the variable is successfully removed.
59 /// \returns false on error.
60 /// \pre has_vars must be valid.
61 /// \pre name must be a valid variable name. The variable must exist.
62 /// \pre The variable must not be opened (have a valid handle) elsewhere.
63 /// \post The variable no longer exists.
64 IODA_DL bool ioda_has_variables_remove(struct ioda_has_variables* has_vars, size_t sz_name,
65  const char* name);
66 
67 /// \brief Open (access) a variable by name.
68 /// \param[in] has_vars is the container of the variable.
69 /// \param[in] name is the variable name.
70 /// \param sz_name is strlen(name). Fortran compatability.
71 /// \returns A handle to the variable on success.
72 /// \returns NULL on error.
73 /// \pre has_vars must be valid.
74 /// \pre name must be a valid variable name. The variable must exist.
76  size_t sz_name, const char* name);
77 
78 // ioda_has_variables_create_* functions
79 
80 /*!
81  * \defgroup ioda_has_variables_create ioda_has_variables_create
82  * \brief Create a new variable.
83  * \details This is documentation for a series of functions in C that attempt to emulate C++
84  * templates using macro magic. The template parameter SUFFIX is written into the
85  * function name. Ex:, to create an integer variable, call
86  * ```ioda_has_variables_create_int```.
87  * \tparam SUFFIX is the type (int, long, int64_t) that is appended to this function name
88  * in the C interface.
89  * \param has_vars[in] is the container of the variable.
90  * \param name[in] is the name of the new variable. This name must not already exist.
91  * \param sz_name is strlen(name). Fortran compatability.
92  * \param n_dims is the dimensionality of the new variable.
93  * \param dims is an array of dimension lengths of the new variable. The array must be
94  * of rank n_dims.
95  * \param max_dims is an array of maximum dimension lengths of the new variable.
96  * The array must be of rank n_dims.
97  * \see ioda_group_vars for a method to get a group's associated has_variables object.
98  * \return the new variable on success.
99  * \return NULL on failure.
100  * \pre has_vars must be valid. The group associated with has_vars must still exist.
101  * \pre name must be a valid name. No other object (variable OR group) with this name
102  * should exist at this group level.
103  * \pre dims must be valid and have the rank of n_dims.
104  * \post A variable of the specified name, type, and dimensions now exists.
105  * @{
106  */
107 
108 /// \def IODA_HAS_VARIABLES_CREATE_TEMPLATE
109 /// \brief See @link ioda_has_variables_create ioda_has_variables_create @endlink
110 /// \see ioda_has_variables_create
111 #define IODA_HAS_VARIABLES_CREATE_TEMPLATE(funcnamestr, junk) \
112  IODA_DL struct ioda_variable* funcnamestr(struct ioda_has_variables* has_vars, size_t sz_name, \
113  const char* name, size_t n_dims, const long* dims, \
114  const long* max_dims, \
115  const struct ioda_variable_creation_parameters* \
116  params); // NOLINT: cppcheck complains about long
117 
119 
120 /*! @}
121  * @brief Class-like encapsulation of C has_variables functions.
122  * @see c_ioda for an example.
123  * @see use_c_ioda for an example.
124  */
126  void (*destruct)(struct ioda_has_variables*);
127  struct ioda_string_ret_t* (*list)(const struct ioda_has_variables*);
128  int (*exists)(const struct ioda_has_variables*, size_t, const char*);
129  bool (*remove)(struct ioda_has_variables*, size_t, const char*);
130  struct ioda_variable* (*open)(const struct ioda_has_variables*, size_t, const char*);
131 
132 #define IODA_HAS_VARIABLES_CREATE_FUNC_TEMPLATE(shortnamestr, basenamestr) \
133  struct ioda_variable* (*shortnamestr)( \
134  struct ioda_has_variables*, size_t, const char*, size_t, const long*, const long*, \
135  const struct ioda_variable_creation_parameters*); // NOLINT: cppcheck complains about long
136  C_TEMPLATE_FUNCTION_DECLARATION_3(create, ioda_has_variables_create,
138 
140 };
141 
142 #ifdef __cplusplus
143 }
144 #endif
145 
146 /// @} // End Doxygen block
#define IODA_HAS_VARIABLES_CREATE_FUNC_TEMPLATE(shortnamestr, basenamestr)
C bindings for ioda::VariableCreationParameters, used in ioda::Has_Variables::create.
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
#define IODA_HAS_VARIABLES_CREATE_TEMPLATE(funcnamestr, junk)
See ioda_has_variables_create .
C_TEMPLATE_FUNCTION_DECLARATION(ioda_has_variables_create, IODA_HAS_VARIABLES_CREATE_TEMPLATE)
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.
Class-like encapsulation of C has_variables functions.
C_TEMPLATE_FUNCTION_DECLARATION_3(create, ioda_has_variables_create, IODA_HAS_VARIABLES_CREATE_FUNC_TEMPLATE)
struct c_variable_creation_parameters VariableCreationParams
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 *)
Class-like encapsulation of C variable creation parameters functions.
Return type when arrays of strings are encountered.
Definition: String_c.h:24