// // require_concept.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_REQUIRE_CONCEPT_HPP #define BOOST_ASIO_REQUIRE_CONCEPT_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 applies a concept-enforcing property to an /// object. /** * The name require_concept denotes a customization point object. The * expression boost::asio::require_concept(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 && * Prop::is_requirable_concept is not a well-formed constant expression * with value true, boost::asio::require_concept(E, P) is * ill-formed. * * @li Otherwise, E if the expression Prop::template * static_query_v == Prop::value() is a well-formed constant * expression with value true. * * @li Otherwise, (E).require_concept(P) if the expression * (E).require_concept(P) is well-formed. * * @li Otherwise, require_concept(E, P) if the expression * require_concept(E, P) is a valid expression with overload * resolution performed in a context that does not include the declaration * of the require_concept customization point object. * * @li Otherwise, boost::asio::require_concept(E, P) is ill-formed. */ inline constexpr unspecified require_concept = unspecified; /// A type trait that determines whether a @c require_concept expression is /// well-formed. /** * Class template @c can_require_concept is a trait that is derived from * @c true_type if the expression * boost::asio::require_concept(std::declval(), * std::declval()) is well formed; otherwise @c false_type. */ template struct can_require_concept : integral_constant { }; /// A type trait that determines whether a @c require_concept expression will /// not throw. /** * Class template @c is_nothrow_require_concept is a trait that is derived from * @c true_type if the expression * boost::asio::require_concept(std::declval(), * std::declval()) is @c noexcept; otherwise @c false_type. */ template struct is_nothrow_require_concept : integral_constant { }; /// A type trait that determines the result type of a @c require_concept /// expression. /** * Class template @c require_concept_result is a trait that determines the * result type of the expression * boost::asio::require_concept(std::declval(), * std::declval()). */ template struct require_concept_result { /// The result of the @c require_concept expression. typedef automatically_determined type; }; } // namespace asio } // namespace boost #else // defined(GENERATING_DOCUMENTATION) namespace boost_asio_require_concept_fn { using boost::asio::conditional; using boost::asio::decay; using boost::asio::declval; using boost::asio::enable_if; using boost::asio::is_applicable_property; using boost::asio::traits::require_concept_free; using boost::asio::traits::require_concept_member; using boost::asio::traits::static_require_concept; void require_concept(); enum overload_type { identity, call_member, call_free, 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::type, typename decay::type >::value >::type, typename enable_if< decay::type::is_requirable_concept >::type, typename enable_if< static_require_concept::is_valid >::type> { BOOST_ASIO_STATIC_CONSTEXPR(overload_type, overload = identity); BOOST_ASIO_STATIC_CONSTEXPR(bool, is_noexcept = true); typedef BOOST_ASIO_MOVE_ARG(T) result_type; }; template struct call_traits::type, typename decay::type >::value >::type, typename enable_if< decay::type::is_requirable_concept >::type, typename enable_if< !static_require_concept::is_valid >::type, typename enable_if< require_concept_member< typename Impl::template proxy::type, Property >::is_valid >::type> : require_concept_member< typename Impl::template proxy::type, Property > { BOOST_ASIO_STATIC_CONSTEXPR(overload_type, overload = call_member); }; template struct call_traits::type, typename decay::type >::value >::type, typename enable_if< decay::type::is_requirable_concept >::type, typename enable_if< !static_require_concept::is_valid >::type, typename enable_if< !require_concept_member< typename Impl::template proxy::type, Property >::is_valid >::type, typename enable_if< require_concept_free::is_valid >::type> : require_concept_free { BOOST_ASIO_STATIC_CONSTEXPR(overload_type, overload = call_free); }; struct impl { template struct proxy { #if defined(BOOST_ASIO_HAS_DEDUCED_REQUIRE_CONCEPT_MEMBER_TRAIT) struct type { template auto require_concept(BOOST_ASIO_MOVE_ARG(P) p) noexcept( noexcept( declval::type>().require_concept( BOOST_ASIO_MOVE_CAST(P)(p)) ) ) -> decltype( declval::type>().require_concept( BOOST_ASIO_MOVE_CAST(P)(p)) ); }; #else // defined(BOOST_ASIO_HAS_DEDUCED_REQUIRE_CONCEPT_MEMBER_TRAIT) typedef T type; #endif // defined(BOOST_ASIO_HAS_DEDUCED_REQUIRE_CONCEPT_MEMBER_TRAIT) }; template BOOST_ASIO_NODISCARD BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == identity, typename call_traits::result_type >::type operator()( BOOST_ASIO_MOVE_ARG(T) t, BOOST_ASIO_MOVE_ARG(Property)) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return BOOST_ASIO_MOVE_CAST(T)(t); } template BOOST_ASIO_NODISCARD BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_member, typename call_traits::result_type >::type operator()( BOOST_ASIO_MOVE_ARG(T) t, BOOST_ASIO_MOVE_ARG(Property) p) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return BOOST_ASIO_MOVE_CAST(T)(t).require_concept( BOOST_ASIO_MOVE_CAST(Property)(p)); } template BOOST_ASIO_NODISCARD BOOST_ASIO_CONSTEXPR typename enable_if< call_traits::overload == call_free, typename call_traits::result_type >::type operator()( BOOST_ASIO_MOVE_ARG(T) t, BOOST_ASIO_MOVE_ARG(Property) p) const BOOST_ASIO_NOEXCEPT_IF(( call_traits::is_noexcept)) { return require_concept( BOOST_ASIO_MOVE_CAST(T)(t), BOOST_ASIO_MOVE_CAST(Property)(p)); } }; template struct static_instance { static const T instance; }; template const T static_instance::instance = {}; } // namespace boost_asio_require_concept_fn namespace boost { namespace asio { namespace { static BOOST_ASIO_CONSTEXPR const boost_asio_require_concept_fn::impl& require_concept = boost_asio_require_concept_fn::static_instance<>::instance; } // namespace typedef boost_asio_require_concept_fn::impl require_concept_t; template struct can_require_concept : integral_constant::overload != boost_asio_require_concept_fn::ill_formed> { }; #if defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template constexpr bool can_require_concept_v = can_require_concept::value; #endif // defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template struct is_nothrow_require_concept : integral_constant::is_noexcept> { }; #if defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template constexpr bool is_nothrow_require_concept_v = is_nothrow_require_concept::value; #endif // defined(BOOST_ASIO_HAS_VARIABLE_TEMPLATES) template struct require_concept_result { typedef typename boost_asio_require_concept_fn::call_traits< require_concept_t, T, void(Property)>::result_type type; }; } // namespace asio } // namespace boost #endif // defined(GENERATING_DOCUMENTATION) #include #endif // BOOST_ASIO_REQUIRE_CONCEPT_HPP