2012-04-16 10:09:43 +00:00
|
|
|
#ifndef SPROUT_STRING_FLOAT_TO_STRING_HPP
|
|
|
|
#define SPROUT_STRING_FLOAT_TO_STRING_HPP
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cmath>
|
|
|
|
#include <limits>
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/string/string.hpp>
|
|
|
|
#include <sprout/utility/enabler_if.hpp>
|
|
|
|
#include <sprout/detail/char_conversion.hpp>
|
2012-04-18 08:46:27 +00:00
|
|
|
#include <sprout/detail/float.hpp>
|
2012-04-16 10:09:43 +00:00
|
|
|
|
|
|
|
namespace sprout {
|
2012-04-16 11:19:47 +00:00
|
|
|
namespace detail {
|
|
|
|
SPROUT_STATIC_CONSTEXPR std::size_t decimal_places_length = 6;
|
|
|
|
} // namespace detail
|
|
|
|
|
2012-04-16 10:09:43 +00:00
|
|
|
//
|
|
|
|
// printed_float_digits
|
|
|
|
//
|
|
|
|
template<typename FloatType>
|
|
|
|
struct printed_float_digits
|
|
|
|
: public std::integral_constant<
|
|
|
|
std::size_t,
|
2012-04-16 17:23:41 +00:00
|
|
|
std::numeric_limits<FloatType>::max_exponent10 + sprout::detail::decimal_places_length + 2
|
2012-04-16 10:09:43 +00:00
|
|
|
>
|
|
|
|
{};
|
|
|
|
|
|
|
|
namespace detail {
|
2012-04-16 17:23:41 +00:00
|
|
|
template<typename Elem, typename FloatType, sprout::index_t... Indexes>
|
2012-04-16 10:09:43 +00:00
|
|
|
inline SPROUT_CONSTEXPR sprout::basic_string<Elem, sprout::printed_float_digits<FloatType>::value>
|
2012-04-16 17:23:41 +00:00
|
|
|
float_to_string(FloatType val, bool negative, int digits, sprout::index_tuple<Indexes...>) {
|
|
|
|
return negative ? sprout::basic_string<Elem, sprout::printed_float_digits<FloatType>::value>{
|
|
|
|
{
|
|
|
|
static_cast<Elem>('-'),
|
2012-04-18 08:46:27 +00:00
|
|
|
(Indexes < digits ? sprout::detail::int_to_char<Elem>(sprout::detail::float_digit_at(val, digits - 1 - Indexes))
|
2012-04-16 17:23:41 +00:00
|
|
|
: Indexes == digits ? static_cast<Elem>('.')
|
2012-04-18 08:46:27 +00:00
|
|
|
: Indexes < digits + 1 + sprout::detail::decimal_places_length ? sprout::detail::int_to_char<Elem>(sprout::detail::float_digit_at(val, digits - Indexes))
|
2012-04-16 17:23:41 +00:00
|
|
|
: Elem()
|
|
|
|
)...
|
|
|
|
},
|
|
|
|
static_cast<std::size_t>(digits + 2 + sprout::detail::decimal_places_length)
|
|
|
|
}
|
|
|
|
: sprout::basic_string<Elem, sprout::printed_float_digits<FloatType>::value>{
|
|
|
|
{
|
2012-04-18 08:46:27 +00:00
|
|
|
(Indexes < digits ? sprout::detail::int_to_char<Elem>(sprout::detail::float_digit_at(val, digits - 1 - Indexes))
|
2012-04-16 17:23:41 +00:00
|
|
|
: Indexes == digits ? static_cast<Elem>('.')
|
2012-04-18 08:46:27 +00:00
|
|
|
: Indexes < digits + 1 + sprout::detail::decimal_places_length ? sprout::detail::int_to_char<Elem>(sprout::detail::float_digit_at(val, digits - Indexes))
|
2012-04-16 17:23:41 +00:00
|
|
|
: Elem()
|
|
|
|
)...
|
|
|
|
},
|
|
|
|
static_cast<std::size_t>(digits + 1 + sprout::detail::decimal_places_length)
|
|
|
|
}
|
2012-04-16 10:09:43 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
|
|
|
|
//
|
|
|
|
// float_to_string
|
|
|
|
//
|
|
|
|
template<
|
|
|
|
typename Elem,
|
|
|
|
typename FloatType,
|
|
|
|
typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::basic_string<Elem, sprout::printed_float_digits<FloatType>::value>
|
|
|
|
float_to_string(FloatType val) {
|
2012-04-16 17:23:41 +00:00
|
|
|
return sprout::detail::float_to_string<Elem>(
|
2012-04-18 08:46:27 +00:00
|
|
|
sprout::detail::float_round_at(val < 0 ? -val : val, sprout::detail::decimal_places_length),
|
2012-04-16 17:23:41 +00:00
|
|
|
val < 0,
|
|
|
|
sprout::detail::float_digits(val),
|
|
|
|
sprout::index_range<0, sprout::printed_float_digits<FloatType>::value - 1>::make()
|
|
|
|
);
|
2012-04-16 10:09:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// to_string_of
|
|
|
|
//
|
|
|
|
template<typename Elem, typename FloatType, typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::basic_string<Elem, sprout::printed_float_digits<FloatType>::value>
|
|
|
|
to_string_of(FloatType val) {
|
|
|
|
return sprout::float_to_string<Elem>(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// to_string
|
|
|
|
//
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<char, sprout::printed_float_digits<float>::value>
|
|
|
|
// to_string(float val) {
|
|
|
|
// return sprout::to_string_of<char>(val);
|
|
|
|
// }
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<char, sprout::printed_float_digits<double>::value>
|
|
|
|
// to_string(double val) {
|
|
|
|
// return sprout::to_string_of<char>(val);
|
|
|
|
// }
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<char, sprout::printed_float_digits<long double>::value>
|
|
|
|
// to_string(long double val) {
|
|
|
|
// return sprout::to_string_of<char>(val);
|
|
|
|
// }
|
|
|
|
template<typename FloatType, typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::basic_string<char, sprout::printed_float_digits<FloatType>::value>
|
|
|
|
to_string(FloatType val) {
|
|
|
|
return sprout::to_string_of<char>(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// to_wstring
|
|
|
|
//
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<wchar_t, sprout::printed_float_digits<float>::value>
|
|
|
|
// to_wstring(float val) {
|
|
|
|
// return sprout::to_string_of<wchar_t>(val);
|
|
|
|
// }
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<wchar_t, sprout::printed_float_digits<double>::value>
|
|
|
|
// to_wstring(double val) {
|
|
|
|
// return sprout::to_string_of<wchar_t>(val);
|
|
|
|
// }
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<wchar_t, sprout::printed_float_digits<long double>::value>
|
|
|
|
// to_wstring(long double val) {
|
|
|
|
// return sprout::to_string_of<wchar_t>(val);
|
|
|
|
// }
|
|
|
|
template<typename FloatType, typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::basic_string<wchar_t, sprout::printed_float_digits<FloatType>::value>
|
|
|
|
to_wstring(FloatType val) {
|
|
|
|
return sprout::to_string_of<wchar_t>(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// to_u16string
|
|
|
|
//
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<char16_t, sprout::printed_float_digits<float>::value>
|
|
|
|
// to_u16string(float val) {
|
|
|
|
// return sprout::to_string_of<char16_t>(val);
|
|
|
|
// }
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<char16_t, sprout::printed_float_digits<double>::value>
|
|
|
|
// to_u16string(double val) {
|
|
|
|
// return sprout::to_string_of<char16_t>(val);
|
|
|
|
// }
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<char16_t, sprout::printed_float_digits<long double>::value>
|
|
|
|
// to_u16string(long double val) {
|
|
|
|
// return sprout::to_string_of<char16_t>(val);
|
|
|
|
// }
|
|
|
|
template<typename FloatType, typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::basic_string<char16_t, sprout::printed_float_digits<FloatType>::value>
|
|
|
|
to_u16string(FloatType val) {
|
|
|
|
return sprout::to_string_of<char16_t>(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// to_u32string
|
|
|
|
//
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<char32_t, sprout::printed_float_digits<float>::value>
|
|
|
|
// to_u32string(float val) {
|
|
|
|
// return sprout::to_string_of<char32_t>(val);
|
|
|
|
// }
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<char32_t, sprout::printed_float_digits<double>::value>
|
|
|
|
// to_u32string(double val) {
|
|
|
|
// return sprout::to_string_of<char32_t>(val);
|
|
|
|
// }
|
|
|
|
// inline SPROUT_CONSTEXPR sprout::basic_string<char32_t, sprout::printed_float_digits<long double>::value>
|
|
|
|
// to_u32string(long double val) {
|
|
|
|
// return sprout::to_string_of<char32_t>(val);
|
|
|
|
// }
|
|
|
|
template<typename FloatType, typename sprout::enabler_if<std::is_floating_point<FloatType>::value>::type = sprout::enabler>
|
|
|
|
inline SPROUT_CONSTEXPR sprout::basic_string<char32_t, sprout::printed_float_digits<FloatType>::value>
|
|
|
|
to_u32string(FloatType val) {
|
|
|
|
return sprout::to_string_of<char32_t>(val);
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_STRING_FLOAT_TO_STRING_HPP
|