converter_numeric.hpp 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. // Copyright Kevlin Henney, 2000-2005.
  2. // Copyright Alexander Nasonov, 2006-2010.
  3. // Copyright Antony Polukhin, 2011-2019.
  4. //
  5. // Distributed under the Boost Software License, Version 1.0. (See
  6. // accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // what: lexical_cast custom keyword cast
  10. // who: contributed by Kevlin Henney,
  11. // enhanced with contributions from Terje Slettebo,
  12. // with additional fixes and suggestions from Gennaro Prota,
  13. // Beman Dawes, Dave Abrahams, Daryle Walker, Peter Dimov,
  14. // Alexander Nasonov, Antony Polukhin, Justin Viiret, Michael Hofmann,
  15. // Cheng Yang, Matthew Bradbury, David W. Birdsall, Pavel Korzh and other Boosters
  16. // when: November 2000, March 2003, June 2005, June 2006, March 2011 - 2016
  17. #ifndef BOOST_LEXICAL_CAST_DETAIL_CONVERTER_NUMERIC_HPP
  18. #define BOOST_LEXICAL_CAST_DETAIL_CONVERTER_NUMERIC_HPP
  19. #include <boost/config.hpp>
  20. #ifdef BOOST_HAS_PRAGMA_ONCE
  21. # pragma once
  22. #endif
  23. #include <boost/limits.hpp>
  24. #include <boost/type_traits/type_identity.hpp>
  25. #include <boost/type_traits/conditional.hpp>
  26. #include <boost/type_traits/make_unsigned.hpp>
  27. #include <boost/type_traits/is_signed.hpp>
  28. #include <boost/type_traits/is_integral.hpp>
  29. #include <boost/type_traits/is_arithmetic.hpp>
  30. #include <boost/type_traits/is_base_of.hpp>
  31. #include <boost/type_traits/is_float.hpp>
  32. #include <boost/numeric/conversion/cast.hpp>
  33. namespace boost { namespace detail {
  34. template <class Source >
  35. struct detect_precision_loss
  36. {
  37. typedef Source source_type;
  38. typedef boost::numeric::Trunc<Source> Rounder;
  39. typedef BOOST_DEDUCED_TYPENAME conditional<
  40. boost::is_arithmetic<Source>::value, Source, Source const&
  41. >::type argument_type ;
  42. static inline source_type nearbyint(argument_type s, bool& is_ok) BOOST_NOEXCEPT {
  43. const source_type near_int = Rounder::nearbyint(s);
  44. if (near_int && is_ok) {
  45. const source_type orig_div_round = s / near_int;
  46. const source_type eps = std::numeric_limits<source_type>::epsilon();
  47. is_ok = !((orig_div_round > 1 ? orig_div_round - 1 : 1 - orig_div_round) > eps);
  48. }
  49. return s;
  50. }
  51. typedef typename Rounder::round_style round_style;
  52. };
  53. template <typename Base, class Source>
  54. struct fake_precision_loss: public Base
  55. {
  56. typedef Source source_type ;
  57. typedef BOOST_DEDUCED_TYPENAME conditional<
  58. boost::is_arithmetic<Source>::value, Source, Source const&
  59. >::type argument_type ;
  60. static inline source_type nearbyint(argument_type s, bool& /*is_ok*/) BOOST_NOEXCEPT {
  61. return s;
  62. }
  63. };
  64. struct nothrow_overflow_handler
  65. {
  66. inline bool operator() ( boost::numeric::range_check_result r ) const BOOST_NOEXCEPT {
  67. return (r == boost::numeric::cInRange);
  68. }
  69. };
  70. template <typename Target, typename Source>
  71. inline bool noexcept_numeric_convert(const Source& arg, Target& result) BOOST_NOEXCEPT {
  72. typedef boost::numeric::converter<
  73. Target,
  74. Source,
  75. boost::numeric::conversion_traits<Target, Source >,
  76. nothrow_overflow_handler,
  77. detect_precision_loss<Source >
  78. > converter_orig_t;
  79. typedef BOOST_DEDUCED_TYPENAME boost::conditional<
  80. boost::is_base_of< detect_precision_loss<Source >, converter_orig_t >::value,
  81. converter_orig_t,
  82. fake_precision_loss<converter_orig_t, Source>
  83. >::type converter_t;
  84. bool res = nothrow_overflow_handler()(converter_t::out_of_range(arg));
  85. result = converter_t::low_level_convert(converter_t::nearbyint(arg, res));
  86. return res;
  87. }
  88. template <typename Target, typename Source>
  89. struct lexical_cast_dynamic_num_not_ignoring_minus
  90. {
  91. static inline bool try_convert(const Source &arg, Target& result) BOOST_NOEXCEPT {
  92. return noexcept_numeric_convert<Target, Source >(arg, result);
  93. }
  94. };
  95. template <typename Target, typename Source>
  96. struct lexical_cast_dynamic_num_ignoring_minus
  97. {
  98. static inline bool try_convert(const Source &arg, Target& result) BOOST_NOEXCEPT {
  99. typedef BOOST_DEDUCED_TYPENAME boost::conditional<
  100. boost::is_float<Source>::value,
  101. boost::type_identity<Source>,
  102. boost::make_unsigned<Source>
  103. >::type usource_lazy_t;
  104. typedef BOOST_DEDUCED_TYPENAME usource_lazy_t::type usource_t;
  105. if (arg < 0) {
  106. const bool res = noexcept_numeric_convert<Target, usource_t>(0u - arg, result);
  107. result = static_cast<Target>(0u - result);
  108. return res;
  109. } else {
  110. return noexcept_numeric_convert<Target, usource_t>(arg, result);
  111. }
  112. }
  113. };
  114. /*
  115. * lexical_cast_dynamic_num follows the rules:
  116. * 1) If Source can be converted to Target without precision loss and
  117. * without overflows, then assign Source to Target and return
  118. *
  119. * 2) If Source is less than 0 and Target is an unsigned integer,
  120. * then negate Source, check the requirements of rule 1) and if
  121. * successful, assign static_casted Source to Target and return
  122. *
  123. * 3) Otherwise throw a bad_lexical_cast exception
  124. *
  125. *
  126. * Rule 2) required because boost::lexical_cast has the behavior of
  127. * stringstream, which uses the rules of scanf for conversions. And
  128. * in the C99 standard for unsigned input value minus sign is
  129. * optional, so if a negative number is read, no errors will arise
  130. * and the result will be the two's complement.
  131. */
  132. template <typename Target, typename Source>
  133. struct dynamic_num_converter_impl
  134. {
  135. static inline bool try_convert(const Source &arg, Target& result) BOOST_NOEXCEPT {
  136. typedef BOOST_DEDUCED_TYPENAME boost::conditional<
  137. boost::is_unsigned<Target>::value &&
  138. (boost::is_signed<Source>::value || boost::is_float<Source>::value) &&
  139. !(boost::is_same<Source, bool>::value) &&
  140. !(boost::is_same<Target, bool>::value),
  141. lexical_cast_dynamic_num_ignoring_minus<Target, Source>,
  142. lexical_cast_dynamic_num_not_ignoring_minus<Target, Source>
  143. >::type caster_type;
  144. return caster_type::try_convert(arg, result);
  145. }
  146. };
  147. }} // namespace boost::detail
  148. #endif // BOOST_LEXICAL_CAST_DETAIL_CONVERTER_NUMERIC_HPP