13#include "../H5Exception.hpp"
14#include "../H5Utility.hpp"
20 : _hid(H5I_INVALID_HID) {}
28 detail::h5i_inc_ref(
_hid);
34 other._hid = H5I_INVALID_HID;
39 if ((*this).isValid()) {
40 detail::h5i_dec_ref(
_hid);
45 detail::h5i_inc_ref(
_hid);
53 if (detail::nothrow::h5i_dec_ref(
_hid) < 0) {
60 return (
_hid > 0) && (detail::nothrow::h5i_is_valid(
_hid) > 0);
67static inline ObjectType _convert_object_type(
const H5I_type_t& h5type) {
88 return _convert_object_type(detail::h5i_get_type(
_hid));
93#if (H5Oget_info_vers < 3)
98 HDF5ErrMapper::ToException<ObjectException>(
"Unable to obtain info for object");
104 return raw_info.addr;
110 return raw_info.btime;
113 return raw_info.mtime;
#define HIGHFIVE_LOG_ERROR(message)
Definition H5Utility.hpp:204
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
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 assert_compatible_spaces.hpp:15
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24