19#include "../H5DataSet.hpp"
20#include "../H5Group.hpp"
21#include "../H5Selection.hpp"
22#include "../H5Utility.hpp"
36template <
typename Derivate>
45 return DataSet(detail::h5d_create2(
static_cast<Derivate*
>(
this)->getId(),
51 accessProps.
getId()));
54template <
typename Derivate>
62 dataset_name, space, create_and_check_datatype<T>(), createProps, accessProps, parents);
65template <
typename Derivate>
73 createDataSet(dataset_name,
83template <
typename Derivate>
86 return DataSet(detail::h5d_open2(
static_cast<const Derivate*
>(
this)->getId(),
88 accessProps.
getId()));
91template <
typename Derivate>
95 return detail::make_group(detail::h5g_create2(
static_cast<Derivate*
>(
this)->getId(),
102template <
typename Derivate>
108 return detail::make_group(detail::h5g_create2(
static_cast<Derivate*
>(
this)->getId(),
115template <
typename Derivate>
117 return detail::make_group(detail::h5g_open2(
static_cast<const Derivate*
>(
this)->getId(),
122template <
typename Derivate>
125 return DataType(detail::h5t_open2(
static_cast<const Derivate*
>(
this)->getId(),
127 accessProps.
getId()));
130template <
typename Derivate>
133 detail::h5g_get_num_objs(
static_cast<const Derivate*
>(
this)->getId(), &res);
134 return static_cast<size_t>(res);
137template <
typename Derivate>
139 return details::get_name([&](
char* buffer,
size_t length) {
140 return detail::h5l_get_name_by_idx(
static_cast<const Derivate*
>(
this)->getId(),
151template <
typename Derivate>
153 const std::string& dst_path,
154 bool parents)
const {
157 herr_t err = detail::h5l_move(
static_cast<const Derivate*
>(
this)->getId(),
159 static_cast<const Derivate*
>(
this)->getId(),
167template <
typename Derivate>
169 std::vector<std::string> names;
170 details::HighFiveIterateData iterateData(names);
172 size_t num_objs = getNumberObjects();
173 names.reserve(num_objs);
175 detail::h5l_iterate(
static_cast<const Derivate*
>(
this)->getId(),
176 static_cast<H5_index_t
>(idx_type),
179 &details::internal_high_five_iterate<H5L_info_t>,
180 static_cast<void*
>(&iterateData));
184template <
typename Derivate>
187 const auto val = detail::nothrow::h5l_exists(
static_cast<const Derivate*
>(
this)->getId(),
192 HDF5ErrMapper::ToException<GroupException>(
"Invalid link for exist()");
201 return (node_name ==
"/") ? true : (val > 0);
204template <
typename Derivate>
208 if (group_path.find(
'/') != std::string::npos) {
211 return (group_path ==
"/") ? true : _exist(group_path,
false);
213 return _exist(group_path);
217template <
typename Derivate>
219 detail::h5l_delete(
static_cast<const Derivate*
>(
this)->getId(), node_name.c_str(), H5P_DEFAULT);
225static inline LinkType _convert_link_type(
const H5L_type_t& ltype)
noexcept {
231 case H5L_TYPE_EXTERNAL:
240template <
typename Derivate>
243 detail::h5l_get_info(
static_cast<const Derivate*
>(
this)->getId(),
248 if (linkinfo.type == H5L_TYPE_ERROR) {
249 HDF5ErrMapper::ToException<GroupException>(std::string(
"Link type of \"") + node_name +
250 "\" is H5L_TYPE_ERROR");
252 return _convert_link_type(linkinfo.type);
255template <
typename Derivate>
257 const auto id = detail::h5o_open(
static_cast<const Derivate*
>(
this)->getId(),
260 auto object_type = _convert_object_type(detail::h5i_get_type(
id));
261 detail::h5o_close(
id);
266template <
typename Derivate>
268 const std::string& obj_path,
271 const bool parents) {
275 detail::h5l_create_soft(obj_path.c_str(),
276 static_cast<const Derivate*
>(
this)->getId(),
278 linkCreateProps.
getId(),
279 linkAccessProps.
getId());
283template <
typename Derivate>
285 const std::string& h5_file,
286 const std::string& obj_path,
289 const bool parents) {
293 detail::h5l_create_external(h5_file.c_str(),
295 static_cast<const Derivate*
>(
this)->getId(),
297 linkCreateProps.
getId(),
298 linkAccessProps.
getId());
301template <
typename Derivate>
302template <
typename T,
typename>
307 const bool parents) {
308 static_assert(!std::is_same<T, Attribute>::value,
309 "hdf5 doesn't support hard links to Attributes");
313 detail::h5l_create_hard(target_obj.getId(),
315 static_cast<const Derivate*
>(
this)->getId(),
317 linkCreateProps.
getId(),
318 linkAccessProps.
getId());
Class representing a dataset.
Definition H5DataSet.hpp:30
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
static DataSpace From(const T &value)
Automatically deduce the DataSpace from a container/value.
Definition H5Dataspace_misc.hpp:128
HDF5 Data Type.
Definition H5DataType.hpp:61
Represents an hdf5 group.
Definition H5Group.hpp:46
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
Group getGroup(const std::string &group_name) const
open an existing group with the name group_name
Definition H5Node_traits_misc.hpp:116
std::vector< std::string > listObjectNames(IndexType idx_type=IndexType::NAME) const
list all leaf objects name of the node / group
Definition H5Node_traits_misc.hpp:168
void unlink(const std::string &node_name) const
unlink the given dataset or group
Definition H5Node_traits_misc.hpp:218
void createExternalLink(const std::string &link_name, const std::string &h5_file, const std::string &obj_path, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
Definition H5Node_traits_misc.hpp:284
DataType getDataType(const std::string &type_name, const DataTypeAccessProps &accessProps=DataTypeAccessProps::Default()) const
open a commited datatype with the name type_name
Definition H5Node_traits_misc.hpp:123
DataSet getDataSet(const std::string &dataset_name, const DataSetAccessProps &accessProps=DataSetAccessProps::Default()) const
get an existing dataset in the current file
Definition H5Node_traits_misc.hpp:84
void createSoftLink(const std::string &linkName, const T &obj)
A shorthand to create softlink to any object which provides getPath The link will be created with def...
Definition H5Node_traits.hpp:173
void createHardLink(const std::string &link_name, const T &target_obj, LinkCreateProps linkCreateProps=LinkCreateProps(), const LinkAccessProps &linkAccessProps=LinkAccessProps(), const bool parents=true)
Creates hardlinks.
Definition H5Node_traits_misc.hpp:303
Group createGroup(const std::string &group_name, bool parents=true)
create a new group, and eventually intermediate groups
Definition H5Node_traits_misc.hpp:92
DataSet createDataSet(const std::string &dataset_name, const DataSpace &space, const DataType &type, const DataSetCreateProps &createProps=DataSetCreateProps::Default(), const DataSetAccessProps &accessProps=DataSetAccessProps::Default(), bool parents=true)
createDataSet Create a new dataset in the current file of datatype type and of size space
Definition H5Node_traits_misc.hpp:37
bool rename(const std::string &src_path, const std::string &dest_path, bool parents=true) const
moves an object and its content within an HDF5 file.
Definition H5Node_traits_misc.hpp:152
bool exist(const std::string &node_name) const
check a dataset or group exists in the current node / group
Definition H5Node_traits_misc.hpp:205
ObjectType getObjectType(const std::string &node_name) const
A shorthand to get the kind of object pointed to (group, dataset, type...)
Definition H5Node_traits_misc.hpp:256
size_t getNumberObjects() const
return the number of leaf objects of the node / group
Definition H5Node_traits_misc.hpp:131
std::string getObjectName(size_t index) const
return the name of the object with the given index
Definition H5Node_traits_misc.hpp:138
LinkType getLinkType(const std::string &node_name) const
Returns the kind of link of the given name (soft, hard...)
Definition H5Node_traits_misc.hpp:241
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:63
HDF5 property Lists.
Definition H5PropertyList.hpp:158
void add(const P &property)
Definition H5PropertyList_misc.hpp:68
Utility class to disable HDF5 stack printing inside a scope.
Definition H5Utility.hpp:24
void write(const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())
Definition H5Slice_traits_misc.hpp:404
Definition assert_compatible_spaces.hpp:15
DataType create_and_check_datatype()
Create a DataType instance representing type T and perform a sanity check on its size.
Definition H5DataType_misc.hpp:434
LinkType
The possible types of group entries (link concept)
Definition H5Node_traits.hpp:226
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24
IndexType
Definition H5Node_traits.hpp:19