28 std::list<std::string> childList;
30 childList.push_back(igrp->first);
36 std::map<ObjectType, std::list<std::string>>& res,
37 const std::string& prefix)
const {
40 bool needGroups = filter == ObjectType::Ignored || filter == ObjectType::Group || recurse;
41 bool needVars = filter == ObjectType::Ignored || filter == ObjectType::Variable;
45 if (!res.count(ObjectType::Variable)) res[ObjectType::Variable] = std::list<std::string>();
48 auto oneLevelVars =
vars->list();
49 for (
auto& v : oneLevelVars) res[ObjectType::Variable].push_back(prefix + v);
52 if (needGroups || recurse) {
53 auto oneLevelChildren =
list();
57 if (!res.count(ObjectType::Group)) res[ObjectType::Group] = std::list<std::string>();
60 for (
auto& v : oneLevelChildren) res[ObjectType::Group].push_back(prefix + v);
64 for (
const auto& child : oneLevelChildren)
65 child_groups_.at(child)->listObjects(filter, recurse, res, std::string(child) +
"/");
71 std::shared_ptr<Group> childGroup =
open(
name,
false);
72 return (childGroup !=
nullptr);
81 std::shared_ptr<Group> childGroup;
82 if (this->
exists(pathSections[0])) {
83 childGroup = this->
open(pathSections[0]);
85 childGroup = std::make_shared<Group>();
86 childGroup->vars->setParentGroup(childGroup);
88 std::pair<std::string, std::shared_ptr<Group>>(pathSections[0], childGroup));
92 if (pathSections.size() > 1) {
93 childGroup = childGroup->create(pathSections[1]);
99 std::shared_ptr<Group>
Group::open(
const std::string&
name,
const bool throwIfNotFound) {
100 std::shared_ptr<Group> childGroup(
nullptr);
108 childGroup =
nullptr;
110 childGroup = igrp->second;
114 if ((pathSections.size() > 1) && (childGroup !=
nullptr)) {
115 childGroup = childGroup->open(pathSections[1]);
118 if (throwIfNotFound && (childGroup ==
nullptr)) {
126 std::shared_ptr<Group> group = std::make_shared<Group>();
127 group->vars->setParentGroup(group);
133 std::vector<std::string> pathSections;
134 auto pos = path.find(
'/');
135 pathSections.push_back(path.substr(0, pos));
136 if (pos != std::string::npos) {
137 pathSections.push_back(path.substr(pos + 1));
Functions for ObsStore Group and Has_Groups.
Functions for ObsStore Variable and Has_Variables.
The ioda exception class.
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
std::map< std::string, std::shared_ptr< Group > > child_groups_
container for child groups
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
Common preprocessor definitions used throughout IODA.
@ ObsStore
ObsStore in-memory.