mirror of
https://github.com/iriselia/xgmsv.git
synced 2025-04-05 08:28:27 +08:00
95 lines
1.9 KiB
C++
95 lines
1.9 KiB
C++
#pragma once
|
|
|
|
namespace server
|
|
{
|
|
namespace core
|
|
{
|
|
|
|
template<typename duration>
|
|
struct async_timer_impl
|
|
{
|
|
asio::steady_timer timer;
|
|
duration delay;
|
|
asio::error_code error_code;
|
|
|
|
async_timer_impl(/*asio::io_context& io_context, */duration delay) : timer(io_context), delay(delay) {}
|
|
|
|
bool await_ready()
|
|
{
|
|
return delay.count() == 0;
|
|
}
|
|
|
|
void await_suspend(std::experimental::coroutine_handle<> coro)
|
|
{
|
|
timer.expires_from_now(delay);
|
|
timer.async_wait([this, coro](auto error_code) { this->error_code = error_code; coro.resume(); });
|
|
}
|
|
|
|
void await_resume()
|
|
{
|
|
if (error_code)
|
|
{
|
|
throw asio::system_error(error_code);
|
|
}
|
|
}
|
|
};
|
|
|
|
template<typename duration>
|
|
auto async_timer(duration delay)
|
|
{
|
|
return async_timer_impl<duration>(delay);
|
|
}
|
|
|
|
/*
|
|
template<typename lambda, typename duration = std::chrono::milliseconds>
|
|
auto async(lambda task, duration delay = 0ms) -> std::future<void>
|
|
{
|
|
co_await async_timer(delay);
|
|
task();
|
|
}
|
|
*/
|
|
|
|
template<typename lambda>
|
|
auto async(lambda task)
|
|
{
|
|
asio::co_spawn(io_context,
|
|
[&task]() -> asio::awaitable<void>
|
|
{
|
|
auto executor = co_await asio::this_coro::executor;
|
|
task();
|
|
}
|
|
|
|
, asio::detached);
|
|
//co_await asio::this_coro::executor;
|
|
//task();
|
|
}
|
|
|
|
template<typename duration = std::chrono::milliseconds, typename lambda>
|
|
auto async_after(duration delay, lambda task) -> std::future<void>
|
|
{
|
|
co_await async_timer(delay);
|
|
task();
|
|
}
|
|
|
|
template<typename lambda, typename duration = std::chrono::milliseconds>
|
|
auto async_every(duration delay, lambda task)->std::future<void>
|
|
{
|
|
while (true)
|
|
{
|
|
co_await async_timer(delay);
|
|
task();
|
|
}
|
|
}
|
|
|
|
template<typename duration = std::chrono::milliseconds, typename lambda>
|
|
auto async_every(duration delay, volatile int& stop_signal, lambda task) -> std::future<void>
|
|
{
|
|
while (!stop_signal)
|
|
{
|
|
co_await async_timer(delay);
|
|
task();
|
|
}
|
|
}
|
|
}
|
|
}
|