Flutter Engine
 
Loading...
Searching...
No Matches
impeller::ConditionVariable Class Reference

A condition variable exactly similar to the one in libcxx with two major differences: More...

#include <thread.h>

Public Types

using Predicate = std::function< bool()>
 

Public Member Functions

 ConditionVariable ()=default
 
 ~ConditionVariable ()=default
 
 ConditionVariable (const ConditionVariable &)=delete
 
ConditionVariableoperator= (const ConditionVariable &)=delete
 
void NotifyOne ()
 
void NotifyAll ()
 
template<class Clock , class Duration >
bool WaitUntil (Mutex &mutex, const std::chrono::time_point< Clock, Duration > &time_point, const Predicate &should_stop_waiting) IPLR_REQUIRES(mutex)
 Atomically unlocks the mutex and waits on the condition variable up to a specified time point. Lock will be reacquired when the wait exits. Spurious wakes may happen before the time point is reached. In such cases the predicate is invoked and it must return false for the wait to continue. The predicate will be invoked with the mutex locked.
 
template<class Representation , class Period >
bool WaitFor (Mutex &mutex, const std::chrono::duration< Representation, Period > &duration, const Predicate &should_stop_waiting) IPLR_REQUIRES(mutex)
 Atomically unlocks the mutex and waits on the condition variable for a designated duration. Lock will be reacquired when the wait exits. Spurious wakes may happen before the time point is reached. In such cases the predicate is invoked and it must return false for the wait to continue. The predicate will be invoked with the mutex locked.
 
void Wait (Mutex &mutex, const Predicate &should_stop_waiting) IPLR_REQUIRES(mutex)
 Atomically unlocks the mutex and waits on the condition variable indefinitely till the predicate determines that the wait must end. Lock will be reacquired when the wait exits. Spurious wakes may happen before the time point is reached. In such cases the predicate is invoked and it must return false for the wait to continue. The predicate will be invoked with the mutex locked.
 

Detailed Description

A condition variable exactly similar to the one in libcxx with two major differences:

  • On the Wait, WaitFor, and WaitUntil calls, static analysis annotation are respected.
  • There is no ability to wait on a condition variable and also be susceptible to spurious wakes. This is because the predicate is mandatory.

Definition at line 143 of file thread.h.

Member Typedef Documentation

◆ Predicate

using impeller::ConditionVariable::Predicate = std::function<bool()>

Definition at line 157 of file thread.h.

Constructor & Destructor Documentation

◆ ConditionVariable() [1/2]

impeller::ConditionVariable::ConditionVariable ( )
default

◆ ~ConditionVariable()

impeller::ConditionVariable::~ConditionVariable ( )
default

◆ ConditionVariable() [2/2]

impeller::ConditionVariable::ConditionVariable ( const ConditionVariable )
delete

Member Function Documentation

◆ NotifyAll()

void impeller::ConditionVariable::NotifyAll ( )
inline

Definition at line 155 of file thread.h.

155{ cv_.notify_all(); }

◆ NotifyOne()

void impeller::ConditionVariable::NotifyOne ( )
inline

Definition at line 153 of file thread.h.

153{ cv_.notify_one(); }

◆ operator=()

ConditionVariable & impeller::ConditionVariable::operator= ( const ConditionVariable )
delete

◆ Wait()

void impeller::ConditionVariable::Wait ( Mutex &  mutex,
const Predicate should_stop_waiting 
)
inline

Atomically unlocks the mutex and waits on the condition variable indefinitely till the predicate determines that the wait must end. Lock will be reacquired when the wait exits. Spurious wakes may happen before the time point is reached. In such cases the predicate is invoked and it must return false for the wait to continue. The predicate will be invoked with the mutex locked.

Note
Since the predicate is invoked with the mutex locked, if it accesses other guarded resources, the predicate itself must be decorated with the IPLR_REQUIRES directive. For instance,

c++ [] () IPLR_REQUIRES(mutex) { return my_guarded_resource.should_stop_waiting; }

Parameters
mutexThe mutex
[in]should_stop_waitingThe should stop waiting

Definition at line 257 of file thread.h.

258 {
259 std::unique_lock lock(mutex.mutex_, std::adopt_lock);
260 cv_.wait(lock, should_stop_waiting);
261 lock.release();
262 }

Referenced by impeller::testing::TEST(), and impeller::testing::TEST().

◆ WaitFor()

template<class Representation , class Period >
bool impeller::ConditionVariable::WaitFor ( Mutex &  mutex,
const std::chrono::duration< Representation, Period > &  duration,
const Predicate should_stop_waiting 
)
inline

Atomically unlocks the mutex and waits on the condition variable for a designated duration. Lock will be reacquired when the wait exits. Spurious wakes may happen before the time point is reached. In such cases the predicate is invoked and it must return false for the wait to continue. The predicate will be invoked with the mutex locked.

Note
Since the predicate is invoked with the mutex locked, if it accesses other guarded resources, the predicate itself must be decorated with the IPLR_REQUIRES directive. For instance,

c++ [] () IPLR_REQUIRES(mutex) { return my_guarded_resource.should_stop_waiting; }

Parameters
mutexThe mutex.
[in]durationThe duration to wait for.
[in]should_stop_waitingThe predicate invoked on spurious wakes. Must return false for the wait to continue.
Template Parameters
RepresentationThe duration representation type.
PeriodThe duration period type.
Returns
The value of the predicate at the end of the wait.

Definition at line 228 of file thread.h.

230 {
231 return WaitUntil(mutex, std::chrono::steady_clock::now() + duration,
232 should_stop_waiting);
233 }
bool WaitUntil(Mutex &mutex, const std::chrono::time_point< Clock, Duration > &time_point, const Predicate &should_stop_waiting) IPLR_REQUIRES(mutex)
Atomically unlocks the mutex and waits on the condition variable up to a specified time point....
Definition thread.h:189

References WaitUntil().

Referenced by impeller::testing::TEST(), and impeller::testing::TEST().

◆ WaitUntil()

template<class Clock , class Duration >
bool impeller::ConditionVariable::WaitUntil ( Mutex &  mutex,
const std::chrono::time_point< Clock, Duration > &  time_point,
const Predicate should_stop_waiting 
)
inline

Atomically unlocks the mutex and waits on the condition variable up to a specified time point. Lock will be reacquired when the wait exits. Spurious wakes may happen before the time point is reached. In such cases the predicate is invoked and it must return false for the wait to continue. The predicate will be invoked with the mutex locked.

Note
Since the predicate is invoked with the mutex locked, if it accesses other guarded resources, the predicate itself must be decorated with the IPLR_REQUIRES directive. For instance,

c++ [] () IPLR_REQUIRES(mutex) { return my_guarded_resource.should_stop_waiting; }

Parameters
mutexThe mutex.
[in]time_pointThe time point to wait to.
[in]should_stop_waitingThe predicate invoked on spurious wakes. Must return false for the wait to continue.
Template Parameters
ClockThe clock type.
DurationThe duration type.
Returns
The value of the predicate at the end of the wait.

Definition at line 189 of file thread.h.

191 {
192 std::unique_lock lock(mutex.mutex_, std::adopt_lock);
193 const auto result = cv_.wait_until(lock, time_point, should_stop_waiting);
194 lock.release();
195 return result;
196 }

Referenced by impeller::testing::TEST(), and WaitFor().


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