HighFive 3.0.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
H5Group.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 <H5Gpublic.h>
12
13#include "H5Object.hpp"
14#include "bits/H5Friends.hpp"
19
20namespace HighFive {
21
22namespace detail {
38Group make_group(hid_t);
39} // namespace detail
40
43class Group: public Object,
44 public NodeTraits<Group>,
45 public AnnotateTraits<Group>,
46 public PathTraits<Group> {
47 public:
49
50 Group() = default;
51
52 std::pair<unsigned int, unsigned int> getEstimatedLinkInfo() const;
53
56 return details::get_plist<GroupCreateProps>(*this, H5Gget_create_plist);
57 }
58
59 Group(Object&& o) noexcept
60 : Object(std::move(o)) {};
61
62 protected:
63 using Object::Object;
64
65 friend Group detail::make_group(hid_t);
66 friend class File;
67 friend class Reference;
68#if HIGHFIVE_HAS_FRIEND_DECLARATIONS
69 template <typename Derivate>
70 friend class ::HighFive::NodeTraits;
71#endif
72};
73
74inline std::pair<unsigned int, unsigned int> Group::getEstimatedLinkInfo() const {
75 auto gcpl = getCreatePropertyList();
76 auto eli = EstimatedLinkInfo(gcpl);
77 return std::make_pair(eli.getEntries(), eli.getNameLength());
78}
79
80namespace detail {
81inline Group make_group(hid_t hid) {
82 return Group(hid);
83}
84} // namespace detail
85
86} // namespace HighFive
Definition H5Annotate_traits.hpp:18
File class.
Definition H5File.hpp:25
Represents an hdf5 group.
Definition H5Group.hpp:46
Group()=default
Object()
Definition H5Object_misc.hpp:19
static const ObjectType type
Definition H5Group.hpp:48
GroupCreateProps getCreatePropertyList() const
Get the list of properties for creation of this group.
Definition H5Group.hpp:55
Group(Object &&o) noexcept
Definition H5Group.hpp:59
std::pair< unsigned int, unsigned int > getEstimatedLinkInfo() const
Definition H5Group.hpp:74
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 assert_compatible_spaces.hpp:15
ObjectType
Enum of the types of objects (H5O api)
Definition H5Object.hpp:24