IODA
Has_Attributes_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_has_attributes
8  * @{
9  * \file Has_Attributes_c.cpp
10  * \brief @link ioda_has_attributes C bindings @endlink for ioda::Has_Attributes
11  */
12 
13 #include "./structs_c.h"
14 #include "ioda/C/Group_c.h"
16 #include "ioda/Group.h"
17 
18 extern "C" {
19 
21  C_TRY;
22  Expects(atts != nullptr);
23  delete atts;
25 }
26 
28  ioda_string_ret_t* res = nullptr;
29  C_TRY;
30  Expects(atts != nullptr);
31  std::vector<std::string> vals = atts->atts.list();
32 
33  res = create_str_vector_c(vals);
34  C_CATCH_RETURN_FREE(res, nullptr, res);
35 }
36 
37 int ioda_has_attributes_exists(const ioda_has_attributes* atts, size_t sz, const char* name) {
38  C_TRY;
39  Expects(atts != nullptr);
40  Expects(name != nullptr);
41  bool exists = atts->atts.exists(std::string(name, sz));
42  C_CATCH_AND_RETURN((exists) ? 1 : 0, -1);
43 }
44 
45 bool ioda_has_attributes_remove(ioda_has_attributes* atts, size_t sz, const char* name) {
46  C_TRY;
47  Expects(atts != nullptr);
48  Expects(name != nullptr);
49  atts->atts.remove(std::string(name, sz));
50  C_CATCH_AND_RETURN(true, false);
51 }
52 
54  const char* name) {
55  ioda_attribute* res = nullptr;
56  C_TRY;
57  Expects(atts != nullptr);
58  Expects(name != nullptr);
59  res = new ioda_attribute;
60  Expects(res != nullptr);
61  res->att = atts->atts.open(std::string(name, sz));
62  C_CATCH_RETURN_FREE(res, nullptr, res);
63 }
64 
65 bool ioda_has_attributes_rename(ioda_has_attributes* atts, size_t sz_old, const char* oldname,
66  size_t sz_new, const char* newname) {
67  C_TRY;
68  Expects(atts != nullptr);
69  Expects(oldname != nullptr);
70  Expects(newname != nullptr);
71  atts->atts.rename(std::string(oldname, sz_old), std::string(newname, sz_new));
72  C_CATCH_AND_RETURN(true, false);
73 }
74 
75 #define IODA_HAS_ATTRIBUTES_CREATE_IMPL(funcnamestr, Type) \
76  IODA_DL ioda_attribute* funcnamestr(ioda_has_attributes* has_atts, size_t sz_name, \
77  const char* name, size_t n_dims, const long* dims) { \
78  ioda_attribute* res = nullptr; \
79  C_TRY; \
80  Expects(has_atts != nullptr); \
81  Expects(name != nullptr); \
82  Expects(dims != nullptr); \
83  std::vector<ioda::Dimensions_t> vdims(n_dims); \
84  for (size_t i = 0; i < n_dims; ++i) vdims[i] = (ioda::Dimensions_t)dims[i]; \
85  res = new ioda_attribute; \
86  Expects(res != nullptr); \
87  res->att = has_atts->atts.create<Type>(std::string(name, sz_name), vdims); \
88  C_CATCH_RETURN_FREE(res, nullptr, res); \
89  }
90 
92 }
93 
94 /// @}
Interfaces for ioda::Group and related classes.
C bindings for ioda::Group
C bindings interface to templated C++ ioda classes and functions.
virtual std::vector< std::string > list() const
virtual void remove(const std::string &attname)
Delete an Attribute with the specified name.
virtual Attribute open(const std::string &name) const
Open an Attribute by name.
virtual void rename(const std::string &oldName, const std::string &newName)
Rename an Attribute.
virtual bool exists(const std::string &attname) const
Does an Attribute with the specified name exist?
#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_CATCH_RETURN_FREE(retval_on_success, retval_on_error, freeable)
Like C_CATCH_AND_RETURN, but free any in-function allocated C resource before returning to avoid memo...
#define C_TRY
Goes with C_CATCH_AND_TERMINATE.
ioda_string_ret_t * ioda_has_attributes_list(const ioda_has_attributes *atts)
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 void ioda_has_attributes_destruct(struct ioda_has_attributes *has_atts)
Deallocates a ioda_has_attributes_object.
C_TEMPLATE_FUNCTION_DEFINITION(ioda_has_attributes_create, IODA_HAS_ATTRIBUTES_CREATE_IMPL)
IODA_DL bool ioda_has_attributes_remove(struct ioda_has_attributes *has_atts, size_t sz_name, const char *name)
Remove an attribute.
ioda_attribute * ioda_has_attributes_open(const ioda_has_attributes *atts, size_t sz, const char *name)
#define IODA_HAS_ATTRIBUTES_CREATE_IMPL(funcnamestr, Type)
int ioda_has_attributes_exists(const ioda_has_attributes *atts, size_t sz, const char *name)
ioda::Attribute att
Definition: structs_c.h:30
ioda::Has_Attributes atts
Definition: structs_c.h:24
Return type when arrays of strings are encountered.
Definition: String_c.h:24
C wrappers for ioda classes and structures. Private header. Can have C++!
ioda_string_ret_t * create_str_vector_c(const std::vector< std::string > &vdata) noexcept
Definition: structs_c.h:43