34 : backend_(grp), fileroot_(fileroot), caps_(caps) {
41 HH_hid_t groupCreationProps(H5Pcreate(H5P_GROUP_CREATE),
44 if (0 > H5Pset_link_creation_order(groupCreationProps(),
45 H5P_CRT_ORDER_TRACKED | H5P_CRT_ORDER_INDEXED))
49 HH_hid_t linkCreationProps(H5Pcreate(H5P_LINK_CREATE),
52 if (0 > H5Pset_create_intermediate_group(linkCreationProps(), 1))
58 linkCreationProps(), groupCreationProps(),
65 return ::ioda::Group{backend};
73 auto res = std::make_shared<HH_Group>(grp_handle,
caps_,
fileroot_);
74 return ::ioda::Group{res};
79 for (
size_t i = 0; i < paths.size(); ++i) {
81 htri_t linkExists = H5Lexists(
backend_(), p.c_str(), H5P_DEFAULT);
83 if (linkExists == 0)
return false;
87 #if H5_VERSION_GE(1, 12, 0)
89 herr_t err = H5Oget_info_by_name1(
backend_(),
name.c_str(), &obj_info, H5P_DEFAULT);
92 herr_t err = H5Oget_info_by_name(
backend_(),
name.c_str(), &obj_info, H5P_DEFAULT);
95 return (obj_info.type == H5O_TYPE_GROUP);
102 std::map<ObjectType, std::list<std::string>>
lists;
104 lists[ObjectType::Group] = std::list<std::string>();
105 lists[ObjectType::Variable] = std::list<std::string>();
106 lists[ObjectType::Unimplemented] = std::list<std::string>();
111 #if H5_VERSION_GE(1, 12, 0)
121 if (info->type != H5L_TYPE_HARD) {
122 op->
lists[ObjectType::Unimplemented].emplace_back(
name);
127 #if H5_VERSION_GE(1, 12, 0)
130 = H5Oget_info_by_name1(g_id,
name, &oinfo, H5P_DEFAULT);
133 herr_t err = H5Oget_info_by_name(g_id,
name, &oinfo, H5P_DEFAULT);
135 if (err < 0)
return -1;
137 if (oinfo.type == H5O_type_t::H5O_TYPE_GROUP)
138 op->
lists[ObjectType::Group].emplace_back(
name);
139 else if (oinfo.type == H5O_type_t::H5O_TYPE_DATASET)
140 op->
lists[ObjectType::Variable].emplace_back(
name);
142 op->
lists[ObjectType::Unimplemented].emplace_back(
name);
148 bool recurse)
const {
149 std::map<ObjectType, std::vector<std::string>> res;
156 unsigned crt_order_flags = 0;
159 if (H5I_GROUP == H5Iget_type(
backend_())) {
163 if (0 > H5Pget_link_creation_order(createpl(), &crt_order_flags))
171 H5_index_t idxclass = (crt_order_flags & H5P_CRT_ORDER_TRACKED)
178 reinterpret_cast<void*
>(&iter_data))
180 reinterpret_cast<void*
>(&iter_data));
183 .
add(
"recurse", recurse);
185 for (
auto& cls : iter_data.
lists) {
186 if (filter == ObjectType::Ignored || filter == cls.first)
187 res[cls.first] = std::vector<std::string>(std::make_move_iterator(cls.second.begin()),
188 std::make_move_iterator(cls.second.end()));
Describe the dimensions of a ioda::Attribute or ioda::Variable.
HDF5 engine implementation of Has_Attributes.
HDF5 engine implementation of Has_Variables.
HDF5 resource handles in C++.
The ioda exception class.
Exception & add(const std::string &key, const T value)
Add a key-value pair to the error message.
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.
::ioda::Engines::Capabilities caps_
FillValuePolicy getFillValuePolicy() const final
Fill value policy in HDF5 depends on the current group and the root location.
Group create(const std::string &name) final
Create a group.
bool exists(const std::string &name) const final
Group open(const std::string &name) const final
Open a group.
std::map< ObjectType, std::vector< std::string > > listObjects(ObjectType filter=ObjectType::Ignored, bool recurse=false) const final
List all objects (groups + variables) within this group.
HH_Group(HH_hid_t grp, ::ioda::Engines::Capabilities caps, HH_hid_t fileroot)
Group constructor.
A class to wrap HDF5's hid_t resource handles.
Has_Attributes atts
Use this to access the metadata for the group / ObsSpace.
Has_Variables vars
Use this to access variables.
virtual FillValuePolicy getFillValuePolicy() const
Get the fill value policy used for Variables within this Group.
IODA_DL std::string condensePaths(const std::vector< std::string > &p, size_t start=0, size_t end=std::string::npos)
The inverse of splitPaths. Concatenate strings, separating with '/'.
IODA_DL std::vector< std::string > splitPaths(const std::string &p)
Split a string based on occurances of the '/' character.
FillValuePolicy
This option describes the default fill values that will be used if the user does not manually specify...
herr_t iterate_find_by_link(hid_t g_id, const char *name, const H5L_info_t *info, void *op_data)
Callback function for H5Lvisit / H5Literate.
Struct defining what an engine can/cannot do.
static void CloseP(hid_t *h)
static void CloseP(hid_t *h)
Data to pass to/from iterator classes.
std::map< ObjectType, std::list< std::string > > lists