37 std::shared_ptr<ioda::ObsStore::Group>
backend_;
41 :
ioda::detail::Group_Backend(), backend_(grp) {
42 std::shared_ptr<ioda::ObsStore::Has_Attributes> b_atts(backend_->atts);
43 atts =
Has_Attributes(std::make_shared<ObsStore_HasAttributes_Backend>(b_atts));
45 std::shared_ptr<ioda::ObsStore::Has_Variables> b_vars(backend_->vars);
46 vars =
Has_Variables(std::make_shared<ObsStore_HasVariables_Backend>(b_vars));
51 std::map<ObjectType, std::vector<std::string>>
listObjects(ObjectType filter,
52 bool recurse)
const final {
53 std::map<ObjectType, std::list<std::string>> data;
54 backend_->listObjects(filter, recurse, data);
56 std::map<ObjectType, std::vector<std::string>> res;
57 for (
auto& cls : data) {
58 if (filter == ObjectType::Ignored || filter == cls.first)
59 res[cls.first] = std::vector<std::string>(std::make_move_iterator(cls.second.begin()),
60 std::make_move_iterator(cls.second.end()));
72 bool exists(
const std::string&
name)
const override {
return backend_->exists(
name); }
77 auto backend = std::make_shared<ObsStore_Group_Backend>(backend_->create(
name));
78 return ::ioda::Group{backend};
84 auto backend = std::make_shared<ObsStore_Group_Backend>(backend_->open(
name));
85 return ::ioda::Group{backend};
Functions for ObsStore Attribute and Has_Attributes.
Interfaces for ioda::Group and related classes.
Functions for ObsStore Group and Has_Groups.
Functions for ObsStore Attribute and Has_Attributes.
Functions for ioda::Variable and ioda::Has_Variables backed by ObsStore.
This is the implementation of Groups using ObsStore.
::ioda::Engines::Capabilities getCapabilities() const final
returns the capabilities of the ObsStore backend
bool exists(const std::string &name) const override
returns true if child group exists
std::map< ObjectType, std::vector< std::string > > listObjects(ObjectType filter, bool recurse) const final
returns list of child groups and variables
Group create(const std::string &name) override
create a new child group
std::shared_ptr< ioda::ObsStore::Group > backend_
ObsStore Group.
Group open(const std::string &name) const override
open an existing child group (throws an exception if not found)
virtual ~ObsStore_Group_Backend()
ObsStore_Group_Backend(std::shared_ptr< ioda::ObsStore::Group > grp)
Groups are a new implementation of ObsSpaces.
This class exists inside of ioda::Group or ioda::Variable and provides the interface to manipulating ...
This class exists inside of ioda::Group and provides the interface to manipulating Variables.
Common preprocessor definitions used throughout IODA.
#define IODA_HIDDEN
A tag used to tell the compiler that a symbol should not be listed, but it may be referenced from oth...
IODA_DL Capabilities getCapabilities()
Get capabilities of the ObsStore engine.
@ ObsStore
ObsStore in-memory.
Struct defining what an engine can/cannot do.