IODA
Attribute.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  */
8 #include "ioda/Exception.h"
9 
10 namespace ioda {
11 
12 namespace detail {
13 
14 template <>
16 template <>
17 Attribute_Base<>::Attribute_Base(std::shared_ptr<Attribute_Backend> hnd_attr)
18  : backend_(hnd_attr) {}
19 
20 // Attribute Attribute::writeFixedLengthString(const std::string& data) { Expects(backend_ !=
21 // nullptr && "Unimplemented function for backend"); return backend_->writeFixedLengthString(data);
22 // }
23 
24 template <>
26  try {
27  if (backend_ == nullptr) throw Exception("Missing backend.", ioda_Here());
28  return backend_->getType();
29  } catch (...) {
30  std::throw_with_nested(Exception("An exception occurred inside ioda.", ioda_Here()));
31  }
32 }
33 
34 template <>
36  try {
37  if (backend_ == nullptr) throw Exception("Missing backend.", ioda_Here());
38  return backend_->getDimensions();
39  } catch (...) {
40  std::throw_with_nested(Exception("An exception occurred inside ioda.", ioda_Here()));
41  }
42 }
43 
44 template <>
45 bool Attribute_Base<>::isA(Type lhs) const {
46  try {
47  if (backend_ == nullptr) throw Exception("Missing backend.", ioda_Here());
48  return backend_->isA(lhs);
49  } catch (...) {
50  std::throw_with_nested(Exception("An exception occurred inside ioda.", ioda_Here()));
51  }
52 }
53 
54 template <>
56  try {
57  if (backend_ == nullptr) throw Exception("Missing backend.", ioda_Here());
58  return backend_->getTypeProvider();
59  } catch (...) {
60  std::throw_with_nested(Exception("An exception occurred inside ioda.", ioda_Here()));
61  }
62 }
63 
64 template <>
65 Attribute Attribute_Base<>::write(gsl::span<char> data, const Type& in_memory_dataType) {
66  try {
67  if (backend_ == nullptr) throw Exception("Missing backend.", ioda_Here());
68  return backend_->write(data, in_memory_dataType);
69  } catch (...) {
70  std::throw_with_nested(Exception("An exception occurred inside ioda.", ioda_Here()));
71  }
72 }
73 
74 template <>
75 Attribute Attribute_Base<>::read(gsl::span<char> data, const Type& in_memory_dataType) const {
76  try {
77  if (backend_ == nullptr) throw Exception("Missing backend.", ioda_Here());
78  return backend_->read(data, in_memory_dataType);
79  } catch (...) {
80  std::throw_with_nested(Exception("An exception occurred inside ioda.", ioda_Here()));
81  }
82 }
83 
84 template class Attribute_Base<Attribute>; // NOLINT: Bad check result
85 
88 } // namespace detail
89 
90 Attribute::~Attribute() = default;
92  : Attribute_Base(nullptr),
93  _py_isA{this},
94  _py_readSingle{this},
95  _py_readVector{this},
96  _py_readNPArray{this},
97  _py_writeSingle{this},
98  _py_writeVector{this},
99  _py_writeNPArray{this} {}
100 Attribute::Attribute(std::shared_ptr<detail::Attribute_Backend> b)
101  : Attribute_Base{b},
102  _py_isA{this},
103  _py_readSingle{this},
104  _py_readVector{this},
105  _py_readNPArray{this},
106  _py_writeSingle{this},
107  _py_writeVector{this},
108  _py_writeNPArray{this} {}
110  : Attribute_Base{r.backend_},
111  _py_isA{this},
112  _py_readSingle{this},
113  _py_readVector{this},
114  _py_readNPArray{this},
115  _py_writeSingle{this},
116  _py_writeVector{this},
117  _py_writeNPArray{this} {}
119  if (this == &r) return *this;
120  backend_ = r.backend_;
125 
129  return *this;
130 }
131 } // namespace ioda
Interfaces for ioda::Attribute and related classes.
IODA's error system.
This class represents attributes, which may be attached to both Variables and Groups.
Definition: Attribute.h:493
virtual ~Attribute()
detail::python_bindings::AttributeReadNPArray< Attribute > _py_readNPArray
Definition: Attribute.h:508
detail::python_bindings::AttributeWriteSingle< Attribute > _py_writeSingle
Definition: Attribute.h:510
detail::python_bindings::AttributeReadVector< Attribute > _py_readVector
Definition: Attribute.h:507
detail::python_bindings::AttributeIsA< Attribute > _py_isA
Definition: Attribute.h:504
Attribute & operator=(const Attribute &)
Definition: Attribute.cpp:118
detail::python_bindings::AttributeWriteVector< Attribute > _py_writeVector
Definition: Attribute.h:511
detail::python_bindings::AttributeReadSingle< Attribute > _py_readSingle
Definition: Attribute.h:506
detail::python_bindings::AttributeWriteNPArray< Attribute > _py_writeNPArray
Definition: Attribute.h:512
The ioda exception class.
Definition: Exception.h:54
Represents the "type" (i.e. integer, string, float) of a piece of data.
Definition: Type.h:123
Base class for Attributes.
Definition: Attribute.h:50
virtual Dimensions getDimensions() const
Get Attribute's dimensions.
Definition: Attribute.cpp:35
bool isA() const
Convenience function to check an Attribute's storage type.
Definition: Attribute.h:447
DataType read() const
Read a single value (convenience function).
Definition: Attribute.h:319
std::shared_ptr< Attribute_Backend > backend_
Using an opaque object to implement the backend.
Definition: Attribute.h:53
virtual Attribute_Implementation write(gsl::span< char > data, const Type &type)
The fundamental write function. Backends overload this function to implement all write operations.
Definition: Attribute.cpp:65
Attribute_Base(std::shared_ptr< Attribute_Backend >)
Definition: Attribute.cpp:17
virtual Type getType() const
Get Attribute type.
Definition: Attribute.cpp:25
virtual detail::Type_Provider * getTypeProvider() const
Query the backend and get the type provider.
Definition: Attribute.cpp:55
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Definition: Type_Provider.h:36
#define ioda_Here()
Describes the dimensions of an Attribute or Variable.
Definition: Dimensions.h:22