26 throw DataSetException(
"Invalid call to `DataSet::getStorageSize` for invalid object");
29 return detail::h5d_get_storage_size(
_hid);
38 space.
_hid = detail::h5d_get_space(
_hid);
47 return static_cast<uint64_t
>(detail::h5d_get_offset(
_hid));
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));
58 std::vector<hsize_t> real_dims(dims.begin(), dims.end());
59 detail::h5d_set_extent(
getId(), real_dims.data());
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