跳转至

File async-executor.cc

File List > src > utils > async-executor.cc

Go to the documentation of this file

#include <boost/asio/signal_set.hpp>
#include <qqmusic/utils/async-executor.h>

namespace qqmusic::utils {

AsyncExecutor::AsyncExecutor() {
    ioc_thread = std::thread([this]() {
        boost::asio::signal_set sigset{ioc, SIGINT, SIGTERM};
        /*set handler for SIGINT and SIGTERM*/
        sigset.async_wait([&](auto, auto) { ioc.stop(); });
        /*keep ioc alive when no task left*/
        boost::asio::executor_work_guard<decltype(ioc.get_executor())> work{ioc.get_executor()};
        /*run the ioc event loop*/
        ioc.run();
    });
}

AsyncExecutor::~AsyncExecutor() {
    shutdown();
}

void AsyncExecutor::shutdown() {
    ioc.stop();
    if (ioc_thread.joinable()) {
        ioc_thread.join();
    }
}

AsyncExecutor& AsyncExecutor::get_instance() {
    static AsyncExecutor ae;
    return ae;
}

} // namespace qqmusic::utils