// Copyright Kevlin Henney, 2000-2005. // Copyright Alexander Nasonov, 2006-2010. // Copyright Antony Polukhin, 2011-2016. // // 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) // // what: lexical_cast custom keyword cast // who: contributed by Kevlin Henney, // enhanced with contributions from Terje Slettebo, // with additional fixes and suggestions from Gennaro Prota, // Beman Dawes, Dave Abrahams, Daryle Walker, Peter Dimov, // Alexander Nasonov, Antony Polukhin, Justin Viiret, Michael Hofmann, // Cheng Yang, Matthew Bradbury, David W. Birdsall, Pavel Korzh and other Boosters // when: November 2000, March 2003, June 2005, June 2006, March 2011 - 2014 #ifndef BOOST_LEXICAL_CAST_TRY_LEXICAL_CONVERT_HPP #define BOOST_LEXICAL_CAST_TRY_LEXICAL_CONVERT_HPP #include #ifdef BOOST_HAS_PRAGMA_ONCE # pragma once #endif #if defined(__clang__) || (defined(__GNUC__) && \ !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) && \ (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wuninitialized" #endif #include #include #include #include #include #include #include #include #include #include #include namespace boost { namespace detail { template struct is_stdstring : boost::false_type {}; template struct is_stdstring< std::basic_string > : boost::true_type {}; // Sun Studio has problem with partial specialization of templates differing only in namespace. // We workaround that by making `is_booststring` trait, instead of specializing `is_stdstring` for `boost::container::basic_string`. template struct is_booststring : boost::false_type {}; template struct is_booststring< boost::container::basic_string > : boost::true_type {}; template struct is_arithmetic_and_not_xchars { typedef boost::mpl::bool_< !(boost::detail::is_character::value) && !(boost::detail::is_character::value) && boost::is_arithmetic::value && boost::is_arithmetic::value > type; BOOST_STATIC_CONSTANT(bool, value = ( type::value )); }; /* * is_xchar_to_xchar::value is true, * Target and Souce are char types of the same size 1 (char, signed char, unsigned char). */ template struct is_xchar_to_xchar { typedef boost::mpl::bool_< sizeof(Source) == sizeof(Target) && sizeof(Source) == sizeof(char) && boost::detail::is_character::value && boost::detail::is_character::value > type; BOOST_STATIC_CONSTANT(bool, value = ( type::value )); }; template struct is_char_array_to_stdstring : boost::false_type {}; template struct is_char_array_to_stdstring< std::basic_string, CharT* > : boost::true_type {}; template struct is_char_array_to_stdstring< std::basic_string, const CharT* > : boost::true_type {}; // Sun Studio has problem with partial specialization of templates differing only in namespace. // We workaround that by making `is_char_array_to_booststring` trait, instead of specializing `is_char_array_to_stdstring` for `boost::container::basic_string`. template struct is_char_array_to_booststring : boost::false_type {}; template struct is_char_array_to_booststring< boost::container::basic_string, CharT* > : boost::true_type {}; template struct is_char_array_to_booststring< boost::container::basic_string, const CharT* > : boost::true_type {}; template struct copy_converter_impl { // MSVC fail to forward an array (DevDiv#555157 "SILENT BAD CODEGEN triggered by perfect forwarding", // fixed in 2013 RTM). #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) && (!defined(BOOST_MSVC) || BOOST_MSVC >= 1800) template static inline bool try_convert(T&& arg, Target& result) { result = static_cast(arg); // eqaul to `result = std::forward(arg);` return true; } #else static inline bool try_convert(const Source& arg, Target& result) { result = arg; return true; } #endif }; } namespace conversion { namespace detail { template inline bool try_lexical_convert(const Source& arg, Target& result) { typedef BOOST_DEDUCED_TYPENAME boost::detail::array_to_pointer_decay::type src; typedef boost::mpl::bool_< boost::detail::is_xchar_to_xchar::value || boost::detail::is_char_array_to_stdstring::value || boost::detail::is_char_array_to_booststring::value || ( boost::is_same::value && (boost::detail::is_stdstring::value || boost::detail::is_booststring::value) ) || ( boost::is_same::value && boost::detail::is_character::value ) > shall_we_copy_t; typedef boost::detail::is_arithmetic_and_not_xchars shall_we_copy_with_dynamic_check_t; // We do evaluate second `if_` lazily to avoid unnecessary instantiations // of `shall_we_copy_with_dynamic_check_t` and improve compilation times. typedef BOOST_DEDUCED_TYPENAME boost::mpl::if_c< shall_we_copy_t::value, boost::mpl::identity >, boost::mpl::if_< shall_we_copy_with_dynamic_check_t, boost::detail::dynamic_num_converter_impl, boost::detail::lexical_converter_impl > >::type caster_type_lazy; typedef BOOST_DEDUCED_TYPENAME caster_type_lazy::type caster_type; return caster_type::try_convert(arg, result); } template inline bool try_lexical_convert(const CharacterT* chars, std::size_t count, Target& result) { BOOST_STATIC_ASSERT_MSG( boost::detail::is_character::value, "This overload of try_lexical_convert is meant to be used only with arrays of characters." ); return ::boost::conversion::detail::try_lexical_convert( ::boost::iterator_range(chars, chars + count), result ); } }} // namespace conversion::detail namespace conversion { // ADL barrier using ::boost::conversion::detail::try_lexical_convert; } } // namespace boost #if defined(__clang__) || (defined(__GNUC__) && \ !(defined(__INTEL_COMPILER) || defined(__ICL) || defined(__ICC) || defined(__ECC)) && \ (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6))) #pragma GCC diagnostic pop #endif #endif // BOOST_LEXICAL_CAST_TRY_LEXICAL_CONVERT_HPP