IODA
|
Hidden base class to prevent constructor confusion. More...
#include <Group.h>
Public Member Functions | |
virtual | ~Group_Base () |
virtual ::ioda::Engines::Capabilities | getCapabilities () const |
Get capabilities of the Engine backing this Group. More... | |
virtual FillValuePolicy | getFillValuePolicy () const |
Get the fill value policy used for Variables within this Group. More... | |
std::vector< std::string > | list () const |
List all one-level child groups in this group. More... | |
std::vector< std::string > | groups () const |
Same as list(). Uniform semantics with atts() and vars(). More... | |
virtual std::map< ObjectType, std::vector< std::string > > | listObjects (ObjectType filter=ObjectType::Ignored, bool recurse=false) const |
List all objects (groups + variables) within this group. More... | |
template<ObjectType objectClass> | |
std::vector< std::string > | listObjects (bool recurse=false) const |
virtual bool | exists (const std::string &name) const |
virtual Group | create (const std::string &name) |
Create a group. More... | |
virtual Group | open (const std::string &name) const |
Open a group. More... | |
Public Attributes | |
Has_Attributes | atts |
Use this to access the metadata for the group / ObsSpace. More... | |
Has_Variables | vars |
Use this to access variables. More... | |
Protected Member Functions | |
Group_Base (std::shared_ptr< Group_Backend >) | |
Private Attributes | |
std::shared_ptr< Group_Backend > | backend_ |
Hidden base class to prevent constructor confusion.
|
protected |
|
virtualdefault |
|
virtual |
Create a group.
name | is the group name. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_Group_Backend, and ioda::detail::Engines::HH::HH_Group.
Definition at line 76 of file Group.cpp.
|
virtual |
Does a group exist at the specified path?
name | is the group name. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_Group_Backend, and ioda::detail::Engines::HH::HH_Group.
Definition at line 65 of file Group.cpp.
Engines::Capabilities ioda::detail::Group_Base::getCapabilities | ( | ) | const |
|
virtual |
Get the fill value policy used for Variables within this Group.
The backend has to be consulted for this operation. Storage of this policy is backend-dependent.
Reimplemented in ioda::detail::Group_Backend, and ioda::detail::Engines::HH::HH_Group.
|
inline |
std::vector< std::string > ioda::detail::Group_Base::list | ( | ) | const |
List all one-level child groups in this group.
This function exists to provide the same calling semantics as vars.list() and atts.list(). It is useful for human exploration of the contents of a Group.
Definition at line 43 of file Group.cpp.
|
inline |
|
virtual |
List all objects (groups + variables) within this group.
recurse | indicates whether the search should be one-level or recursive. If multiple possible paths exist for an object, only one is actually returned. |
filter | allows you to search for only a certain type of object, such as a Group or Variable. |
This function should list all distinct objects. In the future, this will mean that 1) hard-linked duplicate objects will only be listed once, 2) soft links pointing to the same object will only be traversed once, and 3) multiple external links to the same object will only be traversed once. If you would want to list indistinct objects, then there will be a listLinks function.
Once links are implemented, add an option to auto-resolve soft and external links.
Reimplemented in ioda::detail::Engines::HH::HH_Group, and ioda::Engines::ObsStore::ObsStore_Group_Backend.
Definition at line 53 of file Group.cpp.
|
virtual |
Open a group.
name | is the name of the child group to open. |
Reimplemented in ioda::Engines::ObsStore::ObsStore_Group_Backend, and ioda::detail::Engines::HH::HH_Group.
Definition at line 87 of file Group.cpp.
Has_Attributes ioda::detail::Group_Base::atts |
|
private |
Has_Variables ioda::detail::Group_Base::vars |