Waybar/include/util/sleeper_thread.hpp

127 lines
3.1 KiB
C++
Raw Normal View History

2018-08-08 21:54:58 +00:00
#pragma once
#include <chrono>
2019-04-18 15:52:00 +00:00
#include <condition_variable>
2018-08-08 21:54:58 +00:00
#include <ctime>
#include <functional>
#include <thread>
#include "prepare_for_sleep.h"
2018-08-08 21:54:58 +00:00
namespace waybar::util {
/**
* Defer pthread_cancel until the end of a current scope.
*
* Required to protect a scope where it's unsafe to raise `__forced_unwind` exception.
* An example of these is a call of a method marked as `noexcept`; an attempt to cancel within such
* a method may result in a `std::terminate` call.
*/
class CancellationGuard {
int oldstate;
2022-04-06 06:37:19 +00:00
public:
CancellationGuard() { pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate); }
~CancellationGuard() { pthread_setcancelstate(oldstate, &oldstate); }
};
2018-12-26 10:13:36 +00:00
class SleeperThread {
2019-04-18 15:52:00 +00:00
public:
SleeperThread() = default;
2018-08-08 21:54:58 +00:00
SleeperThread(std::function<void()> func)
2019-04-18 15:52:00 +00:00
: thread_{[this, func] {
2019-06-11 20:09:47 +00:00
while (do_run_) {
signal_ = false;
func();
}
}} {
connection_ = prepare_for_sleep().connect([this](bool sleep) {
if (not sleep) wake_up();
});
}
2019-04-18 15:52:00 +00:00
SleeperThread& operator=(std::function<void()> func) {
2018-08-19 11:39:57 +00:00
thread_ = std::thread([this, func] {
2019-03-18 17:46:44 +00:00
while (do_run_) {
signal_ = false;
func();
}
});
if (connection_.empty()) {
connection_ = prepare_for_sleep().connect([this](bool sleep) {
if (not sleep) wake_up();
});
}
return *this;
}
2019-04-18 15:52:00 +00:00
bool isRunning() const { return do_run_; }
auto sleep() {
std::unique_lock lk(mutex_);
CancellationGuard cancel_lock;
return condvar_.wait(lk, [this] { return signal_ || !do_run_; });
}
2019-04-18 15:52:00 +00:00
auto sleep_for(std::chrono::system_clock::duration dur) {
2022-04-06 06:37:19 +00:00
std::unique_lock lk(mutex_);
CancellationGuard cancel_lock;
constexpr auto max_time_point = std::chrono::steady_clock::time_point::max();
auto wait_end = max_time_point;
auto now = std::chrono::steady_clock::now();
if (now < max_time_point - dur) {
wait_end = now + dur;
}
return condvar_.wait_until(lk, wait_end, [this] { return signal_ || !do_run_; });
}
2019-04-18 15:52:00 +00:00
auto sleep_until(
std::chrono::time_point<std::chrono::system_clock, std::chrono::system_clock::duration>
time_point) {
2022-04-06 06:37:19 +00:00
std::unique_lock lk(mutex_);
CancellationGuard cancel_lock;
2019-03-18 17:46:44 +00:00
return condvar_.wait_until(lk, time_point, [this] { return signal_ || !do_run_; });
}
void wake_up() {
2019-06-11 20:09:47 +00:00
{
std::lock_guard<std::mutex> lck(mutex_);
signal_ = true;
}
2018-08-19 11:39:57 +00:00
condvar_.notify_all();
}
2019-04-18 15:52:00 +00:00
auto stop() {
2018-12-26 10:13:36 +00:00
{
std::lock_guard<std::mutex> lck(mutex_);
2019-03-18 17:46:44 +00:00
signal_ = true;
2018-12-26 10:13:36 +00:00
do_run_ = false;
}
2018-08-19 11:39:57 +00:00
condvar_.notify_all();
auto handle = thread_.native_handle();
if (handle != 0) {
// TODO: find a proper way to terminate thread...
pthread_cancel(handle);
}
}
2019-04-18 15:52:00 +00:00
~SleeperThread() {
connection_.disconnect();
2018-09-18 21:15:37 +00:00
stop();
2018-12-18 16:30:54 +00:00
if (thread_.joinable()) {
2018-12-26 10:13:36 +00:00
thread_.join();
2018-12-18 16:30:54 +00:00
}
2018-09-18 21:15:37 +00:00
}
2019-04-18 15:52:00 +00:00
private:
2022-04-06 06:37:19 +00:00
std::thread thread_;
2018-08-19 11:39:57 +00:00
std::condition_variable condvar_;
2022-04-06 06:37:19 +00:00
std::mutex mutex_;
bool do_run_ = true;
bool signal_ = false;
sigc::connection connection_;
};
2018-08-08 21:54:58 +00:00
2019-04-18 15:52:00 +00:00
} // namespace waybar::util