// // execution/submit.hpp // ~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2022 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #ifndef BOOST_ASIO_EXECUTION_SUBMIT_HPP #define BOOST_ASIO_EXECUTION_SUBMIT_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include #include #include #include #include #include #include #include #include #include #if defined(GENERATING_DOCUMENTATION) namespace boost { namespace asio { namespace execution { /// A customisation point that submits a sender to a receiver. /** * The name execution::submit denotes a customisation point object. For * some subexpressions s and r, let S be a type such * that decltype((s)) is S and let R be a type such * that decltype((r)) is R. The expression * execution::submit(s, r) is ill-formed if sender_to is * not true. Otherwise, it is expression-equivalent to: * * @li s.submit(r), if that expression is valid and S models * sender. If the function selected does not submit the receiver * object r via the sender s, the program is ill-formed with * no diagnostic required. * * @li Otherwise, submit(s, r), if that expression is valid and * S models sender, with overload resolution performed in a * context that includes the declaration void submit(); and that does * not include a declaration of execution::submit. If the function * selected by overload resolution does not submit the receiver object * r via the sender s, the program is ill-formed with no * diagnostic required. * * @li Otherwise, execution::start((new submit_receiver{s,r})->state_), where submit_receiver is an * implementation-defined class template equivalent to: * @code template * struct submit_receiver { * struct wrap { * submit_receiver * p_; * template * requires receiver_of * void set_value(As&&... as) && * noexcept(is_nothrow_receiver_of_v) { * execution::set_value(std::move(p_->r_), (As&&) as...); * delete p_; * } * template * requires receiver * void set_error(E&& e) && noexcept { * execution::set_error(std::move(p_->r_), (E&&) e); * delete p_; * } * void set_done() && noexcept { * execution::set_done(std::move(p_->r_)); * delete p_; * } * }; * remove_cvref_t r_; * connect_result_t state_; * submit_receiver(S&& s, R&& r) * : r_((R&&) r) * , state_(execution::connect((S&&) s, wrap{this})) {} * }; * @endcode */ inline constexpr unspecified submit = unspecified; /// A type trait that determines whether a @c submit expression is /// well-formed. /** * Class template @c can_submit is a trait that is derived from * @c true_type if the expression execution::submit(std::declval(), * std::declval()) is well formed; otherwise @c false_type. */ template struct can_submit : integral_constant { }; } // namespace execution } // namespace asio } // namespace boost #else // defined(GENERATING_DOCUMENTATION) namespace boost_asio_execution_submit_fn { using boost::asio::declval; using boost::asio::enable_if; using boost::asio::execution::is_sender_to; using boost::asio::traits::submit_free; using boost::asio::traits::submit_member; void submit(); enum overload_type { call_member, call_free, adapter, ill_formed }; template struct call_traits { BOOST_ASIO_STATIC_CONSTEXPR(overload_type, overload = ill_formed); BOOST_ASIO_STATIC_CONSTEXPR(bool, is_noexcept = false); typedef void result_type; }; template struct call_traits::is_valid >::type, typename enable_if< is_sender_to::value >::type> : submit_member { BOOST_ASIO_STATIC_CONSTEXPR(overload_type, overload = call_member); }; template struct call_traits::is_valid >::type, typename enable_if< submit_free::is_valid >::type, typename enable_if< is_sender_to::value >::type> : submit_free { BOOST_ASIO_STATIC_CONSTEXPR(overload_type, overload = call_free); }; template struct call_traits::is_valid >::type, typename enable_if< !submit_free::is_valid >::type, typename enable_if< is_sender_to::value >::type> { BOOST_ASIO_STATIC_CONSTEXPR(overload_type, overload = adapter); BOOST_ASIO_STATIC_CONSTEXPR(bool, is_noexcept = false); typedef void result_type; }; struct impl { #if defined(BOOST_ASIO_HAS_MOVE) template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_member, typename call_traits::result_type >::type operator()(S&& s, R&& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return BOOST_ASIO_MOVE_CAST(S)(s).submit(BOOST_ASIO_MOVE_CAST(R)(r)); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_free, typename call_traits::result_type >::type operator()(S&& s, R&& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return submit(BOOST_ASIO_MOVE_CAST(S)(s), BOOST_ASIO_MOVE_CAST(R)(r)); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == adapter, typename call_traits::result_type >::type operator()(S&& s, R&& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return boost::asio::execution::start( (new boost::asio::execution::detail::submit_receiver( BOOST_ASIO_MOVE_CAST(S)(s), BOOST_ASIO_MOVE_CAST(R)(r)))->state_); } #else // defined(BOOST_ASIO_HAS_MOVE) template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_member, typename call_traits::result_type >::type operator()(S& s, R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return s.submit(r); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_member, typename call_traits::result_type >::type operator()(const S& s, R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return s.submit(r); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_free, typename call_traits::result_type >::type operator()(S& s, R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return submit(s, r); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_free, typename call_traits::result_type >::type operator()(const S& s, R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return submit(s, r); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == adapter, typename call_traits::result_type >::type operator()(S& s, R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return boost::asio::execution::start( (new boost::asio::execution::detail::submit_receiver< S&, R&>(s, r))->state_); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == adapter, typename call_traits::result_type >::type operator()(const S& s, R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { boost::asio::execution::start( (new boost::asio::execution::detail::submit_receiver< const S&, R&>(s, r))->state_); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_member, typename call_traits::result_type >::type operator()(S& s, const R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return s.submit(r); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_member, typename call_traits::result_type >::type operator()(const S& s, const R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return s.submit(r); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_free, typename call_traits::result_type >::type operator()(S& s, const R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return submit(s, r); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_free, typename call_traits::result_type >::type operator()(const S& s, const R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return submit(s, r); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == adapter, typename call_traits::result_type >::type operator()(S& s, const R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { boost::asio::execution::start( (new boost::asio::execution::detail::submit_receiver< S&, const R&>(s, r))->state_); } template BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == adapter, typename call_traits::result_type >::type operator()(const S& s, const R& r) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { boost::asio::execution::start( (new boost::asio::execution::detail::submit_receiver< const S&, const R&>(s, r))->state_); } #endif // defined(BOOST_ASIO_HAS_MOVE) }; template struct static_instance { static const T instance; }; template const T static_instance::instance = {}; } // namespace boost_asio_execution_submit_fn namespace boost { namespace asio { namespace execution { namespace { static BOOST_ASIO_CONSTEXPR const boost_asio_execution_submit_fn::impl& submit = boost_asio_execution_submit_fn::static_instance<>::instance; } // namespace template struct can_submit : integral_constant::overload != boost_asio_execution_submit_fn::ill_formed> { }; #if defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template constexpr bool can_submit_v = can_submit::value; #endif // defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template struct is_nothrow_submit : integral_constant::is_noexcept> { }; #if defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template constexpr bool is_nothrow_submit_v = is_nothrow_submit::value; #endif // defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template struct submit_result { typedef typename boost_asio_execution_submit_fn::call_traits< S, void(R)>::result_type type; }; namespace detail { template void submit_helper(BOOST_ASIO_MOVE_ARG(S) s, BOOST_ASIO_MOVE_ARG(R) r) { execution::submit(BOOST_ASIO_MOVE_CAST(S)(s), BOOST_ASIO_MOVE_CAST(R)(r)); } } // namespace detail } // namespace execution } // namespace asio } // namespace boost #endif // defined(GENERATING_DOCUMENTATION) #include #endif // BOOST_ASIO_EXECUTION_SUBMIT_HPP