Field3D

Scoped object - creates a dataset on creation and closes it on destruction. More...

#include <Hdf5Util.h>

Inheritance diagram for Hdf5Util::H5ScopedDcreate:
Hdf5Util::H5Base

Public Member Functions

 H5ScopedDcreate (hid_t parentLocation, const std::string &name, hid_t dtype_id, hid_t space_id, hid_t lcpl_id, hid_t dcpl_id, hid_t dapl_id)
 
 ~H5ScopedDcreate ()
 
- Public Member Functions inherited from Hdf5Util::H5Base
 H5Base ()
 
hid_t id () const
 Query the hid_t value. More...
 
 operator hid_t ()
 Implicit cast to hid_t. More...
 

Additional Inherited Members

- Protected Attributes inherited from Hdf5Util::H5Base
hid_t m_id
 

Detailed Description

Scoped object - creates a dataset on creation and closes it on destruction.

Definition at line 263 of file Hdf5Util.h.

Constructor & Destructor Documentation

Hdf5Util::H5ScopedDcreate::H5ScopedDcreate ( hid_t  parentLocation,
const std::string &  name,
hid_t  dtype_id,
hid_t  space_id,
hid_t  lcpl_id,
hid_t  dcpl_id,
hid_t  dapl_id 
)
inline

Definition at line 266 of file Hdf5Util.h.

References g_hdf5Mutex, and Hdf5Util::H5Base::m_id.

269  {
270  GlobalLock lock(g_hdf5Mutex);
271  m_id = H5Dcreate(parentLocation, name.c_str(), dtype_id, space_id,
272  lcpl_id, dcpl_id, dapl_id);
273  }
boost::recursive_mutex::scoped_lock GlobalLock
Definition: Hdf5Util.h:78
FIELD3D_NAMESPACE_OPEN FIELD3D_API boost::recursive_mutex g_hdf5Mutex
Definition: Hdf5Util.cpp:67
Hdf5Util::H5ScopedDcreate::~H5ScopedDcreate ( )
inline

Definition at line 274 of file Hdf5Util.h.

References g_hdf5Mutex, and Hdf5Util::H5Base::m_id.

275  {
276  GlobalLock lock(g_hdf5Mutex);
277  if (m_id >= 0)
278  H5Dclose(m_id);
279  }
boost::recursive_mutex::scoped_lock GlobalLock
Definition: Hdf5Util.h:78
FIELD3D_NAMESPACE_OPEN FIELD3D_API boost::recursive_mutex g_hdf5Mutex
Definition: Hdf5Util.cpp:67

The documentation for this class was generated from the following file: