17 #include <gsl/gsl-lite.hpp>
40 struct VariableCreationParameters;
42 struct Named_Variable;
45 class Attribute_Backend;
46 class Variable_Backend;
52 template <
class Variable_Implementation = Variable>
79 std::shared_ptr<Variable_Backend>
get()
const;
98 template <
class DataType>
102 return isA(templateType);
105 virtual bool isA(
Type lhs)
const;
128 bool doDims =
true)
const;
239 const std::list<Named_Variable>& scalesToQueryAgainst,
240 bool firstOnly =
true)
const;
279 template <
class DataType,
class Marshaller = Object_Accessor<DataType>,
280 class TypeWrapper = Types::GetType_Wrapper<DataType>>
281 Variable_Implementation
write(
const gsl::span<DataType> data,
286 auto d = m.serialize(data);
287 return write(gsl::make_span<char>(
288 const_cast<char*
>(
reinterpret_cast<const char*
>(d->DataPointers.data())),
289 d->DataPointers.size() *
sizeof(
typename Marshaller::mutable_value_type)),
309 template <
class DataType,
class Marshaller = Object_Accessor<DataType>,
310 class TypeWrapper = Types::GetType_Wrapper<DataType>>
311 Variable_Implementation
write(
const gsl::span<const DataType> data,
316 auto d = m.serialize(data);
317 return write(gsl::make_span<char>(
318 const_cast<char*
>(
reinterpret_cast<const char*
>(d->DataPointers.data())),
319 d->DataPointers.size() *
sizeof(
typename Marshaller::mutable_value_type)),
338 template <
class DataType,
class Marshaller = Object_Accessor<DataType>,
339 class TypeWrapper = Types::GetType_Wrapper<DataType>>
340 Variable_Implementation
write(
const std::vector<DataType>& data,
344 return this->write<DataType, Marshaller, TypeWrapper>(gsl::make_span(data), mem_selection,
360 template <
class EigenClass>
366 typedef typename EigenClass::Scalar ScalarType;
368 Eigen::Array<ScalarType, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> dout;
369 dout.resize(d.rows(), d.cols());
371 const auto& dconst = dout;
372 auto sp = gsl::make_span(dconst.data(),
static_cast<int>(d.rows() * d.cols()));
374 return write<ScalarType>(sp, mem_selection, file_selection);
379 static_assert(
false,
"The Eigen headers cannot be found, so this function cannot be used.");
392 template <
class EigenClass>
400 auto sp = (gsl::make_span(d.data(), dims.
numElements));
401 auto res =
write(sp, mem_selection, file_selection);
408 false,
"The Eigen unsupported/ headers cannot be found, so this function cannot be used.");
441 template <
class DataType,
class Marshaller = ioda::Object_Accessor<DataType>,
442 class TypeWrapper = Types::GetType_Wrapper<DataType>>
443 Variable_Implementation
read(gsl::span<DataType> data,
447 const size_t numObjects = data.size();
451 Marshaller m(pointerOwner);
452 auto p = m.prep_deserialize(numObjects);
453 read(gsl::make_span<char>(
454 reinterpret_cast<char*
>(p->DataPointers.data()),
458 p->DataPointers.size() *
sizeof(
typename Marshaller::mutable_value_type)),
460 m.deserialize(p, data);
462 return Variable_Implementation{
backend_};
481 template <
class DataType,
class Marshaller = ioda::Object_Accessor<DataType>,
482 class TypeWrapper = Types::GetType_Wrapper<DataType>>
483 Variable_Implementation
read(std::vector<DataType>& data,
487 return read<DataType, Marshaller, TypeWrapper>(gsl::make_span(data.data(), data.size()),
488 mem_selection, file_selection);
500 template <
class DataType,
class Marshaller = ioda::Object_Accessor<DataType>,
501 class TypeWrapper = Types::GetType_Wrapper<DataType>>
505 read<DataType, Marshaller, TypeWrapper>(gsl::make_span(data.data(), data.size()), mem_selection,
523 template <
class DataType,
class Marshaller = ioda::Object_Accessor<DataType>,
524 class TypeWrapper = Types::GetType_Wrapper<DataType>>
525 Variable_Implementation
read(std::valarray<DataType>& data,
531 return read<DataType, Marshaller, TypeWrapper>(gsl::make_span(std::begin(data), std::end(data)),
532 mem_selection, file_selection);
550 template <class EigenClass, bool Resize = detail::EigenCompat::CanResize<EigenClass>::value>
559 typedef typename EigenClass::Scalar ScalarType;
563 "This object cannot be resized, but you have specified that a resize is required.");
567 if (dims.dimensionality > 2)
568 throw Exception(
"Dimensionality too high for a regular Eigen read. Use "
569 "Eigen::Tensor reads instead.",
ioda_Here());
571 int nDims[2] = {1, 1};
572 if (dims.dimsCur.size() >= 1) nDims[0] = gsl::narrow<int>(dims.dimsCur[0]);
573 if (dims.dimsCur.size() >= 2) nDims[1] = gsl::narrow<int>(dims.dimsCur[1]);
579 else if (dims.numElements != (
size_t)(res.rows() * res.cols()))
588 Eigen::Array<ScalarType, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> data_in(res.rows(),
591 auto ret = read<ScalarType>(gsl::span<ScalarType>(data_in.data(), dims.numElements),
592 mem_selection, file_selection);
599 static_assert(
false,
"The Eigen headers cannot be found, so this function cannot be used.");
614 template <
class EigenClass>
624 if (ioda_dims.numElements != eigen_dims.numElements)
627 auto sp = (gsl::make_span(res.data(), eigen_dims.numElements));
628 return read(sp, mem_selection, file_selection);
634 false,
"The Eigen unsupported/ headers cannot be found, so this function cannot be used.");
639 template <
class EigenClass>
686 Variable(std::shared_ptr<detail::Variable_Backend> b);
715 std::vector<std::vector<Named_Variable>> getDimensionScaleMappings(
716 const std::list<Named_Variable>& scalesToQueryAgainst,
717 bool firstOnly =
true)
const override;
721 bool doDims =
true)
const override;
732 template <
class Attribute_Implementation = Attribute>
734 const Attribute_Implementation& att) {
743 template <
class Has_Attributes_Implementation = Has_Attributes>
745 const Has_Attributes_Implementation& hatts) {
746 return hatts.backend_;
Convenience functions to work with Eigen objects.
Fill value getters and setters.
Interfaces for ioda::Has_Attributes and related classes.
Classes and functions that implement the type system and allow for frontend/backend communication.
Dataspace selections for reading and writing ioda::Variable data.
Interfaces for ioda::Type and related classes.
Frontend/backend bindings for the type system.
Python extensions to ioda::Variable.
The ioda exception class.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
A Selection represents the bounds of the data, in ioda or in userspace, that you are reading or writi...
Represents the "type" (i.e. integer, string, float) of a piece of data.
detail::python_bindings::VariableReadVector< Variable > _py_readVector
detail::python_bindings::VariableScales< Variable > _py_scales
detail::python_bindings::VariableWriteNPArray< Variable > _py_writeNPArray
detail::python_bindings::VariableWriteVector< Variable > _py_writeVector
detail::python_bindings::VariableIsA< Variable > _py_isA
detail::python_bindings::VariableReadNPArray< Variable > _py_readNPArray
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
virtual PointerOwner getReturnedPointerOwner() const
When a pointer is passed from the backend to the frontend, who has to free it?
Variable backends inherit from this.
static std::shared_ptr< Attribute_Backend > _getAttributeBackend(const Attribute_Implementation &att)
This function de-encapsulates an Attribute's backend storage object. This function is used by Variabl...
virtual ~Variable_Backend()
static std::shared_ptr< Has_Attributes_Backend > _getHasAttributesBackend(const Has_Attributes_Implementation &hatts)
This function de-encapsulates a Has_Attributes backend storage object. IODA-internal use only.
Exists to prevent constructor conflicts when passing a backend into a frontend object.
virtual Variable attachDimensionScale(unsigned int DimensionNumber, const Variable &scale)
Attach a dimension scale to this Variable.
Variable setDimScale(const std::vector< Variable > &dims)
Set dimensions (convenience function to several invocations of attachDimensionScale).
bool _py_isA2(BasicTypes dataType)
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.
Variable_Implementation write(const gsl::span< const DataType > data, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
Write the Variable.
virtual Type getType() const
Get type.
virtual FillValueData_t getFillValue() const
Retrieve the fill value.
virtual Variable setIsDimensionScale(const std::string &dimensionScaleName)
Designate this table as a dimension scale.
virtual std::vector< Dimensions_t > getChunkSizes() const
Retrieve the chunking options for the Variable.
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.
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).
Variable_Implementation writeWithEigenTensor(const EigenClass &d, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
Write an Eigen Tensor-like object.
virtual std::pair< bool, int > getGZIPCompression() const
Retrieve the GZIP compression options for the Variable.
std::shared_ptr< Variable_Backend > backend_
Using an opaque object to implement the backend.
bool isA() const
Convenience function to check a Variable's storage type.
Has_Attributes atts
Attributes.
virtual bool isDimensionScaleAttached(unsigned int DimensionNumber, const Variable &scale) const
Is a dimension scale attached to this Variable in a certain position?
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.
virtual bool hasFillValue() const
Check if a variable has a fill value set.
Variable_Implementation write(const std::vector< DataType > &data, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
Write the variable.
virtual bool isDimensionScale() const
Is this Variable used as a dimension scale?
virtual Variable detachDimensionScale(unsigned int DimensionNumber, const Variable &scale)
Detach a dimension scale.
BasicTypes getBasicType() const
Convenience function to query type.
Type type() const
Get type.
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.
virtual Dimensions getDimensions() const
virtual std::tuple< bool, unsigned, unsigned > getSZIPCompression() const
Retrieve the SZIP compression options for the Variable.
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.
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 som...
Variable_Implementation write(const gsl::span< DataType > data, const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all)
Write the Variable.
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...
virtual detail::Type_Provider * getTypeProvider() const
Query the backend and get the type provider.
std::string getDimensionScaleName() const
Get the name of this Variable's defined dimension scale.
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.
Variable_Base(std::shared_ptr< Variable_Backend >)
bool isA(BasicTypes dataType) const
Python compatability function.
EigenClass _readWithEigenRegular_python(const Selection &mem_selection=Selection::all, const Selection &file_selection=Selection::all) const
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.
std::shared_ptr< Variable_Backend > get() const
Gets a handle to the underlying object that implements the backend functionality.
virtual Variable resize(const std::vector< Dimensions_t > &newDims)
Resize the variable.
detail::FillValueData_t FillValueData_t
Remap fill value storage type into this class.
virtual Selections::SelectionBackend_t instantiateSelection(const Selection &sel) const
Convert a selection into its backend representation.
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.
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
Type GetType(gsl::not_null< const ::ioda::detail::Type_Provider * > t, std::initializer_list< Dimensions_t > Adims={}, typename std::enable_if<!is_string< DataType >::value >::type *=0)
For fundamental, non-string types.
std::shared_ptr< InstantiatedSelection > SelectionBackend_t
static IODA_DL const Selection all
PointerOwner
Who owns (and should free) pointers passed across the frontend / backend interface?
::std::is_base_of< ResizeableBase, EigenClass > CanResize
Dimensions getTensorDimensions(EigenClass &e)
typename ::std::enable_if< CanResize< EigenClass >::value >::type DoEigenResize(EigenClass &e, ::Eigen::Index rows, ::Eigen::Index cols)
Describes the dimensions of an Attribute or Variable.
A named pair of (variable_name, ioda::Variable).
Named_Variable(const std::string &name, const ioda::Variable &var)
bool operator<(const Named_Variable &rhs) const
static Type GetType(gsl::not_null< const ::ioda::detail::Type_Provider * > t)
Used to specify Variable creation-time properties.
Container used to store and manipulate fill values.