2022-04-28 11:24:11 -05:00
|
|
|
// SPDX-FileCopyrightText: 2013 Dolphin Emulator Project
|
|
|
|
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2013-09-04 19:17:46 -05:00
|
|
|
|
2014-08-17 12:45:50 -05:00
|
|
|
#pragma once
|
2013-09-04 19:17:46 -05:00
|
|
|
|
2020-08-25 20:41:46 -05:00
|
|
|
#include <atomic>
|
2016-12-11 15:26:23 -06:00
|
|
|
#include <chrono>
|
2014-09-03 00:05:45 -05:00
|
|
|
#include <condition_variable>
|
2016-09-17 19:38:01 -05:00
|
|
|
#include <cstddef>
|
2014-09-03 00:05:45 -05:00
|
|
|
#include <mutex>
|
2016-09-17 19:38:01 -05:00
|
|
|
#include <thread>
|
2020-02-08 10:48:57 -06:00
|
|
|
#include "common/common_types.h"
|
2013-09-04 19:17:46 -05:00
|
|
|
|
2016-04-14 06:53:05 -05:00
|
|
|
namespace Common {
|
2013-09-04 19:17:46 -05:00
|
|
|
|
2015-04-16 15:55:30 -05:00
|
|
|
class Event {
|
2013-09-04 19:17:46 -05:00
|
|
|
public:
|
2015-04-16 15:55:30 -05:00
|
|
|
void Set() {
|
2022-04-07 13:30:55 -05:00
|
|
|
std::scoped_lock lk{mutex};
|
2015-04-16 15:55:30 -05:00
|
|
|
if (!is_set) {
|
2014-04-01 17:20:08 -05:00
|
|
|
is_set = true;
|
2016-04-14 06:53:05 -05:00
|
|
|
condvar.notify_one();
|
2014-04-01 17:20:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-16 15:55:30 -05:00
|
|
|
void Wait() {
|
2019-04-01 11:29:59 -05:00
|
|
|
std::unique_lock lk{mutex};
|
2020-08-25 20:41:46 -05:00
|
|
|
condvar.wait(lk, [&] { return is_set.load(); });
|
2014-04-01 17:20:08 -05:00
|
|
|
is_set = false;
|
|
|
|
}
|
|
|
|
|
2020-02-08 10:48:57 -06:00
|
|
|
bool WaitFor(const std::chrono::nanoseconds& time) {
|
2019-11-03 01:07:04 -06:00
|
|
|
std::unique_lock lk{mutex};
|
2020-08-25 20:41:46 -05:00
|
|
|
if (!condvar.wait_for(lk, time, [this] { return is_set.load(); }))
|
2019-08-24 08:57:49 -05:00
|
|
|
return false;
|
|
|
|
is_set = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-12-11 15:26:23 -06:00
|
|
|
template <class Clock, class Duration>
|
|
|
|
bool WaitUntil(const std::chrono::time_point<Clock, Duration>& time) {
|
2019-04-01 11:29:59 -05:00
|
|
|
std::unique_lock lk{mutex};
|
2020-08-25 20:41:46 -05:00
|
|
|
if (!condvar.wait_until(lk, time, [this] { return is_set.load(); }))
|
2016-12-11 15:26:23 -06:00
|
|
|
return false;
|
|
|
|
is_set = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-16 15:55:30 -05:00
|
|
|
void Reset() {
|
2019-04-01 11:29:59 -05:00
|
|
|
std::unique_lock lk{mutex};
|
2016-09-17 19:38:01 -05: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 17:20:08 -05:00
|
|
|
is_set = false;
|
|
|
|
}
|
2013-09-04 19:17:46 -05:00
|
|
|
|
|
|
|
private:
|
2016-04-14 06:53:05 -05:00
|
|
|
std::condition_variable condvar;
|
|
|
|
std::mutex mutex;
|
2020-08-25 20:41:46 -05:00
|
|
|
std::atomic_bool is_set{false};
|
2013-09-04 19:17:46 -05:00
|
|
|
};
|
|
|
|
|
2015-04-16 15:55:30 -05:00
|
|
|
class Barrier {
|
2013-09-04 19:17:46 -05:00
|
|
|
public:
|
2018-11-21 20:44:58 -06:00
|
|
|
explicit Barrier(std::size_t count_) : count(count_) {}
|
2014-04-01 17:20:08 -05:00
|
|
|
|
2015-04-16 15:55:30 -05:00
|
|
|
/// Blocks until all "count" threads have called Sync()
|
|
|
|
void Sync() {
|
2019-04-01 11:29:59 -05:00
|
|
|
std::unique_lock lk{mutex};
|
2018-09-15 08:21:06 -05:00
|
|
|
const std::size_t current_generation = generation;
|
2014-04-01 17:20:08 -05:00
|
|
|
|
2016-04-14 06:53:05 -05:00
|
|
|
if (++waiting == count) {
|
2016-04-14 06:54:06 -05:00
|
|
|
generation++;
|
2016-04-14 06:53:05 -05:00
|
|
|
waiting = 0;
|
|
|
|
condvar.notify_all();
|
2015-04-16 15:55:30 -05:00
|
|
|
} else {
|
2016-09-17 19:38:01 -05:00
|
|
|
condvar.wait(lk,
|
|
|
|
[this, current_generation] { return current_generation != generation; });
|
2014-04-01 17:20:08 -05:00
|
|
|
}
|
|
|
|
}
|
2013-09-04 19:17:46 -05:00
|
|
|
|
|
|
|
private:
|
2016-04-14 06:53:05 -05:00
|
|
|
std::condition_variable condvar;
|
|
|
|
std::mutex mutex;
|
2018-11-21 20:47:06 -06:00
|
|
|
std::size_t count;
|
2018-11-21 20:44:58 -06:00
|
|
|
std::size_t waiting = 0;
|
|
|
|
std::size_t generation = 0; // Incremented once each time the barrier is used
|
2013-09-04 19:17:46 -05:00
|
|
|
};
|
2014-11-19 02:49:13 -06:00
|
|
|
|
2020-04-05 08:48:53 -05:00
|
|
|
enum class ThreadPriority : u32 {
|
|
|
|
Low = 0,
|
|
|
|
Normal = 1,
|
|
|
|
High = 2,
|
|
|
|
VeryHigh = 3,
|
2021-11-27 13:31:46 -06:00
|
|
|
Critical = 4,
|
2020-04-05 08:48:53 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
void SetCurrentThreadPriority(ThreadPriority new_priority);
|
|
|
|
|
2016-09-17 19:38:01 -05:00
|
|
|
void SetCurrentThreadName(const char* name);
|
2014-11-19 02:49:13 -06:00
|
|
|
|
2013-09-04 19:17:46 -05:00
|
|
|
} // namespace Common
|