How can I get a future from boost::asio::post?

后端 未结 2 1353
温柔的废话
温柔的废话 2021-01-01 00:29

I am using Boost 1.66.0, in which asio has built-in support for interoperating with futures (and for some time now). The examples I\'ve seen online indicate how to achieve t

相关标签:
2条回答
  • 2021-01-01 00:50

    Thas what I came up with, it essentially wrapts the asio::post and plugs in a promise/future pair. I think it can be adapted to your needs as well.

    // outer scope setup
    asio::io_context context;
    asio::io_context::strand strand(context);
    
    
    std::future<void> async_send(tcp::socket& socket, std::string message) {
        auto buffered = std::make_shared<std::string>(message);
        std::promise<void> promise;
        auto future = promise.get_future();
    
        // completion handler which only sets the promise.
        auto handler = [buffered, promise{std::move(promise)}](asio::error_code, std::size_t) mutable {
            promise.set_value();
        };
    
        // post async_write call to strand. Thas *should* protecte agains concurrent 
        // writes to the same socket from multiple threads
        asio::post(strand, [buffered, &socket, handler{std::move(handler)}]() mutable {
            asio::async_write(socket, asio::buffer(*buffered), asio::bind_executor(strand, std::move(handler)));
        });
        return future;
    }
    

    The promise can be moved without the future becoming invalidated.

    Adapted to your scenario it could be somethign like this:

    template<typename C>
    std::future<void> post_with_future(C&& handler)
    {
        std::promise<void> promise;
        auto future = promise.get_future();
    
        auto wrapper = [promise{std::move(promise)}]{ // maybe mutable required?
             handler();
             promise.set_value();
        };
    
        // need to move in, cause the promise needs to be transferred. (i think)
        asio::post(strand, std::move(wrapper)); 
        return future;
    }
    

    I would be happy about some feedback to those lines, as I am myself just learning the whole thing :)

    Hope to help, Marti

    0 讨论(0)
  • 2021-01-01 00:54

    What kind of object do I need to provide or wrap my function in to get the same behavior from boost::asio::post?

    You can't. post is a void operation. So the only option to achieve it with post is to use a packaged-task, really.

    The Real Question

    It was hidden in the part "how to get the same behaviour" (just not from post):

    template <typename Token>
    auto async_meaning_of_life(bool success, Token&& token)
    {
        using result_type = typename asio::async_result<std::decay_t<Token>, void(error_code, int)>;
        typename result_type::completion_handler_type handler(std::forward<Token>(token));
    
        result_type result(handler);
    
        if (success)
            handler(error_code{}, 42);
        else
            handler(asio::error::operation_aborted, 0);
    
        return result.get ();
    }
    

    You can use it with a future:

    std::future<int> f = async_meaning_of_life(true, asio::use_future);
    std::cout << f.get() << "\n";
    

    Or you can just use a handler:

    async_meaning_of_life(true, [](error_code ec, int i) {
        std::cout << i << " (" << ec.message() << ")\n";
    });
    

    Simple demo: Live On Coliru

    Extended Demo

    The same mechanism extends to supporting coroutines (with or without exceptions). There's a slightly different dance with async_result for Asio pre-boost 1.66.0.

    See all the different forms together here:

    • How to set error_code to asio::yield_context

    Live On Coliru

    #define BOOST_COROUTINES_NO_DEPRECATION_WARNING 
    #include <iostream>
    #include <boost/asio.hpp>
    #include <boost/asio/spawn.hpp>
    #include <boost/asio/use_future.hpp>
    
    using boost::system::error_code;
    namespace asio = boost::asio;
    
    template <typename Token>
    auto async_meaning_of_life(bool success, Token&& token)
    {
    #if BOOST_VERSION >= 106600
        using result_type = typename asio::async_result<std::decay_t<Token>, void(error_code, int)>;
        typename result_type::completion_handler_type handler(std::forward<Token>(token));
    
        result_type result(handler);
    #else
        typename asio::handler_type<Token, void(error_code, int)>::type
                     handler(std::forward<Token>(token));
    
        asio::async_result<decltype (handler)> result (handler);
    #endif
    
        if (success)
            handler(error_code{}, 42);
        else
            handler(asio::error::operation_aborted, 0);
    
        return result.get ();
    }
    
    void using_yield_ec(asio::yield_context yield) {
        for (bool success : { true, false }) {
            boost::system::error_code ec;
            auto answer = async_meaning_of_life(success, yield[ec]);
            std::cout << __FUNCTION__ << ": Result: " << ec.message() << "\n";
            std::cout << __FUNCTION__ << ": Answer: " << answer << "\n";
        }
    }
    
    void using_yield_catch(asio::yield_context yield) {
        for (bool success : { true, false }) 
        try {
            auto answer = async_meaning_of_life(success, yield);
            std::cout << __FUNCTION__ << ": Answer: " << answer << "\n";
        } catch(boost::system::system_error const& e) {
            std::cout << __FUNCTION__ << ": Caught: " << e.code().message() << "\n";
        }
    }
    
    void using_future() {
        for (bool success : { true, false }) 
        try {
            auto answer = async_meaning_of_life(success, asio::use_future);
            std::cout << __FUNCTION__ << ": Answer: " << answer.get() << "\n";
        } catch(boost::system::system_error const& e) {
            std::cout << __FUNCTION__ << ": Caught: " << e.code().message() << "\n";
        }
    }
    
    void using_handler() {
        for (bool success : { true, false })
            async_meaning_of_life(success, [](error_code ec, int answer) {
                std::cout << "using_handler: Result: " << ec.message() << "\n";
                std::cout << "using_handler: Answer: " << answer << "\n";
            });
    }
    
    int main() {
        asio::io_service svc;
    
        spawn(svc, using_yield_ec);
        spawn(svc, using_yield_catch);
        std::thread work([] {
                using_future();
                using_handler();
            });
    
        svc.run();
        work.join();
    }
    

    Prints

    using_yield_ec: Result: Success
    using_yield_ec: Answer: 42
    using_yield_ec: Result: Operation canceled
    using_yield_ec: Answer: 0
    using_yield_catch: Answer: 42
    using_future: Answer: 42
    using_yield_catch: Caught: Operation canceled
    using_future: Answer: using_future: Caught: Operation canceled
    using_handler: Result: Success
    using_handler: Answer: 42
    using_handler: Result: Operation canceled
    using_handler: Answer: 0
    
    0 讨论(0)
提交回复
热议问题