2014-12-17 05:38:14 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 00:17:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 17:45:50 +00:00
|
|
|
#pragma once
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2016-12-11 21:26:23 +00:00
|
|
|
#include <chrono>
|
2014-09-03 05:05:45 +00:00
|
|
|
#include <condition_variable>
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <cstddef>
|
2014-09-03 05:05:45 +00:00
|
|
|
#include <mutex>
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <thread>
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2016-04-14 11:53:05 +00:00
|
|
|
namespace Common {
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2015-04-16 20:55:30 +00:00
|
|
|
class Event {
|
2013-09-05 00:17:46 +00:00
|
|
|
public:
|
2015-04-16 20:55:30 +00:00
|
|
|
void Set() {
|
2019-04-01 16:29:59 +00:00
|
|
|
std::lock_guard lk{mutex};
|
2015-04-16 20:55:30 +00:00
|
|
|
if (!is_set) {
|
2014-04-01 22:20:08 +00:00
|
|
|
is_set = true;
|
2016-04-14 11:53:05 +00:00
|
|
|
condvar.notify_one();
|
2014-04-01 22:20:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-16 20:55:30 +00:00
|
|
|
void Wait() {
|
2019-04-01 16:29:59 +00:00
|
|
|
std::unique_lock lk{mutex};
|
2016-09-18 00:38:01 +00:00
|
|
|
condvar.wait(lk, [&] { return is_set; });
|
2014-04-01 22:20:08 +00:00
|
|
|
is_set = false;
|
|
|
|
}
|
|
|
|
|
2016-12-11 21:26:23 +00:00
|
|
|
template <class Clock, class Duration>
|
|
|
|
bool WaitUntil(const std::chrono::time_point<Clock, Duration>& time) {
|
2019-04-01 16:29:59 +00:00
|
|
|
std::unique_lock lk{mutex};
|
2016-12-11 21:26:23 +00:00
|
|
|
if (!condvar.wait_until(lk, time, [this] { return is_set; }))
|
|
|
|
return false;
|
|
|
|
is_set = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-16 20:55:30 +00:00
|
|
|
void Reset() {
|
2019-04-01 16:29:59 +00:00
|
|
|
std::unique_lock lk{mutex};
|
2016-09-18 00:38:01 +00:00
|
|
|
// no other action required, since wait loops on the predicate and any lingering signal will
|
|
|
|
// get cleared on the first iteration
|
2014-04-01 22:20:08 +00:00
|
|
|
is_set = false;
|
|
|
|
}
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
private:
|
2018-11-22 02:44:58 +00:00
|
|
|
bool is_set = false;
|
2016-04-14 11:53:05 +00:00
|
|
|
std::condition_variable condvar;
|
|
|
|
std::mutex mutex;
|
2013-09-05 00:17:46 +00:00
|
|
|
};
|
|
|
|
|
2015-04-16 20:55:30 +00:00
|
|
|
class Barrier {
|
2013-09-05 00:17:46 +00:00
|
|
|
public:
|
2018-11-22 02:44:58 +00:00
|
|
|
explicit Barrier(std::size_t count_) : count(count_) {}
|
2014-04-01 22:20:08 +00:00
|
|
|
|
2015-04-16 20:55:30 +00:00
|
|
|
/// Blocks until all "count" threads have called Sync()
|
|
|
|
void Sync() {
|
2019-04-01 16:29:59 +00:00
|
|
|
std::unique_lock lk{mutex};
|
2018-09-15 13:21:06 +00:00
|
|
|
const std::size_t current_generation = generation;
|
2014-04-01 22:20:08 +00:00
|
|
|
|
2016-04-14 11:53:05 +00:00
|
|
|
if (++waiting == count) {
|
2016-04-14 11:54:06 +00:00
|
|
|
generation++;
|
2016-04-14 11:53:05 +00:00
|
|
|
waiting = 0;
|
|
|
|
condvar.notify_all();
|
2015-04-16 20:55:30 +00:00
|
|
|
} else {
|
2016-09-18 00:38:01 +00:00
|
|
|
condvar.wait(lk,
|
|
|
|
[this, current_generation] { return current_generation != generation; });
|
2014-04-01 22:20:08 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
private:
|
2016-04-14 11:53:05 +00:00
|
|
|
std::condition_variable condvar;
|
|
|
|
std::mutex mutex;
|
2018-11-22 02:47:06 +00:00
|
|
|
std::size_t count;
|
2018-11-22 02:44:58 +00:00
|
|
|
std::size_t waiting = 0;
|
|
|
|
std::size_t generation = 0; // Incremented once each time the barrier is used
|
2013-09-05 00:17:46 +00:00
|
|
|
};
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void SetCurrentThreadName(const char* name);
|
2014-11-19 08:49:13 +00:00
|
|
|
|
2013-09-05 00:17:46 +00:00
|
|
|
} // namespace Common
|