20#include "../H5DataSpace.hpp"
33 return details::get_name(
34 [&](
char* buffer,
size_t length) {
return detail::h5a_get_name(
_hid, length, buffer); });
42 return static_cast<size_t>(detail::h5a_get_storage_size(
_hid));
47 res.
_hid = detail::h5a_get_type(
_hid);
53 space.
_hid = detail::h5a_get_space(
_hid);
58 return _mem_space.
getId() == H5I_INVALID_HID ?
getSpace() : _mem_space;
72 const details::BufferInfo<T> buffer_info(
74 [
this]() -> std::string {
return this->
getName(); },
75 details::BufferInfo<T>::Operation::read);
77 if (!details::checkDimensions(mem_space, buffer_info.getMinRank(), buffer_info.getMaxRank())) {
78 std::ostringstream ss;
80 <<
" into arrays of dimensions: " << buffer_info.getMinRank() <<
"(min) to "
81 << buffer_info.getMaxRank() <<
"(max)";
87 details::inspector<T>::prepare(array, dims);
91 auto r = details::data_converter::get_reader<T>(dims, array, file_datatype);
92 read_raw(r.getPointer(), buffer_info.data_type);
96 auto t = buffer_info.data_type;
97 auto c = t.getClass();
100#if H5_VERSION_GE(1, 12, 0)
102 (void) detail::h5t_reclaim(t.getId(), mem_space.
getId(), H5P_DEFAULT, r.getPointer());
105 (void) detail::h5d_vlen_reclaim(t.getId(), mem_space.
getId(), H5P_DEFAULT, r.getPointer());
112 static_assert(!std::is_const<T>::value,
113 "read() requires a non-const structure to read data into");
115 detail::h5a_read(
getId(), mem_datatype.
getId(),
static_cast<void*
>(array));
120 using element_type =
typename details::inspector<T>::base_type;
121 const DataType& mem_datatype = create_and_check_datatype<element_type>();
137 const details::BufferInfo<T> buffer_info(
139 [
this]() -> std::string {
return this->
getName(); },
140 details::BufferInfo<T>::Operation::write);
142 if (!details::checkDimensions(mem_space, buffer_info.getMinRank(), buffer_info.getMaxRank())) {
143 std::ostringstream ss;
145 <<
" into arrays of dimensions: " << buffer_info.getMinRank() <<
"(min) to "
146 << buffer_info.getMaxRank() <<
"(max)";
149 auto w = details::data_converter::serialize<T>(buffer, dims, file_datatype);
150 write_raw(w.getPointer(), buffer_info.data_type);
155 detail::h5a_write(
getId(), mem_datatype.
getId(), buffer);
160 using element_type =
typename details::inspector<T>::base_type;
161 const auto& mem_datatype = create_and_check_datatype<element_type>();
168 auto squeezed_dims = detail::squeeze(mem_dims, axes);
171 attr._mem_space =
DataSpace(squeezed_dims);
176 detail::assert_compatible_spaces(this->
getMemSpace(), new_dims);
Exception specific to HighFive Attribute interface.
Definition H5Exception.hpp:121
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
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
Exception specific to HighFive DataSpace interface.
Definition H5Exception.hpp:112
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
size_t getNumberDimensions() const
Returns the number of dimensions of a DataSpace.
Definition H5Dataspace_misc.hpp:100
size_t getElementCount() const
Return the number of elements in this DataSpace.
Definition H5Dataspace_misc.hpp:112
std::vector< size_t > getDimensions() const
Returns the size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:104
HDF5 Data Type.
Definition H5DataType.hpp:61
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:63
bool isValid() const noexcept
isValid
Definition H5Object_misc.hpp:59
hid_t _hid
Definition H5Object.hpp:86
Definition assert_compatible_spaces.hpp:15