9 #ifndef ASIOEXT_COMPOSEDOPERATION_HPP 10 #define ASIOEXT_COMPOSEDOPERATION_HPP 12 #include "asioext/detail/config.hpp" 14 #if ASIOEXT_HAS_PRAGMA_ONCE 18 #include "asioext/detail/asio_version.hpp" 19 #include "asioext/detail/move_support.hpp" 21 #if defined(ASIOEXT_USE_BOOST_ASIO) 22 # include <boost/asio/detail/handler_alloc_helpers.hpp> 23 # include <boost/asio/detail/handler_cont_helpers.hpp> 24 # include <boost/asio/detail/handler_invoke_helpers.hpp> 25 # define ASIOEXT_HANDLER_ALLOC_HELPERS_NS boost_asio_handler_alloc_helpers 26 # define ASIOEXT_HANDLER_CONT_HELPERS_NS boost_asio_handler_cont_helpers 27 # define ASIOEXT_HANDLER_INVOKE_HELPERS_NS boost_asio_handler_invoke_helpers 29 # include <asio/detail/handler_alloc_helpers.hpp> 30 # include <asio/detail/handler_cont_helpers.hpp> 31 # include <asio/detail/handler_invoke_helpers.hpp> 32 # define ASIOEXT_HANDLER_ALLOC_HELPERS_NS asio_handler_alloc_helpers 33 # define ASIOEXT_HANDLER_CONT_HELPERS_NS asio_handler_cont_helpers 34 # define ASIOEXT_HANDLER_INVOKE_HELPERS_NS asio_handler_invoke_helpers 37 #if (ASIOEXT_ASIO_VERSION >= 101100) 38 # if defined(ASIOEXT_USE_BOOST_ASIO) 39 # include <boost/asio/associated_allocator.hpp> 40 # include <boost/asio/associated_executor.hpp> 42 # include <asio/associated_allocator.hpp> 43 # include <asio/associated_executor.hpp> 110 template <
typename Handler>
115 : handler_(ASIOEXT_MOVE_CAST(Handler)(handler))
125 #if !defined(ASIOEXT_IS_DOCUMENTATION) 126 template <
typename Handler>
127 inline void* asio_handler_allocate(
std::size_t size,
130 return ASIOEXT_HANDLER_ALLOC_HELPERS_NS::allocate(
134 template <
typename Handler>
135 inline void asio_handler_deallocate(
void* pointer,
std::size_t size,
136 composed_operation<Handler>* this_handler)
138 ASIOEXT_HANDLER_ALLOC_HELPERS_NS::deallocate(
139 pointer, size, this_handler->handler_);
142 template <
typename Handler>
143 inline bool asio_handler_is_continuation(
144 composed_operation<Handler>* this_handler)
146 return ASIOEXT_HANDLER_CONT_HELPERS_NS::is_continuation(
147 this_handler->handler_);
150 template <
typename Function,
typename Handler>
151 inline void asio_handler_invoke(Function&
function,
152 composed_operation<Handler>* this_handler)
154 ASIOEXT_HANDLER_INVOKE_HELPERS_NS::invoke(
155 function, this_handler->handler_);
158 template <
typename Function,
typename Handler>
159 inline void asio_handler_invoke(
const Function&
function,
160 composed_operation<Handler>* this_handler)
162 ASIOEXT_HANDLER_INVOKE_HELPERS_NS::invoke(
163 function, this_handler->handler_);
composed_operation(Handler &&handler)
Definition: composed_operation.hpp:114
Base class for composed operations.
Definition: composed_operation.hpp:111
Handler handler_
Definition: composed_operation.hpp:122