HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5Node_traits.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
3 *
4 * Distributed under the Boost Software License, Version 1.0.
5 * (See accompanying file LICENSE_1_0.txt or copy at
6 * http://www.boost.org/LICENSE_1_0.txt)
7 *
8 */
9#pragma once
10
11#include <string>
12
13#include "../H5PropertyList.hpp"
14#include "H5_definitions.hpp"
15#include "H5Converter_misc.hpp"
16
17namespace HighFive {
18
19enum class IndexType : std::underlying_type<H5_index_t>::type {
20 NAME = H5_INDEX_NAME,
21 CRT_ORDER = H5_INDEX_CRT_ORDER,
22};
23
27template <typename Derivate>
29 public:
40 DataSet createDataSet(const std::string& dataset_name,
41 const DataSpace& space,
42 const DataType& type,
45 bool parents = true);
46
56 template <typename T>
57 DataSet createDataSet(const std::string& dataset_name,
58 const DataSpace& space,
61 bool parents = true);
62
73 template <typename T>
74 DataSet createDataSet(const std::string& dataset_name,
75 const T& data,
78 bool parents = true);
79
80
86 DataSet getDataSet(const std::string& dataset_name,
87 const DataSetAccessProps& accessProps = DataSetAccessProps::Default()) const;
88
94 Group createGroup(const std::string& group_name, bool parents = true);
95
102 Group createGroup(const std::string& group_name,
103 const GroupCreateProps& createProps,
104 bool parents = true);
105
110 Group getGroup(const std::string& group_name) const;
111
117 const std::string& type_name,
118 const DataTypeAccessProps& accessProps = DataTypeAccessProps::Default()) const;
119
123 size_t getNumberObjects() const;
124
128 std::string getObjectName(size_t index) const;
129
136 bool rename(const std::string& src_path,
137 const std::string& dest_path,
138 bool parents = true) const;
139
146 std::vector<std::string> listObjectNames(IndexType idx_type = IndexType::NAME) const;
147
152 bool exist(const std::string& node_name) const;
153
157 void unlink(const std::string& node_name) const;
158
162 LinkType getLinkType(const std::string& node_name) const;
163
167 ObjectType getObjectType(const std::string& node_name) const;
168
172 template <typename T, typename = decltype(&T::getPath)>
173 void createSoftLink(const std::string& linkName, const T& obj) {
174 static_assert(!std::is_same<T, Attribute>::value,
175 "hdf5 doesn't support soft links to Attributes");
176 createSoftLink(linkName, obj.getPath());
177 }
178
186 void createSoftLink(const std::string& link_name,
187 const std::string& obj_path,
188 LinkCreateProps linkCreateProps = LinkCreateProps(),
189 const LinkAccessProps& linkAccessProps = LinkAccessProps(),
190 const bool parents = true);
191
192 void createExternalLink(const std::string& link_name,
193 const std::string& h5_file,
194 const std::string& obj_path,
195 LinkCreateProps linkCreateProps = LinkCreateProps(),
196 const LinkAccessProps& linkAccessProps = LinkAccessProps(),
197 const bool parents = true);
198
206 template <typename T, typename = decltype(&T::getPath)>
207 void createHardLink(const std::string& link_name,
208 const T& target_obj,
209 LinkCreateProps linkCreateProps = LinkCreateProps(),
210 const LinkAccessProps& linkAccessProps = LinkAccessProps(),
211 const bool parents = true);
212
213 private:
214 using derivate_type = Derivate;
215
216 // A wrapper over the low-level H5Lexist
217 // It makes behavior consistent among versions and by default transforms
218 // errors to exceptions
219 bool _exist(const std::string& node_name, bool raise_errors = true) const;
220};
221
222
226enum class LinkType {
227 Hard,
228 Soft,
229 External,
230 Other // Reserved or User-defined
231};
232
233
234} // namespace HighFive
Class representing a dataset.
Definition H5DataSet.hpp:30
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
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
HDF5 property Lists.
Definition H5PropertyList.hpp:158
static const PropertyList< T > & Default() noexcept
Return the Default property type object.
Definition H5PropertyList.hpp:176
PropertyList< PropertyType::LINK_CREATE > LinkCreateProps
Definition H5PropertyList.hpp:207
PropertyList< PropertyType::LINK_ACCESS > LinkAccessProps
Definition H5PropertyList.hpp:208
Definition assert_compatible_spaces.hpp:15
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