2001-10-06 14:13:28 +00:00
|
|
|
#ifndef CLOCK_H
|
|
|
|
#define CLOCK_H
|
|
|
|
|
|
|
|
class CMutex;
|
|
|
|
class CCondVarBase;
|
|
|
|
|
2002-07-28 13:34:19 +00:00
|
|
|
//! Mutual exclusion lock utility
|
|
|
|
/*!
|
|
|
|
This class locks a mutex or condition variable in the c'tor and unlocks
|
|
|
|
it in the d'tor. It's easier and safer than manually locking and
|
|
|
|
unlocking since unlocking must usually be done no matter how a function
|
|
|
|
exits (including by unwinding due to an exception).
|
|
|
|
*/
|
2001-10-06 14:13:28 +00:00
|
|
|
class CLock {
|
2002-04-29 14:40:01 +00:00
|
|
|
public:
|
2002-07-28 13:34:19 +00:00
|
|
|
//! Lock the mutex \c mutex
|
2001-10-14 16:58:01 +00:00
|
|
|
CLock(const CMutex* mutex);
|
2002-07-28 13:34:19 +00:00
|
|
|
//! Lock the condition variable \c cv
|
2001-10-14 16:58:01 +00:00
|
|
|
CLock(const CCondVarBase* cv);
|
2002-07-28 13:34:19 +00:00
|
|
|
//! Unlock the mutex or condition variable
|
2001-10-14 16:58:01 +00:00
|
|
|
~CLock();
|
2001-10-06 14:13:28 +00:00
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
private:
|
2001-10-06 14:13:28 +00:00
|
|
|
// not implemented
|
|
|
|
CLock(const CLock&);
|
|
|
|
CLock& operator=(const CLock&);
|
|
|
|
|
2002-04-29 14:40:01 +00:00
|
|
|
private:
|
2001-10-06 14:13:28 +00:00
|
|
|
const CMutex* m_mutex;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|