HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5DataSet.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 <vector>
12
13#include "H5DataSpace.hpp"
14#include "H5DataType.hpp"
15#include "H5Object.hpp"
21
22namespace HighFive {
23
27class DataSet: public Object,
28 public SliceTraits<DataSet>,
29 public AnnotateTraits<DataSet>,
30 public PathTraits<DataSet> {
31 public:
33
38 uint64_t getStorageSize() const;
39
44 uint64_t getOffset() const;
45
50 DataType getDataType() const;
51
56 DataSpace getSpace() const;
57
63 DataSpace getMemSpace() const;
64
65
71 void resize(const std::vector<size_t>& dims);
72
73
78 inline std::vector<size_t> getDimensions() const {
79 return getSpace().getDimensions();
80 }
81
87 inline size_t getElementCount() const {
88 return getSpace().getElementCount();
89 }
90
93 return details::get_plist<DataSetCreateProps>(*this, H5Dget_create_plist);
94 }
95
98 return details::get_plist<DataSetAccessProps>(*this, H5Dget_access_plist);
99 }
100
101 DataSet() = default;
102
103 protected:
104 using Object::Object; // bring DataSet(hid_t)
105
106 DataSet(Object&& o) noexcept
107 : Object(std::move(o)) {}
108
109 friend class Reference;
110 template <typename Derivate>
111 friend class NodeTraits;
112};
113
114} // namespace HighFive
Definition H5Annotate_traits.hpp:18
Class representing a dataset.
Definition H5DataSet.hpp:30
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
DataSetCreateProps getCreatePropertyList() const
Get the list of properties for creation of this dataset.
Definition H5DataSet.hpp:92
uint64_t getOffset() const
getOffset
Definition H5DataSet_misc.hpp:46
Object()
Definition H5Object_misc.hpp:19
DataSet(Object &&o) noexcept
Definition H5DataSet.hpp:106
uint64_t getStorageSize() const
getStorageSize
Definition H5DataSet_misc.hpp:24
DataSpace getSpace() const
getSpace
Definition H5DataSet_misc.hpp:36
static const ObjectType type
Definition H5DataSet.hpp:32
size_t getElementCount() const
Get the total number of elements in the current dataset. E.g. 2x2x2 matrix has size 8....
Definition H5DataSet.hpp:87
DataSetAccessProps getAccessPropertyList() const
Get the list of properties for accession of this dataset.
Definition H5DataSet.hpp:97
std::vector< size_t > getDimensions() const
Get the dimensions of the whole DataSet. This is a shorthand for getSpace().getDimensions()
Definition H5DataSet.hpp:78
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
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
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
Definition H5Object.hpp:35
Object()
Definition H5Object_misc.hpp:19
Definition H5Path_traits.hpp:16
HDF5 property Lists.
Definition H5PropertyList.hpp:158
An HDF5 (object) reference type.
Definition H5Reference.hpp:33
Definition H5Slice_traits.hpp:420
Definition assert_compatible_spaces.hpp:15
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24