2007-01-26 19:36:29 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2001-2007, Haiku, Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _SUPPORT_AUTOLOCK_H
|
|
|
|
#define _SUPPORT_AUTOLOCK_H
|
2002-07-09 16:24:59 +04:00
|
|
|
|
|
|
|
|
2003-05-14 21:21:46 +04:00
|
|
|
#include <Locker.h>
|
2002-07-09 16:24:59 +04:00
|
|
|
#include <Looper.h>
|
|
|
|
|
|
|
|
|
|
|
|
class BAutolock {
|
2007-01-26 19:36:29 +03:00
|
|
|
public:
|
|
|
|
inline BAutolock(BLooper *looper);
|
|
|
|
inline BAutolock(BLocker *locker);
|
|
|
|
inline BAutolock(BLocker &locker);
|
|
|
|
inline ~BAutolock();
|
|
|
|
|
|
|
|
inline bool IsLocked(void);
|
|
|
|
|
|
|
|
private:
|
|
|
|
BLocker *fLocker;
|
|
|
|
BLooper *fLooper;
|
|
|
|
bool fIsLocked;
|
2002-07-09 16:24:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
inline
|
|
|
|
BAutolock::BAutolock(BLooper *looper)
|
|
|
|
: fLocker(NULL), fLooper(looper), fIsLocked(looper->Lock())
|
2002-07-09 16:24:59 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
inline
|
|
|
|
BAutolock::BAutolock(BLocker *locker)
|
|
|
|
: fLocker(locker), fLooper(NULL), fIsLocked(locker->Lock())
|
2002-07-09 16:24:59 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
inline
|
|
|
|
BAutolock::BAutolock(BLocker &locker)
|
|
|
|
: fLocker(&locker), fLooper(NULL), fIsLocked(locker.Lock())
|
2002-07-09 16:24:59 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
inline
|
|
|
|
BAutolock::~BAutolock()
|
2002-07-09 16:24:59 +04:00
|
|
|
{
|
|
|
|
if (fIsLocked) {
|
2007-01-26 19:36:29 +03:00
|
|
|
if (fLooper != NULL)
|
|
|
|
fLooper->Unlock();
|
|
|
|
else
|
|
|
|
fLocker->Unlock();
|
2002-07-09 16:24:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
inline bool
|
|
|
|
BAutolock::IsLocked()
|
2002-07-09 16:24:59 +04:00
|
|
|
{
|
|
|
|
return fIsLocked;
|
|
|
|
}
|
|
|
|
|
2007-01-26 19:36:29 +03:00
|
|
|
#endif // _SUPPORT_AUTOLOCK_H
|