24 std::throw_with_nested(
25 Exception(
"An exception occurred inside ioda while listing attributes of an object.",
37 "An exception occurred inside ioda while checking existence of an attribute.",
ioda_Here())
38 .add(
"attname", attname));
49 "An exception occurred inside ioda while removing an attribute.",
ioda_Here())
50 .add(
"attname", attname));
61 "An exception occurred inside ioda while opening an attribute.",
ioda_Here())
73 "An exception occurred in ioda while opening all attributes of an object.",
ioda_Here()));
80 vector<pair<string, Attribute>> ret;
81 vector<string> names =
list();
87 "An exception occurred in ioda while opening all attributes of an object.",
ioda_Here()));
95 return backend_->rename(oldName, newName);
98 "An exception occurred in ioda while renaming an attribute.",
ioda_Here())
99 .add(
"oldName", oldName).add(
"newName", newName));
110 "An exception occurred in ioda while getting a Type Provider.",
ioda_Here()));
115 const std::vector<Dimensions_t>& dimensions) {
124 for (
const auto& d : dimensions) {
128 auto att =
backend_->create(attrname, in_memory_dataType, dimensions);
133 "An exception occurred inside ioda while creating an attribute.",
ioda_Here())
134 .add(
"attrname", attrname));
143 : detail::Has_Attributes_Base(
g) {}
Interfaces for ioda::Has_Attributes and related classes.
This class represents attributes, which may be attached to both Variables and Groups.
The ioda exception class.
virtual ~Has_Attributes()
Represents the "type" (i.e. integer, string, float) of a piece of data.
std::vector< std::pair< std::string, Attribute > > openAll() const override
Default implementation of Has_Attributes_Base::openAll.
virtual ~Has_Attributes_Backend()
virtual std::vector< std::string > list() const
virtual void remove(const std::string &attname)
Delete an Attribute with the specified name.
virtual Attribute open(const std::string &name) const
Open an Attribute by name.
virtual void rename(const std::string &oldName, const std::string &newName)
Rename an Attribute.
virtual ~Has_Attributes_Base()
std::shared_ptr< Has_Attributes_Backend > backend_
Using an opaque object to implement the backend.
virtual detail::Type_Provider * getTypeProvider() const
Query the backend and get the type provider.
virtual Attribute create(const std::string &attrname, const Type &in_memory_dataType, const std::vector< Dimensions_t > &dimensions={1})
Create an Attribute without setting its data.
Has_Attributes_Base(std::shared_ptr< Has_Attributes_Backend >)
virtual std::vector< std::pair< std::string, Attribute > > openAll() const
Open all attributes in an object.
virtual bool exists(const std::string &attname) const
Does an Attribute with the specified name exist?
Backends implement type providers in conjunction with Attributes, Has_Attributes, Variables and Has_V...