Loading [MathJax]/extensions/tex2jax.js
IODA
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Group_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_group
8  * @{
9  * \file Group_c.cpp
10  * \brief @link ioda_group C bindings @endlink for ioda::Group
11  */
12 
13 #include "ioda/C/Group_c.h"
14 
15 #include "./structs_c.h"
16 #include "ioda/C/String_c.h"
17 #include "ioda/C/c_binding_macros.h" // C_TRY and C_CATCH_AND_TERMINATE
18 #include "ioda/Group.h"
19 
20 extern "C" {
21 
23  C_TRY;
24  Expects(g != nullptr);
25  delete g;
27 }
28 
30  ioda_string_ret_t* ret = nullptr;
31  C_TRY;
32  Expects(g != nullptr);
33  std::vector<std::string> vals = g->g.list();
34 
35  ret = create_str_vector_c(vals);
36  C_CATCH_RETURN_FREE(ret, NULL, ret);
37 }
38 
39 int ioda_group_exists(const ioda_group* g, size_t sz, const char* name) {
40  C_TRY;
41  Expects(g != nullptr);
42  Expects(name != nullptr);
43  C_CATCH_AND_RETURN((g->g.exists(std::string(name, sz))) ? 1 : 0, -1);
44 }
45 
46 ioda_group* ioda_group_create(ioda_group* g, size_t sz, const char* name) {
47  ioda_group* res = nullptr;
48  C_TRY;
49  Expects(g != nullptr);
50  Expects(name != nullptr);
51  res = new ioda_group;
52  Expects(res != nullptr);
53  res->g = g->g.create(std::string(name, sz));
54  C_CATCH_RETURN_FREE(res, NULL, res);
55 }
56 
57 ioda_group* ioda_group_open(const ioda_group* g, size_t sz, const char* name) {
58  ioda_group* res = nullptr;
59  C_TRY;
60  Expects(g != nullptr);
61  Expects(name != nullptr);
62  res = new ioda_group;
63  Expects(res != nullptr);
64  res->g = g->g.open(std::string(name, sz));
65  C_CATCH_RETURN_FREE(res, NULL, res);
66 }
67 
69  ioda_has_attributes* res = nullptr;
70  C_TRY;
71  Expects(g != nullptr);
72  res = new ioda_has_attributes;
73  res->atts = g->g.atts;
74  C_CATCH_RETURN_FREE(res, NULL, res);
75 }
76 
78  ioda_has_variables* res = nullptr;
79  C_TRY;
80  Expects(g != nullptr);
81  res = new ioda_has_variables;
82  res->vars = g->g.vars;
83  C_CATCH_RETURN_FREE(res, NULL, res);
84 }
85 }
86 
87 /// @}
Interfaces for ioda::Group and related classes.
C bindings for ioda::Group
C bindings .
C bindings interface to templated C++ ioda classes and functions.
#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_DL ioda_has_variables * ioda_group_vars(const ioda_group *g)
Definition: Group_c.cpp:77
IODA_DL void ioda_group_destruct(struct ioda_group *grp)
Frees a ioda_group.
Definition: Group_c.cpp:22
ioda_group * ioda_group_open(const ioda_group *g, size_t sz, const char *name)
Definition: Group_c.cpp:57
IODA_DL struct ioda_group * ioda_group_create(struct ioda_group *base, size_t sz, const char *name)
Create a group.
Definition: Group_c.cpp:46
IODA_DL ioda_has_attributes * ioda_group_atts(const ioda_group *g)
Definition: Group_c.cpp:68
ioda_string_ret_t * ioda_group_list(const ioda_group *g)
Definition: Group_c.cpp:29
int ioda_group_exists(const ioda_group *g, size_t sz, const char *name)
Definition: Group_c.cpp:39
ioda::Group g
Definition: structs_c.h:21
ioda::Has_Attributes atts
Definition: structs_c.h:24
ioda::Has_Variables vars
Definition: structs_c.h:27
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