15 Group::Group(std::shared_ptr<detail::Group_Backend> backend) : Group_Base(backend) {}
34 if (
backend_ ==
nullptr)
throw Exception(
"Missing backend or unimplemented backend function.",
38 std::throw_with_nested(
Exception(
"An exception occurred inside ioda while "
39 "determining backend engine capabilities.",
ioda_Here()));
46 return listObjects(ObjectType::Group,
false)[ObjectType::Group];
48 std::throw_with_nested(
Exception(
"An exception occurred inside ioda while "
49 "listing one-level child groups.",
ioda_Here()));
56 if (
backend_ ==
nullptr)
throw Exception(
"Missing backend or unimplemented backend function.",
58 return backend_->listObjects(filter, recurse);
60 std::throw_with_nested(
Exception(
"An exception occurred inside ioda while listing objects.",
67 if (
backend_ ==
nullptr)
throw Exception(
"Missing backend or unimplemented backend function.",
71 std::throw_with_nested(
Exception(
"An exception occurred inside ioda while checking "
72 "to see whether a group exists.",
ioda_Here()).add(
"name",
name));
78 if (
backend_ ==
nullptr)
throw Exception(
"Missing backend or unimplemented backend function.",
82 std::throw_with_nested(
Exception(
"An exception occurred inside ioda while creating a group.",
89 if (
backend_ ==
nullptr)
throw Exception(
"Missing backend or unimplemented backend function.",
93 std::throw_with_nested(
Exception(
"An exception occurred inside ioda while opening a group.",
100 if (
backend_ ==
nullptr)
throw Exception(
"Missing backend or unimplemented backend function.",
102 return backend_->getFillValuePolicy();
104 std::throw_with_nested(
Exception(
"An exception occurred inside ioda while determining "
113 std::throw_with_nested(
Exception(
"An exception occurred inside ioda while determining "
Structs that describe backend capabilities.
Interfaces for ioda::Group and related classes.
The ioda exception class.
Groups are a new implementation of ObsSpaces.
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.
FillValuePolicy getFillValuePolicy() const override
Default fill value policy is NETCDF4. Overridable on a per-backend basis.
Hidden base class to prevent constructor confusion.
Group_Base(std::shared_ptr< Group_Backend >)
virtual Group open(const std::string &name) const
Open a group.
Has_Variables vars
Use this to access variables.
std::shared_ptr< Group_Backend > backend_
virtual FillValuePolicy getFillValuePolicy() const
Get the fill value policy used for Variables within this Group.
virtual bool exists(const std::string &name) const
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.
virtual Group create(const std::string &name)
Create a group.
std::vector< std::string > list() const
List all one-level child groups in this group.
virtual ::ioda::Engines::Capabilities getCapabilities() const
Get capabilities of the Engine backing this Group.
virtual FillValuePolicy getFillValuePolicy() const
Get the fill value policy used for Variables within this Group.
FillValuePolicy
This option describes the default fill values that will be used if the user does not manually specify...
Struct defining what an engine can/cannot do.