// // query.hpp // ~~~~~~~~~ // // Copyright (c) 2003-2024 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_QUERY_HPP #define BOOST_ASIO_QUERY_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include #include #include #include #include #include #include #if defined(GENERATING_DOCUMENTATION) namespace boost { namespace asio { /// A customisation point that queries the value of a property. /** * The name query denotes a customization point object. The * expression boost::asio::query(E, P) for some * subexpressions E and P (with types T = * decay_t and Prop = decay_t) is * expression-equivalent to: * * @li If is_applicable_property_v is not a well-formed * constant expression with value true, boost::asio::query(E, * P) is ill-formed. * * @li Otherwise, Prop::template static_query_v if the expression * Prop::template static_query_v is a well-formed constant * expression. * * @li Otherwise, (E).query(P) if the expression * (E).query(P) is well-formed. * * @li Otherwise, query(E, P) if the expression * query(E, P) is a valid expression with overload * resolution performed in a context that does not include the declaration * of the query customization point object. * * @li Otherwise, boost::asio::query(E, P) is ill-formed. */ inline constexpr unspecified query = unspecified; /// A type trait that determines whether a @c query expression is well-formed. /** * Class template @c can_query is a trait that is derived from * @c true_type if the expression boost::asio::query(std::declval(), * std::declval()) is well formed; otherwise @c false_type. */ template struct can_query : integral_constant { }; /// A type trait that determines whether a @c query expression will /// not throw. /** * Class template @c is_nothrow_query is a trait that is derived from * @c true_type if the expression boost::asio::query(std::declval(), * std::declval()) is @c noexcept; otherwise @c false_type. */ template struct is_nothrow_query : integral_constant { }; /// A type trait that determines the result type of a @c query expression. /** * Class template @c query_result is a trait that determines the result * type of the expression boost::asio::query(std::declval(), * std::declval()). */ template struct query_result { /// The result of the @c query expression. typedef automatically_determined type; }; } // namespace asio } // namespace boost #else // defined(GENERATING_DOCUMENTATION) namespace boost_asio_query_fn { using boost::asio::conditional_t; using boost::asio::decay_t; using boost::asio::declval; using boost::asio::enable_if_t; using boost::asio::is_applicable_property; using boost::asio::traits::query_free; using boost::asio::traits::query_member; using boost::asio::traits::static_query; void query(); enum overload_type { static_value, call_member, call_free, ill_formed }; template struct call_traits { static constexpr overload_type overload = ill_formed; static constexpr bool is_noexcept = false; typedef void result_type; }; template struct call_traits, decay_t >::value >, enable_if_t< static_query::is_valid >> : static_query { static constexpr overload_type overload = static_value; }; template struct call_traits, decay_t >::value >, enable_if_t< !static_query::is_valid >, enable_if_t< query_member::type, Property>::is_valid >> : query_member::type, Property> { static constexpr overload_type overload = call_member; }; template struct call_traits, decay_t >::value >, enable_if_t< !static_query::is_valid >, enable_if_t< !query_member::type, Property>::is_valid >, enable_if_t< query_free::is_valid >> : query_free { static constexpr overload_type overload = call_free; }; struct impl { template struct proxy { #if defined(BOOST_ASIO_HAS_DEDUCED_QUERY_MEMBER_TRAIT) struct type { template auto query(P&& p) noexcept( noexcept( declval>().query(static_cast(p)) ) ) -> decltype( declval>().query(static_cast(p)) ); }; #else // defined(BOOST_ASIO_HAS_DEDUCED_QUERY_MEMBER_TRAIT) typedef T type; #endif // defined(BOOST_ASIO_HAS_DEDUCED_QUERY_MEMBER_TRAIT) }; template BOOST_ASIO_NODISCARD constexpr enable_if_t< call_traits::overload == static_value, typename call_traits::result_type > operator()(T&&, Property&&) const noexcept(call_traits::is_noexcept) { return static_query, decay_t>::value(); } template BOOST_ASIO_NODISCARD constexpr enable_if_t< call_traits::overload == call_member, typename call_traits::result_type > operator()(T&& t, Property&& p) const noexcept(call_traits::is_noexcept) { return static_cast(t).query(static_cast(p)); } template BOOST_ASIO_NODISCARD constexpr enable_if_t< call_traits::overload == call_free, typename call_traits::result_type > operator()(T&& t, Property&& p) const noexcept(call_traits::is_noexcept) { return query(static_cast(t), static_cast(p)); } }; template struct static_instance { static const T instance; }; template const T static_instance::instance = {}; } // namespace boost_asio_query_fn namespace boost { namespace asio { namespace { static constexpr const boost_asio_query_fn::impl& query = boost_asio_query_fn::static_instance<>::instance; } // namespace typedef boost_asio_query_fn::impl query_t; template struct can_query : integral_constant::overload != boost_asio_query_fn::ill_formed> { }; #if defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template constexpr bool can_query_v = can_query::value; #endif // defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template struct is_nothrow_query : integral_constant::is_noexcept> { }; #if defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template constexpr bool is_nothrow_query_v = is_nothrow_query::value; #endif // defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template struct query_result { typedef typename boost_asio_query_fn::call_traits< query_t, T, void(Property)>::result_type type; }; template using query_result_t = typename query_result::type; } // namespace asio } // namespace boost #endif // defined(GENERATING_DOCUMENTATION) #include #endif // BOOST_ASIO_QUERY_HPP