IODA
Attribute_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_attribute Attributes
9  * \brief Provides the C-style interface for ioda::Attribute objects.
10  * \ingroup ioda_c_api
11  *
12  * @{
13  * \file Attribute_c.h
14  * \brief @link ioda_attribute C bindings @endlink for ioda::Attribute
15  */
16 
17 #include <stdbool.h>
18 
19 #include "../defs.h"
20 #include "./String_c.h"
21 #include "./c_binding_macros.h"
22 
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26 
27 struct ioda_attribute;
28 struct ioda_dimensions;
29 
30 /// \brief Deallocates an attribute.
31 /// \param att is the attribute to be destructed.
33 
34 /// \brief Gets an attribute's dimensions.
35 /// \param att is the attribute.
36 /// \returns A dimension object that contains the attribute's dimensions. Must be freed when no
37 /// longer used.
39 
40 /*! \defgroup ioda_attribute_isa ioda_attribute_isa
41  * \brief Checks an attribute's type.
42  * \details This is documentation for a series of functions in C that attempt to emulate C++
43  * templates using macro magic. The template parameter SUFFIX is written into the function name.
44  * Ex:, to check if an attribute is an integer, call
45  * ```ioda_attribute_isa_int```. To check if an attribute is a float, try
46  * ```ioda_attribute_isa_float```.
47  * \tparam SUFFIX is the type (int, long, int64_t) that is appended
48  * to this function name in the C interface.
49  * \param att is the attribute.
50  * \return an integer denoting yes (> 0), no (== 0), or failure (< 0).
51  * @{
52  */
53 
54 // isA - int ioda_attribute_isa_char(const ioda_attribute*);
55 /// \def IODA_ATTRIBUTE_ISA_TEMPLATE
56 /// \brief See @link ioda_attribute_isa ioda_attribute_isa @endlink
57 /// \see ioda_attribute_isa
58 #define IODA_ATTRIBUTE_ISA_TEMPLATE(funcnamestr, junk) \
59  IODA_DL int funcnamestr(const struct ioda_attribute* att);
60 C_TEMPLATE_FUNCTION_DECLARATION(ioda_attribute_isa, IODA_ATTRIBUTE_ISA_TEMPLATE);
61 
62 /*! @}
63  * \defgroup ioda_attribute_write ioda_attribute_write
64  * \brief Write data to an attribute.
65  * \details This is documentation for a series of functions in C that attempt to emulate C++
66  * templates using macro magic. The template parameter SUFFIX is written into the function name.
67  * Ex:, to write character data to an attribute, call
68  * ```ioda_attribute_write_char```. To write a string, try ```ioda_attribute_write_str```.
69  * \tparam SUFFIX is the type (int, long, int64_t) that is appended to this function name
70  * in the C interface.
71  * \param att is the attribute.
72  * \param sz is the size (in elements) of the data to write.
73  * \param vals is the data to write.
74  * \return true on success, false on failure.
75  * @{
76  */
77 
78 // write - bool ioda_attribute_write_char(ioda_attribute*, size_t, const char*);
79 /// \def IODA_ATTRIBUTE_WRITE_TEMPLATE
80 /// \brief See @link ioda_attribute_write ioda_attribute_write @endlink
81 /// \see ioda_attribute_write
82 
83 #define IODA_ATTRIBUTE_WRITE_TEMPLATE(funcnamestr, Type) \
84  IODA_DL bool funcnamestr(struct ioda_attribute* att, size_t sz, const Type* vals);
85 C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(ioda_attribute_write, IODA_ATTRIBUTE_WRITE_TEMPLATE);
86 IODA_DL bool ioda_attribute_write_str(struct ioda_attribute* att, size_t sz,
87  const char* const* vals);
88 
89 /*! @}
90  * \defgroup ioda_attribute_read ioda_attribute_read
91  * \brief Read data from an attribute.
92  * \details This is documentation for a series of functions in C that attempt to emulate C++
93  * templates using macro magic. The template parameter SUFFIX is appended into the
94  * function name. Ex:, to read character data from an attribute, call
95  * ```ioda_attribute_read_char```. To read a string, try ```ioda_attribute_read_str```.
96  * \tparam SUFFIX is the type (int, long, int64_t) that is appended to this function name
97  * in the C interface.
98  * \param att is the attribute.
99  * \param sz is the size (in elements) of the data to read.
100  * \param vals is the data to read.
101  * \return true on success, false on failure.
102  * @{
103  */
104 
105 // read - void ioda_attribute_read_char(const ioda_attribute*, size_t, char*);
106 /// \def IODA_ATTRIBUTE_READ_TEMPLATE
107 /// \brief See @link ioda_attribute_read ioda_attribute_read @endlink
108 /// \see ioda_attribute_read
109 #define IODA_ATTRIBUTE_READ_TEMPLATE(funcnamestr, Type) \
110  IODA_DL bool funcnamestr(const struct ioda_attribute* att, size_t sz, Type* vals);
111 C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(ioda_attribute_read, IODA_ATTRIBUTE_READ_TEMPLATE);
113 
114 /*! @}
115  * @brief Class-like encapsulation of C attribute functions.
116  * @see c_ioda for an example.
117  * @see use_c_ioda for an example.
118  */
119 struct c_attribute {
120  void (*destruct)(struct ioda_attribute*);
121  struct ioda_dimensions* (*getDimensions)(const struct ioda_attribute*);
122 
123 // int isA_char(const ioda_attribute*);
124 #define IODA_ATTRIBUTE_ISA_FUNC_TEMPLATE(shortnamestr, basenamestr) \
125  int (*shortnamestr)(const struct ioda_attribute*);
126  C_TEMPLATE_FUNCTION_DECLARATION_3(isA, ioda_attribute_isa, IODA_ATTRIBUTE_ISA_FUNC_TEMPLATE);
127 
128 // void write_char(ioda_attribute*, size_t, const Type*);
129 #define IODA_ATTRIBUTE_WRITE_FUNC_TEMPLATE(shortnamestr, basenamestr, Type) \
130  bool (*shortnamestr)(struct ioda_attribute*, size_t, const Type*);
131  C_TEMPLATE_FUNCTION_DECLARATION_4_NOSTR(write, ioda_attribute_write,
132  IODA_ATTRIBUTE_WRITE_FUNC_TEMPLATE);
133  bool (*write_str)(struct ioda_attribute*, size_t, const char* const*);
134 
135 // bool read_char(const ioda_attribute*, size_t, char*);
136 #define IODA_ATTRIBUTE_READ_FUNC_TEMPLATE(shortnamestr, basenamestr, Type) \
137  bool (*shortnamestr)(const struct ioda_attribute*, size_t, Type*);
138  C_TEMPLATE_FUNCTION_DECLARATION_4_NOSTR(read, ioda_attribute_read,
139  IODA_ATTRIBUTE_READ_FUNC_TEMPLATE);
140  struct ioda_string_ret_t* (*read_str)(const struct ioda_attribute*);
141 };
142 
143 #ifdef __cplusplus
144 }
145 #endif
146 
147 /*! @} // end Doxygen block
148  */
C bindings .
C bindings interface to templated C++ ioda classes and functions.
IODA_DL struct ioda_dimensions * ioda_attribute_get_dimensions(const struct ioda_attribute *att)
Gets an attribute's dimensions.
IODA_DL void ioda_attribute_destruct(struct ioda_attribute *att)
Deallocates an attribute.
Definition: Attribute_c.cpp:21
IODA_DL ioda_string_ret_t * ioda_attribute_read_str(const ioda_attribute *att)
Definition: Attribute_c.cpp:85
IODA_DL bool ioda_attribute_write_str(ioda_attribute *att, size_t sz, const char *const *vals)
Definition: Attribute_c.cpp:62
#define C_TEMPLATE_FUNCTION_DECLARATION_4_NOSTR(shortname, basename, PATTERN)
#define C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(funcname, PATTERN)
#define C_TEMPLATE_FUNCTION_DECLARATION(funcname, PATTERN)
Used to expand templates to provide bindings for template-deprived languages (C, Fortran).
#define C_TEMPLATE_FUNCTION_DECLARATION_3(shortname, basename, PATTERN)
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
Return type when arrays of strings are encountered.
Definition: String_c.h:24