HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5Object_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 <iostream>
12
13#include "../H5Exception.hpp"
14#include "../H5Utility.hpp"
15#include "h5i_wrapper.hpp"
16
17namespace HighFive {
18
20 : _hid(H5I_INVALID_HID) {}
21
22inline Object::Object(hid_t hid)
23 : _hid(hid) {}
24
25inline Object::Object(const Object& other)
26 : _hid(other._hid) {
27 if (other.isValid()) {
28 detail::h5i_inc_ref(_hid);
29 }
30}
31
32inline Object::Object(Object&& other) noexcept
33 : _hid(other._hid) {
34 other._hid = H5I_INVALID_HID;
35}
36
37inline Object& Object::operator=(const Object& other) {
38 if (this != &other) {
39 if ((*this).isValid()) {
40 detail::h5i_dec_ref(_hid);
41 }
42
43 _hid = other._hid;
44 if (other.isValid()) {
45 detail::h5i_inc_ref(_hid);
46 }
47 }
48 return *this;
49}
50
52 if (isValid()) {
53 if (detail::nothrow::h5i_dec_ref(_hid) < 0) {
54 HIGHFIVE_LOG_ERROR("Failed to decrease reference count of HID");
55 }
56 }
57}
58
59inline bool Object::isValid() const noexcept {
60 return (_hid > 0) && (detail::nothrow::h5i_is_valid(_hid) > 0);
61}
62
63inline hid_t Object::getId() const noexcept {
64 return _hid;
65}
66
67static inline ObjectType _convert_object_type(const H5I_type_t& h5type) {
68 switch (h5type) {
69 case H5I_FILE:
70 return ObjectType::File;
71 case H5I_GROUP:
73 case H5I_DATATYPE:
75 case H5I_DATASPACE:
77 case H5I_DATASET:
79 case H5I_ATTR:
81 default:
82 return ObjectType::Other;
83 }
84}
85
87 // H5Iget_type is a very lightweight func which extracts the type from the id
88 return _convert_object_type(detail::h5i_get_type(_hid));
89}
90
92 ObjectInfo info;
93#if (H5Oget_info_vers < 3)
94 if (H5Oget_info(_hid, &info.raw_info) < 0) {
95#else
96 if (H5Oget_info1(_hid, &info.raw_info) < 0) {
97#endif
98 HDF5ErrMapper::ToException<ObjectException>("Unable to obtain info for object");
99 }
100 return info;
101}
102
103inline haddr_t ObjectInfo::getAddress() const noexcept {
104 return raw_info.addr;
105}
106inline size_t ObjectInfo::getRefCount() const noexcept {
107 return raw_info.rc;
108}
109inline time_t ObjectInfo::getCreationTime() const noexcept {
110 return raw_info.btime;
111}
112inline time_t ObjectInfo::getModificationTime() const noexcept {
113 return raw_info.mtime;
114}
115
116
117} // namespace HighFive
#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