#ifndef SPROUT_CSTDLIB_STR_TO_FLOAT_HPP #define SPROUT_CSTDLIB_STR_TO_FLOAT_HPP #include #include #include #include #include #include #include #include namespace sprout { namespace detail { template inline SPROUT_CONSTEXPR FloatType str_to_float_impl_scale( CStrIterator str, bool negative, FloatType number = FloatType(), std::size_t num_digits = 0, std::size_t num_decimals = 0, long exponent = 0, long n = 0, FloatType p10 = FloatType(10) ) { typedef typename std::iterator_traits::value_type char_type; return n ? sprout::detail::str_to_float_impl_scale( str, negative, n & 1 ? (exponent < 0 ? number / p10 : number * p10) : number, num_digits, num_decimals, exponent, n >> 1, p10 * p10 ) : number ; } template inline SPROUT_CONSTEXPR FloatType str_to_float_impl_exponent_2( CStrIterator str, bool negative, FloatType number = FloatType(), std::size_t num_digits = 0, std::size_t num_decimals = 0, long exponent = 0, long n = 0 ) { typedef typename std::iterator_traits::value_type char_type; return exponent >= std::numeric_limits::min_exponent && exponent <= std::numeric_limits::max_exponent ? sprout::detail::str_to_float_impl_scale( str, negative, number, num_digits, num_decimals, exponent, exponent < 0 ? -exponent : exponent ) : HUGE_VAL ; } template inline SPROUT_CONSTEXPR FloatType str_to_float_impl_exponent_1( CStrIterator str, bool negative, FloatType number = FloatType(), std::size_t num_digits = 0, std::size_t num_decimals = 0, long exponent = 0, long n = 0 ) { typedef typename std::iterator_traits::value_type char_type; return sprout::ascii::isdigit(*str) ? sprout::detail::str_to_float_impl_exponent_1( sprout::next(str), negative, number, num_digits, num_decimals, exponent, n * 10 + (*str - static_cast('0')) ) : sprout::detail::str_to_float_impl_exponent_2( str, negative, number, num_digits, num_decimals, negative ? exponent + n : exponent - n, n ) ; } template inline SPROUT_CONSTEXPR FloatType str_to_float_impl_exponent( CStrIterator str, bool negative, FloatType number = FloatType(), std::size_t num_digits = 0, std::size_t num_decimals = 0, long exponent = 0 ) { typedef typename std::iterator_traits::value_type char_type; return (*str == static_cast('e') || *str == static_cast('E')) ? *sprout::next(str) == static_cast('-') ? sprout::detail::str_to_float_impl_exponent_1( sprout::next(str, 2), true, number, num_digits, num_decimals, exponent ) : sprout::detail::str_to_float_impl_exponent_1( sprout::next(str, 2), false, number, num_digits, num_decimals, exponent ) : sprout::detail::str_to_float_impl_exponent_2( str, negative, number, num_digits, num_decimals, exponent ) ; } template inline SPROUT_CONSTEXPR FloatType str_to_float_impl_decimal_1( CStrIterator str, bool negative, FloatType number = FloatType(), std::size_t num_digits = 0, std::size_t num_decimals = 0, long exponent = 0 ) { typedef typename std::iterator_traits::value_type char_type; return num_digits == 0 ? FloatType() : sprout::detail::str_to_float_impl_exponent( str, negative, negative ? -number : number, num_digits, num_decimals, exponent ) ; } template inline SPROUT_CONSTEXPR FloatType str_to_float_impl_decimal( CStrIterator str, bool negative, FloatType number = FloatType(), std::size_t num_digits = 0, std::size_t num_decimals = 0, long exponent = 0 ) { typedef typename std::iterator_traits::value_type char_type; return sprout::ascii::isdigit(*str) ? sprout::detail::str_to_float_impl_decimal( sprout::next(str), negative, number * 10 + (*str - static_cast('0')), num_digits + 1, num_decimals + 1, exponent ) : sprout::detail::str_to_float_impl_decimal_1( str, negative, number, num_digits, num_decimals, exponent - num_decimals ) ; } template inline SPROUT_CONSTEXPR FloatType str_to_float_impl( CStrIterator str, bool negative, FloatType number = FloatType(), std::size_t num_digits = 0 ) { typedef typename std::iterator_traits::value_type char_type; return sprout::ascii::isdigit(*str) ? sprout::detail::str_to_float_impl( sprout::next(str), negative, number * 10 + (*str - static_cast('0')), num_digits + 1 ) : *str == static_cast('.') ? sprout::detail::str_to_float_impl_decimal( sprout::next(str), negative, number, num_digits ) : sprout::detail::str_to_float_impl_decimal_1( str, negative, number, num_digits ) ; } template inline SPROUT_CONSTEXPR FloatType str_to_float(CStrIterator str) { return sprout::ascii::isspace(*str) ? sprout::detail::str_to_float(sprout::next(str)) : *str == static_cast::value_type>('-') ? sprout::detail::str_to_float_impl(sprout::next(str), true) : *str == static_cast::value_type>('+') ? sprout::detail::str_to_float_impl(sprout::next(str), false) : sprout::detail::str_to_float_impl(str, false) ; } template inline SPROUT_CONSTEXPR FloatType str_to_float(CStrIterator str, CharPtr* endptr) { return !endptr ? sprout::detail::str_to_float(str) : std::is_same::type, float>::value ? std::strtof(&*str, endptr) : std::is_same::type, double>::value ? std::strtod(&*str, endptr) : std::strtold(&*str, endptr) ; } } // namespace detail // // str_to_float // template::value>::type = sprout::enabler> inline SPROUT_CONSTEXPR FloatType str_to_float(Char const* str, Char** endptr) { return sprout::detail::str_to_float(str, endptr); } template::value>::type = sprout::enabler> inline SPROUT_CONSTEXPR FloatType str_to_float(Char const* str, std::nullptr_t endptr) { return sprout::detail::str_to_float(str); } template::value>::type = sprout::enabler> inline SPROUT_CONSTEXPR FloatType str_to_float(Char const* str) { return sprout::detail::str_to_float(str); } } // namespace sprout #endif // #ifndef SPROUT_CSTDLIB_STR_TO_FLOAT_HPP