is_converter.hpp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Copyright (c) 2009-2020 Vladimir Batov.
  2. // Use, modification and distribution are subject to the Boost Software License,
  3. // Version 1.0. See http://www.boost.org/LICENSE_1_0.txt.
  4. #ifndef BOOST_CONVERT_IS_CONVERTER_HPP
  5. #define BOOST_CONVERT_IS_CONVERTER_HPP
  6. #include <boost/convert/detail/config.hpp>
  7. #include <boost/convert/detail/is_callable.hpp>
  8. #include <boost/type_traits/function_traits.hpp>
  9. #include <boost/core/ref.hpp>
  10. namespace boost { namespace cnv
  11. {
  12. template<typename, typename, typename, typename =void>
  13. struct is_cnv { BOOST_STATIC_CONSTANT(bool, value = false); };
  14. template<typename Class, typename TypeIn, typename TypeOut>
  15. struct is_cnv<Class, TypeIn, TypeOut, typename std::enable_if<is_class<Class>::value, void>::type>
  16. {
  17. typedef typename ::boost::unwrap_reference<Class>::type class_type;
  18. typedef void signature_type(TypeIn const&, optional<TypeOut>&);
  19. BOOST_DECLARE_IS_CALLABLE(is_callable, operator());
  20. BOOST_STATIC_CONSTANT(bool, value = (is_callable<class_type, signature_type>::value));
  21. };
  22. template<typename Function, typename TypeIn, typename TypeOut>
  23. struct is_cnv<Function, TypeIn, TypeOut,
  24. typename enable_if_c<is_function<Function>::value && function_types::function_arity<Function>::value == 2,
  25. void>::type>
  26. {
  27. using in_type = TypeIn;
  28. using out_type = optional<TypeOut>&;
  29. using func_in_type = typename function_traits<Function>::arg1_type;
  30. using func_out_type = typename function_traits<Function>::arg2_type;
  31. BOOST_STATIC_CONSTANT(bool, in_good = (is_convertible<in_type, func_in_type>::value));
  32. BOOST_STATIC_CONSTANT(bool, out_good = (is_same<out_type, func_out_type>::value));
  33. BOOST_STATIC_CONSTANT(bool, value = (in_good && out_good));
  34. };
  35. }}
  36. #endif // BOOST_CONVERT_IS_CONVERTER_HPP