IODA
Has_Attributes_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_attributes Has_Attributes
9  * \brief Provides the C-style interface for ioda::Has_Attributes objects.
10  * \ingroup ioda_c_api
11  *
12  * @{
13  * \file Has_Attributes_c.h
14  * \brief @link ioda_has_attributes C bindings @endlink for ioda::Has_Attributes
15  */
16 #include <stdbool.h>
17 
18 #include "../defs.h"
19 #include "./c_binding_macros.h"
20 
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24 
25 struct ioda_group;
26 struct ioda_has_attributes;
27 struct ioda_attribute;
28 
29 /// \brief Deallocates a ioda_has_attributes_object.
30 /// \param has_atts is the object.
32 
33 /// \brief List the names of the attributes associated with an object.
35 
36 /// \brief Check if an attribute exists.
37 /// \param[in] has_atts is the base container of the attributes.
38 /// \param[in] name is the candidate attribute name.
39 /// \param sz_name is strlen(name). Needed for Fortran compatability.
40 /// \returns 1 if the attribute exists.
41 /// \returns 0 if the attribute does not exist.
42 /// \returns -1 on failure, such as when a precondition is invalid.
43 /// \pre has_atts must be valid.
44 /// \pre name must be valid.
45 IODA_DL int ioda_has_attributes_exists(const struct ioda_has_attributes* has_atts, size_t sz_name,
46  const char* name);
47 
48 /// \brief Remove an attribute.
49 /// \param[in] has_atts is the container of the attribute.
50 /// \param[in] name is the attribute name.
51 /// \param sz_name is strlen(name). Fortran compatability.
52 /// \returns true if the attribute is successfully removed.
53 /// \returns false on error.
54 /// \pre has_atts must be valid.
55 /// \pre name must be a valid attribute name. The attribute must exist.
56 /// \pre The attribute must not be opened (have a valid handle) elsewhere.
57 /// \post The attribute no longer exists.
58 IODA_DL bool ioda_has_attributes_remove(struct ioda_has_attributes* has_atts, size_t sz_name,
59  const char* name);
60 
61 /// \brief Open (access) an attribute by name.
62 /// \param[in] has_atts is the container of the attribute.
63 /// \param[in] name is the attribute name.
64 /// \param sz_name is strlen(name). Fortran compatability.
65 /// \returns A handle to the attribute on success.
66 /// \returns NULL on error.
67 /// \pre has_atts must be valid.
68 /// \pre name must be a valid attribute name. The attribute must exist.
70  size_t sz_name, const char* name);
71 
72 /// \brief Rename an attribute.
73 /// \param[in] has_atts is the container of the attribute.
74 /// \param oldname is the current name of the attribute.
75 /// \param sz_oldname is strlen(oldname). Fortran compatability.
76 /// \param newname is the desired name of the attribute.
77 /// \param sz_newname is strlen(newname). Fortran compatability.
78 /// \returns True on success.
79 /// \returns False on error.
80 /// \pre has_atts must be valid.
81 /// \pre oldname must be a valid attribute name. The attribute must exist.
82 /// \pre newname must be a valid attribute name. An attribute with this name must
83 /// not already exist.
84 IODA_DL bool ioda_has_attributes_rename(struct ioda_has_attributes* has_atts, size_t sz_oldname,
85  const char* oldname, size_t sz_newname,
86  const char* newname);
87 
88 // ioda_has_attributes_create_* functions
89 /*!
90  * \defgroup ioda_has_attributes_create ioda_has_attributes_create
91  * \brief Create a new 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 written into the function name.
94  * Ex:, to create an integer attribute, call
95  * ```ioda_has_attributes_create_int```.
96  * \tparam SUFFIX is the type (int, long, int64_t) that is appended to this function name in
97  * the C interface.
98  * \param has_atts[in] is the container of the attribute. Attributes can be attached to
99  * Groups or Variables.
100  * \param name[in] is the name of the new attribute. This name must not already exist.
101  * \param sz_name is strlen(name). Fortran compatability.
102  * \param n_dims is the dimensionality of the new attribute.
103  * \param dims is an array of dimension lengths of the new attribute. The
104  * array must be of rank n_dims.
105  * \see ioda_group_atts for a method to get a group's associated has_attributes object.
106  * \see ioda_variable_atts for a method to get a variable's associated has_attributes object.
107  * \return the new attribute on success.
108  * \return NULL on failure.
109  * \pre has_atts must be valid. The variable or group associated with has_atts must still exist.
110  * \pre name must be a valid name. No attribute with this name should exist in has_atts.
111  * \pre dims must be valid and have the rank of n_dims.
112  * \post An attribute of the specified name, type, and dimensions now exists.
113  * @{
114  */
115 
116 // isA - int ioda_attribute_isa_char(const ioda_attribute*);
117 /// \def IODA_HAS_ATTRIBUTES_CREATE_TEMPLATE
118 /// \brief See @link ioda_has_attributes_create ioda_has_attributes_create @endlink
119 /// \see ioda_has_attributes_create
120 
121 #define IODA_HAS_ATTRIBUTES_CREATE_TEMPLATE(funcnamestr, junk) \
122  IODA_DL struct ioda_attribute* funcnamestr(struct ioda_has_attributes* has_atts, size_t sz_name, \
123  const char* name, size_t n_dims, const long* dims);
124 
126 
127 /*! @}
128  * @brief Class-like encapsulation of C has_attributes functions.
129  * @see c_ioda for an example.
130  * @see use_c_ioda for an example.
131  */
132 
134  void (*destruct)(struct ioda_has_attributes*);
135  struct ioda_string_ret_t* (*list)(const struct ioda_has_attributes*);
136  int (*exists)(const struct ioda_has_attributes*, size_t, const char*);
137  bool (*remove)(struct ioda_has_attributes*, size_t, const char*);
138  struct ioda_attribute* (*open)(const struct ioda_has_attributes*, size_t, const char*);
139 #define IODA_HAS_ATTRIBUTES_CREATE_FUNC_TEMPLATE(shortnamestr, basenamestr) \
140  struct ioda_attribute* (*shortnamestr)(struct ioda_has_attributes*, size_t, const char*, size_t, \
141  const long*); // NOLINT: cppcheck complains about long
142  C_TEMPLATE_FUNCTION_DECLARATION_3(create, ioda_has_attributes_create,
144 
145  /// \note stdio.h on some platforms already defines rename!
146  bool (*rename_att)(struct ioda_has_attributes*, size_t, const char*, size_t, const char*);
147 };
148 
149 #ifdef __cplusplus
150 }
151 #endif
152 
153 /// @} // End Doxygen block
#define IODA_HAS_ATTRIBUTES_CREATE_FUNC_TEMPLATE(shortnamestr, basenamestr)
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_ATTRIBUTES_CREATE_TEMPLATE(funcnamestr, junk)
See ioda_has_attributes_create .
C_TEMPLATE_FUNCTION_DECLARATION(ioda_has_attributes_create, IODA_HAS_ATTRIBUTES_CREATE_TEMPLATE)
IODA_DL bool ioda_has_attributes_rename(struct ioda_has_attributes *has_atts, size_t sz_oldname, const char *oldname, size_t sz_newname, const char *newname)
Rename an attribute.
IODA_DL struct ioda_attribute * ioda_has_attributes_open(const struct ioda_has_attributes *has_atts, size_t sz_name, const char *name)
Open (access) an attribute by name.
IODA_DL void ioda_has_attributes_destruct(struct ioda_has_attributes *has_atts)
Deallocates a ioda_has_attributes_object.
IODA_DL struct ioda_string_ret_t * ioda_has_attributes_list(const struct ioda_has_attributes *)
List the names of the attributes associated with an object.
IODA_DL bool ioda_has_attributes_remove(struct ioda_has_attributes *has_atts, size_t sz_name, const char *name)
Remove an attribute.
IODA_DL int ioda_has_attributes_exists(const struct ioda_has_attributes *has_atts, size_t sz_name, const char *name)
Check if an attribute exists.
Class-like encapsulation of C has_attributes functions.
bool(* rename_att)(struct ioda_has_attributes *, size_t, const char *, size_t, const char *)
C_TEMPLATE_FUNCTION_DECLARATION_3(create, ioda_has_attributes_create, IODA_HAS_ATTRIBUTES_CREATE_FUNC_TEMPLATE)
int(* exists)(const struct ioda_has_attributes *, size_t, const char *)
void(* destruct)(struct ioda_has_attributes *)
bool(* remove)(struct ioda_has_attributes *, size_t, const char *)
Return type when arrays of strings are encountered.
Definition: String_c.h:24