IODA
|
Exists to prevent constructor conflicts when passing a backend into a frontend object. More...
#include <Variable.h>
Public Member Functions | |
Type-querying Functions | |
virtual Type | getType () const |
Get type. More... | |
Type | type () const |
Get 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 a Variable's storage type. More... | |
virtual bool | isA (Type lhs) const |
Hand-off to the backend to check equivalence. More... | |
bool | isA (BasicTypes dataType) const |
Python compatability function. More... | |
bool | _py_isA2 (BasicTypes dataType) |
BasicTypes | getBasicType () const |
Convenience function to query type. More... | |
Data Space-Querying Functions | |
virtual Dimensions | getDimensions () const |
virtual Variable | resize (const std::vector< Dimensions_t > &newDims) |
Resize the variable. More... | |
virtual Variable | attachDimensionScale (unsigned int DimensionNumber, const Variable &scale) |
Attach a dimension scale to this Variable. More... | |
virtual Variable | detachDimensionScale (unsigned int DimensionNumber, const Variable &scale) |
Detach a dimension scale. More... | |
Variable | setDimScale (const std::vector< Variable > &dims) |
Set dimensions (convenience function to several invocations of attachDimensionScale). More... | |
Variable | setDimScale (const std::vector< Named_Variable > &dims) |
Set dimensions (convenience function to several invocations of attachDimensionScale). More... | |
Variable | setDimScale (const Variable &dims) |
Set dimensions (convenience function to several invocations of attachDimensionScale). More... | |
Variable | setDimScale (const Variable &dim1, const Variable &dim2) |
Set dimensions (convenience function to several invocations of attachDimensionScale). More... | |
Variable | setDimScale (const Variable &dim1, const Variable &dim2, const Variable &dim3) |
Set dimensions (convenience function to several invocations of attachDimensionScale). More... | |
virtual bool | isDimensionScale () const |
Is this Variable used as a dimension scale? More... | |
virtual Variable | setIsDimensionScale (const std::string &dimensionScaleName) |
Designate this table as a dimension scale. More... | |
std::string | getDimensionScaleName () const |
Get the name of this Variable's defined dimension scale. More... | |
virtual Variable | getDimensionScaleName (std::string &res) const |
virtual bool | isDimensionScaleAttached (unsigned int DimensionNumber, const Variable &scale) const |
Is a dimension scale attached to this Variable in a certain position? More... | |
virtual std::vector< std::vector< Named_Variable > > | getDimensionScaleMappings (const std::list< Named_Variable > &scalesToQueryAgainst, bool firstOnly=true) const |
Which dimensions are attached at which positions? This function may offer improved performance on some backends compared to serial isDimensionScaleAttached calls. More... | |
Writing Data | |
virtual Variable | write (gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) |
The fundamental write function. Backends overload this function to implement all write operations. More... | |
template<class DataType , class Marshaller = Object_Accessor<DataType>, class TypeWrapper = Types::GetType_Wrapper<DataType>> | |
Variable_Implementation | write (const gsl::span< DataType > data, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) |
Write the Variable. More... | |
template<class DataType , class Marshaller = Object_Accessor<DataType>, class TypeWrapper = Types::GetType_Wrapper<DataType>> | |
Variable_Implementation | write (const gsl::span< const DataType > data, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) |
Write the Variable. More... | |
template<class DataType , class Marshaller = Object_Accessor<DataType>, class TypeWrapper = Types::GetType_Wrapper<DataType>> | |
Variable_Implementation | write (const std::vector< DataType > &data, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) |
Write the variable. More... | |
template<class EigenClass > | |
Variable_Implementation | writeWithEigenRegular (const EigenClass &d, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) |
Write an Eigen object (a Matrix, an Array, a Block, a Map). More... | |
template<class EigenClass > | |
Variable_Implementation | writeWithEigenTensor (const EigenClass &d, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) |
Write an Eigen Tensor-like object. More... | |
Reading Data | |
virtual Variable | read (gsl::span< char > data, const Type &in_memory_dataType, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const |
Read the Variable - as char array. Ordering is row-major. More... | |
template<class DataType , class Marshaller = ioda::Object_Accessor<DataType>, class TypeWrapper = Types::GetType_Wrapper<DataType>> | |
Variable_Implementation | read (gsl::span< DataType > data, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const |
Read the variable into a span (range) or memory. Ordering is row-major. More... | |
template<class DataType , class Marshaller = ioda::Object_Accessor<DataType>, class TypeWrapper = Types::GetType_Wrapper<DataType>> | |
Variable_Implementation | read (std::vector< DataType > &data, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const |
Read the variable into a vector. Resize if needed. For a non-resizing version, use a gsl::span. More... | |
template<class DataType , class Marshaller = ioda::Object_Accessor<DataType>, class TypeWrapper = Types::GetType_Wrapper<DataType>> | |
std::vector< DataType > | readAsVector (const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const |
Read the variable into a new vector. Python convenience function. More... | |
template<class DataType , class Marshaller = ioda::Object_Accessor<DataType>, class TypeWrapper = Types::GetType_Wrapper<DataType>> | |
Variable_Implementation | read (std::valarray< DataType > &data, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const |
Valarray read convenience function. Resize if needed. For a non-resizing version, use a gsl::span. More... | |
template<class EigenClass , bool Resize = detail::EigenCompat::CanResize<EigenClass>::value> | |
Variable_Implementation | readWithEigenRegular (EigenClass &res, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const |
Read data into an Eigen::Array, Eigen::Matrix, Eigen::Map, etc. More... | |
template<class EigenClass > | |
Variable_Implementation | readWithEigenTensor (EigenClass &res, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const |
Read data into an Eigen::Array, Eigen::Matrix, Eigen::Map, etc. More... | |
template<class EigenClass > | |
EigenClass | _readWithEigenRegular_python (const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const |
virtual Selections::SelectionBackend_t | instantiateSelection (const Selection &sel) const |
Convert a selection into its backend representation. More... | |
Public Attributes | |
Metadata manipulation | |
Has_Attributes | atts |
Attributes. More... | |
Protected Attributes | |
std::shared_ptr< Variable_Backend > | backend_ |
Using an opaque object to implement the backend. More... | |
Querying Functions for Fill Values, Chunking and Compression | |
typedef detail::FillValueData_t | FillValueData_t |
Remap fill value storage type into this class. More... | |
virtual VariableCreationParameters | getCreationParameters (bool doAtts=true, bool doDims=true) const |
Convenience function to get fill value, attributes, chunk sizes, and compression in a collective call. More... | |
virtual bool | hasFillValue () const |
Check if a variable has a fill value set. More... | |
virtual FillValueData_t | getFillValue () const |
Retrieve the fill value. More... | |
virtual std::vector< Dimensions_t > | getChunkSizes () const |
Retrieve the chunking options for the Variable. More... | |
virtual std::pair< bool, int > | getGZIPCompression () const |
Retrieve the GZIP compression options for the Variable. More... | |
virtual std::tuple< bool, unsigned, unsigned > | getSZIPCompression () const |
Retrieve the SZIP compression options for the Variable. More... | |
General Functions | |
Variable_Base (std::shared_ptr< Variable_Backend >) | |
virtual | ~Variable_Base () |
std::shared_ptr< Variable_Backend > | get () const |
Gets a handle to the underlying object that implements the backend functionality. More... | |
Exists to prevent constructor conflicts when passing a backend into a frontend object.
Definition at line 53 of file Variable.h.
typedef detail::FillValueData_t ioda::detail::Variable_Base< Variable_Implementation >::FillValueData_t |
Remap fill value storage type into this class.
Definition at line 135 of file Variable.h.
|
protected |
Definition at line 15 of file Variable.cpp.
|
virtualdefault |
|
inline |
|
inline |
|
virtual |
Attach a dimension scale to this Variable.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 184 of file Variable.cpp.
|
virtual |
Detach a dimension scale.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 198 of file Variable.cpp.
std::shared_ptr< Variable_Backend > ioda::detail::Variable_Base::get |
Gets a handle to the underlying object that implements the backend functionality.
Definition at line 21 of file Variable.cpp.
BasicTypes ioda::detail::Variable_Base< Variable_Implementation >::getBasicType | ( | ) | const |
Convenience function to query type.
|
virtual |
Retrieve the chunking options for the Variable.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 123 of file Variable.cpp.
|
virtual |
Convenience function to get fill value, attributes, chunk sizes, and compression in a collective call.
This function has better performance on some engines for bulk operations than calling separately.
doAtts | includes attributes in the creation parameters. |
doDims | includes dimension scales in the creation parameters. Although dimensions are attributes on some backends, we treat them separately in this function. |
Reimplemented in ioda::detail::Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 85 of file Variable.cpp.
|
virtual |
Get current and maximum dimensions, and number of total points.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 160 of file Variable.cpp.
|
virtual |
Which dimensions are attached at which positions? This function may offer improved performance on some backends compared to serial isDimensionScaleAttached calls.
scalesToQueryAgainst | is a vector containing the scales. You can pass in "tagged" strings that map the Variable to a name. If you do not pass in a scale to check against, then this scale will not be checked and will not be present in the function output. |
firstOnly | is specified when only one dimension can be attached to each axis (the default). |
Reimplemented in ioda::detail::Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 303 of file Variable.cpp.
|
inline |
Get the name of this Variable's defined dimension scale.
Definition at line 217 of file Variable.h.
|
virtual |
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 276 of file Variable.cpp.
|
virtual |
Retrieve the fill value.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 111 of file Variable.cpp.
|
virtual |
Retrieve the GZIP compression options for the Variable.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 136 of file Variable.cpp.
|
virtual |
Retrieve the SZIP compression options for the Variable.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 148 of file Variable.cpp.
|
virtual |
Get type.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 49 of file Variable.cpp.
|
virtual |
Query the backend and get the type provider.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 37 of file Variable.cpp.
|
virtual |
Check if a variable has a fill value set.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 98 of file Variable.cpp.
|
virtual |
Convert a selection into its backend representation.
sel | is the frontend selection. |
Reimplemented in ioda::detail::Engines::HH::HH_Variable.
Definition at line 344 of file Variable.cpp.
|
inline |
Convenience function to check a Variable'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 99 of file Variable.h.
|
inline |
Python compatability function.
Definition at line 108 of file Variable.h.
|
virtual |
Hand-off to the backend to check equivalence.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 26 of file Variable.cpp.
|
virtual |
Is this Variable used as a dimension scale?
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 251 of file Variable.cpp.
|
virtual |
Is a dimension scale attached to this Variable in a certain position?
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 288 of file Variable.cpp.
|
virtual |
Read the Variable - as char array. Ordering is row-major.
This is the fundamental read function that has to be implemented.
data | is a byte-array that will hold the read data. |
in_memory_dataType | describes how ioda should arrange the read data in memory. As floats? As doubles? Strings? |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 330 of file Variable.cpp.
|
inline |
Read the variable into a span (range) or memory. Ordering is row-major.
DataType | is the type of the data to be written. |
Marshaller | is a class that serializes / deserializes data. |
TypeWrapper | translates DataType into a form that the backend understands. |
data | is a byte-array that will hold the read data. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
Definition at line 443 of file Variable.h.
|
inline |
Valarray read convenience function. Resize if needed. For a non-resizing version, use a gsl::span.
DataType | is the type of the data to be written. |
Marshaller | is a class that serializes / deserializes data. |
TypeWrapper | translates DataType into a form that the backend understands. |
data | is a valarray acting as a data buffer that is filled with the metadata's contents. It gets resized as needed. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
Definition at line 525 of file Variable.h.
|
inline |
Read the variable into a vector. Resize if needed. For a non-resizing version, use a gsl::span.
Ordering is row-major.
DataType | is the type of the data to be written. |
Marshaller | is a class that serializes / deserializes data. |
TypeWrapper | translates DataType into a form that the backend understands. |
data | is a byte-array that will hold the read data. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
Definition at line 483 of file Variable.h.
|
inline |
Read the variable into a new vector. Python convenience function.
DataType | is the type of the data to be written. |
Marshaller | is a class that serializes / deserializes data. |
TypeWrapper | translates DataType into a form that the backend understands. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
Definition at line 502 of file Variable.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. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
ioda::xError | if the variable's dimensionality is too high. |
ioda::xError | if resize = false and there is a dimension mismatch. |
Definition at line 551 of file Variable.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. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
jedi::xError | if there is a size mismatch. |
Definition at line 615 of file Variable.h.
|
virtual |
Resize the variable.
newDims | are the new dimensions. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 172 of file Variable.cpp.
Variable ioda::detail::Variable_Base::setDimScale | ( | const std::vector< Named_Variable > & | dims | ) |
Set dimensions (convenience function to several invocations of attachDimensionScale).
Definition at line 225 of file Variable.cpp.
Set dimensions (convenience function to several invocations of attachDimensionScale).
Definition at line 212 of file Variable.cpp.
Set dimensions (convenience function to several invocations of attachDimensionScale).
Definition at line 241 of file Variable.cpp.
Variable ioda::detail::Variable_Base::setDimScale | ( | const Variable & | dim1, |
const Variable & | dim2, | ||
const Variable & | dim3 | ||
) |
Set dimensions (convenience function to several invocations of attachDimensionScale).
Definition at line 245 of file Variable.cpp.
Set dimensions (convenience function to several invocations of attachDimensionScale).
Definition at line 237 of file Variable.cpp.
|
virtual |
Designate this table as a dimension scale.
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 264 of file Variable.cpp.
|
inline |
|
inline |
Write the Variable.
DataType | is the type of the data to be written. |
Marshaller | is a class that serializes / deserializes data. |
TypeWrapper | translates DataType into a form that the backend understands. |
data | is a span of data. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
ioda::xError | if data has the wrong size. |
Definition at line 311 of file Variable.h.
|
inline |
Write the Variable.
DataType | is the type of the data to be written. |
Marshaller | is a class that serializes / deserializes data. |
TypeWrapper | translates DataType into a form that the backend understands. |
data | is a span of data. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
ioda::xError | if data has the wrong size. |
Definition at line 281 of file Variable.h.
|
inline |
Write the variable.
DataType | is the type of the data to be written. |
Marshaller | is a class that serializes / deserializes data. |
TypeWrapper | translates DataType into a form that the backend understands. |
data | is a span of data. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
ioda::xError | if data has the wrong size. |
Definition at line 340 of file Variable.h.
|
virtual |
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. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
ioda::xError | if data has the wrong size. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_Variable_Backend, and ioda::detail::Engines::HH::HH_Variable.
Definition at line 317 of file Variable.cpp.
|
inline |
Write an Eigen object (a Matrix, an Array, a Block, a Map).
EigenClass | is the type of the Eigen object being written. |
d | is the data to be written. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
ioda::xError | on a dimension mismatch. |
Definition at line 361 of file Variable.h.
|
inline |
Write an Eigen Tensor-like object.
EigenClass | is the type of the Eigen object being written. |
d | is the data to be written. |
mem_selection | is the user's memory layout representing the location where the data is read from. |
file_selection | is the backend's memory layout representing the location where the data are written to. |
ioda::xError | on a dimension mismatch. |
Definition at line 393 of file Variable.h.
Has_Attributes ioda::detail::Variable_Base< Variable_Implementation >::atts |
Attributes.
Definition at line 71 of file Variable.h.
|
protected |
Using an opaque object to implement the backend.
Definition at line 56 of file Variable.h.