libcryfs/lock/ConditionBarrier.h
2015-10-03 01:23:39 +02:00

38 lines
947 B
C++

#ifndef MESSMER_CPPUTILS_CONDITIONBARRIER_H
#define MESSMER_CPPUTILS__CONDITIONBARRIER_H
#include <mutex>
#include <condition_variable>
//TODO Test
namespace cpputils {
// Like a condition variable, but without spurious wakeups.
// The waiting threads are only woken, when notify() is called.
// After a call to release(), future calls to wait() will not block anymore.
class ConditionBarrier {
public:
ConditionBarrier() :_mutex(), _cv(), _triggered(false) {
}
void wait() {
std::unique_lock<std::mutex> lock(_mutex);
_cv.wait(lock, [this] {
return _triggered;
});
}
void release() {
std::unique_lock<std::mutex> lock(_mutex);
_triggered = true;
_cv.notify_all();
}
private:
std::mutex _mutex;
std::condition_variable _cv;
bool _triggered;
};
}
#endif