2022-04-23 03:59:50 +07:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-02-04 13:06:23 +07:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <functional>
|
|
|
|
#include <memory>
|
|
|
|
|
2020-02-05 12:13:16 +07:00
|
|
|
namespace boost::context::detail {
|
2020-02-10 11:33:13 +07:00
|
|
|
struct transfer_t;
|
2020-02-05 12:13:16 +07:00
|
|
|
}
|
|
|
|
|
2020-02-04 13:06:23 +07:00
|
|
|
namespace Common {
|
|
|
|
|
2020-02-05 13:48:20 +07:00
|
|
|
/**
|
|
|
|
* Fiber class
|
|
|
|
* a fiber is a userspace thread with it's own context. They can be used to
|
|
|
|
* implement coroutines, emulated threading systems and certain asynchronous
|
|
|
|
* patterns.
|
|
|
|
*
|
|
|
|
* This class implements fibers at a low level, thus allowing greater freedom
|
|
|
|
* to implement such patterns. This fiber class is 'threadsafe' only one fiber
|
|
|
|
* can be running at a time and threads will be locked while trying to yield to
|
|
|
|
* a running fiber until it yields. WARNING exchanging two running fibers between
|
2020-03-06 09:24:08 +07:00
|
|
|
* threads will cause a deadlock. In order to prevent a deadlock, each thread should
|
|
|
|
* have an intermediary fiber, you switch to the intermediary fiber of the current
|
|
|
|
* thread and then from it switch to the expected fiber. This way you can exchange
|
|
|
|
* 2 fibers within 2 different threads.
|
2020-02-05 13:48:20 +07:00
|
|
|
*/
|
2020-02-04 13:06:23 +07:00
|
|
|
class Fiber {
|
|
|
|
public:
|
2022-07-02 11:33:49 +07:00
|
|
|
Fiber(std::function<void()>&& entry_point_func);
|
2020-02-04 13:06:23 +07:00
|
|
|
~Fiber();
|
|
|
|
|
|
|
|
Fiber(const Fiber&) = delete;
|
|
|
|
Fiber& operator=(const Fiber&) = delete;
|
|
|
|
|
2020-11-06 19:29:54 +07:00
|
|
|
Fiber(Fiber&&) = default;
|
|
|
|
Fiber& operator=(Fiber&&) = default;
|
2020-02-04 13:06:23 +07:00
|
|
|
|
|
|
|
/// Yields control from Fiber 'from' to Fiber 'to'
|
|
|
|
/// Fiber 'from' must be the currently running fiber.
|
2021-03-07 15:46:53 +07:00
|
|
|
static void YieldTo(std::weak_ptr<Fiber> weak_from, Fiber& to);
|
2021-03-05 19:08:17 +07:00
|
|
|
[[nodiscard]] static std::shared_ptr<Fiber> ThreadToFiber();
|
2020-02-04 13:06:23 +07:00
|
|
|
|
2022-07-02 11:33:49 +07:00
|
|
|
void SetRewindPoint(std::function<void()>&& rewind_func);
|
2020-02-27 14:32:47 +07:00
|
|
|
|
|
|
|
void Rewind();
|
|
|
|
|
2020-02-04 13:06:23 +07:00
|
|
|
/// Only call from main thread's fiber
|
|
|
|
void Exit();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Fiber();
|
|
|
|
|
2020-05-13 12:49:36 +07:00
|
|
|
void OnRewind(boost::context::detail::transfer_t& transfer);
|
|
|
|
void Start(boost::context::detail::transfer_t& transfer);
|
2020-02-05 12:13:16 +07:00
|
|
|
static void FiberStartFunc(boost::context::detail::transfer_t transfer);
|
2020-04-01 08:19:10 +07:00
|
|
|
static void RewindStartFunc(boost::context::detail::transfer_t transfer);
|
2020-02-05 12:13:16 +07:00
|
|
|
|
2020-02-04 13:06:23 +07:00
|
|
|
struct FiberImpl;
|
|
|
|
std::unique_ptr<FiberImpl> impl;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Common
|