IODA
Group.hpp
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 /*! \defgroup ioda_internals_engines_obsstore ObsStore Engine
8  * \brief Implementation of the in-memory ObsStore backend.
9  * \ingroup ioda_internals_engines
10  *
11  * @{
12  * \file Group.hpp
13  * \brief Functions for ObsStore Group and Has_Groups
14  */
15 #pragma once
16 
17 #include <exception>
18 #include <list>
19 #include <map>
20 #include <memory>
21 #include <string>
22 #include <vector>
23 
24 #include "./Attributes.hpp"
25 
26 namespace ioda {
27 namespace ObsStore {
28 class Has_Variables;
29 /// \ingroup ioda_internals_engines_obsstore
30 class Group {
31 private:
32  /// \brief container for child groups
33  std::map<std::string, std::shared_ptr<Group>> child_groups_;
34 
35  /// \brief split a path into the first level and remainder of the path
36  /// \param path Hierarchical path
37  static std::vector<std::string> splitFirstLevel(const std::string& path);
38 
39 public:
40  Group();
41  virtual ~Group();
42 
43  /// \brief container for attributes
44  std::shared_ptr<Has_Attributes> atts;
45 
46  /// \brief container for variables
47  std::shared_ptr<Has_Variables> vars;
48 
49  /// \brief List all groups under this group
50  std::list<std::string> list() const;
51 
52  /// \brief List child objects
53  /// \param filter is a filter for the search
54  /// \param recurse turns off / on recursion
55  /// \param res are the search results.
56  /// \param prefix is used with recursion. Start with "".
57  /// Each new element gets a new "group/" prefix added.
58  void listObjects(ObjectType filter, bool recurse,
59  std::map<ObjectType, std::list<std::string>>& res,
60  const std::string& prefix = "") const;
61 
62  /// \brief returns true if child group exists
63  /// \param name of child group
64  bool exists(const std::string& name);
65 
66  /// \brief create a new group
67  /// \param name name of child group
68  std::shared_ptr<Group> create(const std::string& name);
69 
70  /// \brief open an existing child group
71  /// \param name name of child group
72  std::shared_ptr<Group> open(const std::string& name, const bool throwIfNotFound = true);
73 
74  /// \brief Creates a root group
75  static std::shared_ptr<Group> createRootGroup();
76 };
77 } // namespace ObsStore
78 } // namespace ioda
79 
80 /// @}
Functions for ObsStore Attribute and Has_Attributes.
std::shared_ptr< Has_Attributes > atts
container for attributes
Definition: Group.hpp:44
void listObjects(ObjectType filter, bool recurse, std::map< ObjectType, std::list< std::string >> &res, const std::string &prefix="") const
List child objects.
static std::shared_ptr< Group > createRootGroup()
Creates a root group.
std::list< std::string > list() const
List all groups under this group.
bool exists(const std::string &name)
returns true if child group exists
static std::vector< std::string > splitFirstLevel(const std::string &path)
split a path into the first level and remainder of the path
std::shared_ptr< Has_Variables > vars
container for variables
Definition: Group.hpp:47
std::map< std::string, std::shared_ptr< Group > > child_groups_
container for child groups
Definition: Group.hpp:33
std::shared_ptr< Group > open(const std::string &name, const bool throwIfNotFound=true)
open an existing child group
std::shared_ptr< Group > create(const std::string &name)
create a new group
@ ObsStore
ObsStore in-memory.