IODA
Group.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 "ioda/Group.h"
8 
10 #include "ioda/Exception.h"
11 
12 namespace ioda {
13 Group::Group() : Group_Base(nullptr) {}
14 
15 Group::Group(std::shared_ptr<detail::Group_Backend> backend) : Group_Base(backend) {}
16 
17 Group::~Group() = default;
18 
19 namespace detail {
20 /// \note backend may be nullptr. atts needs special handling in this case.
21 Group_Base::Group_Base(std::shared_ptr<Group_Backend> backend)
22  : backend_(backend),
23  atts((backend) ? backend->atts : Has_Attributes()),
24  vars((backend) ? backend->vars : Has_Variables()) {}
25 
26 Group_Base::~Group_Base() = default;
27 
29 
31 
33  try {
34  if (backend_ == nullptr) throw Exception("Missing backend or unimplemented backend function.",
35  ioda_Here());
36  return backend_->getCapabilities();
37  } catch (...) {
38  std::throw_with_nested(Exception("An exception occurred inside ioda while "
39  "determining backend engine capabilities.", ioda_Here()));
40  }
41 }
42 
43 std::vector<std::string> Group_Base::list() const {
44  try {
45  // Not backend_->... deliberately because we might call this from a backend directly.
46  return listObjects(ObjectType::Group, false)[ObjectType::Group];
47  } catch (...) {
48  std::throw_with_nested(Exception("An exception occurred inside ioda while "
49  "listing one-level child groups.", ioda_Here()));
50  }
51 }
52 
53 std::map<ObjectType, std::vector<std::string>> Group_Base::listObjects(ObjectType filter,
54  bool recurse) const {
55  try {
56  if (backend_ == nullptr) throw Exception("Missing backend or unimplemented backend function.",
57  ioda_Here());
58  return backend_->listObjects(filter, recurse);
59  } catch (...) {
60  std::throw_with_nested(Exception("An exception occurred inside ioda while listing objects.",
61  ioda_Here()).add("recurse", recurse));
62  }
63 }
64 
65 bool Group_Base::exists(const std::string& name) const {
66  try {
67  if (backend_ == nullptr) throw Exception("Missing backend or unimplemented backend function.",
68  ioda_Here());
69  return backend_->exists(name);
70  } catch (...) {
71  std::throw_with_nested(Exception("An exception occurred inside ioda while checking "
72  "to see whether a group exists.", ioda_Here()).add("name", name));
73  }
74 }
75 
76 Group Group_Base::create(const std::string& name) {
77  try {
78  if (backend_ == nullptr) throw Exception("Missing backend or unimplemented backend function.",
79  ioda_Here());
80  return backend_->create(name);
81  } catch (...) {
82  std::throw_with_nested(Exception("An exception occurred inside ioda while creating a group.",
83  ioda_Here()).add("name", name));
84  }
85 }
86 
87 Group Group_Base::open(const std::string& name) const {
88  try {
89  if (backend_ == nullptr) throw Exception("Missing backend or unimplemented backend function.",
90  ioda_Here());
91  return backend_->open(name);
92  } catch (...) {
93  std::throw_with_nested(Exception("An exception occurred inside ioda while opening a group.",
94  ioda_Here()).add("name", name));
95  }
96 }
97 
99  try {
100  if (backend_ == nullptr) throw Exception("Missing backend or unimplemented backend function.",
101  ioda_Here());
102  return backend_->getFillValuePolicy();
103  } catch (...) {
104  std::throw_with_nested(Exception("An exception occurred inside ioda while determining "
105  "the fill value policy.", ioda_Here()));
106  }
107 }
108 
110  try {
111  return vars.getFillValuePolicy();
112  } catch (...) {
113  std::throw_with_nested(Exception("An exception occurred inside ioda while determining "
114  "the fill value policy.", ioda_Here()));
115  }
116 }
117 
118 } // namespace detail
119 } // namespace ioda
Structs that describe backend capabilities.
IODA's error system.
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
virtual ~Group()
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
FillValuePolicy getFillValuePolicy() const override
Default fill value policy is NETCDF4. Overridable on a per-backend basis.
Definition: Group.cpp:109
Hidden base class to prevent constructor confusion.
Definition: Group.h:42
Group_Base(std::shared_ptr< Group_Backend >)
Definition: Group.cpp:21
virtual Group open(const std::string &name) const
Open a group.
Definition: Group.cpp:87
Has_Variables vars
Use this to access variables.
Definition: Group.h:123
std::shared_ptr< Group_Backend > backend_
Definition: Group.h:43
virtual FillValuePolicy getFillValuePolicy() const
Get the fill value policy used for Variables within this Group.
Definition: Group.cpp:98
virtual bool exists(const std::string &name) const
Definition: Group.cpp:65
virtual std::map< ObjectType, std::vector< std::string > > listObjects(ObjectType filter=ObjectType::Ignored, bool recurse=false) const
List all objects (groups + variables) within this group.
Definition: Group.cpp:53
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
virtual ::ioda::Engines::Capabilities getCapabilities() const
Get capabilities of the Engine backing this Group.
Definition: Group.cpp:32
virtual FillValuePolicy getFillValuePolicy() const
Get the fill value policy used for Variables within this Group.
FillValuePolicy
This option describes the default fill values that will be used if the user does not manually specify...
Definition: FillPolicy.h:28
#define ioda_Here()
Struct defining what an engine can/cannot do.
Definition: Capabilities.h:47