IODA
|
Base class for Attributes. More...
#include <Attribute.h>
Public Member Functions | |
Writing Data | |
| |
virtual Attribute_Implementation | write (gsl::span< char > data, const Type &type) |
The fundamental write function. Backends overload this function to implement all write operations. More... | |
template<class DataType , class Marshaller = ioda::Object_Accessor<DataType>, class TypeWrapper = Types::GetType_Wrapper<DataType>> | |
Attribute_Implementation | write (gsl::span< const DataType > data) |
Write data. More... | |
template<class DataType , class Marshaller = ioda::Object_Accessor<DataType>, class TypeWrapper = Types::GetType_Wrapper<DataType>> | |
Attribute_Implementation | write (const std::vector< DataType > &data) |
Write data. More... | |
template<class DataType > | |
Attribute_Implementation | write (std::initializer_list< DataType > data) |
Write data. More... | |
template<class DataType > | |
Attribute_Implementation | write (DataType data) |
Write a datum. More... | |
template<class EigenClass > | |
Attribute_Implementation | writeWithEigenRegular (const EigenClass &d) |
Write an Eigen object (a Matrix, an Array, a Block, a Map). More... | |
template<class EigenClass > | |
Attribute_Implementation | writeWithEigenTensor (const EigenClass &d) |
Write an Eigen Tensor-like object. More... | |
Reading Data | |
virtual Attribute_Implementation | read (gsl::span< char > data, const Type &in_memory_dataType) const |
The fundamental read function. Backends overload this function to implement all read operations. More... | |
template<class DataType , class Marshaller = ioda::Object_Accessor<DataType>, class TypeWrapper = Types::GetType_Wrapper<DataType>> | |
Attribute_Implementation | read (gsl::span< DataType > data) const |
Read data. More... | |
template<class DataType > | |
Attribute_Implementation | read (std::vector< DataType > &data) const |
Vector read convenience function. More... | |
template<class DataType > | |
Attribute_Implementation | read (std::valarray< DataType > &data) const |
Valarray read convenience function. More... | |
template<class DataType > | |
Attribute_Implementation | read (DataType &data) const |
Read into a single value (convenience function). More... | |
template<class DataType > | |
DataType | read () const |
Read a single value (convenience function). More... | |
template<class DataType > | |
std::vector< DataType > | readAsVector () const |
Read into a new vector. Python convenience function. More... | |
template<class EigenClass , bool Resize = detail::EigenCompat::CanResize<EigenClass>::value> | |
Attribute_Implementation | readWithEigenRegular (EigenClass &res) const |
Read data into an Eigen::Array, Eigen::Matrix, Eigen::Map, etc. More... | |
template<class EigenClass > | |
Attribute_Implementation | readWithEigenTensor (EigenClass &res) const |
Read data into an Eigen::Array, Eigen::Matrix, Eigen::Map, etc. More... | |
template<class EigenClass > | |
EigenClass | _readWithEigenRegular_python () const |
Type-querying Functions | |
virtual Type | getType () const |
Get Attribute type. More... | |
Type | type () const |
Get Attribute type. More... | |
virtual detail::Type_Provider * | getTypeProvider () const |
Query the backend and get the type provider. More... | |
template<class DataType > | |
bool | isA () const |
Convenience function to check an Attribute's storage type. More... | |
virtual bool | isA (Type lhs) const |
Hand-off to the backend to check equivalence. More... | |
bool | isA (BasicTypes dataType) |
Python compatability function. More... | |
bool | _py_isA2 (BasicTypes dataType) |
Data Space-Querying Functions | |
virtual Dimensions | getDimensions () const |
Get Attribute's dimensions. More... | |
Protected Attributes | |
std::shared_ptr< Attribute_Backend > | backend_ |
Using an opaque object to implement the backend. More... | |
Friends | |
class | Variable_Backend |
General Functions | |
Attribute_Base (std::shared_ptr< Attribute_Backend >) | |
virtual | ~Attribute_Base () |
Base class for Attributes.
You might wonder why we have this class as a template. This is because we are using a bit of compile-time template polymorphism to return Attribute objects from base classes before Attribute is fully declared. This is a variation of the (Curiously Recurring Template Pattern)[https://en.wikipedia.org/wiki/Curiously_recurring_template_pattern].
Definition at line 50 of file Attribute.h.
|
protected |
Definition at line 17 of file Attribute.cpp.
|
virtualdefault |
|
inline |
Definition at line 458 of file Attribute.h.
|
inline |
|
virtual |
Get Attribute's dimensions.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Attribute_Backend, and ioda::detail::Engines::HH::HH_Attribute.
Definition at line 35 of file Attribute.cpp.
|
virtual |
Get Attribute type.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Attribute_Backend, and ioda::detail::Engines::HH::HH_Attribute.
Definition at line 25 of file Attribute.cpp.
|
virtual |
Query the backend and get the type provider.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Attribute_Backend, and ioda::detail::Engines::HH::HH_Attribute.
Definition at line 55 of file Attribute.cpp.
|
inline |
Convenience function to check an Attribute's storage type.
DataType | is the type of the data. I.e. float, int, int32_t, uint16_t, std::string, etc. |
jedi::xError | if an error occurred. |
Definition at line 447 of file Attribute.h.
|
inline |
Python compatability function.
Definition at line 456 of file Attribute.h.
|
virtual |
Hand-off to the backend to check equivalence.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Attribute_Backend, and ioda::detail::Engines::HH::HH_Attribute.
Definition at line 45 of file Attribute.cpp.
|
inline |
Read a single value (convenience function).
DataType | is the type of the data. I.e. float, int, int32_t, uint16_t, std::string, etc. |
jedi::xError | if the underlying data have size greater than 1. |
Definition at line 319 of file Attribute.h.
|
inline |
Read into a single value (convenience function).
DataType | is the type of the data. I.e. float, int, int32_t, uint16_t, std::string, etc. |
data | is where the datum is read to. |
jedi::xError | if the underlying data have multiple elements. |
Definition at line 303 of file Attribute.h.
|
virtual |
The fundamental read function. Backends overload this function to implement all read operations.
This function reads in a span of characters from the backend attribute storage. No type conversions take place here (see the templated conversion function, below).
data | is a span of data that has length of getStorageSize(). |
in_memory_datatype | is an opaque (backend-level) object that describes the placement of the data in memory. Usually ignorable - needed for complex data structures. |
jedi::xError | if data has the wrong size. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_Attribute_Backend, and ioda::detail::Engines::HH::HH_Attribute.
Definition at line 75 of file Attribute.cpp.
|
inline |
Read data.
This is a fundamental function that reads a span of characters from backend storage, and then performs the appropriate type conversion / deserialization into objects in data.
DataType | is the type if the data to be read. I.e. float, int, int32_t, uint16_t, std::string, etc. |
Marshaller | is the class that performs the deserialization operation. |
TypeWrapper | is a helper class that passes Type information to the backend. |
data | is a pointer-size pair to the data buffer that is filled with the metadata's contents. It should be pre-sized to accomodate all of the matadata. See getDimensions().numElements. data will be filled in row-major order. |
in_memory_datatype | is an opaque (backend-level) object that describes the placement of the data in memory. Usually this does not need to be set to anything other than its default value. Kept as a parameter for debugging purposes. |
jedi::xError | if data.size() != getDimensions().numElements. |
Definition at line 251 of file Attribute.h.
|
inline |
Valarray read convenience function.
DataType | is the type of the data. I.e. float, int, int32_t, uint16_t, std::string, etc. |
data | is a valarray acting as a data buffer that is filled with the metadata's contents. It gets resized as needed. |
Definition at line 292 of file Attribute.h.
|
inline |
Vector read convenience function.
DataType | is the type of the data. I.e. float, int, int32_t, uint16_t, std::string, etc. |
data | is a vector acting as a data buffer that is filled with the metadata's contents. It gets resized as needed. |
Definition at line 280 of file Attribute.h.
|
inline |
Read into a new vector. Python convenience function.
DataType | is the type of the data. |
Definition at line 329 of file Attribute.h.
|
inline |
Read data into an Eigen::Array, Eigen::Matrix, Eigen::Map, etc.
EigenClass | is a template pointing to the Eigen object. This template must provide the EigenClass::Scalar typedef. |
Resize | indicates whether the Eigen object should be resized if there is a dimension mismatch. Not all Eigen objects can be resized. |
res | is the Eigen object. |
jedi::xError | if the attribute's dimensionality is too high. |
jedi::xError | if resize = false and there is a dimension mismatch. |
Definition at line 347 of file Attribute.h.
|
inline |
Read data into an Eigen::Array, Eigen::Matrix, Eigen::Map, etc.
EigenClass | is a template pointing to the Eigen object. This template must provide the EigenClass::Scalar typedef. |
res | is the Eigen object. |
jedi::xError | if there is a size mismatch. |
Definition at line 401 of file Attribute.h.
|
inline |
Get Attribute type.
Definition at line 436 of file Attribute.h.
|
inline |
Write data.
DataType | is the type of the data. I.e. float, int, int32_t, uint16_t, std::string, etc. |
Marshaller | is the class that serializes the data type into something that the backend library can use. |
TypeWrapper | is a helper class that creates Type objects for the backend. |
data | is a std::vector that contains the data to be written. |
in_memory_dataType | is the memory layout needed to parse data's type. |
jedi::xError | if data.size() does not match getDimensions().numElements. |
Definition at line 129 of file Attribute.h.
|
inline |
Write a datum.
DataType | is the type of the data. I.e. float, int, int32_t, uint16_t, std::string, etc. |
data | is the data to be written. |
jedi::xError | if the Attribute dimensions are larger than a single point. |
Definition at line 153 of file Attribute.h.
The fundamental write function. Backends overload this function to implement all write operations.
This function writes a span of bytes (characters) to the backend attribute storage. No type conversions take place here (see the templated conversion function, below).
data | is a span of data. |
in_memory_datatype | is an opaque (backend-level) object that describes the placement of the data in memory. Usually ignorable - needed for complex data structures. |
jedi::xError | if data has the wrong size. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_Attribute_Backend, and ioda::detail::Engines::HH::HH_Attribute.
Definition at line 65 of file Attribute.cpp.
|
inline |
Write data.
DataType | is the type of the data. I.e. float, int, int32_t, uint16_t, std::string, etc. |
Marshaller | is the class that serializes the data type into something that the backend library can use. |
TypeWrapper | is a helper class that creates Type objects for the backend. |
data | is a gsl::span (a pointer-length pair) that contains the data to be written. |
in_memory_dataType | is the memory layout needed to parse data's type. |
jedi::xError | if data.size() does not match getDimensions().numElements. |
Definition at line 101 of file Attribute.h.
|
inline |
Write data.
DataType | is the type of the data. I.e. float, int, int32_t, uint16_t, std::string, etc. |
data | is an initializer list that contains the data to be written. |
in_memory_dataType | is the memory layout needed to parse data's type. |
jedi::xError | if data.size() does not match getDimensions().numElements. |
Definition at line 142 of file Attribute.h.
|
inline |
Write an Eigen object (a Matrix, an Array, a Block, a Map).
EigenClass | is the Eigen object to write. |
d | is the data to be written. |
jedi::xError | on a dimension mismatch. |
Definition at line 169 of file Attribute.h.
|
inline |
Write an Eigen Tensor-like object.
EigenClass | is the Eigen tensor to write. |
d | is the data to be written. |
jedi::xError | on a dimension mismatch. |
Definition at line 195 of file Attribute.h.
|
friend |
Definition at line 56 of file Attribute.h.
|
protected |
Using an opaque object to implement the backend.
Definition at line 53 of file Attribute.h.