29 #if defined(__INTEL_COMPILER)
30 # pragma warning(push)
31 # pragma warning(disable : 444)
37 public std::enable_shared_from_this<ObsStore_Attribute_Backend> {
40 std::shared_ptr<ioda::ObsStore::Attribute>
backend_;
76 std::shared_ptr<ioda::ObsStore::Has_Attributes>
backend_;
87 std::vector<std::
string> list() const final;
91 bool exists(const std::
string& attname) const final;
95 void remove(const std::
string& attname) final;
99 Attribute open(const std::
string& attrname) const final;
105 Attribute create(const std::
string& attrname, const
Type& in_memory_dataType,
106 const std::vector<Dimensions_t>& dimensions = {1})
final;
111 void rename(
const std::string& oldName,
const std::string& newName)
final;
113 #if defined(__INTEL_COMPILER)
114 # pragma warning(pop)
Functions for ObsStore Attribute and Has_Attributes.
Interfaces for ioda::Group and related classes.
Functions for ObsStore type markers.
This class represents attributes, which may be attached to both Variables and Groups.
This is the implementation of Attributes in ioda::ObsStore.
Attribute write(gsl::span< char > data, const Type &in_memory_dataType) final
transfer data into the ObsStore Attribute
Dimensions getDimensions() const final
retrieve dimensions of attribute
std::shared_ptr< ioda::ObsStore::Attribute > backend_
ObsStore Attribute.
detail::Type_Provider * getTypeProvider() const final
return an ObsStore type marker
Type getType() const final
Encapsulate the internal ObsStore_Type object as a Type.
This is the implementation of Has_Attributes in ioda::ObsStore.
std::shared_ptr< ioda::ObsStore::Has_Attributes > backend_
ObsStore Has_Attribute.
virtual ~ObsStore_HasAttributes_Backend()
Represents the "type" (i.e. integer, string, float) of a piece of data.
Attribute backends inherit from this.
bool isA() const
Convenience function to check an Attribute's storage type.
DataType read() const
Read a single value (convenience function).
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
Common preprocessor definitions used throughout IODA.
@ ObsStore
ObsStore in-memory.
Describes the dimensions of an Attribute or Variable.