24template <
typename T,
typename InputIt>
25FMT_CONSTEXPR
inline auto copy(InputIt begin, InputIt end, counting_iterator it)
26 -> counting_iterator {
27 return it + (end - begin);
44#if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction)
45# define FMT_COMPILE(s) FMT_STRING_IMPL(s, fmt::compiled_string, explicit)
47# define FMT_COMPILE(s) FMT_STRING(s)
50#if FMT_USE_NONTYPE_TEMPLATE_ARGS
51template <
typename Char,
size_t N,
52 fmt::detail_exported::fixed_string<Char, N> Str>
54 using char_type = Char;
56 return {Str.data, N - 1};
61template <
typename T,
typename... Tail>
62auto first(
const T&
value,
const Tail&...) ->
const T& {
66#if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction)
67template <
typename... Args>
struct type_list {};
70template <
int N,
typename T,
typename... Args>
71constexpr const auto& get([[maybe_unused]]
const T& first,
72 [[maybe_unused]]
const Args&... rest) {
73 static_assert(N < 1 +
sizeof...(Args),
"index is out of bounds");
77 return detail::get<N - 1>(rest...);
80template <
typename Char,
typename... Args>
81constexpr int get_arg_index_by_name(basic_string_view<Char> name,
83 return get_arg_index_by_name<Args...>(name);
86template <
int N,
typename>
struct get_type_impl;
88template <
int N,
typename... Args>
struct get_type_impl<N, type_list<Args...>> {
90 remove_cvref_t<decltype(detail::get<N>(std::declval<Args>()...))>;
93template <
int N,
typename T>
94using get_type =
typename get_type_impl<N, T>::type;
96template <
typename T>
struct is_compiled_format : std::false_type {};
98template <
typename Char>
struct text {
99 basic_string_view<Char> data;
100 using char_type = Char;
102 template <
typename OutputIt,
typename... Args>
103 constexpr OutputIt format(OutputIt out,
const Args&...)
const {
104 return write<Char>(out, data);
108template <
typename Char>
109struct is_compiled_format<text<Char>> : std::true_type {};
111template <
typename Char>
112constexpr text<Char> make_text(basic_string_view<Char> s,
size_t pos,
114 return {{&s[pos], size}};
117template <
typename Char>
struct code_unit {
119 using char_type = Char;
121 template <
typename OutputIt,
typename... Args>
122 constexpr OutputIt format(OutputIt out,
const Args&...)
const {
129template <
typename T,
int N,
typename... Args>
130constexpr const T& get_arg_checked(
const Args&... args) {
131 const auto& arg = detail::get<N>(args...);
132 if constexpr (detail::is_named_arg<remove_cvref_t<
decltype(arg)>>()) {
139template <
typename Char>
140struct is_compiled_format<code_unit<Char>> : std::true_type {};
143template <
typename Char,
typename T,
int N>
struct field {
144 using char_type = Char;
146 template <
typename OutputIt,
typename... Args>
147 constexpr OutputIt format(OutputIt out,
const Args&... args)
const {
148 const T& arg = get_arg_checked<T, N>(args...);
149 if constexpr (std::is_convertible<T, basic_string_view<Char>>::value) {
150 auto s = basic_string_view<Char>(arg);
151 return copy<Char>(s.begin(), s.end(), out);
153 return write<Char>(out, arg);
157template <
typename Char,
typename T,
int N>
158struct is_compiled_format<field<Char, T, N>> : std::true_type {};
161template <
typename Char>
struct runtime_named_field {
162 using char_type = Char;
163 basic_string_view<Char> name;
165 template <
typename OutputIt,
typename T>
166 constexpr static bool try_format_argument(
169 [[maybe_unused]] basic_string_view<Char> arg_name,
const T& arg) {
170 if constexpr (is_named_arg<typename std::remove_cv<T>::type>::value) {
171 if (arg_name == arg.name) {
172 out = write<Char>(out, arg.value);
179 template <
typename OutputIt,
typename... Args>
180 constexpr OutputIt format(OutputIt out,
const Args&... args)
const {
181 bool found = (try_format_argument(out, name, args) || ...);
183 FMT_THROW(format_error(
"argument with specified name is not found"));
189template <
typename Char>
190struct is_compiled_format<runtime_named_field<Char>> : std::true_type {};
193template <
typename Char,
typename T,
int N>
struct spec_field {
194 using char_type = Char;
195 formatter<T, Char> fmt;
197 template <
typename OutputIt,
typename... Args>
198 constexpr FMT_INLINE OutputIt format(OutputIt out,
199 const Args&... args)
const {
201 fmt::make_format_args<basic_format_context<OutputIt, Char>>(args...);
202 basic_format_context<OutputIt, Char> ctx(out, vargs);
203 return fmt.format(get_arg_checked<T, N>(args...), ctx);
207template <
typename Char,
typename T,
int N>
208struct is_compiled_format<spec_field<Char, T, N>> : std::true_type {};
210template <
typename L,
typename R>
struct concat {
213 using char_type =
typename L::char_type;
215 template <
typename OutputIt,
typename... Args>
216 constexpr OutputIt format(OutputIt out,
const Args&... args)
const {
217 out = lhs.format(out, args...);
218 return rhs.format(out, args...);
222template <
typename L,
typename R>
223struct is_compiled_format<concat<L, R>> : std::true_type {};
225template <
typename L,
typename R>
226constexpr concat<L, R> make_concat(L lhs, R rhs) {
230struct unknown_format {};
232template <
typename Char>
233constexpr size_t parse_text(basic_string_view<Char> str,
size_t pos) {
234 for (
size_t size = str.
size(); pos != size; ++pos) {
235 if (str[pos] ==
'{' || str[pos] ==
'}')
break;
240template <
typename Args,
size_t POS,
int ID,
typename S>
241constexpr auto compile_format_string(S fmt);
243template <
typename Args,
size_t POS,
int ID,
typename T,
typename S>
244constexpr auto parse_tail(T head, S fmt) {
245 if constexpr (POS != basic_string_view<typename S::char_type>(fmt).size()) {
246 constexpr auto tail = compile_format_string<Args, POS, ID>(fmt);
247 if constexpr (std::is_same<remove_cvref_t<
decltype(tail)>,
251 return make_concat(head, tail);
257template <
typename T,
typename Char>
struct parse_specs_result {
258 formatter<T, Char> fmt;
263enum { manual_indexing_id = -1 };
265template <
typename T,
typename Char>
266constexpr parse_specs_result<T, Char> parse_specs(basic_string_view<Char> str,
267 size_t pos,
int next_arg_id) {
268 str.remove_prefix(pos);
271 auto f = formatter<T, Char>();
272 auto end = f.parse(ctx);
273 return {f, pos + fmt::detail::to_unsigned(end - str.
data()),
274 next_arg_id == 0 ? manual_indexing_id : ctx.next_arg_id()};
277template <
typename Char>
struct arg_id_handler {
278 arg_ref<Char> arg_id;
280 constexpr int on_auto() {
281 FMT_ASSERT(
false,
"handler cannot be used with automatic indexing");
284 constexpr int on_index(
int id) {
285 arg_id = arg_ref<Char>(
id);
288 constexpr int on_name(basic_string_view<Char>
id) {
289 arg_id = arg_ref<Char>(
id);
294template <
typename Char>
struct parse_arg_id_result {
295 arg_ref<Char> arg_id;
296 const Char* arg_id_end;
299template <
int ID,
typename Char>
300constexpr auto parse_arg_id(
const Char* begin,
const Char* end) {
302 auto arg_id_end = parse_arg_id(begin, end, handler);
303 return parse_arg_id_result<Char>{handler.arg_id, arg_id_end};
306template <
typename T,
typename Enable =
void>
struct field_type {
307 using type = remove_cvref_t<T>;
311struct field_type<T, enable_if_t<detail::
is_named_arg<T>::value>> {
312 using type = remove_cvref_t<
decltype(T::value)>;
315template <
typename T,
typename Args,
size_t END_POS,
int ARG_INDEX,
int NEXT_ID,
317constexpr auto parse_replacement_field_then_tail(S fmt) {
318 using char_type =
typename S::char_type;
319 constexpr auto str = basic_string_view<char_type>(fmt);
320 constexpr char_type c = END_POS != str.
size() ? str[END_POS] : char_type();
321 if constexpr (c ==
'}') {
322 return parse_tail<Args, END_POS + 1, NEXT_ID>(
323 field<char_type,
typename field_type<T>::type, ARG_INDEX>(), fmt);
324 }
else if constexpr (c !=
':') {
325 FMT_THROW(format_error(
"expected ':'"));
327 constexpr auto result = parse_specs<typename field_type<T>::type>(
328 str, END_POS + 1, NEXT_ID == manual_indexing_id ? 0 : NEXT_ID);
329 if constexpr (result.end >= str.size() || str[result.end] !=
'}') {
330 FMT_THROW(format_error(
"expected '}'"));
333 return parse_tail<Args, result.end + 1, result.next_arg_id>(
334 spec_field<char_type, typename field_type<T>::type, ARG_INDEX>{
343template <
typename Args,
size_t POS,
int ID,
typename S>
344constexpr auto compile_format_string(S fmt) {
345 using char_type =
typename S::char_type;
346 constexpr auto str = basic_string_view<char_type>(fmt);
347 if constexpr (str[POS] ==
'{') {
348 if constexpr (POS + 1 == str.size())
349 FMT_THROW(format_error(
"unmatched '{' in format string"));
350 if constexpr (str[POS + 1] ==
'{') {
351 return parse_tail<Args, POS + 2, ID>(make_text(str, POS, 1), fmt);
352 }
else if constexpr (str[POS + 1] ==
'}' || str[POS + 1] ==
':') {
353 static_assert(ID != manual_indexing_id,
354 "cannot switch from manual to automatic argument indexing");
355 constexpr auto next_id =
356 ID != manual_indexing_id ? ID + 1 : manual_indexing_id;
357 return parse_replacement_field_then_tail<get_type<ID, Args>, Args,
358 POS + 1, ID, next_id>(fmt);
360 constexpr auto arg_id_result =
361 parse_arg_id<ID>(str.data() + POS + 1, str.data() + str.size());
362 constexpr auto arg_id_end_pos = arg_id_result.arg_id_end - str.data();
363 constexpr char_type c =
364 arg_id_end_pos != str.size() ? str[arg_id_end_pos] : char_type();
365 static_assert(c ==
'}' || c ==
':',
"missing '}' in format string");
366 if constexpr (arg_id_result.arg_id.kind == arg_id_kind::index) {
368 ID == manual_indexing_id || ID == 0,
369 "cannot switch from automatic to manual argument indexing");
370 constexpr auto arg_index = arg_id_result.arg_id.val.index;
371 return parse_replacement_field_then_tail<get_type<arg_index, Args>,
372 Args, arg_id_end_pos,
373 arg_index, manual_indexing_id>(
375 }
else if constexpr (arg_id_result.arg_id.kind == arg_id_kind::name) {
376 constexpr auto arg_index =
377 get_arg_index_by_name(arg_id_result.arg_id.val.name, Args{});
378 if constexpr (arg_index >= 0) {
379 constexpr auto next_id =
380 ID != manual_indexing_id ? ID + 1 : manual_indexing_id;
381 return parse_replacement_field_then_tail<
382 decltype(get_type<arg_index, Args>::value), Args, arg_id_end_pos,
383 arg_index, next_id>(fmt);
384 }
else if constexpr (c ==
'}') {
385 return parse_tail<Args, arg_id_end_pos + 1, ID>(
386 runtime_named_field<char_type>{arg_id_result.arg_id.val.name},
388 }
else if constexpr (c ==
':') {
389 return unknown_format();
393 }
else if constexpr (str[POS] ==
'}') {
394 if constexpr (POS + 1 == str.size())
395 FMT_THROW(format_error(
"unmatched '}' in format string"));
396 return parse_tail<Args, POS + 2, ID>(make_text(str, POS, 1), fmt);
398 constexpr auto end = parse_text(str, POS + 1);
399 if constexpr (end - POS > 1) {
400 return parse_tail<Args, end, ID>(make_text(str, POS, end - POS), fmt);
402 return parse_tail<Args, end, ID>(code_unit<char_type>{str[POS]}, fmt);
407template <
typename... Args,
typename S,
408 FMT_ENABLE_IF(detail::is_compiled_string<S>::value)>
409constexpr auto compile(S fmt) {
410 constexpr auto str = basic_string_view<typename S::char_type>(fmt);
411 if constexpr (str.size() == 0) {
412 return detail::make_text(str, 0, 0);
414 constexpr auto result =
415 detail::compile_format_string<detail::type_list<Args...>, 0, 0>(fmt);
424#if defined(__cpp_if_constexpr) && defined(__cpp_return_type_deduction)
426template <
typename CompiledFormat,
typename... Args,
427 typename Char =
typename CompiledFormat::char_type,
428 FMT_ENABLE_IF(detail::is_compiled_format<CompiledFormat>::value)>
429FMT_INLINE std::basic_string<Char> format(
const CompiledFormat& cf,
430 const Args&... args) {
431 auto s = std::basic_string<Char>();
432 cf.format(std::back_inserter(s), args...);
436template <
typename OutputIt,
typename CompiledFormat,
typename... Args,
437 FMT_ENABLE_IF(detail::is_compiled_format<CompiledFormat>::value)>
438constexpr FMT_INLINE OutputIt format_to(OutputIt out,
const CompiledFormat& cf,
439 const Args&... args) {
440 return cf.format(out, args...);
443template <
typename S,
typename... Args,
445FMT_INLINE std::basic_string<typename S::char_type> format(
const S&,
447 if constexpr (std::is_same<typename S::char_type, char>::value) {
449 if constexpr (str.size() == 2 && str[0] ==
'{' && str[1] ==
'}') {
450 const auto& first = detail::first(args...);
452 remove_cvref_t<
decltype(first)>>::value) {
453 return fmt::to_string(first.value);
455 return fmt::to_string(first);
459 constexpr auto compiled = detail::compile<Args...>(S());
460 if constexpr (std::is_same<remove_cvref_t<
decltype(compiled)>,
461 detail::unknown_format>()) {
464 std::forward<Args>(args)...);
466 return fmt::format(compiled, std::forward<Args>(args)...);
470template <
typename OutputIt,
typename S,
typename... Args,
472FMT_CONSTEXPR OutputIt format_to(OutputIt out,
const S&, Args&&... args) {
473 constexpr auto compiled = detail::compile<Args...>(S());
474 if constexpr (std::is_same<remove_cvref_t<
decltype(compiled)>,
475 detail::unknown_format>()) {
476 return fmt::format_to(
478 std::forward<Args>(args)...);
480 return fmt::format_to(out, compiled, std::forward<Args>(args)...);
485template <
typename OutputIt,
typename S,
typename... Args,
487auto format_to_n(OutputIt out,
size_t n,
const S& fmt, Args&&... args)
491 fmt::format_to(std::back_inserter(buf), fmt, std::forward<Args>(args)...);
492 return {buf.out(), buf.count()};
495template <
typename S,
typename... Args,
497FMT_CONSTEXPR20
auto formatted_size(
const S& fmt,
const Args&... args)
502template <
typename S,
typename... Args,
504void print(std::FILE* f,
const S& fmt,
const Args&... args) {
505 memory_buffer buffer;
506 fmt::format_to(std::back_inserter(buffer), fmt, args...);
507 detail::print(f, {buffer.
data(), buffer.
size()});
510template <
typename S,
typename... Args,
512void print(
const S& fmt,
const Args&... args) {
513 print(stdout, fmt, args...);
516#if FMT_USE_NONTYPE_TEMPLATE_ARGS
517inline namespace literals {
518template <detail_exported::fixed_
string Str>
constexpr auto operator""_cf() {
519 using char_t = remove_cvref_t<
decltype(Str.data[0])>;
520 return detail::udl_compiled_string<char_t,
sizeof(Str.data) /
sizeof(char_t),
constexpr auto size() const noexcept -> size_t
Returns the string size.
Definition base.h:555
constexpr auto data() const noexcept -> const Char *
Returns a pointer to the string data.
Definition base.h:552
constexpr auto size() const noexcept -> size_t
Returns the size of this buffer.
Definition base.h:894
FMT_CONSTEXPR auto data() noexcept -> T *
Returns a pointer to the buffer data (not null-terminated).
Definition base.h:900