IODA
Has_Attributes.cpp
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  */
8 #include "ioda/Exception.h"
9 
10 namespace ioda {
11 namespace detail {
12 Has_Attributes_Base::Has_Attributes_Base(std::shared_ptr<Has_Attributes_Backend> b) : backend_(b) {}
14 
17 
18 std::vector<std::string> Has_Attributes_Base::list() const {
19  try {
20  if (backend_ == nullptr)
21  throw Exception("Missing backend or unimplemented backend function.", ioda_Here());
22  return backend_->list();
23  } catch (...) {
24  std::throw_with_nested(
25  Exception("An exception occurred inside ioda while listing attributes of an object.",
26  ioda_Here()));
27  }
28 }
29 
30 bool Has_Attributes_Base::exists(const std::string& attname) const {
31  try {
32  if (backend_ == nullptr)
33  throw Exception("Missing backend or unimplemented backend function.", ioda_Here());
34  return backend_->exists(attname);
35  } catch (...) {
36  std::throw_with_nested(Exception(
37  "An exception occurred inside ioda while checking existence of an attribute.", ioda_Here())
38  .add("attname", attname));
39  }
40 }
41 
42 void Has_Attributes_Base::remove(const std::string& attname) {
43  try {
44  if (backend_ == nullptr)
45  throw Exception("Missing backend or unimplemented backend function.", ioda_Here());
46  return backend_->remove(attname);
47  } catch (...) {
48  std::throw_with_nested(Exception(
49  "An exception occurred inside ioda while removing an attribute.", ioda_Here())
50  .add("attname", attname));
51  }
52 }
53 
54 Attribute Has_Attributes_Base::open(const std::string& name) const {
55  try {
56  if (backend_ == nullptr)
57  throw Exception("Missing backend or unimplemented backend function.", ioda_Here());
58  return backend_->open(name);
59  } catch (...) {
60  std::throw_with_nested(Exception(
61  "An exception occurred inside ioda while opening an attribute.", ioda_Here())
62  .add("name", name));
63  }
64 }
65 
66 std::vector<std::pair<std::string, Attribute>> Has_Attributes_Base::openAll() const {
67  try {
68  if (backend_ == nullptr)
69  throw Exception("Missing backend or unimplemented backend function.", ioda_Here());
70  return backend_->openAll();
71  } catch (...) {
72  std::throw_with_nested(Exception(
73  "An exception occurred in ioda while opening all attributes of an object.", ioda_Here()));
74  }
75 }
76 
77 std::vector<std::pair<std::string, Attribute>> Has_Attributes_Backend::openAll() const {
78  try {
79  using namespace std;
80  vector<pair<string, Attribute>> ret;
81  vector<string> names = list();
82  for (const auto& name : names) ret.push_back(make_pair(name, open(name)));
83 
84  return ret;
85  } catch (...) {
86  std::throw_with_nested(Exception(
87  "An exception occurred in ioda while opening all attributes of an object.", ioda_Here()));
88  }
89 }
90 
91 void Has_Attributes_Base::rename(const std::string& oldName, const std::string& newName) {
92  try {
93  if (backend_ == nullptr)
94  throw Exception("Missing backend or unimplemented backend function.", ioda_Here());
95  return backend_->rename(oldName, newName);
96  } catch (...) {
97  std::throw_with_nested(Exception(
98  "An exception occurred in ioda while renaming an attribute.", ioda_Here())
99  .add("oldName", oldName).add("newName", newName));
100  }
101 }
102 
104  try {
105  if (backend_ == nullptr)
106  throw Exception("Missing backend or unimplemented backend function.", ioda_Here());
107  return backend_->getTypeProvider();
108  } catch (...) {
109  std::throw_with_nested(Exception(
110  "An exception occurred in ioda while getting a Type Provider.", ioda_Here()));
111  }
112 }
113 
114 Attribute Has_Attributes_Base::create(const std::string& attrname, const Type& in_memory_dataType,
115  const std::vector<Dimensions_t>& dimensions) {
116  try {
117  if (backend_ == nullptr)
118  throw Exception("Missing backend or unimplemented backend function.", ioda_Here());
119 
120  // Apparently netcdf4 loves to declare string types with no dimensions, and
121  // it is perfectly valid to declare a zero-dimensionality object. Scalar dimensions
122  // instead of simple dimensions. Go figure.
123  //Expects(dimensions.size());
124  for (const auto& d : dimensions) {
125  if (d < 0) throw Exception("Invalid dimension length.", ioda_Here());
126  }
127 
128  auto att = backend_->create(attrname, in_memory_dataType, dimensions);
129  return att;
130 
131  } catch (...) {
132  std::throw_with_nested(Exception(
133  "An exception occurred inside ioda while creating an attribute.", ioda_Here())
134  .add("attrname", attrname));
135  }
136 }
137 
138 } // namespace detail
139 
140 Has_Attributes::Has_Attributes() : detail::Has_Attributes_Base(nullptr) {}
142 Has_Attributes::Has_Attributes(std::shared_ptr<detail::Has_Attributes_Backend> g)
143  : detail::Has_Attributes_Base(g) {}
144 
145 } // namespace ioda
IODA's error system.
Interfaces for ioda::Has_Attributes and related classes.
This class represents attributes, which may be attached to both Variables and Groups.
Definition: Attribute.h:493
The ioda exception class.
Definition: Exception.h:54
virtual ~Has_Attributes()
Represents the "type" (i.e. integer, string, float) of a piece of data.
Definition: Type.h:123
std::vector< std::pair< std::string, Attribute > > openAll() const override
Default implementation of Has_Attributes_Base::openAll.
virtual std::vector< std::string > list() const
virtual void remove(const std::string &attname)
Delete an Attribute with the specified name.
virtual Attribute open(const std::string &name) const
Open an Attribute by name.
virtual void rename(const std::string &oldName, const std::string &newName)
Rename an Attribute.
std::shared_ptr< Has_Attributes_Backend > backend_
Using an opaque object to implement the backend.
virtual detail::Type_Provider * getTypeProvider() const
Query the backend and get the type provider.
virtual Attribute create(const std::string &attrname, const Type &in_memory_dataType, const std::vector< Dimensions_t > &dimensions={1})
Create an Attribute without setting its data.
Has_Attributes_Base(std::shared_ptr< Has_Attributes_Backend >)
virtual std::vector< std::pair< std::string, Attribute > > openAll() const
Open all attributes in an object.
virtual bool exists(const std::string &attname) const
Does an Attribute with the specified name exist?
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Definition: Type_Provider.h:36
#define ioda_Here()