HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5Attribute.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c), 2017, Ali Can Demiralp <ali.demiralp@rwth-aachen.de>
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 <vector>
12
13#include <H5Apublic.h>
14
15#include "H5DataType.hpp"
16#include "H5DataSpace.hpp"
17#include "H5Object.hpp"
18#include "bits/H5Friends.hpp"
20
21namespace HighFive {
22class DataSpace;
23
24namespace detail {
25
41Attribute make_attribute(hid_t hid);
42} // namespace detail
43
47class Attribute: public Object, public PathTraits<Attribute> {
48 public:
50
57 std::string getName() const;
58
64 size_t getStorageSize() const;
65
72 DataType getDataType() const;
73
80 DataSpace getSpace() const;
81
89 DataSpace getMemSpace() const;
90
98 template <typename T>
99 T read() const;
100
118 template <typename T>
119 void read(T& array) const;
120
139 template <typename T>
140 void read_raw(T* array, const DataType& mem_datatype) const;
141
161 template <typename T>
162 void read_raw(T* array) const;
163
181 template <typename T>
182 void write(const T& value);
183
207 template <typename T>
208 void write_raw(const T* buffer, const DataType& mem_datatype);
209
230 template <typename T>
231 void write_raw(const T* buffer);
232
247 return details::get_plist<AttributeCreateProps>(*this, H5Aget_create_plist);
248 }
249
250 // No empty attributes
251 Attribute() = delete;
252
262 Attribute squeezeMemSpace(const std::vector<size_t>& axes) const;
263
273 Attribute reshapeMemSpace(const std::vector<size_t>& dims) const;
274
275 protected:
276 using Object::Object;
277
278 private:
279 DataSpace _mem_space;
280
281#if HIGHFIVE_HAS_FRIEND_DECLARATIONS
282 template <typename Derivate>
283 friend class ::HighFive::AnnotateTraits;
284#endif
285
286 friend Attribute detail::make_attribute(hid_t);
287};
288
289namespace detail {
290inline Attribute make_attribute(hid_t hid) {
291 return Attribute(hid);
292}
293} // namespace detail
294
295} // namespace HighFive
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:47
DataSpace getSpace() const
Get a copy of the DataSpace of the current Attribute.
Definition H5Attribute_misc.hpp:51
DataType getDataType() const
Get the DataType of the Attribute.
Definition H5Attribute_misc.hpp:45
void read_raw(T *array, const DataType &mem_datatype) const
Read the attribute into a pre-allocated buffer.
Definition H5Attribute_misc.hpp:111
std::string getName() const
Get the name of the current Attribute.
Definition H5Attribute_misc.hpp:32
static const ObjectType type
Definition H5Attribute.hpp:49
T read() const
Get the value of the Attribute.
Definition H5Attribute_misc.hpp:62
Attribute reshapeMemSpace(const std::vector< size_t > &dims) const
Return a Attribute with a simple memspace with dims.
Definition H5Attribute_misc.hpp:175
DataSpace getMemSpace() const
Get the memory DataSpace of the current Attribute.
Definition H5Attribute_misc.hpp:57
void write(const T &value)
Write the value into the Attribute.
Definition H5Attribute_misc.hpp:127
Attribute squeezeMemSpace(const std::vector< size_t > &axes) const
Return an Attribute with axes squeezed from the memspace.
Definition H5Attribute_misc.hpp:166
void write_raw(const T *buffer, const DataType &mem_datatype)
Write from a raw pointer.
Definition H5Attribute_misc.hpp:154
size_t getStorageSize() const
The number of bytes required to store the attribute in the HDF5 file.
Definition H5Attribute_misc.hpp:37
AttributeCreateProps getCreatePropertyList() const
The create property list used for this attribute.
Definition H5Attribute.hpp:246
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
HDF5 Data Type.
Definition H5DataType.hpp:61
Definition H5Object.hpp:35
Object()
Definition H5Object_misc.hpp:19
Definition H5Path_traits.hpp:16
HDF5 property Lists.
Definition H5PropertyList.hpp:158
Definition assert_compatible_spaces.hpp:15
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24