HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
inspector_stl_span_misc.hpp
Go to the documentation of this file.
1#pragma once
2
4#include "../H5Exception.hpp"
5
6#include <cstdlib>
7#include <vector>
8#include <type_traits>
9
10namespace HighFive {
11namespace details {
12
13
14// Anything with the same API as `std::span` can implemented by inheriting from
15// this class.
16template <class Span>
17struct inspector_stl_span {
18 using type = Span;
19 using value_type = unqualified_t<typename Span::value_type>;
20 using base_type = typename inspector<value_type>::base_type;
21 using hdf5_type = typename inspector<value_type>::hdf5_type;
22
23 static constexpr size_t ndim = 1;
24 static constexpr size_t min_ndim = ndim + inspector<value_type>::min_ndim;
25 static constexpr size_t max_ndim = ndim + inspector<value_type>::max_ndim;
26
27 static constexpr bool is_trivially_copyable = std::is_trivially_copyable<value_type>::value &&
28 inspector<value_type>::is_trivially_nestable;
29 static constexpr bool is_trivially_nestable = false;
30
31
32 static size_t getRank(const type& val) {
33 if (!val.empty()) {
34 return ndim + inspector<value_type>::getRank(val[0]);
35 } else {
36 return min_ndim;
37 }
38 }
39
40 static std::vector<size_t> getDimensions(const type& val) {
41 auto rank = getRank(val);
42 std::vector<size_t> sizes(rank, 1ul);
43 sizes[0] = val.size();
44 if (!val.empty()) {
45 auto s = inspector<value_type>::getDimensions(val[0]);
46 assert(s.size() + ndim == sizes.size());
47 for (size_t i = 0; i < s.size(); ++i) {
48 sizes[i + ndim] = s[i];
49 }
50 }
51 return sizes;
52 }
53
54 static void prepare(type& val, const std::vector<size_t>& expected_dims) {
55 auto actual_dims = getDimensions(val);
56 if (actual_dims.size() != expected_dims.size()) {
57 throw DataSpaceException("Mismatching rank.");
58 }
59
60 for (size_t i = 0; i < actual_dims.size(); ++i) {
61 if (actual_dims[i] != expected_dims[i]) {
62 throw DataSpaceException("Mismatching dimensions.");
63 }
64 }
65 }
66
67 static hdf5_type* data(type& val) {
68 return val.empty() ? nullptr : inspector<value_type>::data(val[0]);
69 }
70
71 static const hdf5_type* data(const type& val) {
72 return val.empty() ? nullptr : inspector<value_type>::data(val[0]);
73 }
74
75 template <class It>
76 static void serialize(const type& val, const std::vector<size_t>& dims, It m) {
77 if (!val.empty()) {
78 auto subdims = std::vector<size_t>(dims.begin() + ndim, dims.end());
79 size_t subsize = compute_total_size(subdims);
80 for (const auto& e: val) {
81 inspector<value_type>::serialize(e, subdims, m);
82 m += subsize;
83 }
84 }
85 }
86
87 template <class It>
88 static void unserialize(const It& vec_align, const std::vector<size_t>& dims, type& val) {
89 std::vector<size_t> subdims(dims.begin() + ndim, dims.end());
90 size_t subsize = compute_total_size(subdims);
91 for (size_t i = 0; i < dims[0]; ++i) {
92 inspector<value_type>::unserialize(vec_align + i * subsize, subdims, val[i]);
93 }
94 }
95};
96
97} // namespace details
98} // namespace HighFive
Definition assert_compatible_spaces.hpp:15
size_t compute_total_size(const std::vector< size_t > &dims)
Definition compute_total_size.hpp:10