有没有办法显式销毁在给定的boost :: asio :: io_context上挂起的所有处理程序?

问题描述 投票:2回答:1

根据我的知识,据我检查了boost :: asio文档和源代码,除了破坏上下文本身之外,没有办法明确销毁给定io_context上的所有挂起处理程序?

如果可能的话,我需要能够停止io_context,销毁io_context上的挂起处理程序,然后执行其他操作,最后销毁与给定io_context和io_context本身关联的所有io对象(定时器,管道等)。

我知道我可以使用work_guard :: reset并让所有待处理的处理程序运行,然后io_context将自行停止,但问题是许多处理程序可能会生成(post / defer / etc)新的待处理的处理程序等,即每个这样的处理程序都需要保护“if stopped”之类的东西。

我认为io_context :: shutdown正是这样做的,但除了继承之外,没有办法明确调用shutdown函数,因为它不是公共的。

谢谢。

c++ boost-asio
1个回答
0
投票

使用受保护的shutdown尝试您的建议会导致我的系统出现段错误。我认为这是有原因的保护:)

无论如何,它看起来像restart / stop / reset的明智组合可能会起作用。奇怪的是,一些处理程序队列显然停留在UNLESS周围(空)run / run_one。事实上甚至一个poll_one似乎就足够了。所以,无论如何,包括那个。

这是我的测试床代码,您可能会发现它很有用:

Live On Coliru

#include <boost/asio.hpp>
#include <iostream>
using namespace std::chrono_literals;

struct Handler {
    void operator()(boost::system::error_code ec) { std::cout << "Handler invoked: " << ec.message() << std::endl; }

    struct Instance { // logging only unique instance to avoid noise of moved handlers
        Instance()  { std::cout << "Created handler instance"   << std::endl; }
        ~Instance() { std::cout << "Destroyed handler instance" << std::endl; }
    };
    std::unique_ptr<Instance> _instance = std::make_unique<Instance>();
};

int main()
{
    struct Hack : boost::asio::io_context { 
        using boost::asio::io_context::shutdown;
    } io;
    auto work = make_work_guard(io);

    std::cout << " -- run" << std::endl;
    auto t = std::thread([&]{ io.run(); });

    {
        boost::asio::high_resolution_timer tim(io, 2s);
        tim.async_wait(Handler{});
        work.reset(); // no longer needed

        std::this_thread::sleep_for(500ms);

#if 1
        io.stop();
#else
        io.shutdown(); // segfaults
#endif
    }

    std::cout << " -- timer destructed" << std::endl;
    std::cout << " -- joining" << std::endl;
    t.join();

    std::cout << " -- empy run to flush handler queue" << std::endl;
    io.reset();
    //io.run();
    //io.run_one();
    io.poll_one();

    std::cout << " -- bye" << std::endl;
}

打印

 -- run
Created handler instance
 -- timer destructed
 -- joining
 -- empy run to flush handler queue
Handler invoked: Operation canceled
Destroyed handler instance
 -- bye

UPDATE

这是我最好的建议(除了,我猜,not sharing io):

Live On Coliru

#include <boost/asio.hpp>
#include <iostream>
using namespace std::chrono_literals;

struct Handler {
    void operator()(boost::system::error_code ec) { std::cout << "Handler invoked: " << ec.message() << std::endl; }

    struct Instance { // logging only unique instance to avoid noise of moved handlers
        Instance()  { std::cout << "Created handler instance"   << std::endl; }
        ~Instance() { std::cout << "Destroyed handler instance" << std::endl; }
    };
    std::unique_ptr<Instance> _instance = std::make_unique<Instance>();
};

int main()
{
    std::unique_ptr<boost::asio::io_context> io;

    int i = 1;
    for (auto delay : { 1500ms, 500ms }) {
        std::cout << " ------------------- reinitialized -------------- \n";
        io = std::make_unique<boost::asio::io_context>();
        boost::asio::high_resolution_timer tim(*io, 1s);

        std::cout << i << " -- run" << std::endl;
        auto t = std::thread([&]{ io->run(); });

        tim.async_wait(Handler{});

        std::this_thread::sleep_for(delay);

        std::cout << i << " -- stop" << std::endl;
        io->stop();

        std::cout << i << " -- joining" << std::endl;
        t.join();

        std::cout << " ------------------- destruct ------------------- \n";
        io.reset();
    }

    std::cout << "Bye" << std::endl;
}

打印

 ------------------- reinitialized -------------- 
1 -- run
Created handler instance
Handler invoked: Success
Destroyed handler instance
1 -- stop
1 -- joining
 ------------------- destruct ------------------- 
 ------------------- reinitialized -------------- 
1 -- run
Created handler instance
1 -- stop
1 -- joining
 ------------------- destruct ------------------- 
Destroyed handler instance
Bye
© www.soinside.com 2019 - 2024. All rights reserved.