IODA
list-objects/test.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 <Eigen/Dense>
8 #include <cmath>
9 #include <cstdlib>
10 #include <iostream>
11 #include <vector>
12 
13 #include "ioda/Engines/Factory.h"
14 #include "ioda/Exception.h"
15 #include "ioda/Group.h"
16 
17 // These tests really need a better check system.
18 // Boost unit tests would have been excellent here.
19 
20 /// Run a series of tests on the input group.
22  // Create a group structure with some hierarchy
23  auto gObsValue = g.create("ObsValue");
24  auto gObsError = g.create("ObsError");
25  auto gMetaData = g.create("MetaData");
26 
27  auto gMdChild = gMetaData.create("Child 1");
28 
29  // Create some variables
31  params.setFillValue<double>(-999);
32  params.chunk = true;
33  params.compressWithGZIP();
34 
35  auto obsVar = gObsValue.vars.create<double>("myobs", { 2, 2 }, { 2, 2 }, params)
36  .write<double>({ 1.0, 2.0, 3.0, 4.0 });
37  auto errVar = gObsError.vars.create<double>("myobs", { 2, 2 }, { 2, 2 }, params)
38  .write<double>({ 0.5, 0.1, 0.05, 0.01 });
39  auto latVar = gMetaData.vars.create<double>("latitude", { 2, 2 }, { 2, 2 }, params)
40  .write<double>({ 1.5, 2.5, 3.5, 4.5 });
41 
42  // Can we list groups?
43  auto g_list = g.list();
44  if (g_list.size() != 3) throw ioda::Exception(ioda_Here());
45  // Can we list another way?
46  auto g_list2 = g.listObjects();
47  if (g_list2.empty()) throw ioda::Exception(ioda_Here());
48 
49  // Can we list groups and variables recursively?
50  auto g_list3 = g.listObjects(ioda::ObjectType::Ignored, true);
51  if (g_list3.empty()) throw ioda::Exception(ioda_Here());
52 
53  // Can we list variables recursively (templated form)?
54  auto g_list4 = g.listObjects<ioda::ObjectType::Variable>(true);
55  if (g_list4.empty()) throw ioda::Exception(ioda_Here());
56 }
57 
58 int main(int argc, char** argv) {
59  using namespace ioda;
60  using namespace std;
61  try {
62  auto f = Engines::constructFromCmdLine(argc, argv, "test-list_objects.hdf5");
63 
65 
66  } catch (const std::exception& e) {
68  return 1;
69  }
70  return 0;
71 }
IODA's error system.
Definitions for setting up backends with file and memory I/O.
Interfaces for ioda::Group and related classes.
The ioda exception class.
Definition: Exception.h:54
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
void test_group_backend_engine(ioda::Group g)
Run a series of tests on the input group.
int main(int argc, char **argv)
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
#define ioda_Here()
Used to specify Variable creation-time properties.
Definition: Has_Variables.h:57