15 #include <gsl/gsl-lite.hpp>
32 class Has_Attributes_Backend;
33 class Has_Attributes_Base;
34 class Variable_Backend;
44 template <
class DerivedHasAtts>
60 template <
class DataType>
61 DerivedHasAtts
add(
const std::string& attrname, ::gsl::span<const DataType> data,
62 const ::std::vector<Dimensions_t>& dimensions) {
63 auto derivedThis =
static_cast<DerivedHasAtts*
>(
this);
64 auto att = derivedThis->template create<DataType>(attrname, dimensions);
65 att.template write<DataType>(data);
78 template <
class DataType>
79 DerivedHasAtts
add(
const std::string& attrname, ::std::initializer_list<DataType> data,
80 const ::std::vector<Dimensions_t>& dimensions) {
81 auto derivedThis =
static_cast<DerivedHasAtts*
>(
this);
82 auto att = derivedThis->template create<DataType>(attrname, dimensions);
83 att.template write<DataType>(data);
95 template <
class DataType>
96 DerivedHasAtts
add(
const std::string& attrname, ::gsl::span<const DataType> data) {
97 return add(attrname, data, {gsl::narrow<Dimensions_t>(data.size())});
106 template <
class DataType>
107 DerivedHasAtts
add(
const std::string& attrname, ::std::initializer_list<DataType> data) {
108 return add(attrname, data, {gsl::narrow<Dimensions_t>(data.size())});
119 template <
class DataType>
120 DerivedHasAtts
add(
const std::string& attrname,
const DataType& data) {
121 return add(attrname, gsl::make_span(&data, 1), {1});
124 template <
class EigenClass>
128 typedef typename EigenClass::Scalar ScalarType;
130 Eigen::Array<ScalarType, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor> dout;
131 dout.resize(data.rows(), data.cols());
133 const auto& dconst = dout;
134 auto sp = gsl::make_span(dconst.data(),
static_cast<int>(data.rows() * data.cols()));
137 return add(attrname, sp,
138 {gsl::narrow<Dimensions_t>(data.rows()), gsl::narrow<Dimensions_t>(data.cols())});
140 return add(attrname, sp);
142 static_assert(
false,
"The Eigen headers cannot be found, so this function cannot be used.");
146 template <
class EigenClass>
149 typedef typename EigenClass::Scalar ScalarType;
152 auto derived_this =
static_cast<DerivedHasAtts*
>(
this);
153 Attribute att = derived_this->template create<ScalarType>(attrname, dims.
dimsCur);
156 return *derived_this;
159 false,
"The Eigen unsupported/ headers cannot be found, so this function cannot be used.");
171 template <
class DerivedHasAtts>
189 template <
class DataType>
190 const DerivedHasAtts
read(
const std::string& attrname, gsl::span<DataType> data)
const {
192 Attribute att =
static_cast<const DerivedHasAtts*
>(
this)->open(attrname);
194 return *(
static_cast<const DerivedHasAtts*
>(
this));
202 template <
class DataType>
203 const DerivedHasAtts
read(
const std::string& attrname, std::vector<DataType>& data)
const {
204 Attribute att =
static_cast<const DerivedHasAtts*
>(
this)->open(attrname);
206 return *(
static_cast<const DerivedHasAtts*
>(
this));
214 template <
class DataType>
215 const DerivedHasAtts
read(
const std::string& attrname, std::valarray<DataType>& data)
const {
216 Attribute att =
static_cast<const DerivedHasAtts*
>(
this)->open(attrname);
218 return *(
static_cast<const DerivedHasAtts*
>(
this));
226 template <
class DataType>
227 const DerivedHasAtts
read(
const std::string& attrname, DataType& data)
const {
228 Attribute att =
static_cast<const DerivedHasAtts*
>(
this)->open(attrname);
229 att.
read<DataType>(data);
230 return *(
static_cast<const DerivedHasAtts*
>(
this));
238 template <
class DataType>
239 DataType
read(
const std::string& attrname)
const {
240 Attribute att =
static_cast<const DerivedHasAtts*
>(
this)->open(attrname);
241 return att.
read<DataType>();
244 template <class EigenClass, bool Resize = detail::EigenCompat::CanResize<EigenClass>::value>
247 Attribute att =
static_cast<const DerivedHasAtts*
>(
this)->open(attrname);
249 return *(
static_cast<const DerivedHasAtts*
>(
this));
251 static_assert(
false,
"The Eigen headers cannot be found, so this function cannot be used.")
255 template <
class EigenClass>
258 Attribute att =
static_cast<const DerivedHasAtts*
>(
this)->open(attrname);
260 return *(
static_cast<const DerivedHasAtts*
>(
this));
263 false,
"The Eigen unsupported/ headers cannot be found, so this function cannot be used.");
295 virtual std::vector<std::string> list()
const;
298 inline std::vector<std::string>
operator()()
const {
return list(); }
304 virtual bool exists(
const std::string& attname)
const;
308 virtual void remove(
const std::string& attname);
321 virtual std::vector<std::pair<std::string, Attribute>> openAll()
const;
329 virtual Attribute create(
const std::string& attrname,
const Type& in_memory_dataType,
330 const std::vector<Dimensions_t>& dimensions = {1});
334 const std::vector<Dimensions_t>& dimensions = {1}) {
335 return create(attrname, ::
ioda::Type(dataType, getTypeProvider()), dimensions);
344 template <
class DataType,
class TypeWrapper = Types::GetType_Wrapper<DataType>>
346 const std::vector<Dimensions_t>& dimensions = {1}) {
349 auto att = create(attrname, in_memory_dataType, dimensions);
361 virtual void rename(
const std::string& oldName,
const std::string& newName);
375 std::vector<std::pair<std::string, Attribute>> openAll()
const override;
Interfaces for ioda::Attribute and related classes.
Describe the dimensions of a ioda::Attribute or ioda::Variable.
Convenience functions to work with Eigen objects.
Interfaces for ioda::Type and related classes.
This class represents attributes, which may be attached to both Variables and Groups.
The ioda exception class.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
virtual ~Has_Attributes()
Represents the "type" (i.e. integer, string, float) of a piece of data.
Attribute_Implementation writeWithEigenTensor(const EigenClass &d)
Write an Eigen Tensor-like object.
Attribute_Implementation readWithEigenRegular(EigenClass &res) const
Read data into an Eigen::Array, Eigen::Matrix, Eigen::Map, etc.
Attribute_Implementation readWithEigenTensor(EigenClass &res) const
Read data into an Eigen::Array, Eigen::Matrix, Eigen::Map, etc.
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.
Describes the functions that can add attributes.
DerivedHasAtts addWithEigenTensor(const std::string &attrname, const EigenClass &data)
DerivedHasAtts add(const std::string &attrname, ::gsl::span< const DataType > data, const ::std::vector< Dimensions_t > &dimensions)
Create and write an Attribute, for arbitrary dimensions.
DerivedHasAtts add(const std::string &attrname, ::gsl::span< const DataType > data)
Create and write an Attribute, for a single-dimensional span of 1-D data.
DerivedHasAtts addWithEigenRegular(const std::string &attrname, const EigenClass &data, bool is2D=true)
DerivedHasAtts add(const std::string &attrname, ::std::initializer_list< DataType > data)
Create and write an Attribute, for a 1-D initializer list.
DerivedHasAtts add(const std::string &attrname, ::std::initializer_list< DataType > data, const ::std::vector< Dimensions_t > &dimensions)
Create and write an Attribute, for arbitrary dimensions.
DerivedHasAtts add(const std::string &attrname, const DataType &data)
Create and write a single datum of an Attribute.
Describes the functions that can read attributes.
DataType read(const std::string &attrname) const
Read a datum of an Attribute.
DerivedHasAtts readWithEigenTensor(const std::string &attrname, EigenClass &data)
const DerivedHasAtts read(const std::string &attrname, std::valarray< DataType > &data) const
Open and read an Attribute, with unknown dimensions.
virtual ~CanReadAttributes()
const DerivedHasAtts read(const std::string &attrname, gsl::span< DataType > data) const
Open and read an Attribute, for expected dimensions.
DerivedHasAtts readWithEigenRegular(const std::string &attrname, EigenClass &data)
const DerivedHasAtts read(const std::string &attrname, std::vector< DataType > &data) const
Open and read an Attribute, with unknown dimensions.
const DerivedHasAtts read(const std::string &attrname, DataType &data) const
Read a datum of an Attribute.
virtual ~Has_Attributes_Backend()
std::vector< std::string > operator()() const
Attribute create(const std::string &attrname, const std::vector< Dimensions_t > &dimensions={1})
Create an Attribute without setting its data.
Attribute operator[](const std::string &name) const
Open Attribute by name.
virtual ~Has_Attributes_Base()
std::shared_ptr< Has_Attributes_Backend > backend_
Using an opaque object to implement the backend.
Attribute _create_py(const std::string &attrname, BasicTypes dataType, const std::vector< Dimensions_t > &dimensions={1})
Python compatability function.
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Variable backends inherit from this.
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.
Dimensions getTensorDimensions(EigenClass &e)
Describes the dimensions of an Attribute or Variable.
std::vector< Dimensions_t > dimsCur
The dimensions of the data.