fix replace MutexLock by LockGuard<Mutex>
This commit is contained in:
parent
b1a9a8a17f
commit
9cc2ec86b7
@ -75,42 +75,46 @@ public:
|
||||
LockGuard(const LockGuard &) = delete;
|
||||
LockGuard &operator=(const LockGuard &) = delete;
|
||||
|
||||
explicit LockGuard(TLock *lock) : lock_(lock) { lock_->Lock(); };
|
||||
explicit LockGuard(TLock *lock) : mutex_(lock) { mutex_->Lock(); };
|
||||
|
||||
~LockGuard() { lock_->Unlock(); };
|
||||
~LockGuard() { mutex_->Unlock(); };
|
||||
|
||||
private:
|
||||
TLock *lock_;
|
||||
TLock *mutex_;
|
||||
friend class ConditionVariable;
|
||||
};
|
||||
|
||||
class MutexLock final {
|
||||
public:
|
||||
MutexLock(const MutexLock &) = delete;
|
||||
MutexLock &operator=(const MutexLock &) = delete;
|
||||
using MutexLock = LockGuard<Mutex>;
|
||||
using RecursiveMutexLock = LockGuard<RecursiveMutex>;
|
||||
|
||||
explicit MutexLock(Mutex *mutex) : mutex_(mutex) { mutex->Lock(); }
|
||||
|
||||
~MutexLock() { mutex_->Unlock(); }
|
||||
|
||||
private:
|
||||
Mutex *mutex_;
|
||||
};
|
||||
|
||||
class RecursiveMutexLock final {
|
||||
public:
|
||||
RecursiveMutexLock(const RecursiveMutexLock &) = delete;
|
||||
RecursiveMutexLock &operator=(const RecursiveMutexLock &) = delete;
|
||||
|
||||
explicit RecursiveMutexLock(RecursiveMutex *mutex) : mutex_(mutex)
|
||||
{
|
||||
mutex->Lock();
|
||||
}
|
||||
|
||||
~RecursiveMutexLock() { mutex_->Unlock(); }
|
||||
|
||||
private:
|
||||
RecursiveMutex *mutex_;
|
||||
};
|
||||
// class MutexLock final {
|
||||
// public:
|
||||
// MutexLock(const MutexLock &) = delete;
|
||||
// MutexLock &operator=(const MutexLock &) = delete;
|
||||
//
|
||||
// explicit MutexLock(Mutex *mutex) : mutex_(mutex) { mutex->Lock(); }
|
||||
//
|
||||
// ~MutexLock() { mutex_->Unlock(); }
|
||||
//
|
||||
// private:
|
||||
// Mutex *mutex_;
|
||||
// };
|
||||
//
|
||||
// class RecursiveMutexLock final {
|
||||
// public:
|
||||
// RecursiveMutexLock(const RecursiveMutexLock &) = delete;
|
||||
// RecursiveMutexLock &operator=(const RecursiveMutexLock &) = delete;
|
||||
//
|
||||
// explicit RecursiveMutexLock(RecursiveMutex *mutex) : mutex_(mutex)
|
||||
// {
|
||||
// mutex->Lock();
|
||||
// }
|
||||
//
|
||||
// ~RecursiveMutexLock() { mutex_->Unlock(); }
|
||||
//
|
||||
// private:
|
||||
// RecursiveMutex *mutex_;
|
||||
// };
|
||||
|
||||
class ConditionVariable final {
|
||||
public:
|
||||
@ -120,17 +124,18 @@ public:
|
||||
ConditionVariable &operator=(const ConditionVariable &) = delete;
|
||||
|
||||
template<typename Predicate>
|
||||
inline bool Wait(Mutex *mutex, Predicate pred)
|
||||
inline bool Wait(LockGuard<Mutex> &guard, Predicate pred)
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(mutex->impl_, std::adopt_lock);
|
||||
std::unique_lock<std::mutex> lock(guard.mutex_->impl_, std::adopt_lock);
|
||||
cv_.wait(lock, pred);
|
||||
return true;
|
||||
}
|
||||
|
||||
template<typename Predicate>
|
||||
inline bool WaitFor(Mutex *mutex, TimeDelta timeout, Predicate pred)
|
||||
inline bool
|
||||
WaitFor(LockGuard<Mutex> &guard, TimeDelta timeout, Predicate pred)
|
||||
{
|
||||
std::unique_lock<std::mutex> lock(mutex->impl_, std::adopt_lock);
|
||||
std::unique_lock<std::mutex> lock(guard.mutex_->impl_, std::adopt_lock);
|
||||
if (timeout == kForever) {
|
||||
cv_.wait(lock, pred);
|
||||
return true;
|
||||
|
@ -32,7 +32,7 @@ Event::Wait(TimeDelta give_up_after, TimeDelta warn_after)
|
||||
{
|
||||
MutexLock lock(&mutex_);
|
||||
bool wait_success =
|
||||
cv_.WaitFor(&mutex_, give_up_after, [&] { return event_status_; });
|
||||
cv_.WaitFor(lock, give_up_after, [&] { return event_status_; });
|
||||
if (!wait_success) { return false; }
|
||||
|
||||
if (!is_manual_reset_) { event_status_ = false; }
|
||||
|
Loading…
Reference in New Issue
Block a user