HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
assert_compatible_spaces.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c), 2024, BlueBrain Project, EPFL
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#include "../H5Exception.hpp"
13#include "../H5DataSpace.hpp"
14
15namespace HighFive {
16namespace detail {
17
18inline void assert_compatible_spaces(const DataSpace& old, const std::vector<size_t>& dims) {
19 auto n_elements_old = old.getElementCount();
20 auto n_elements_new = dims.size() == 0 ? 1 : compute_total_size(dims);
21
22 if (n_elements_old != n_elements_new) {
23 throw Exception("Invalid parameter `new_dims` number of elements differ: " +
24 std::to_string(n_elements_old) + " (old) vs. " +
25 std::to_string(n_elements_new) + " (new)");
26 }
27}
28} // namespace detail
29} // namespace HighFive
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
size_t getElementCount() const
Return the number of elements in this DataSpace.
Definition H5Dataspace_misc.hpp:112
Basic HighFive Exception class.
Definition H5Exception.hpp:23
Definition assert_compatible_spaces.hpp:15
size_t compute_total_size(const std::vector< size_t > &dims)
Definition compute_total_size.hpp:10