微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何等待两个计时器中的任何一个完成Boost Asio

如何解决如何等待两个计时器中的任何一个完成Boost Asio

timer1timer2 都完成后,下面的代码会打印到控制台。如何在 timer1timer2 完成后将其更改为打印,然后取消另一个计时器。

#include <iostream>
#include <boost/asio.hpp>
#include <boost/asio/spawn.hpp>

int main() {

  boost::asio::io_context io;

  boost::asio::deadline_timer timer1(io,boost::posix_time::seconds(5));
  boost::asio::deadline_timer timer2(io,boost::posix_time::seconds(1));

  boost::asio::spawn(io,[&](boost::asio::yield_context yield){
    timer1.async_wait(yield);
    timer2.async_wait(yield);
    std::cout << "Both timer1 and timer2 have finished" << std::endl;
  });

  io.run();

}

解决方法

怎么样:

#include <iostream>
#include <boost/asio.hpp>
#include <boost/asio/spawn.hpp>

void print_timer_expired( bool& flag)
{
 if( flag )
     return;
 flag = true;
 std::cout << "Timer1 or timer2 has finished" << std::endl;
}
int main() {

  boost::asio::io_context io;
  bool flag = false;  // true if message has been printed

  boost::asio::deadline_timer timer1(io,boost::posix_time::seconds(5));
  boost::asio::deadline_timer timer2(io,boost::posix_time::seconds(1));

  boost::asio::spawn(io,[&](boost::asio::yield_context yield){
    timer1.async_wait(yield);
    print_timer_expired( flag );
  });
  boost::asio::spawn(io,[&](boost::asio::yield_context yield){
    timer2.async_wait(yield);
    print_timer_expired( flag );
  });

  io.run();

}
,

我认为这个问题的意思是“你好吗async_wat_any(timer1,timer2,...,yield)

指向回调完成处理程序提供此功能的另一个答案是正确的,但它们不提供回单个协程的胶水。

现在 Asio's async operations 抽象出所有调用样式(回调、use_future、use_awaitable、yield_context 等...)之间的差异 - 将它们全部带回到“回调”样式下。

因此,您可以制作自己的异步初始化,将这些联系在一起,粗略的草图:

template <typename Token>
auto async_wait_any( std::vector<std::reference_wrapper<timer>> timers,Token token) {
    using Result =
        boost::asio::async_result<std::decay_t<Token>,void(error_code)>;
    using Handler  = typename Result::completion_handler_type;

    Handler handler(token);
    Result result(handler);

    for (timer& t : timers) {
        t.async_wait([=](error_code ec) mutable {
            if (ec == boost::asio::error::operation_aborted)
                return;
            for (timer& t : timers) {
                t.cancel_one();
            }
            handler(ec);
        });
    }

    return result.get();
}

现在在你的协程中你可以说:

timer a(ex,100ms);
timer b(ex,200ms);
timer c(ex,300ms);

async_wait_any({a,b,c},yield);

它会在第一个完成时返回。

让我们演示

此外,使其更通用,而不是对计时器类型进行硬编码。实际上,在 Windows 环境中,您可以使用 Event,Mutex,Semaphore 等待可等待对象(如 same interface):

template <typename Token,typename... Waitable>
auto async_wait_any(Token&& token,Waitable&... waitable) {
    using Result =
        boost::asio::async_result<std::decay_t<Token>,void(error_code)>;
    using Handler = typename Result::completion_handler_type;

    Handler completion_handler(std::forward<Token>(token));
    Result result(completion_handler);

    // TODO use executors from any waitable?
    auto ex = get_associated_executor(
        completion_handler,std::get<0>(std::tie(waitable...)).get_executor());

    auto handler = [&,ex,ch = completion_handler](error_code ec) mutable {
        if (ec != boost::asio::error::operation_aborted) {
            (waitable.cancel_one(),...);
            post(ex,[=]() mutable { ch(ec); });
        }
    };

    (waitable.async_wait(bind_executor(ex,handler)),...);

    return result.get();
}

我们将编写一个演示协程,如:

int main() {
    static auto logger = [](auto name) {
        return [name,start = now()](auto const&... args) {
            ((std::cout << name << "\t+" << (now() - start) / 1ms << "ms\t") << ... << args) << std::endl;
        };
    };

    boost::asio::io_context ctx;
    auto wg = make_work_guard(ctx);

    spawn(ctx,[log = logger("coro1"),&wg](yield_context yield) {
        log("started");

        auto ex = get_associated_executor(yield);
        timer a(ex,100ms);
        timer b(ex,200ms);
        timer c(ex,300ms);

        log("async_wait_any(a,c)");
        async_wait_any(yield,a,c);

        log("first completed");
        async_wait_any(yield,c,b);
        log("second completed");
        assert(a.expiry() < now());
        assert(b.expiry() < now());

        // waiting again shows it expired as well
        async_wait_any(yield,b);

        // but c hasn't
        assert(c.expiry() >= now());

        // unless we wait for it
        async_wait_any(yield,c);
        log("third completed");

        log("exiting");
        wg.reset();
    });

    ctx.run();
}

这会打印 Live On Coliru

coro1   +0ms    started
coro1   +0ms    async_wait_any(a,c)
coro1   +100ms  first completed
coro1   +200ms  second completed
coro1   +300ms  third completed
coro1   +300ms  exiting

注意事项、注意事项

棘手的部分:

  • 很难决定将处理程序绑定到哪个执行程序,因为可能有多个关联的执行程序。但是,由于您使用的是协程,您将始终获得与 strand_executor

    关联的正确 yield_context
  • 在调用调用者的完成令牌之前进行取消很重要,否则协程在安全之前已经恢复,导致潜在的生命周期问题

  • 说到这里,因为现在我们在协程外发布异步操作,协程暂停,我们需要一个工作守卫,因为协程不起作用。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。