IODA
01b-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 /*! \addtogroup ioda_c_ex
8  *
9  * @{
10  *
11  * \defgroup ioda_c_ex_1b Ex 1b: Groups and ObsSpaces
12  * \brief Group manipulation using the C interface
13  * \details This example parallels the C++ examples.
14  *
15  * @{
16  *
17  * \file 01b-GroupsAndObsSpaces.c More group examples
18  **/
19 
20 #include <stdio.h>
21 #include <string.h>
22 
23 #include "ioda/C/ioda_c.h"
24 #include "ioda/defs.h" // Always include this first.
25 
26 #define sslin(x) #x
27 #define slin(x) sslin(x)
28 #define doErr \
29  { \
30  errlin = "Error in " __FILE__ " at line " slin(__LINE__) ".\n"; \
31  goto hadError; \
32  }
33 
34 int main(int argc, char** argv) {
35  int errval = 0;
36  const char* errlin = NULL;
37  struct c_ioda ioda = use_c_ioda();
38  struct ioda_group *grpFromFile = NULL, *g1 = NULL, *g2 = NULL, *g3 = NULL, *g4 = NULL, *g5 = NULL,
39  *g6 = NULL, *opened_g3 = NULL, *opened_g6 = NULL;
40  struct ioda_string_ret_t *g3_list = NULL, *g4_list = NULL;
41 
42  grpFromFile = ioda.Engines.constructFromCmdLine(argc, argv, "Example-01b-C.hdf5");
43  if (!grpFromFile) goto hadError;
44 
45  g1 = ioda.Group.create(grpFromFile, 2, "g1");
46  if (!g1) doErr;
47  g2 = ioda.Group.create(grpFromFile, 2, "g2");
48  if (!g2) doErr;
49  g3 = ioda.Group.create(g1, 2, "g3");
50  if (!g3) doErr;
51  g4 = ioda.Group.create(g3, 2, "g4");
52  if (!g4) doErr;
53  g5 = ioda.Group.create(g4, 2, "g5");
54  if (!g5) doErr;
55  g6 = ioda.Group.create(g4, 2, "g6");
56  if (!g6) doErr;
57 
58  if (ioda.Group.exists(g1, 2, "g3") <= 0) doErr;
59 
60  if (ioda.Group.exists(g1, 5, "g3/g4") <= 0) doErr;
61 
62  g3_list = ioda.Group.list(g3);
63  if (!g3_list) doErr;
64  if (g3_list->n != 1) doErr;
65  g4_list = ioda.Group.list(g4);
66  if (!g4_list) doErr;
67  if (g4_list->n != 2) doErr;
68 
69  opened_g3 = ioda.Group.open(g1, 2, "g3");
70  if (!opened_g3) doErr;
71  opened_g6 = ioda.Group.open(g3, 5, "g4/g6");
72  if (!opened_g6) doErr;
73 
75 
76  goto cleanup;
77 
78 hadError:
79  printf("%s", (errlin) ? errlin : "An unknown error has occurred somewhere.");
80  errval = 1;
81 cleanup:
82  if (opened_g6) ioda.Group.destruct(opened_g6);
83  // opened_g3 was deliberately destructed earlier
84  if (g4_list) ioda.Strings.destruct(g4_list);
85  if (g3_list) ioda.Strings.destruct(g3_list);
86  if (g6) ioda.Group.destruct(g6);
87  if (g5) ioda.Group.destruct(g5);
88  if (g4) ioda.Group.destruct(g4);
89  if (g3) ioda.Group.destruct(g3);
90  if (g2) ioda.Group.destruct(g2);
91  if (g1) ioda.Group.destruct(g1);
92  if (grpFromFile) ioda.Group.destruct(grpFromFile);
93 
94  return errval;
95 }
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
virtual Group open(const std::string &name) const
Open a group.
Definition: Group.cpp:87
virtual bool exists(const std::string &name) const
Definition: Group.cpp:65
virtual Group create(const std::string &name)
Create a group.
Definition: Group.cpp:76
std::vector< std::string > list() const
List all one-level child groups in this group.
Definition: Group.cpp:43
Common preprocessor definitions used throughout IODA.
IODA_DL struct c_ioda use_c_ioda()
Creates and returns a c_ioda struct that has all of the function pointers filled in.
Definition: ioda_c.cpp:18
int main(int argc, char **argv)
#define doErr
IODA_DL void ioda_group_destruct(struct ioda_group *grp)
Frees a ioda_group.
Definition: Group_c.cpp:22
C bindings for ioda-engines.
The backends that implement the ioda-engines functionality.
Definition: Capabilities.h:21
Definition: ioda_c.h:35
Return type when arrays of strings are encountered.
Definition: String_c.h:24