#include <Group.hpp>
|
| Group () |
|
virtual | ~Group () |
|
std::list< std::string > | list () const |
| List all groups under this group. More...
|
|
void | listObjects (ObjectType filter, bool recurse, std::map< ObjectType, std::list< std::string >> &res, const std::string &prefix="") const |
| List child objects. More...
|
|
bool | exists (const std::string &name) |
| returns true if child group exists More...
|
|
std::shared_ptr< Group > | create (const std::string &name) |
| create a new group More...
|
|
std::shared_ptr< Group > | open (const std::string &name, const bool throwIfNotFound=true) |
| open an existing child group More...
|
|
|
static std::vector< std::string > | splitFirstLevel (const std::string &path) |
| split a path into the first level and remainder of the path More...
|
|
Definition at line 30 of file Group.hpp.
◆ Group()
ioda::ObsStore::Group::Group |
( |
| ) |
|
◆ ~Group()
ioda::ObsStore::Group::~Group |
( |
| ) |
|
|
virtualdefault |
◆ create()
std::shared_ptr< Group > ioda::ObsStore::Group::create |
( |
const std::string & |
name | ) |
|
◆ createRootGroup()
std::shared_ptr< Group > ioda::ObsStore::Group::createRootGroup |
( |
| ) |
|
|
static |
◆ exists()
bool ioda::ObsStore::Group::exists |
( |
const std::string & |
name | ) |
|
◆ list()
std::list< std::string > ioda::ObsStore::Group::list |
( |
| ) |
const |
◆ listObjects()
void ioda::ObsStore::Group::listObjects |
( |
ObjectType |
filter, |
|
|
bool |
recurse, |
|
|
std::map< ObjectType, std::list< std::string >> & |
res, |
|
|
const std::string & |
prefix = "" |
|
) |
| const |
List child objects.
- Parameters
-
filter | is a filter for the search |
recurse | turns off / on recursion |
res | are the search results. |
prefix | is used with recursion. Start with "". Each new element gets a new "group/" prefix added. |
Definition at line 35 of file Engines/ObsStore/Group.cpp.
◆ open()
std::shared_ptr< Group > ioda::ObsStore::Group::open |
( |
const std::string & |
name, |
|
|
const bool |
throwIfNotFound = true |
|
) |
| |
◆ splitFirstLevel()
std::vector< std::string > ioda::ObsStore::Group::splitFirstLevel |
( |
const std::string & |
path | ) |
|
|
staticprivate |
◆ atts
container for attributes
Definition at line 44 of file Group.hpp.
◆ child_groups_
std::map<std::string, std::shared_ptr<Group> > ioda::ObsStore::Group::child_groups_ |
|
private |
container for child groups
Definition at line 33 of file Group.hpp.
◆ vars
container for variables
Definition at line 47 of file Group.hpp.
The documentation for this class was generated from the following files: