34inline const DataSet& get_dataset(
const Selection& sel) {
35 return sel.getDataset();
38inline const DataSet& get_dataset(
const DataSet& ds) {
45inline hid_t get_memspace_id(
const Selection& ptr) {
46 return ptr.getMemSpace().getId();
49inline hid_t get_memspace_id(
const DataSet&) {
58 :
ElementSet(std::vector<std::vector<std::size_t>>(list)) {}
61 : _ids(element_ids) {}
64 for (
const auto& vec: element_ids) {
65 std::copy(vec.begin(), vec.end(), std::back_inserter(_ids));
72 HyperCube(
size_t rank)
76 void cross(
const std::array<size_t, 2>& range,
size_t axis) {
77 offset[axis] = range[0];
78 count[axis] = range[1] - range[0];
81 RegularHyperSlab asSlab() {
82 return RegularHyperSlab(offset, count);
86 std::vector<size_t> offset;
87 std::vector<size_t> count;
90inline void build_hyper_slab(HyperSlab& slab,
size_t , HyperCube& cube) {
91 slab |= cube.asSlab();
94template <
class... Slices>
95inline void build_hyper_slab(HyperSlab& slab,
98 const std::array<size_t, 2>& slice,
99 const Slices&... higher_slices) {
100 cube.cross(slice, axis);
101 build_hyper_slab(slab, axis + 1, cube, higher_slices...);
104template <
class... Slices>
105inline void build_hyper_slab(HyperSlab& slab,
108 const std::vector<std::array<size_t, 2>>& slices,
109 const Slices&... higher_slices) {
110 for (
const auto& slice: slices) {
111 build_hyper_slab(slab, axis, cube, slice, higher_slices...);
115template <
class... Slices>
116inline void build_hyper_slab(HyperSlab& slab,
119 const std::vector<size_t>& ids,
120 const Slices&... higher_slices) {
121 for (
const auto&
id: ids) {
122 auto slice = std::array<size_t, 2>{id,
id + 1};
123 build_hyper_slab(slab, axis, cube, slice, higher_slices...);
127template <
class... Slices>
128inline void build_hyper_slab(HyperSlab& slab,
132 const Slices&... higher_slices) {
133 auto slice = std::array<size_t, 2>{id,
id + 1};
134 build_hyper_slab(slab, axis, cube, slice, higher_slices...);
137inline void compute_squashed_shape(
size_t , std::vector<size_t>& ) {
141template <
class... Slices>
142inline void compute_squashed_shape(
size_t axis,
143 std::vector<size_t>& shape,
144 const std::array<size_t, 2>& slice,
145 const Slices&... higher_slices);
147template <
class... Slices>
148inline void compute_squashed_shape(
size_t axis,
149 std::vector<size_t>& shape,
150 const std::vector<size_t>& points,
151 const Slices&... higher_slices);
153template <
class... Slices>
154inline void compute_squashed_shape(
size_t axis,
155 std::vector<size_t>& shape,
157 const Slices&... higher_slices);
159template <
class... Slices>
160inline void compute_squashed_shape(
size_t axis,
161 std::vector<size_t>& shape,
162 const std::vector<std::array<size_t, 2>>& slices,
163 const Slices&... higher_slices);
165template <
class... Slices>
166inline void compute_squashed_shape(
size_t axis,
167 std::vector<size_t>& shape,
168 const std::array<size_t, 2>& slice,
169 const Slices&... higher_slices) {
170 shape[axis] = slice[1] - slice[0];
171 compute_squashed_shape(axis + 1, shape, higher_slices...);
174template <
class... Slices>
175inline void compute_squashed_shape(
size_t axis,
176 std::vector<size_t>& shape,
177 const std::vector<size_t>& points,
178 const Slices&... higher_slices) {
179 shape[axis] = points.size();
180 compute_squashed_shape(axis + 1, shape, higher_slices...);
183template <
class... Slices>
184inline void compute_squashed_shape(
size_t axis,
185 std::vector<size_t>& shape,
186 const std::vector<std::array<size_t, 2>>& slices,
187 const Slices&... higher_slices) {
189 for (
const auto& slice: slices) {
190 shape[axis] += slice[1] - slice[0];
192 compute_squashed_shape(axis + 1, shape, higher_slices...);
195template <
class... Slices>
196inline void compute_squashed_shape(
size_t axis,
197 std::vector<size_t>& shape,
199 const Slices&... higher_slices) {
201 compute_squashed_shape(axis + 1, shape, higher_slices...);
205template <
class... Slices>
207 auto rank =
sizeof...(slices);
208 detail::HyperCube cube(rank);
209 detail::build_hyper_slab(slab, 0, cube, slices...);
211 shape = std::vector<size_t>(rank,
size_t(0));
212 detail::compute_squashed_shape(0, shape, slices...);
216template <
typename Derivate>
225 const auto& slice =
static_cast<const Derivate&
>(*this);
226 auto filespace = hyperslab.
apply(slice.getSpace());
228 return detail::make_selection(memspace, filespace, details::get_dataset(slice));
231template <
typename Derivate>
233 const auto& slice =
static_cast<const Derivate&
>(*this);
235 filespace = hyper_slab.
apply(filespace);
237 auto n_elements = detail::h5s_get_select_npoints(filespace.getId());
238 auto memspace =
DataSpace(std::array<size_t, 1>{size_t(n_elements)});
240 return detail::make_selection(memspace, filespace, details::get_dataset(slice));
244template <
typename Derivate>
246 const std::vector<size_t>& count,
247 const std::vector<size_t>& stride,
248 const std::vector<size_t>& block)
const {
251 return select(slab, memspace);
254template <
typename Derivate>
256 const auto& slice =
static_cast<const Derivate&
>(*this);
257 const DataSpace& space = slice.getSpace();
262 "Invalid, zero-dimensional (scalar) dataspace encountered when "
263 "selecting columns; must be atleast 1-dimensional.");
266 std::vector<size_t> counts = dims;
269 std::vector<size_t> offsets(dims.size(), 0);
272 for (
const auto& column: columns) {
273 offsets.back() = column;
277 std::vector<size_t> memdims = dims;
278 memdims.back() = columns.size();
283template <
typename Derivate>
285 const auto& slice =
static_cast<const Derivate&
>(*this);
286 const hsize_t* data =
nullptr;
288 const std::size_t length = elements._ids.size();
291 "Number of coordinates in elements picking "
292 "should be a multiple of the dimensions.");
295 std::vector<hsize_t> raw_elements;
299 if (std::is_same<std::size_t, hsize_t>::value) {
301 data =
reinterpret_cast<const hsize_t*
>(&(elements._ids[0]));
303 raw_elements.resize(length);
304 std::copy(elements._ids.begin(), elements._ids.end(), raw_elements.begin());
305 data = raw_elements.data();
308 detail::h5s_select_elements(space.
getId(), H5S_SELECT_SET, num_elements, data);
310 return detail::make_selection(
DataSpace(num_elements), space, details::get_dataset(slice));
313template <
typename Derivate>
315 return this->select(product_set.slab,
DataSpace(product_set.shape));
319template <
typename Derivate>
323 read(array, xfer_props);
328template <
typename Derivate>
331 const auto& slice =
static_cast<const Derivate&
>(*this);
332 const DataSpace& mem_space = slice.getMemSpace();
334 auto file_datatype = slice.getDataType();
336 const details::BufferInfo<T> buffer_info(
338 [&slice]() -> std::string {
return details::get_dataset(slice).getPath(); },
339 details::BufferInfo<T>::Operation::read);
341 if (!details::checkDimensions(mem_space, buffer_info.getMinRank(), buffer_info.getMaxRank())) {
342 std::ostringstream ss;
344 <<
" into arrays of dimensions: " << buffer_info.getMinRank() <<
"(min) to "
345 << buffer_info.getMaxRank() <<
"(max)";
350 auto r = details::data_converter::get_reader<T>(dims, array, file_datatype);
351 read_raw(r.getPointer(), buffer_info.data_type, xfer_props);
353 r.unserialize(array);
355 auto t = buffer_info.data_type;
356 auto c = t.getClass();
358#if H5_VERSION_GE(1, 12, 0)
361 detail::h5t_reclaim(t.getId(), mem_space.
getId(), xfer_props.
getId(), r.getPointer());
364 (void) detail::h5d_vlen_reclaim(t.getId(),
373template <
typename Derivate>
378 static_assert(!std::is_const<T>::value,
379 "read() requires a non-const structure to read data into");
381 const auto& slice =
static_cast<const Derivate&
>(*this);
383 detail::h5d_read(details::get_dataset(slice).getId(),
384 mem_datatype.
getId(),
385 details::get_memspace_id(slice),
386 slice.getSpace().getId(),
388 static_cast<void*
>(array));
392template <
typename Derivate>
395 using element_type =
typename details::inspector<T>::base_type;
396 const DataType& mem_datatype = create_and_check_datatype<element_type>();
398 read_raw(array, mem_datatype, xfer_props);
402template <
typename Derivate>
405 const auto& slice =
static_cast<const Derivate&
>(*this);
406 const DataSpace& mem_space = slice.getMemSpace();
409 auto file_datatype = slice.getDataType();
411 const details::BufferInfo<T> buffer_info(
413 [&slice]() -> std::string {
return details::get_dataset(slice).getPath(); },
414 details::BufferInfo<T>::Operation::write);
416 if (!details::checkDimensions(mem_space, buffer_info.getMinRank(), buffer_info.getMaxRank())) {
417 std::ostringstream ss;
418 ss <<
"Impossible to write buffer with dimensions n = " << buffer_info.getRank(buffer)
419 <<
"into dataset with dimensions " << details::format_vector(mem_space.
getDimensions())
423 auto w = details::data_converter::serialize<T>(buffer, dims, file_datatype);
424 write_raw(w.getPointer(), buffer_info.data_type, xfer_props);
428template <
typename Derivate>
433 const auto& slice =
static_cast<const Derivate&
>(*this);
435 detail::h5d_write(details::get_dataset(slice).getId(),
436 mem_datatype.
getId(),
437 details::get_memspace_id(slice),
438 slice.getSpace().getId(),
440 static_cast<const void*
>(buffer));
444template <
typename Derivate>
447 using element_type =
typename details::inspector<T>::base_type;
448 const auto& mem_datatype = create_and_check_datatype<element_type>();
450 write_raw(buffer, mem_datatype, xfer_props);
464template <
typename Derivate>
466 auto slice =
static_cast<const Derivate&
>(*this);
468 auto squeezed_dims = detail::squeeze(mem_dims, axes);
472 detail::getDataSet(slice));
475template <
typename Derivate>
477 auto slice =
static_cast<const Derivate&
>(*this);
479 detail::assert_compatible_spaces(slice.getMemSpace(), new_dims);
480 return detail::make_selection(
DataSpace(new_dims), slice.getSpace(), detail::getDataSet(slice));
Class representing a dataset.
Definition H5DataSet.hpp:30
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
std::vector< size_t > getDimensions() const
Returns the size of the dataset in each dimension.
Definition H5Dataspace_misc.hpp:104
DataSpace clone() const
Create a copy of the DataSpace which will have different id.
Definition H5Dataspace_misc.hpp:94
HDF5 Data Type.
Definition H5DataType.hpp:61
Definition H5Slice_traits.hpp:23
ElementSet(std::initializer_list< std::size_t > list)
Create a list of points of N-dimension for selection.
Definition H5Slice_traits_misc.hpp:54
Definition H5Slice_traits.hpp:111
DataSpace apply(const DataSpace &space_) const
Definition H5Slice_traits.hpp:164
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:63
Selects the Cartesian product of slices.
Definition H5Slice_traits.hpp:405
ProductSet(const Slices &... slices)
Definition H5Slice_traits_misc.hpp:206
HDF5 property Lists.
Definition H5PropertyList.hpp:158
Selection: represent a view on a slice/part of a dataset.
Definition H5Selection.hpp:27
DataSpace getMemSpace() const
getMemSpace
Definition H5Selection_misc.hpp:24
DataSet & getDataset()
getDataSet
Definition H5Selection_misc.hpp:28
DataSpace getSpace() const
getSpace
Definition H5Selection_misc.hpp:20
Selection squeezeMemSpace(const std::vector< size_t > &axes) const
Return a Selection with axes squeezed from the memspace.
Definition H5Slice_traits_misc.hpp:465
T read(const DataTransferProps &xfer_props=DataTransferProps()) const
Definition H5Slice_traits_misc.hpp:321
void write(const T &buffer, const DataTransferProps &xfer_props=DataTransferProps())
Definition H5Slice_traits_misc.hpp:404
Selection select(const HyperSlab &hyperslab) const
Select an hyperslab in the current Slice/Dataset.
Definition H5Slice_traits_misc.hpp:232
Selection reshapeMemSpace(const std::vector< size_t > &dims) const
Return a Selection with a simple memspace with dims.
Definition H5Slice_traits_misc.hpp:476
void read_raw(T *array, const DataType &dtype, const DataTransferProps &xfer_props=DataTransferProps()) const
Definition H5Slice_traits_misc.hpp:375
void write_raw(const T *buffer, const DataType &mem_datatype, const DataTransferProps &xfer_props=DataTransferProps())
Definition H5Slice_traits_misc.hpp:430
Definition assert_compatible_spaces.hpp:15
Definition H5Slice_traits.hpp:63