IODA
Attribute_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_attribute
8  * @{
9  * \file Attribute_c.cpp
10  * \brief @link ioda_attribute C bindings @endlink for ioda::Attribute
11  */
12 
13 #include "ioda/C/Attribute_c.h"
14 
15 #include "./structs_c.h"
18 
19 extern "C" {
20 
22  C_TRY;
23  Expects(att != nullptr);
24  delete att;
26 }
27 
29  ioda_dimensions* res = nullptr;
30  C_TRY;
31  Expects(att != nullptr);
32  res = new ioda_dimensions;
33  Expects(res != nullptr);
34  res->d = att->att.getDimensions();
35  C_CATCH_RETURN_FREE(res, nullptr, res);
36 }
37 
38 // isA
39 #define IODA_ATTRIBUTE_ISA_IMPL(funcnamestr, Type) \
40  IODA_DL int funcnamestr(const ioda_attribute* att) { \
41  C_TRY; \
42  Expects(att != nullptr); \
43  bool res = att->att.isA<Type>(); \
44  C_CATCH_AND_RETURN((res) ? 1 : 0, -1); \
45  }
46 
48 
49 // write
50 
51 #define IODA_ATTRIBUTE_WRITE(funcnamestr, Type) \
52  IODA_DL bool funcnamestr(ioda_attribute* att, size_t sz, const Type* vals) { \
53  C_TRY; \
54  Expects(att != nullptr); \
55  Expects(vals != nullptr); \
56  att->att.write<Type>(gsl::span<const Type>(vals, sz)); \
57  C_CATCH_AND_RETURN(true, false); \
58  }
59 
61 
62 IODA_DL bool ioda_attribute_write_str(ioda_attribute* att, size_t sz, const char* const* vals) {
63  C_TRY;
64  Expects(att != nullptr);
65  Expects(vals != nullptr);
66  std::vector<std::string> vdata(sz);
67  for (size_t i = 0; i < sz; ++i) vdata[i] = std::string(vals[i]);
68  att->att.write<std::string>(vdata);
69  C_CATCH_AND_RETURN(true, false);
70 }
71 
72 // read
73 
74 #define IODA_ATTRIBUTE_READ(funcnamestr, Type) \
75  IODA_DL bool funcnamestr(const ioda_attribute* att, size_t sz, Type* vals) { \
76  C_TRY; \
77  Expects(att != nullptr); \
78  Expects(vals != nullptr); \
79  att->att.read<Type>(gsl::span<Type>(vals, sz)); \
80  C_CATCH_AND_RETURN(true, false); \
81  }
82 
84 
86  C_TRY;
87  Expects(att != nullptr);
88  std::vector<std::string> vdata;
89  att->att.read<std::string>(vdata);
90 
91  auto* res = create_str_vector_c(vdata);
92  C_CATCH_AND_RETURN(res, nullptr);
93 }
94 }
95 
96 /// @}
Interfaces for ioda::Attribute and related classes.
C bindings for ioda::Attribute
C bindings interface to templated C++ ioda classes and functions.
virtual Dimensions getDimensions() const
Get Attribute's dimensions.
Definition: Attribute.cpp:35
virtual Attribute_Implementation write(gsl::span< char > data, const Type &type)
The fundamental write function. Backends overload this function to implement all write operations.
Definition: Attribute.cpp:65
virtual Attribute_Implementation read(gsl::span< char > data, const Type &in_memory_dataType) const
The fundamental read function. Backends overload this function to implement all read operations.
Definition: Attribute.cpp:75
IODA_DL void ioda_attribute_destruct(struct ioda_attribute *att)
Deallocates an attribute.
Definition: Attribute_c.cpp:21
#define IODA_ATTRIBUTE_ISA_IMPL(funcnamestr, Type)
Definition: Attribute_c.cpp:39
C_TEMPLATE_FUNCTION_DEFINITION(ioda_attribute_isa, IODA_ATTRIBUTE_ISA_IMPL)
IODA_DL ioda_string_ret_t * ioda_attribute_read_str(const ioda_attribute *att)
Definition: Attribute_c.cpp:85
#define IODA_ATTRIBUTE_READ(funcnamestr, Type)
Definition: Attribute_c.cpp:74
#define IODA_ATTRIBUTE_WRITE(funcnamestr, Type)
Definition: Attribute_c.cpp:51
IODA_DL bool ioda_attribute_write_str(ioda_attribute *att, size_t sz, const char *const *vals)
Definition: Attribute_c.cpp:62
ioda_dimensions * ioda_attribute_get_dimensions(const ioda_attribute *att)
Definition: Attribute_c.cpp:28
C_TEMPLATE_FUNCTION_DEFINITION_NOSTR(ioda_attribute_write, IODA_ATTRIBUTE_WRITE)
#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.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
ioda::Attribute att
Definition: structs_c.h:30
ioda::Dimensions d
Definition: structs_c.h:36
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