This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
signal-wrangler/include/sgnl/AtomicCondition.h

61 lines
1.0 KiB
C++

// Author: Thomas Trapp - https://thomastrapp.com/
// License: MIT
#pragma once
#include <atomic>
#include <chrono>
#include <condition_variable>
#include <mutex>
namespace sgnl {
template<typename ValueType>
class AtomicCondition
{
public:
explicit AtomicCondition(ValueType val)
: value_(val)
, condvar_mutex_()
, condvar_()
{
}
ValueType get() const noexcept
{
return this->value_.load();
}
void set(ValueType val) noexcept
{
this->value_.store(val);
}
template<class Rep, class Period>
void wait_for(const std::chrono::duration<Rep, Period>& time,
ValueType val) const
{
std::unique_lock<std::mutex> lock(this->condvar_mutex_);
while( this->value_.load() != val )
if( this->condvar_.wait_for(lock, time) == std::cv_status::timeout )
return;
}
void notify_all() noexcept
{
this->condvar_.notify_all();
}
private:
std::atomic<ValueType> value_;
mutable std::mutex condvar_mutex_;
mutable std::condition_variable condvar_;
};
} // namespace sgnl