HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5DataSet_misc.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c), 2017, Adrien Devresse <adrien.devresse@epfl.ch>
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 <algorithm>
12#include <functional>
13#include <numeric>
14#include <sstream>
15#include <string>
16
17#include <H5Ppublic.h>
18
19#include "h5d_wrapper.hpp"
20#include "H5Utils.hpp"
21
22namespace HighFive {
23
24inline uint64_t DataSet::getStorageSize() const {
25 if (!this->isValid()) {
26 throw DataSetException("Invalid call to `DataSet::getStorageSize` for invalid object");
27 }
28
29 return detail::h5d_get_storage_size(_hid);
30}
31
33 return DataType(detail::h5d_get_type(_hid));
34}
35
37 DataSpace space;
38 space._hid = detail::h5d_get_space(_hid);
39 return space;
40}
41
43 return getSpace();
44}
45
46inline uint64_t DataSet::getOffset() const {
47 return static_cast<uint64_t>(detail::h5d_get_offset(_hid));
48}
49
50inline void DataSet::resize(const std::vector<size_t>& dims) {
51 const size_t numDimensions = getSpace().getDimensions().size();
52 if (dims.size() != numDimensions) {
53 HDF5ErrMapper::ToException<DataSetException>("Invalid dataspace dimensions, got " +
54 std::to_string(dims.size()) + " expected " +
55 std::to_string(numDimensions));
56 }
57
58 std::vector<hsize_t> real_dims(dims.begin(), dims.end());
59 detail::h5d_set_extent(getId(), real_dims.data());
60}
61
62} // namespace HighFive
Exception specific to HighFive DataSet interface.
Definition H5Exception.hpp:130
DataSpace getMemSpace() const
getMemSpace
Definition H5DataSet_misc.hpp:42
void resize(const std::vector< size_t > &dims)
Change the size of the dataset.
Definition H5DataSet_misc.hpp:50
DataType getDataType() const
getDataType
Definition H5DataSet_misc.hpp:32
uint64_t getOffset() const
getOffset
Definition H5DataSet_misc.hpp:46
uint64_t getStorageSize() const
getStorageSize
Definition H5DataSet_misc.hpp:24
DataSpace getSpace() const
getSpace
Definition H5DataSet_misc.hpp:36
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
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