IODA
test_hier_paths.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020 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 #include <cmath>
8 #include <iostream>
9 #include <vector>
10 #include "ioda/Exception.h"
11 #include "ioda/Engines/Factory.h"
12 #include "ioda/Group.h"
13 
15  // Want to test create, open, [] operator (open) and exists functions
16  // that use hierarchical paths in their name arguments.
17 
18  // Groups
19  std::string amsuaGroup("AMSU-A/ObsValue");
20  g.create(amsuaGroup);
21  if (!g.exists(amsuaGroup)) {
22  throw; // jedi_throw.add("Reason", "Group exists check failed");
23  }
24 
25  auto g1 = g.open(amsuaGroup);
26  g1.create("Child1");
27  auto childList = g1.list();
28  if (childList.size() != 1) {
29  throw; // jedi_throw.add("Reason", "Group list children size check 1 failed");
30  }
31  if (childList[0] != "Child1") {
32  throw; // jedi_throw.add("Reason", "Group list children names check 1 failed");
33  }
34 
35  // Try create where part of the hierarchy already exists
36  std::string amsuaGroupChild2 = amsuaGroup + "/Child2";
37  g.create(amsuaGroupChild2);
38  childList = g1.list();
39  if (childList.size() != 2) {
40  throw; // jedi_throw.add("Reason", "Group list children size check 2 failed");
41  }
42  if ((childList[0] != "Child1") || (childList[1] != "Child2")) {
43  throw; // jedi_throw.add("Reason", "Group list children names check 2 failed");
44  }
45 
46  // Variables
47  std::string sondeTopGroup = "Sonde";
48  std::string sondeMidGroup = "ObsValue";
49  std::string sondeVar = "air_temperature";
50  std::string sondeGroupVar = sondeTopGroup + "/" + sondeMidGroup + "/" + sondeVar;
52  params.chunk = true;
53  params.compressWithGZIP();
54  params.setFillValue<float>(-999);
55  g.vars.create<float>(sondeGroupVar, {4}, {4}, params);
56 
57  auto v1 = g.vars.open(sondeGroupVar);
58  std::vector<float> v1_data({1.5, 2.5, 3.5, 4.5});
59  v1.write(v1_data);
60 
61  std::vector<float> v1_check;
62  auto v2 = g.open(sondeTopGroup).open(sondeMidGroup).vars[sondeVar];
63  v2.read<float>(v1_check);
64 
65  if (v1_check.size() != 4) {
66  throw; // jedi_throw.add("Reason", "Var size check failed");
67  }
68  for (std::size_t i = 0; i < v1_check.size(); ++i) {
69  float checkVal = fabs((v1_check[i] / v1_data[i]) - 1.0f);
70  if (checkVal > 1.e-3) {
71  throw; /* jedi_throw
72  .add("Reason", "Var contents check failed")
73  .add("Index", i)
74  .add("Result value", v1_check[i])
75  .add("Expected value", v1_data[i]); */
76  }
77  }
78 }
79 
80 int main(int argc, char** argv) {
81  using namespace ioda;
82  using namespace std;
83  try {
84  auto f = Engines::constructFromCmdLine(argc, argv, "test-hier_paths.hdf5");
85 
87 
88  } catch (const std::exception& e) {
90  return 1;
91  }
92  return 0;
93 }
IODA's error system.
Definitions for setting up backends with file and memory I/O.
Interfaces for ioda::Group and related classes.
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
IODA_DL Group constructFromCmdLine(int argc, char **argv, const std::string &defaultFilename)
This is a wrapper function around the constructBackend function for creating a backend based on comma...
Definition: Factory.cpp:21
IODA_DL void unwind_exception_stack(const std::exception &e, std::ostream &out=std::cerr, int level=0)
Convenience function for unwinding an exception stack.
Definition: Exception.cpp:48
Used to specify Variable creation-time properties.
Definition: Has_Variables.h:57
void test_group_backend_engine(ioda::Group g)
int main(int argc, char **argv)