IODA
Group_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_group Groups
9  * \brief Provides the C-style interface for ioda::Group objects.
10  * \ingroup ioda_c_api
11  *
12  * @{
13  * \file Group_c.h
14  * \brief @link ioda_group C bindings @endlink for ioda::Group
15  */
16 #include "../defs.h"
17 #include "Has_Attributes_c.h"
18 #include "Has_Variables_c.h"
19 
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 struct ioda_group;
25 struct ioda_has_attributes;
26 struct ioda_has_variables;
27 struct ioda_string_ret_t;
28 struct c_has_attributes;
29 struct c_has_variables;
30 
31 /// \brief Frees a ioda_group.
32 /// \param grp is the group to free.
33 /// \pre grp must be a valid group returned by a ioda_group_* call or an engine invocation.
34 IODA_DL void ioda_group_destruct(struct ioda_group* grp);
35 
36 /// \brief Lists all one-level child groups.
37 /// \see String_c.h.
38 /// \param grp is the group. Must be valid.
39 /// \returns ioda_string_ret_t, which is an array of strings that should be freed after use by
40 /// ioda_string_ret_t_destruct (c_ioda.Strings.destruct).
42 
43 /// \brief Check if a group exists.
44 /// \see ioda::Group::exists
45 /// \param[in] base is the base group.
46 /// \param child_sz is the size of the child string, as strlen(child). Explicitly specified for
47 /// Fortran bindings.
48 /// \param[in] child is the name of the group whose existence is tested.
49 /// \returns 1 if the group exists.
50 /// \returns 0 if the group does not exist.
51 /// \returns -1 on error, such as if base or child is NULL, or if there is a missing
52 /// intermediary group between base and child.
53 IODA_DL int ioda_group_exists(const struct ioda_group* base, size_t child_sz, const char* child);
54 
55 /// \brief Create a group.
56 /// \see ioda::Group::create.
57 /// \param[in] base is the base group.
58 /// \param[in] name is the name of the new group.
59 /// \param sz is the length of the group name (as in strlen(name)). Explicitly specified
60 /// for Fortran bindings.
61 /// \returns A handle to the new group on success. The handle should be freed after use by
62 /// ioda_group_destruct (c_ioda.Groups.destruct).
63 /// \returns NULL on failure.
64 /// \pre base must be valid. name must be non-null.
65 /// \post The group will now exist, and the returned on handle must be freed by caller
66 /// after use. Upon failure, base is unchanged.
67 IODA_DL struct ioda_group* ioda_group_create(struct ioda_group* base, size_t sz, const char* name);
68 
69 /// \brief Open a group.
70 /// \see ioda::Group::open.
71 /// \param base is the base group
72 /// \param name is the name of the group to be opened.
73 /// \param sz is the length of the group name, as strlen(name). Explicitly specified
74 /// for Fortran bindings.
75 /// \returns A handle to the group on success, which must be freed after use.
76 /// \returns NULL on failure.
77 /// \pre base must be valid. name must be non-null.
78 IODA_DL struct ioda_group* ioda_group_open(const struct ioda_group* base, size_t sz,
79  const char* name);
80 
81 /// \brief Access a group's attributes.
82 /// \see ioda::Group::atts.
83 /// \param[in] grp is the group whose attributes are being accessed.
84 /// \returns A handle to the Has_Attributes container on success (you must free after use).
85 /// \returns NULL on failure.
87 
88 /// \brief Access a group's variables.
89 /// \see ioda::Group::vars.
90 /// \param[in] grp is the group whose variables are being accessed.
91 /// \returns A handle to the Has_Variables container on success (free after use).
92 /// \returns NULL on failure.
94 
95 /// \brief Spiffy C++-like container of function pointers for group methods.
96 /// \see use_c_ioda.
97 struct c_ioda_group {
98  void (*destruct)(struct ioda_group*);
99  struct ioda_string_ret_t* (*list)(const struct ioda_group*);
100  int (*exists)(const struct ioda_group*, size_t, const char*);
101  struct ioda_group* (*create)(struct ioda_group*, size_t, const char*);
102  struct ioda_group* (*open)(const struct ioda_group*, size_t, const char*);
103  struct ioda_has_attributes* (*getAtts)(const struct ioda_group*);
104  struct ioda_has_variables* (*getVars)(const struct ioda_group*);
105 
106  struct c_has_attributes atts;
107  struct c_has_variables vars;
108 };
109 
110 #ifdef __cplusplus
111 }
112 #endif
113 
114 /// @} // End Doxygen block
C bindings for ioda::Has_Attributes
C bindings for ioda::Has_Variables
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Definition: defs.h:110
IODA_DL void ioda_group_destruct(struct ioda_group *grp)
Frees a ioda_group.
Definition: Group_c.cpp:22
IODA_DL struct ioda_string_ret_t * ioda_group_list(const struct ioda_group *grp)
Lists all one-level child groups.
IODA_DL struct ioda_has_attributes * ioda_group_atts(const struct ioda_group *grp)
Access a group's attributes.
IODA_DL int ioda_group_exists(const struct ioda_group *base, size_t child_sz, const char *child)
Check if a group exists.
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 struct ioda_has_variables * ioda_group_vars(const struct ioda_group *grp)
Access a group's variables.
IODA_DL struct ioda_group * ioda_group_open(const struct ioda_group *base, size_t sz, const char *name)
Open a group.
Class-like encapsulation of C has_attributes functions.
Class-like encapsulation of C has_variables functions.
Spiffy C++-like container of function pointers for group methods.
Definition: Group_c.h:97
int(* exists)(const struct ioda_group *, size_t, const char *)
Definition: Group_c.h:100
struct c_has_attributes atts
Definition: Group_c.h:106
struct c_has_variables vars
Definition: Group_c.h:107
void(* destruct)(struct ioda_group *)
Definition: Group_c.h:98
Return type when arrays of strings are encountered.
Definition: String_c.h:24