IODA
01a-GroupsAndObsSpaces.c
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 
8 /*! \defgroup ioda_c_ex Examples
9  * \brief C Usage Examples
10  * \ingroup ioda_c
11  *
12  * @{
13  * \dir C
14  * \brief C ioda-engines usage examples
15  */
16 
17 /*!
18  * \defgroup ioda_c_ex_1 Ex 1: Groups and ObsSpaces
19  * \brief Group manipulation using the C interface
20  * \details This example parallels the C++ examples.
21  * \see 01-GroupsAndObsSpaces.c for the example.
22  * \see 01-GroupsAndObsSpaces.cpp for parallel C++ comments and the walkthrough.
23  *
24  * @{
25  *
26  * \file 01-GroupsAndObsSpaces.c
27  * \brief @link ioda_c_ex_1 Example 1 @endlink for ioda's C API.
28  **/
29 
30 #include <stdio.h>
31 #include <string.h>
32 
33 #include "ioda/C/Engines_c.h"
34 #include "ioda/C/Group_c.h"
35 #include "ioda/C/String_c.h"
36 #include "ioda/defs.h" // Always include this first.
37 
38 #define sslin(x) #x
39 #define slin(x) sslin(x)
40 #define doErr \
41  { \
42  errlin = "Error in " __FILE__ " at line " slin(__LINE__) ".\n"; \
43  goto hadError; \
44  }
45 
46 int main(int argc, char** argv) {
47  int errval = 0;
48  const char* errlin = NULL;
49  struct ioda_group *grpFromFile = NULL, *g1 = NULL, *g2 = NULL, *g3 = NULL, *g4 = NULL, *g5 = NULL,
50  *g6 = NULL, *opened_g3 = NULL, *opened_g6 = NULL;
51  struct ioda_string_ret_t *g3_list = NULL, *g4_list = NULL;
52 
53  grpFromFile = ioda_Engines_constructFromCmdLine(argc, argv, "Example-01a-C.hdf5");
54  if (!grpFromFile) doErr;
55 
56  g1 = ioda_group_create(grpFromFile, 2, "g1");
57  if (!g1) doErr;
58  g2 = ioda_group_create(grpFromFile, 2, "g2");
59  if (!g2) doErr;
60  g3 = ioda_group_create(g1, 2, "g3");
61  if (!g3) doErr;
62  g4 = ioda_group_create(g3, 2, "g4");
63  if (!g4) doErr;
64  g5 = ioda_group_create(g4, 2, "g5");
65  if (!g5) doErr;
66  g6 = ioda_group_create(g4, 2, "g6");
67  if (!g6) doErr;
68 
69  if (ioda_group_exists(g1, 2, "g3") <= 0) doErr;
70 
71  if (ioda_group_exists(g1, 5, "g3/g4") <= 0) doErr;
72 
73  g3_list = ioda_group_list(g3);
74  if (!g3_list) doErr;
75  if (g3_list->n != 1) doErr;
76  g4_list = ioda_group_list(g4);
77  if (!g4_list) doErr;
78  if (g4_list->n != 2) doErr;
79 
80  opened_g3 = ioda_group_open(g1, 2, "g3");
81  if (!opened_g3) doErr;
82  opened_g6 = ioda_group_open(g3, 5, "g4/g6");
83  if (!opened_g6) doErr;
84 
86 
87  goto cleanup;
88 
89 hadError:
90  printf("%s", (errlin) ? errlin : "An unknown error has occurred somewhere.");
91  errval = 1;
92 
93 cleanup:
95  // opened_g3 was deliberately destructed earlier
96  if (g4_list) ioda_string_ret_t_destruct(g4_list);
97  if (g3_list) ioda_string_ret_t_destruct(g3_list);
100  if (g4) ioda_group_destruct(g4);
101  if (g3) ioda_group_destruct(g3);
102  if (g2) ioda_group_destruct(g2);
103  if (g1) ioda_group_destruct(g1);
105 
106  return errval;
107 }
C bindings for ioda::Engines
C bindings for ioda::Group
C bindings .
Common preprocessor definitions used throughout IODA.
int main(int argc, char **argv)
#define doErr
IODA_DL struct ioda_group * ioda_Engines_constructFromCmdLine(int argc, char **argv, const char *defaultFilename)
Function used in the ioda C examples and unit tests to construct different backends based on differen...
Definition: Engines_c.cpp:79
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 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_group * ioda_group_open(const struct ioda_group *base, size_t sz, const char *name)
Open a group.
IODA_DL void ioda_string_ret_t_destruct(struct ioda_string_ret_t *)
Deallocate a returned string object.
Definition: String_c.cpp:19
Return type when arrays of strings are encountered.
Definition: String_c.h:24