mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 22:56:12 -04:00
Signed-off-by: Alexey Polyudov <apolyudov@google.com> Change-Id: I4bf367877a986910bb03e1c54aa972b4bcd59942
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
#ifndef PLATFORM_V2_IMPL_G3_CONDITION_VARIABLE_H_
|
|
#define PLATFORM_V2_IMPL_G3_CONDITION_VARIABLE_H_
|
|
|
|
#include "platform_v2/api/condition_variable.h"
|
|
#include "platform_v2/base/exception.h"
|
|
#include "platform_v2/impl/g3/mutex.h"
|
|
#include "absl/synchronization/mutex.h"
|
|
|
|
namespace location {
|
|
namespace nearby {
|
|
namespace g3 {
|
|
|
|
class ConditionVariable : public api::ConditionVariable {
|
|
public:
|
|
explicit ConditionVariable(g3::Mutex* mutex) : mutex_(&mutex->mutex_) {}
|
|
~ConditionVariable() override = default;
|
|
|
|
Exception Wait() override {
|
|
cond_var_.Wait(mutex_);
|
|
return {Exception::kSuccess};
|
|
}
|
|
Exception Wait(absl::Duration timeout) override {
|
|
return cond_var_.WaitWithTimeout(mutex_, timeout)
|
|
? Exception{Exception::kTimeout}
|
|
: Exception{Exception::kSuccess};
|
|
}
|
|
void Notify() override { cond_var_.SignalAll(); }
|
|
|
|
private:
|
|
absl::Mutex* mutex_;
|
|
absl::CondVar cond_var_;
|
|
};
|
|
|
|
} // namespace g3
|
|
} // namespace nearby
|
|
} // namespace location
|
|
|
|
#endif // PLATFORM_V2_IMPL_G3_CONDITION_VARIABLE_H_
|