IODA
Handles.cpp
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2020 Ryan Honeyager
3  * (C) Copyright 2020-2021 UCAR
4  *
5  * This software is licensed under the terms of the Apache Licence Version 2.0
6  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
7  */
8 /*! \addtogroup ioda_internals_engines_hh
9  *
10  * @{
11  * \file Handles.cpp
12  * \brief HDF5 resource handles in C++.
13  */
14 #include "./HH/Handles.h"
15 
16 namespace ioda {
17 namespace detail {
18 namespace Engines {
19 namespace HH {
20 namespace Handles {
21 HH_hid_t::~HH_hid_t() = default;
22 hid_t HH_hid_t::get() const { return *(_h.get()); }
23 ::std::shared_ptr<hid_t> HH_hid_t::getShared() const { return _h; }
24 HH_hid_t::HH_hid_t() : HH_hid_t(-1, HH::Handles::Closers::DoNotClose::CloseP) {}
25 HH_hid_t::HH_hid_t(::std::shared_ptr<hid_t> h) : _h(h) {}
26 HH_hid_t::HH_hid_t(hid_t val, const std::function<void(hid_t*)>& closer) {
27  if (closer) {
28  _h = ::std::shared_ptr<hid_t>(new hid_t(val), closer);
29  } else
30  _h = ::std::shared_ptr<hid_t>(new hid_t(val));
31 }
32 hid_t HH_hid_t::operator()() const { return get(); }
34 bool HH_hid_t::isValid() const {
35  H5I_type_t typ = H5Iget_type(get());
36  return (typ != H5I_BADID);
37 }
38 
39 } // namespace Handles
40 } // namespace HH
41 } // namespace Engines
42 } // namespace detail
43 } // namespace ioda
44 
45 /// @}
HDF5 resource handles in C++.
A class to wrap HDF5's hid_t resource handles.
Definition: Handles.h:92
::std::shared_ptr< hid_t > getShared() const
Definition: Handles.cpp:23
::std::shared_ptr< hid_t > _h
Definition: Handles.h:93