35 auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(in_memory_dataType.
getBackend());
42 const Type& in_memory_dataType)
const {
44 auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(in_memory_dataType.
getBackend());
50 return Attribute{std::make_shared<ObsStore_Attribute_Backend>(*
this)};
54 auto backend_type =
backend_->dtype();
55 ObsTypeInfo typ{backend_type.first, backend_type.second};
60 auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(lhs.
getBackend());
67 std::vector<std::size_t> attrDims =
backend_->get_dimensions();
68 std::vector<Dimensions_t> iodaDims;
69 std::size_t numElems = 1;
70 for (std::size_t i = 0; i < attrDims.size(); ++i) {
71 iodaDims.push_back(gsl::narrow<Dimensions_t>(attrDims[i]));
72 numElems *= attrDims[i];
76 auto iodaRank = gsl::narrow<Dimensions_t>(iodaDims.size());
77 auto iodaNumElems = gsl::narrow<Dimensions_t>(numElems);
78 Dimensions dims(iodaDims, iodaDims, iodaRank, iodaNumElems);
87 std::shared_ptr<ioda::ObsStore::Has_Attributes> b)
106 auto res =
backend_->open(attrname);
107 auto b = std::make_shared<ObsStore_Attribute_Backend>(res);
113 const Type& in_memory_dataType,
114 const std::vector<Dimensions_t>& dimensions) {
116 auto typeBackend = std::dynamic_pointer_cast<ObsStore_Type>(in_memory_dataType.
getBackend());
120 std::vector<std::size_t> dims;
121 for (std::size_t i = 0; i < dimensions.size(); ++i) {
122 dims.push_back(gsl::narrow<std::size_t>(dimensions[i]));
126 auto b = std::make_shared<ObsStore_Attribute_Backend>(res);
132 const std::string& newName) {
Describe the dimensions of a ioda::Attribute or ioda::Variable.
Functions for ObsStore Attribute and Has_Attributes.
Functions for translating ioda::Types to ObsStore Types.
This class represents attributes, which may be attached to both Variables and Groups.
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
ObsStore_Attribute_Backend()
virtual ~ObsStore_Attribute_Backend()
Type getType() const final
Encapsulate the internal ObsStore_Type object as a Type.
std::vector< std::string > list() const final
return list of the names of the attributes in this container
Attribute create(const std::string &attrname, const Type &in_memory_dataType, const std::vector< Dimensions_t > &dimensions={1}) final
create a new attribute
std::shared_ptr< ioda::ObsStore::Has_Attributes > backend_
ObsStore Has_Attribute.
bool exists(const std::string &attname) const final
returns true if attribute is in this container
detail::Type_Provider * getTypeProvider() const final
return an ObsStore type marker
void rename(const std::string &oldName, const std::string &newName) final
rename an attribute
void remove(const std::string &attname) final
remove an attribute from this container
virtual ~ObsStore_HasAttributes_Backend()
Attribute open(const std::string &attrname) const final
open an existing attribute (throws exception if not found)
ObsStore_HasAttributes_Backend()
static ObsStore_Type_Provider * instance()
create instance of a type provider for frontend
Represents the "type" (i.e. integer, string, float) of a piece of data.
bool isA() const
Convenience function to check an Attribute's storage type.
DataType read() const
Read a single value (convenience function).
std::shared_ptr< Type_Backend > getBackend() const
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...
@ ObsStore
ObsStore in-memory.
ObsTypes
ObsStore data type markers.
std::pair< ioda::ObsStore::ObsTypes, std::size_t > ObsTypeInfo
Describes the dimensions of an Attribute or Variable.