IODA
ObsStore-groups.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2020-2021 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 /*! \addtogroup ioda_internals_engines_obsstore
8  *
9  * @{
10  * \file ObsStore-groups.h
11  * \brief Functions for ioda::Group backed by ObsStore
12  */
13 #pragma once
14 
15 #include <list>
16 #include <map>
17 #include <memory>
18 #include <string>
19 #include <vector>
20 
21 #include "./Attributes.hpp"
22 #include "./Group.hpp"
23 #include "./ObsStore-attributes.h"
24 #include "./ObsStore-variables.h"
25 #include "ioda/Engines/ObsStore.h"
26 #include "ioda/Group.h"
27 #include "ioda/defs.h"
28 
29 namespace ioda {
30 namespace Engines {
31 namespace ObsStore {
32 /// \brief This is the implementation of Groups using ObsStore.
33 /// \ingroup ioda_internals_engines_obsstore
35 private:
36  /// \brief ObsStore Group
37  std::shared_ptr<ioda::ObsStore::Group> backend_;
38 
39 public:
40  ObsStore_Group_Backend(std::shared_ptr<ioda::ObsStore::Group> grp)
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));
44 
45  std::shared_ptr<ioda::ObsStore::Has_Variables> b_vars(backend_->vars);
46  vars = Has_Variables(std::make_shared<ObsStore_HasVariables_Backend>(b_vars));
47  }
49 
50  /// \brief returns list of child groups and variables
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);
55 
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()));
61  }
62  return res;
63  }
64 
65  /// \brief returns the capabilities of the ObsStore backend
68  };
69 
70  /// \brief returns true if child group exists
71  /// \param name name of child group
72  bool exists(const std::string& name) const override { return backend_->exists(name); }
73 
74  /// \brief create a new child group
75  /// \param name name of child group
76  Group create(const std::string& name) override {
77  auto backend = std::make_shared<ObsStore_Group_Backend>(backend_->create(name));
78  return ::ioda::Group{backend};
79  }
80 
81  /// \brief open an existing child group (throws an exception if not found)
82  /// \param name name of child group
83  Group open(const std::string& name) const override {
84  auto backend = std::make_shared<ObsStore_Group_Backend>(backend_->open(name));
85  return ::ioda::Group{backend};
86  }
87 };
88 
89 } // namespace ObsStore
90 } // namespace Engines
91 } // namespace ioda
92 
93 /// @}
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.
ObsStore engine.
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)
ObsStore_Group_Backend(std::shared_ptr< ioda::ObsStore::Group > grp)
Groups are a new implementation of ObsSpaces.
Definition: Group.h:159
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...
Definition: defs.h:89
IODA_DL Capabilities getCapabilities()
Get capabilities of the ObsStore engine.
Definition: ObsStore.cpp:29
@ ObsStore
ObsStore in-memory.
Struct defining what an engine can/cannot do.
Definition: Capabilities.h:47