HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5Object.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 <ctime>
12
13#include <H5Ipublic.h>
14#include <H5Opublic.h>
15
17#include "bits/H5Friends.hpp"
18
19namespace HighFive {
20
24enum class ObjectType {
25 File,
26 Group,
29 Dataset,
31 Other // Internal/custom object type
32};
33
34
35class Object {
36 public:
37 // move constructor, reuse hid
38 Object(Object&& other) noexcept;
39
44 bool isValid() const noexcept;
45
51 hid_t getId() const noexcept;
52
56 ObjectInfo getInfo() const;
57
63 ObjectType getType() const;
64
65 // Check if refer to same object
66 bool operator==(const Object& other) const noexcept {
67 return _hid == other._hid;
68 }
69
70 protected:
71 // empty constructor
72 Object();
73
74 // copy constructor, increase reference counter
75 Object(const Object& other);
76
77 // Init with an low-level object id
78 explicit Object(hid_t);
79
80 // decrease reference counter
81 ~Object();
82
83 // Copy-Assignment operator
84 Object& operator=(const Object& other);
85
86 hid_t _hid;
87
88 private:
89 friend class Reference;
90 friend class CompoundType;
91
92#if HIGHFIVE_HAS_FRIEND_DECLARATIONS
93 template <typename Derivate>
94 friend class NodeTraits;
95 template <typename Derivate>
96 friend class AnnotateTraits;
97 template <typename Derivate>
98 friend class PathTraits;
99#endif
100};
101
102
107 public:
110 H5_DEPRECATED("Deprecated since HighFive 2.2. Soon supporting VOL tokens")
111 haddr_t getAddress() const noexcept;
112
114 size_t getRefCount() const noexcept;
115
117 time_t getCreationTime() const noexcept;
118
120 time_t getModificationTime() const noexcept;
121
122 protected:
123#if (H5Oget_info_vers < 3)
124 H5O_info_t raw_info;
125#else
126 // Use compat H5O_info1_t while getAddress() is supported (deprecated)
127 H5O_info1_t raw_info;
128#endif
129
130 friend class Object;
131};
132
133} // namespace HighFive
134
135#include "bits/H5Object_misc.hpp"
#define H5_DEPRECATED(msg)
Definition H5_definitions.hpp:9
Definition H5Annotate_traits.hpp:18
Class representing an Attribute of a DataSet or Group.
Definition H5Attribute.hpp:47
Create a compound HDF5 datatype.
Definition H5DataType.hpp:200
Class representing the space (dimensions) of a DataSet.
Definition H5DataSpace.hpp:39
File class.
Definition H5File.hpp:25
Represents an hdf5 group.
Definition H5Group.hpp:46
NodeTraits: Base class for Group and File.
Definition H5Node_traits.hpp:28
Definition H5Object.hpp:35
hid_t getId() const noexcept
getId
Definition H5Object_misc.hpp:63
ObjectInfo getInfo() const
Retrieve several infos about the current object (address, dates, etc)
Definition H5Object_misc.hpp:91
~Object()
Definition H5Object_misc.hpp:51
ObjectType getType() const
Gets the fundamental type of the object (dataset, group, etc)
Definition H5Object_misc.hpp:86
Object()
Definition H5Object_misc.hpp:19
bool isValid() const noexcept
isValid
Definition H5Object_misc.hpp:59
hid_t _hid
Definition H5Object.hpp:86
Object & operator=(const Object &other)
Definition H5Object_misc.hpp:37
bool operator==(const Object &other) const noexcept
Definition H5Object.hpp:66
A class for accessing hdf5 objects info.
Definition H5Object.hpp:106
time_t getCreationTime() const noexcept
Retrieve the object's creation time.
Definition H5Object_misc.hpp:109
haddr_t getAddress() const noexcept
Retrieve the address of the object (within its file)
Definition H5Object_misc.hpp:103
size_t getRefCount() const noexcept
Retrieve the number of references to this object.
Definition H5Object_misc.hpp:106
H5O_info_t raw_info
Definition H5Object.hpp:124
time_t getModificationTime() const noexcept
Retrieve the object's last modification time.
Definition H5Object_misc.hpp:112
Definition H5Path_traits.hpp:16
An HDF5 (object) reference type.
Definition H5Reference.hpp:33
Definition assert_compatible_spaces.hpp:15
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24