18 : backend_(hnd_attr) {}
28 return backend_->getType();
38 return backend_->getDimensions();
48 return backend_->isA(lhs);
58 return backend_->getTypeProvider();
68 return backend_->write(data, in_memory_dataType);
78 return backend_->read(data, in_memory_dataType);
92 : Attribute_Base(nullptr),
96 _py_readNPArray{this},
97 _py_writeSingle{this},
98 _py_writeVector{this},
99 _py_writeNPArray{this} {}
103 _py_readSingle{this},
104 _py_readVector{this},
105 _py_readNPArray{this},
106 _py_writeSingle{this},
107 _py_writeVector{this},
108 _py_writeNPArray{this} {}
110 : Attribute_Base{r.backend_},
112 _py_readSingle{this},
113 _py_readVector{this},
114 _py_readNPArray{this},
115 _py_writeSingle{this},
116 _py_writeVector{this},
117 _py_writeNPArray{this} {}
119 if (
this == &r)
return *
this;
Interfaces for ioda::Attribute and related classes.
This class represents attributes, which may be attached to both Variables and Groups.
detail::python_bindings::AttributeReadNPArray< Attribute > _py_readNPArray
detail::python_bindings::AttributeWriteSingle< Attribute > _py_writeSingle
detail::python_bindings::AttributeReadVector< Attribute > _py_readVector
detail::python_bindings::AttributeIsA< Attribute > _py_isA
Attribute & operator=(const Attribute &)
detail::python_bindings::AttributeWriteVector< Attribute > _py_writeVector
detail::python_bindings::AttributeReadSingle< Attribute > _py_readSingle
detail::python_bindings::AttributeWriteNPArray< Attribute > _py_writeNPArray
The ioda exception class.
Represents the "type" (i.e. integer, string, float) of a piece of data.
virtual ~Attribute_Backend()
Base class for Attributes.
virtual ~Attribute_Base()
virtual Dimensions getDimensions() const
Get Attribute's dimensions.
bool isA() const
Convenience function to check an Attribute's storage type.
DataType read() const
Read a single value (convenience function).
std::shared_ptr< Attribute_Backend > backend_
Using an opaque object to implement the backend.
virtual Attribute_Implementation write(gsl::span< char > data, const Type &type)
The fundamental write function. Backends overload this function to implement all write operations.
Attribute_Base(std::shared_ptr< Attribute_Backend >)
virtual Type getType() const
Get Attribute type.
virtual detail::Type_Provider * getTypeProvider() const
Query the backend and get the type provider.
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Describes the dimensions of an Attribute or Variable.