16 #include <gsl/gsl-lite.hpp>
45 template <
class DataType>
56 template <
class DataInput,
class DimensionInput>
60 template <
class DimensionInput>
64 template <
class DataInput_junk_param = DataType>
65 void write(const ::gsl::span<const DataType>& data) {
66 data_ = ::std::vector<DataType>(data.begin(), data.end());
74 std::vector<std::shared_ptr<detail::Attribute_Creator_Base>>
atts_;
87 template <
class DataType>
89 ::std::initializer_list<Dimensions_t> dimensions) {
94 template <
class DataType>
96 ::std::initializer_list<DataType> data,
97 ::std::initializer_list<Dimensions_t> dimensions) {
102 template <
class DataType2>
104 std::shared_ptr<Attribute_Creator<DataType2>>
inner;
106 template <
class DataInput_junk_param = DataType2>
107 void write(const ::gsl::span<const DataType2>& data) {
112 template <
class DataType>
114 auto res = std::make_shared<Attribute_Creator<DataType>>(attrname, dimensions);
115 atts_.push_back(res);
Interfaces for ioda::Attribute and related classes.
Describe the dimensions of a ioda::Attribute or ioda::Variable.
Interfaces for ioda::Has_Attributes and related classes.
Interfaces for ioda::Type and related classes.
Flywheel creation of ioda::Attribute objects.This is needed because you might want to make the same A...
std::vector< std::shared_ptr< detail::Attribute_Creator_Base > > atts_
Attribute_Creator_Store & create(const std::string &attrname, ::std::initializer_list< DataType > data, ::std::initializer_list< Dimensions_t > dimensions)
virtual ~Attribute_Creator_Store()
Attribute_Creator_Store & create(const std::string &attrname, ::gsl::span< const DataType > data, ::std::initializer_list< Dimensions_t > dimensions)
AttWrapper< DataType > create(const std::string &attrname, ::std::vector< Dimensions_t > dimensions)
Attribute_Creator_Store()
Flywheel creation of ioda::Attribute.
void write(const ::gsl::span< const DataType > &data)
::std::vector< Dimensions_t > dimensions_
virtual ~Attribute_Creator()
Attribute_Creator(const std::string &name, DimensionInput dimensions)
::std::vector< DataType > data_
Attribute_Creator(const std::string &name, DataInput data, DimensionInput dimensions)
void apply(Has_Attributes &obj) const override
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
Flywheel creation of ioda::Attribute.
Attribute_Creator_Base(const std::string &name)
virtual ~Attribute_Creator_Base()
virtual void apply(Has_Attributes &obj) const =0
Describes the functions that can add attributes.
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.
Common preprocessor definitions used throughout IODA.
#define IODA_DL
A preprocessor tag that indicates that a symbol is to be exported/imported.
std::shared_ptr< Attribute_Creator< DataType2 > > inner
void write(const ::gsl::span< const DataType2 > &data)
AttWrapper(std::shared_ptr< Attribute_Creator< DataType2 >> d)