2 //===----------------------------------------------------------------------===//
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef _LIBCPP___CHRONO_FORMATTER_H
11 #define _LIBCPP___CHRONO_FORMATTER_H
13 #include <__chrono/calendar.h>
14 #include <__chrono/concepts.h>
15 #include <__chrono/convert_to_tm.h>
16 #include <__chrono/day.h>
17 #include <__chrono/duration.h>
18 #include <__chrono/file_clock.h>
19 #include <__chrono/hh_mm_ss.h>
20 #include <__chrono/month.h>
21 #include <__chrono/month_weekday.h>
22 #include <__chrono/monthday.h>
23 #include <__chrono/ostream.h>
24 #include <__chrono/parser_std_format_spec.h>
25 #include <__chrono/statically_widen.h>
26 #include <__chrono/system_clock.h>
27 #include <__chrono/time_point.h>
28 #include <__chrono/weekday.h>
29 #include <__chrono/year.h>
30 #include <__chrono/year_month.h>
31 #include <__chrono/year_month_day.h>
32 #include <__chrono/year_month_weekday.h>
33 #include <__concepts/arithmetic.h>
34 #include <__concepts/same_as.h>
36 #include <__format/concepts.h>
37 #include <__format/format_error.h>
38 #include <__format/format_functions.h>
39 #include <__format/format_parse_context.h>
40 #include <__format/formatter.h>
41 #include <__format/parser_std_format_spec.h>
42 #include <__format/write_escaped.h>
43 #include <__memory/addressof.h>
47 #include <string_view>
49 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
50 # pragma GCC system_header
53 _LIBCPP_BEGIN_NAMESPACE_STD
55 #if _LIBCPP_STD_VER >= 20
57 namespace __formatter
{
59 /// Formats a time based on a tm struct.
61 /// This formatter passes the formatting to time_put which uses strftime. When
62 /// the value is outside the valid range it's unspecified what strftime will
63 /// output. For example weekday 8 can print 1 when the day is processed modulo
64 /// 7 since that handles the Sunday for 0-based weekday. It can also print 8 if
65 /// 7 is handled as a special case.
67 /// The Standard doesn't specify what to do in this case so the result depends
68 /// on the result of the underlying code.
70 /// \pre When the (abbreviated) weekday or month name are used, the caller
71 /// validates whether the value is valid. So the caller handles that
72 /// requirement of Table 97: Meaning of conversion specifiers
73 /// [tab:time.format.spec].
75 /// When no chrono-specs are provided it uses the stream formatter.
77 // For tiny ratios it's not possible to convert a duration to a hh_mm_ss. This
78 // fails compile-time due to the limited precision of the ratio (64-bit is too
79 // small). Therefore a duration uses its own conversion.
80 template <class _CharT
, class _Rep
, class _Period
>
81 _LIBCPP_HIDE_FROM_ABI
void
82 __format_sub_seconds(const chrono::duration
<_Rep
, _Period
>& __value
, basic_stringstream
<_CharT
>& __sstr
) {
83 __sstr
<< std::use_facet
<numpunct
<_CharT
>>(__sstr
.getloc()).decimal_point();
85 using __duration
= chrono::duration
<_Rep
, _Period
>;
87 auto __fraction
= __value
- chrono::duration_cast
<chrono::seconds
>(__value
);
88 if constexpr (chrono::treat_as_floating_point_v
<_Rep
>)
89 // When the floating-point value has digits itself they are ignored based
90 // on the wording in [tab:time.format.spec]
91 // If the precision of the input cannot be exactly represented with
92 // seconds, then the format is a decimal floating-point number with a
93 // fixed format and a precision matching that of the precision of the
94 // input (or to a microseconds precision if the conversion to
95 // floating-point decimal seconds cannot be made within 18 fractional
98 // This matches the behaviour of MSVC STL, fmtlib interprets this
99 // differently and uses 3 decimals.
100 // https://godbolt.org/z/6dsbnW8ba
101 std::format_to(std::ostreambuf_iterator
<_CharT
>{__sstr
},
102 _LIBCPP_STATICALLY_WIDEN(_CharT
, "{:0{}.0f}"),
103 chrono::duration_cast
<typename
chrono::hh_mm_ss
<__duration
>::precision
>(__fraction
).count(),
104 chrono::hh_mm_ss
<__duration
>::fractional_width
);
106 std::format_to(std::ostreambuf_iterator
<_CharT
>{__sstr
},
107 _LIBCPP_STATICALLY_WIDEN(_CharT
, "{:0{}}"),
108 chrono::duration_cast
<typename
chrono::hh_mm_ss
<__duration
>::precision
>(__fraction
).count(),
109 chrono::hh_mm_ss
<__duration
>::fractional_width
);
112 template <class _CharT
, __is_time_point _Tp
>
113 _LIBCPP_HIDE_FROM_ABI
void __format_sub_seconds(const _Tp
& __value
, basic_stringstream
<_CharT
>& __sstr
) {
114 __formatter::__format_sub_seconds(__value
.time_since_epoch(), __sstr
);
117 template <class _CharT
, class _Duration
>
118 _LIBCPP_HIDE_FROM_ABI
void
119 __format_sub_seconds(const chrono::hh_mm_ss
<_Duration
>& __value
, basic_stringstream
<_CharT
>& __sstr
) {
120 __sstr
<< std::use_facet
<numpunct
<_CharT
>>(__sstr
.getloc()).decimal_point();
121 if constexpr (chrono::treat_as_floating_point_v
<typename
_Duration::rep
>)
122 std::format_to(std::ostreambuf_iterator
<_CharT
>{__sstr
},
123 _LIBCPP_STATICALLY_WIDEN(_CharT
, "{:0{}.0f}"),
124 __value
.subseconds().count(),
125 __value
.fractional_width
);
127 std::format_to(std::ostreambuf_iterator
<_CharT
>{__sstr
},
128 _LIBCPP_STATICALLY_WIDEN(_CharT
, "{:0{}}"),
129 __value
.subseconds().count(),
130 __value
.fractional_width
);
134 consteval
bool __use_fraction() {
135 if constexpr (__is_time_point
<_Tp
>)
136 return chrono::hh_mm_ss
<typename
_Tp::duration
>::fractional_width
;
137 else if constexpr (chrono::__is_duration
<_Tp
>::value
)
138 return chrono::hh_mm_ss
<_Tp
>::fractional_width
;
139 else if constexpr (__is_hh_mm_ss
<_Tp
>)
140 return _Tp::fractional_width
;
145 template <class _CharT
>
146 _LIBCPP_HIDE_FROM_ABI
void __format_year(int __year
, basic_stringstream
<_CharT
>& __sstr
) {
148 __sstr
<< _CharT('-');
152 // TODO FMT Write an issue
153 // If the result has less than four digits it is zero-padded with 0 to two digits.
154 // is less -> has less
155 // left-padded -> zero-padded, otherwise the proper value would be 000-0.
157 // Note according to the wording it should be left padded, which is odd.
158 __sstr
<< std::format(_LIBCPP_STATICALLY_WIDEN(_CharT
, "{:04}"), __year
);
161 template <class _CharT
>
162 _LIBCPP_HIDE_FROM_ABI
void __format_century(int __year
, basic_stringstream
<_CharT
>& __sstr
) {
163 // TODO FMT Write an issue
164 // [tab:time.format.spec]
165 // %C The year divided by 100 using floored division. If the result is a
166 // single decimal digit, it is prefixed with 0.
168 bool __negative
= __year
< 0;
169 int __century
= (__year
- (99 * __negative
)) / 100; // floored division
170 __sstr
<< std::format(_LIBCPP_STATICALLY_WIDEN(_CharT
, "{:02}"), __century
);
173 template <class _CharT
, class _Tp
>
174 _LIBCPP_HIDE_FROM_ABI
void __format_chrono_using_chrono_specs(
175 const _Tp
& __value
, basic_stringstream
<_CharT
>& __sstr
, basic_string_view
<_CharT
> __chrono_specs
) {
176 tm __t
= std::__convert_to_tm
<tm
>(__value
);
177 const auto& __facet
= std::use_facet
<time_put
<_CharT
>>(__sstr
.getloc());
178 for (auto __it
= __chrono_specs
.begin(); __it
!= __chrono_specs
.end(); ++__it
) {
179 if (*__it
== _CharT('%')) {
182 // We only handle the types that can't be directly handled by time_put.
183 // (as an optimization n, t, and % are also handled directly.)
186 __sstr
<< _CharT('\n');
189 __sstr
<< _CharT('\t');
196 // strftime's output is only defined in the range [00, 99].
197 int __year
= __t
.tm_year
+ 1900;
198 if (__year
< 1000 || __year
> 9999)
199 __formatter::__format_century(__year
, __sstr
);
201 __facet
.put({__sstr
}, __sstr
, _CharT(' '), std::addressof(__t
), std::to_address(__s
), std::to_address(__it
+ 1));
205 if constexpr (chrono::__is_duration
<_Tp
>::value
)
206 // Converting a duration where the period has a small ratio to days
207 // may fail to compile. This due to loss of precision in the
208 // conversion. In order to avoid that issue convert to seconds as
209 // an intemediate step.
210 __sstr
<< chrono::duration_cast
<chrono::days
>(chrono::duration_cast
<chrono::seconds
>(__value
)).count();
212 __facet
.put({__sstr
}, __sstr
, _CharT(' '), std::addressof(__t
), std::to_address(__s
), std::to_address(__it
+ 1));
216 if constexpr (chrono::__is_duration
<_Tp
>::value
) {
217 __sstr
<< chrono::__units_suffix
<_CharT
, typename
_Tp::period
>();
220 __builtin_unreachable();
223 // TODO FMT Determine the proper ideas
224 // - Should it honour the precision?
225 // - Shoult it honour the locale setting for the separators?
226 // The wording for Q doesn't use the word locale and the effect of
227 // precision is unspecified.
229 // MSVC STL ignores precision but uses separator
230 // FMT honours precision and has a bug for separator
231 // https://godbolt.org/z/78b7sMxns
232 if constexpr (chrono::__is_duration
<_Tp
>::value
) {
233 __sstr
<< std::format(_LIBCPP_STATICALLY_WIDEN(_CharT
, "{}"), __value
.count());
236 __builtin_unreachable();
240 __facet
.put({__sstr
}, __sstr
, _CharT(' '), std::addressof(__t
), std::to_address(__s
), std::to_address(__it
+ 1));
241 if constexpr (__use_fraction
<_Tp
>())
242 __formatter::__format_sub_seconds(__value
, __sstr
);
245 // Unlike time_put and strftime the formatting library requires %Y
247 // [tab:time.format.spec]
248 // The year as a decimal number. If the result is less than four digits
249 // it is left-padded with 0 to four digits.
251 // This means years in the range (-1000, 1000) need manual formatting.
252 // It's unclear whether %EY needs the same treatment. For example the
253 // Japanese EY contains the era name and year. This is zero-padded to 2
254 // digits in time_put (note that older glibc versions didn't do
255 // padding.) However most eras won't reach 100 years, let alone 1000.
256 // So padding to 4 digits seems unwanted for Japanese.
258 // The same applies to %Ex since that too depends on the era.
260 // %x the locale's date representation is currently doesn't handle the
263 // The 4 digits can be implemented better at a later time. On POSIX
264 // systems the required information can be extracted by nl_langinfo
265 // https://man7.org/linux/man-pages/man3/nl_langinfo.3.html
267 // Note since year < -1000 is expected to be rare it uses the more
268 // expensive year routine.
270 // TODO FMT evaluate the comment above.
272 # if defined(__GLIBC__) || defined(_AIX) || defined(_WIN32)
274 // Glibc fails for negative values, AIX for positive values too.
275 __sstr
<< std::format(_LIBCPP_STATICALLY_WIDEN(_CharT
, "{:02}"), (std::abs(__t
.tm_year
+ 1900)) % 100);
277 # endif // defined(__GLIBC__) || defined(_AIX) || defined(_WIN32)
280 // Depending on the platform's libc the range of supported years is
281 // limited. Intead of of testing all conditions use the internal
282 // implementation unconditionally.
283 __formatter::__format_year(__t
.tm_year
+ 1900, __sstr
);
287 int __year
= __t
.tm_year
+ 1900;
289 __formatter::__format_year(__year
, __sstr
);
290 __sstr
<< std::format(_LIBCPP_STATICALLY_WIDEN(_CharT
, "-{:02}-{:02}"), __t
.tm_mon
+ 1, __t
.tm_mday
);
292 __facet
.put({__sstr
}, __sstr
, _CharT(' '), std::addressof(__t
), std::to_address(__s
), std::to_address(__it
+ 1));
296 // TODO FMT Add proper timezone support.
297 __sstr
<< _LIBCPP_STATICALLY_WIDEN(_CharT
, "UTC");
301 if constexpr (__use_fraction
<_Tp
>()) {
302 // Handle OS using the normal representation for the non-fractional
303 // part. There seems to be no locale information regarding how the
304 // fractional part should be formatted.
305 if (*(__it
+ 1) == 'S') {
307 __facet
.put({__sstr
}, __sstr
, _CharT(' '), std::addressof(__t
), std::to_address(__s
), std::to_address(__it
+ 1));
308 __formatter::__format_sub_seconds(__value
, __sstr
);
317 __facet
.put({__sstr
}, __sstr
, _CharT(' '), std::addressof(__t
), std::to_address(__s
), std::to_address(__it
+ 1));
327 _LIBCPP_HIDE_FROM_ABI
constexpr bool __weekday_ok(const _Tp
& __value
) {
328 if constexpr (__is_time_point
<_Tp
>)
330 else if constexpr (same_as
<_Tp
, chrono::day
>)
332 else if constexpr (same_as
<_Tp
, chrono::month
>)
334 else if constexpr (same_as
<_Tp
, chrono::year
>)
336 else if constexpr (same_as
<_Tp
, chrono::weekday
>)
338 else if constexpr (same_as
<_Tp
, chrono::weekday_indexed
>)
340 else if constexpr (same_as
<_Tp
, chrono::weekday_last
>)
342 else if constexpr (same_as
<_Tp
, chrono::month_day
>)
344 else if constexpr (same_as
<_Tp
, chrono::month_day_last
>)
346 else if constexpr (same_as
<_Tp
, chrono::month_weekday
>)
348 else if constexpr (same_as
<_Tp
, chrono::month_weekday_last
>)
350 else if constexpr (same_as
<_Tp
, chrono::year_month
>)
352 else if constexpr (same_as
<_Tp
, chrono::year_month_day
>)
354 else if constexpr (same_as
<_Tp
, chrono::year_month_day_last
>)
356 else if constexpr (same_as
<_Tp
, chrono::year_month_weekday
>)
357 return __value
.weekday().ok();
358 else if constexpr (same_as
<_Tp
, chrono::year_month_weekday_last
>)
359 return __value
.weekday().ok();
360 else if constexpr (__is_hh_mm_ss
<_Tp
>)
363 static_assert(sizeof(_Tp
) == 0, "Add the missing type specialization");
367 _LIBCPP_HIDE_FROM_ABI
constexpr bool __weekday_name_ok(const _Tp
& __value
) {
368 if constexpr (__is_time_point
<_Tp
>)
370 else if constexpr (same_as
<_Tp
, chrono::day
>)
372 else if constexpr (same_as
<_Tp
, chrono::month
>)
374 else if constexpr (same_as
<_Tp
, chrono::year
>)
376 else if constexpr (same_as
<_Tp
, chrono::weekday
>)
378 else if constexpr (same_as
<_Tp
, chrono::weekday_indexed
>)
379 return __value
.weekday().ok();
380 else if constexpr (same_as
<_Tp
, chrono::weekday_last
>)
381 return __value
.weekday().ok();
382 else if constexpr (same_as
<_Tp
, chrono::month_day
>)
384 else if constexpr (same_as
<_Tp
, chrono::month_day_last
>)
386 else if constexpr (same_as
<_Tp
, chrono::month_weekday
>)
387 return __value
.weekday_indexed().ok();
388 else if constexpr (same_as
<_Tp
, chrono::month_weekday_last
>)
389 return __value
.weekday_indexed().ok();
390 else if constexpr (same_as
<_Tp
, chrono::year_month
>)
392 else if constexpr (same_as
<_Tp
, chrono::year_month_day
>)
394 else if constexpr (same_as
<_Tp
, chrono::year_month_day_last
>)
396 else if constexpr (same_as
<_Tp
, chrono::year_month_weekday
>)
397 return __value
.weekday().ok();
398 else if constexpr (same_as
<_Tp
, chrono::year_month_weekday_last
>)
399 return __value
.weekday().ok();
400 else if constexpr (__is_hh_mm_ss
<_Tp
>)
403 static_assert(sizeof(_Tp
) == 0, "Add the missing type specialization");
407 _LIBCPP_HIDE_FROM_ABI
constexpr bool __date_ok(const _Tp
& __value
) {
408 if constexpr (__is_time_point
<_Tp
>)
410 else if constexpr (same_as
<_Tp
, chrono::day
>)
412 else if constexpr (same_as
<_Tp
, chrono::month
>)
414 else if constexpr (same_as
<_Tp
, chrono::year
>)
416 else if constexpr (same_as
<_Tp
, chrono::weekday
>)
418 else if constexpr (same_as
<_Tp
, chrono::weekday_indexed
>)
420 else if constexpr (same_as
<_Tp
, chrono::weekday_last
>)
422 else if constexpr (same_as
<_Tp
, chrono::month_day
>)
424 else if constexpr (same_as
<_Tp
, chrono::month_day_last
>)
426 else if constexpr (same_as
<_Tp
, chrono::month_weekday
>)
428 else if constexpr (same_as
<_Tp
, chrono::month_weekday_last
>)
430 else if constexpr (same_as
<_Tp
, chrono::year_month
>)
432 else if constexpr (same_as
<_Tp
, chrono::year_month_day
>)
434 else if constexpr (same_as
<_Tp
, chrono::year_month_day_last
>)
436 else if constexpr (same_as
<_Tp
, chrono::year_month_weekday
>)
438 else if constexpr (same_as
<_Tp
, chrono::year_month_weekday_last
>)
440 else if constexpr (__is_hh_mm_ss
<_Tp
>)
443 static_assert(sizeof(_Tp
) == 0, "Add the missing type specialization");
447 _LIBCPP_HIDE_FROM_ABI
constexpr bool __month_name_ok(const _Tp
& __value
) {
448 if constexpr (__is_time_point
<_Tp
>)
450 else if constexpr (same_as
<_Tp
, chrono::day
>)
452 else if constexpr (same_as
<_Tp
, chrono::month
>)
454 else if constexpr (same_as
<_Tp
, chrono::year
>)
456 else if constexpr (same_as
<_Tp
, chrono::weekday
>)
458 else if constexpr (same_as
<_Tp
, chrono::weekday_indexed
>)
460 else if constexpr (same_as
<_Tp
, chrono::weekday_last
>)
462 else if constexpr (same_as
<_Tp
, chrono::month_day
>)
463 return __value
.month().ok();
464 else if constexpr (same_as
<_Tp
, chrono::month_day_last
>)
465 return __value
.month().ok();
466 else if constexpr (same_as
<_Tp
, chrono::month_weekday
>)
467 return __value
.month().ok();
468 else if constexpr (same_as
<_Tp
, chrono::month_weekday_last
>)
469 return __value
.month().ok();
470 else if constexpr (same_as
<_Tp
, chrono::year_month
>)
471 return __value
.month().ok();
472 else if constexpr (same_as
<_Tp
, chrono::year_month_day
>)
473 return __value
.month().ok();
474 else if constexpr (same_as
<_Tp
, chrono::year_month_day_last
>)
475 return __value
.month().ok();
476 else if constexpr (same_as
<_Tp
, chrono::year_month_weekday
>)
477 return __value
.month().ok();
478 else if constexpr (same_as
<_Tp
, chrono::year_month_weekday_last
>)
479 return __value
.month().ok();
480 else if constexpr (__is_hh_mm_ss
<_Tp
>)
483 static_assert(sizeof(_Tp
) == 0, "Add the missing type specialization");
486 template <class _CharT
, class _Tp
, class _FormatContext
>
487 _LIBCPP_HIDE_FROM_ABI
auto
488 __format_chrono(const _Tp
& __value
,
489 _FormatContext
& __ctx
,
490 __format_spec::__parsed_specifications
<_CharT
> __specs
,
491 basic_string_view
<_CharT
> __chrono_specs
) {
492 basic_stringstream
<_CharT
> __sstr
;
494 // 2.1 - the "C" locale if the L option is not present in chrono-format-spec, otherwise
495 // 2.2 - the locale passed to the formatting function if any, otherwise
496 // 2.3 - the global locale.
497 // Note that the __ctx's locale() call does 2.2 and 2.3.
498 if (__specs
.__chrono_
.__locale_specific_form_
)
499 __sstr
.imbue(__ctx
.locale());
501 __sstr
.imbue(locale::classic());
503 if (__chrono_specs
.empty())
506 if constexpr (chrono::__is_duration
<_Tp
>::value
) {
507 if (__value
< __value
.zero())
508 __sstr
<< _CharT('-');
509 __formatter::__format_chrono_using_chrono_specs(chrono::abs(__value
), __sstr
, __chrono_specs
);
510 // TODO FMT When keeping the precision it will truncate the string.
511 // Note that the behaviour what the precision does isn't specified.
512 __specs
.__precision_
= -1;
514 // Test __weekday_name_ before __weekday_ to give a better error.
515 if (__specs
.__chrono_
.__weekday_name_
&& !__formatter::__weekday_name_ok(__value
))
516 std::__throw_format_error("Formatting a weekday name needs a valid weekday");
518 if (__specs
.__chrono_
.__weekday_
&& !__formatter::__weekday_ok(__value
))
519 std::__throw_format_error("Formatting a weekday needs a valid weekday");
521 if (__specs
.__chrono_
.__day_of_year_
&& !__formatter::__date_ok(__value
))
522 std::__throw_format_error("Formatting a day of year needs a valid date");
524 if (__specs
.__chrono_
.__week_of_year_
&& !__formatter::__date_ok(__value
))
525 std::__throw_format_error("Formatting a week of year needs a valid date");
527 if (__specs
.__chrono_
.__month_name_
&& !__formatter::__month_name_ok(__value
))
528 std::__throw_format_error("Formatting a month name from an invalid month number");
530 if constexpr (__is_hh_mm_ss
<_Tp
>) {
531 // Note this is a pedantic intepretation of the Standard. A hh_mm_ss
532 // is no longer a time_of_day and can store an arbitrary number of
533 // hours. A number of hours in a 12 or 24 hour clock can't represent
534 // 24 hours or more. The functions std::chrono::make12 and
535 // std::chrono::make24 reaffirm this view point.
537 // Interestingly this will be the only output stream function that
540 // TODO FMT The wording probably needs to be adapted to
541 // - The displayed hours is hh_mm_ss.hours() % 24
542 // - It should probably allow %j in the same fashion as duration.
543 // - The stream formatter should change its output when hours >= 24
544 // - Write it as not valid,
545 // - or write the number of days.
546 if (__specs
.__chrono_
.__hour_
&& __value
.hours().count() > 23)
547 std::__throw_format_error("Formatting a hour needs a valid value");
549 if (__value
.is_negative())
550 __sstr
<< _CharT('-');
553 __formatter::__format_chrono_using_chrono_specs(__value
, __sstr
, __chrono_specs
);
557 return __formatter::__write_string(__sstr
.view(), __ctx
.out(), __specs
);
560 } // namespace __formatter
562 template <__fmt_char_type _CharT
>
563 struct _LIBCPP_TEMPLATE_VIS __formatter_chrono
{
565 template <class _ParseContext
>
566 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
567 __parse(_ParseContext
& __ctx
, __format_spec::__fields __fields
, __format_spec::__flags __flags
) {
568 return __parser_
.__parse(__ctx
, __fields
, __flags
);
571 template <class _Tp
, class _FormatContext
>
572 _LIBCPP_HIDE_FROM_ABI typename
_FormatContext::iterator
format(const _Tp
& __value
, _FormatContext
& __ctx
) const {
573 return __formatter::__format_chrono(
574 __value
, __ctx
, __parser_
.__parser_
.__get_parsed_chrono_specifications(__ctx
), __parser_
.__chrono_specs_
);
577 __format_spec::__parser_chrono
<_CharT
> __parser_
;
580 template <class _Duration
, __fmt_char_type _CharT
>
581 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::sys_time
<_Duration
>, _CharT
> : public __formatter_chrono
<_CharT
> {
583 using _Base
= __formatter_chrono
<_CharT
>;
585 template <class _ParseContext
>
586 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
587 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__clock
);
591 template <class _Duration
, __fmt_char_type _CharT
>
592 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::file_time
<_Duration
>, _CharT
> : public __formatter_chrono
<_CharT
> {
594 using _Base
= __formatter_chrono
<_CharT
>;
596 template <class _ParseContext
>
597 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
598 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__clock
);
602 template <class _Duration
, __fmt_char_type _CharT
>
603 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::local_time
<_Duration
>, _CharT
> : public __formatter_chrono
<_CharT
> {
605 using _Base
= __formatter_chrono
<_CharT
>;
607 template <class _ParseContext
>
608 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
609 // The flags are not __clock since there is no associated time-zone.
610 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__date_time
);
614 template <class _Rep
, class _Period
, __fmt_char_type _CharT
>
615 struct formatter
<chrono::duration
<_Rep
, _Period
>, _CharT
> : public __formatter_chrono
<_CharT
> {
617 using _Base
= __formatter_chrono
<_CharT
>;
619 template <class _ParseContext
>
620 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
622 // Giving a precision specification in the chrono-format-spec is valid only
623 // for std::chrono::duration types where the representation type Rep is a
624 // floating-point type. For all other Rep types, an exception of type
625 // format_error is thrown if the chrono-format-spec contains a precision
628 // Note this doesn't refer to chrono::treat_as_floating_point_v<_Rep>.
629 if constexpr (std::floating_point
<_Rep
>)
630 return _Base::__parse(__ctx
, __format_spec::__fields_chrono_fractional
, __format_spec::__flags::__duration
);
632 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__duration
);
636 template <__fmt_char_type _CharT
>
637 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::day
, _CharT
>
638 : public __formatter_chrono
<_CharT
> {
640 using _Base
= __formatter_chrono
<_CharT
>;
642 template <class _ParseContext
>
643 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
644 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__day
);
648 template <__fmt_char_type _CharT
>
649 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::month
, _CharT
>
650 : public __formatter_chrono
<_CharT
> {
652 using _Base
= __formatter_chrono
<_CharT
>;
654 template <class _ParseContext
>
655 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
656 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__month
);
660 template <__fmt_char_type _CharT
>
661 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::year
, _CharT
>
662 : public __formatter_chrono
<_CharT
> {
664 using _Base
= __formatter_chrono
<_CharT
>;
666 template <class _ParseContext
>
667 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
668 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__year
);
672 template <__fmt_char_type _CharT
>
673 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::weekday
, _CharT
>
674 : public __formatter_chrono
<_CharT
> {
676 using _Base
= __formatter_chrono
<_CharT
>;
678 template <class _ParseContext
>
679 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
680 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__weekday
);
684 template <__fmt_char_type _CharT
>
685 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::weekday_indexed
, _CharT
>
686 : public __formatter_chrono
<_CharT
> {
688 using _Base
= __formatter_chrono
<_CharT
>;
690 template <class _ParseContext
>
691 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
692 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__weekday
);
696 template <__fmt_char_type _CharT
>
697 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::weekday_last
, _CharT
>
698 : public __formatter_chrono
<_CharT
> {
700 using _Base
= __formatter_chrono
<_CharT
>;
702 template <class _ParseContext
>
703 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
704 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__weekday
);
708 template <__fmt_char_type _CharT
>
709 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::month_day
, _CharT
>
710 : public __formatter_chrono
<_CharT
> {
712 using _Base
= __formatter_chrono
<_CharT
>;
714 template <class _ParseContext
>
715 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
716 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__month_day
);
720 template <__fmt_char_type _CharT
>
721 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::month_day_last
, _CharT
>
722 : public __formatter_chrono
<_CharT
> {
724 using _Base
= __formatter_chrono
<_CharT
>;
726 template <class _ParseContext
>
727 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
728 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__month
);
732 template <__fmt_char_type _CharT
>
733 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::month_weekday
, _CharT
>
734 : public __formatter_chrono
<_CharT
> {
736 using _Base
= __formatter_chrono
<_CharT
>;
738 template <class _ParseContext
>
739 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
740 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__month_weekday
);
744 template <__fmt_char_type _CharT
>
745 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::month_weekday_last
, _CharT
>
746 : public __formatter_chrono
<_CharT
> {
748 using _Base
= __formatter_chrono
<_CharT
>;
750 template <class _ParseContext
>
751 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
752 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__month_weekday
);
756 template <__fmt_char_type _CharT
>
757 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::year_month
, _CharT
>
758 : public __formatter_chrono
<_CharT
> {
760 using _Base
= __formatter_chrono
<_CharT
>;
762 template <class _ParseContext
>
763 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
764 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__year_month
);
768 template <__fmt_char_type _CharT
>
769 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::year_month_day
, _CharT
>
770 : public __formatter_chrono
<_CharT
> {
772 using _Base
= __formatter_chrono
<_CharT
>;
774 template <class _ParseContext
>
775 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
776 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__date
);
780 template <__fmt_char_type _CharT
>
781 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::year_month_day_last
, _CharT
>
782 : public __formatter_chrono
<_CharT
> {
784 using _Base
= __formatter_chrono
<_CharT
>;
786 template <class _ParseContext
>
787 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
788 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__date
);
792 template <__fmt_char_type _CharT
>
793 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::year_month_weekday
, _CharT
>
794 : public __formatter_chrono
<_CharT
> {
796 using _Base
= __formatter_chrono
<_CharT
>;
798 template <class _ParseContext
>
799 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
800 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__date
);
804 template <__fmt_char_type _CharT
>
805 struct _LIBCPP_TEMPLATE_VIS formatter
<chrono::year_month_weekday_last
, _CharT
>
806 : public __formatter_chrono
<_CharT
> {
808 using _Base
= __formatter_chrono
<_CharT
>;
810 template <class _ParseContext
>
811 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
812 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__date
);
816 template <class _Duration
, __fmt_char_type _CharT
>
817 struct formatter
<chrono::hh_mm_ss
<_Duration
>, _CharT
> : public __formatter_chrono
<_CharT
> {
819 using _Base
= __formatter_chrono
<_CharT
>;
821 template <class _ParseContext
>
822 _LIBCPP_HIDE_FROM_ABI
constexpr typename
_ParseContext::iterator
parse(_ParseContext
& __ctx
) {
823 return _Base::__parse(__ctx
, __format_spec::__fields_chrono
, __format_spec::__flags::__time
);
826 #endif // if _LIBCPP_STD_VER >= 20
828 _LIBCPP_END_NAMESPACE_STD
830 #endif // _LIBCPP___CHRONO_FORMATTER_H