2018-03-21 14:51:56 +00:00
|
|
|
// Formatting library for C++
|
|
|
|
//
|
|
|
|
// Copyright (c) 2012 - 2016, Victor Zverovich
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// For the license information refer to format.h.
|
|
|
|
|
|
|
|
#include "fmt/format-inl.h"
|
|
|
|
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_BEGIN_NAMESPACE
|
2020-05-10 14:25:42 +00:00
|
|
|
namespace detail {
|
2019-12-11 04:44:08 +00:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
int format_float(char* buf, std::size_t size, const char* format, int precision,
|
|
|
|
T value) {
|
2020-04-29 16:12:43 +00:00
|
|
|
#ifdef FMT_FUZZ
|
2019-12-11 04:44:08 +00:00
|
|
|
if (precision > 100000)
|
|
|
|
throw std::runtime_error(
|
|
|
|
"fuzz mode - avoid large allocation inside snprintf");
|
|
|
|
#endif
|
|
|
|
// Suppress the warning about nonliteral format string.
|
2020-01-22 22:32:37 +00:00
|
|
|
int (*snprintf_ptr)(char*, size_t, const char*, ...) = FMT_SNPRINTF;
|
2019-12-11 04:44:08 +00:00
|
|
|
return precision < 0 ? snprintf_ptr(buf, size, format, value)
|
|
|
|
: snprintf_ptr(buf, size, format, precision, value);
|
|
|
|
}
|
2020-10-27 14:44:12 +00:00
|
|
|
|
2020-11-12 13:51:00 +00:00
|
|
|
template FMT_API dragonbox::decimal_fp<float> dragonbox::to_decimal(float x)
|
2020-10-27 14:44:12 +00:00
|
|
|
FMT_NOEXCEPT;
|
2020-11-12 13:51:00 +00:00
|
|
|
template FMT_API dragonbox::decimal_fp<double> dragonbox::to_decimal(double x)
|
2020-10-27 14:44:12 +00:00
|
|
|
FMT_NOEXCEPT;
|
2020-10-29 15:02:40 +00:00
|
|
|
|
|
|
|
// DEPRECATED! This function exists for ABI compatibility.
|
|
|
|
template <typename Char>
|
|
|
|
typename basic_format_context<std::back_insert_iterator<buffer<Char>>,
|
|
|
|
Char>::iterator
|
|
|
|
vformat_to(buffer<Char>& buf, basic_string_view<Char> format_str,
|
|
|
|
basic_format_args<basic_format_context<
|
|
|
|
std::back_insert_iterator<buffer<type_identity_t<Char>>>,
|
|
|
|
type_identity_t<Char>>>
|
|
|
|
args) {
|
|
|
|
using iterator = std::back_insert_iterator<buffer<char>>;
|
|
|
|
using context = basic_format_context<
|
|
|
|
std::back_insert_iterator<buffer<type_identity_t<Char>>>,
|
|
|
|
type_identity_t<Char>>;
|
|
|
|
auto out = iterator(buf);
|
|
|
|
format_handler<iterator, Char, context> h(out, format_str, args, {});
|
|
|
|
parse_format_string<false>(format_str, h);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
template basic_format_context<std::back_insert_iterator<buffer<char>>,
|
|
|
|
char>::iterator
|
|
|
|
vformat_to(buffer<char>&, string_view,
|
|
|
|
basic_format_args<basic_format_context<
|
|
|
|
std::back_insert_iterator<buffer<type_identity_t<char>>>,
|
|
|
|
type_identity_t<char>>>);
|
2020-05-10 14:25:42 +00:00
|
|
|
} // namespace detail
|
2019-12-11 04:44:08 +00:00
|
|
|
|
2020-05-10 14:25:42 +00:00
|
|
|
template struct FMT_INSTANTIATION_DEF_API detail::basic_data<void>;
|
2019-01-19 15:16:05 +00:00
|
|
|
|
2019-11-23 14:22:30 +00:00
|
|
|
// Workaround a bug in MSVC2013 that prevents instantiation of format_float.
|
2020-05-10 14:25:42 +00:00
|
|
|
int (*instantiate_format_float)(double, int, detail::float_specs,
|
|
|
|
detail::buffer<char>&) = detail::format_float;
|
2019-01-27 14:47:27 +00:00
|
|
|
|
2019-01-19 15:16:05 +00:00
|
|
|
#ifndef FMT_STATIC_THOUSANDS_SEPARATOR
|
2020-05-10 14:25:42 +00:00
|
|
|
template FMT_API detail::locale_ref::locale_ref(const std::locale& loc);
|
|
|
|
template FMT_API std::locale detail::locale_ref::get<std::locale>() const;
|
2019-01-19 15:16:05 +00:00
|
|
|
#endif
|
2018-03-21 14:51:56 +00:00
|
|
|
|
|
|
|
// Explicit instantiations for char.
|
|
|
|
|
2020-05-10 14:25:42 +00:00
|
|
|
template FMT_API std::string detail::grouping_impl<char>(locale_ref);
|
|
|
|
template FMT_API char detail::thousands_sep_impl(locale_ref);
|
|
|
|
template FMT_API char detail::decimal_point_impl(locale_ref);
|
2018-03-21 14:51:56 +00:00
|
|
|
|
2020-05-10 14:25:42 +00:00
|
|
|
template FMT_API void detail::buffer<char>::append(const char*, const char*);
|
2018-09-19 15:55:45 +00:00
|
|
|
|
2020-10-21 13:53:19 +00:00
|
|
|
template FMT_API void detail::vformat_to(
|
2020-07-07 13:06:50 +00:00
|
|
|
detail::buffer<char>&, string_view,
|
2020-10-21 00:39:50 +00:00
|
|
|
basic_format_args<FMT_BUFFER_CONTEXT(char)>, detail::locale_ref);
|
2018-10-25 01:42:42 +00:00
|
|
|
|
2020-05-10 14:25:42 +00:00
|
|
|
template FMT_API int detail::snprintf_float(double, int, detail::float_specs,
|
|
|
|
detail::buffer<char>&);
|
|
|
|
template FMT_API int detail::snprintf_float(long double, int,
|
|
|
|
detail::float_specs,
|
|
|
|
detail::buffer<char>&);
|
|
|
|
template FMT_API int detail::format_float(double, int, detail::float_specs,
|
|
|
|
detail::buffer<char>&);
|
|
|
|
template FMT_API int detail::format_float(long double, int, detail::float_specs,
|
|
|
|
detail::buffer<char>&);
|
2018-10-24 22:25:10 +00:00
|
|
|
|
2018-03-21 14:51:56 +00:00
|
|
|
// Explicit instantiations for wchar_t.
|
|
|
|
|
2020-05-10 14:25:42 +00:00
|
|
|
template FMT_API std::string detail::grouping_impl<wchar_t>(locale_ref);
|
|
|
|
template FMT_API wchar_t detail::thousands_sep_impl(locale_ref);
|
|
|
|
template FMT_API wchar_t detail::decimal_point_impl(locale_ref);
|
2018-09-19 15:55:45 +00:00
|
|
|
|
2020-05-10 14:25:42 +00:00
|
|
|
template FMT_API void detail::buffer<wchar_t>::append(const wchar_t*,
|
|
|
|
const wchar_t*);
|
2018-05-12 15:33:51 +00:00
|
|
|
FMT_END_NAMESPACE
|