Merge branch 'terminal-color' of github.com:Rakete1111/fmt into terminal-color
This commit is contained in:
commit
e636236a31
@ -138,8 +138,8 @@ function(add_headers VAR)
|
|||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
# Define the fmt library, its includes and the needed defines.
|
# Define the fmt library, its includes and the needed defines.
|
||||||
add_headers(FMT_HEADERS color.h core.h format.h format-inl.h locale.h ostream.h
|
add_headers(FMT_HEADERS chrono.h color.h core.h format.h format-inl.h locale.h
|
||||||
printf.h time.h ranges.h)
|
ostream.h printf.h time.h ranges.h)
|
||||||
set(FMT_SOURCES src/format.cc)
|
set(FMT_SOURCES src/format.cc)
|
||||||
if (HAVE_OPEN)
|
if (HAVE_OPEN)
|
||||||
add_headers(FMT_HEADERS posix.h)
|
add_headers(FMT_HEADERS posix.h)
|
||||||
|
|||||||
406
include/fmt/chrono.h
Normal file
406
include/fmt/chrono.h
Normal file
@ -0,0 +1,406 @@
|
|||||||
|
// Formatting library for C++ - chrono support
|
||||||
|
//
|
||||||
|
// Copyright (c) 2012 - present, Victor Zverovich
|
||||||
|
// All rights reserved.
|
||||||
|
//
|
||||||
|
// For the license information refer to format.h.
|
||||||
|
|
||||||
|
#ifndef FMT_CHRONO_H_
|
||||||
|
#define FMT_CHRONO_H_
|
||||||
|
|
||||||
|
#include "format.h"
|
||||||
|
#include "locale.h"
|
||||||
|
|
||||||
|
#include <chrono>
|
||||||
|
#include <ctime>
|
||||||
|
#include <locale>
|
||||||
|
#include <sstream>
|
||||||
|
|
||||||
|
FMT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
|
namespace internal{
|
||||||
|
|
||||||
|
enum class numeric_system {
|
||||||
|
standard,
|
||||||
|
// Alternative numeric system, e.g. 十二 instead of 12 in ja_JP locale.
|
||||||
|
alternative
|
||||||
|
};
|
||||||
|
|
||||||
|
// Parses a put_time-like format string and invokes handler actions.
|
||||||
|
template <typename Char, typename Handler>
|
||||||
|
FMT_CONSTEXPR const Char *parse_chrono_format(
|
||||||
|
const Char *begin, const Char *end, Handler &&handler) {
|
||||||
|
auto ptr = begin;
|
||||||
|
while (ptr != end) {
|
||||||
|
auto c = *ptr;
|
||||||
|
if (c == '}') break;
|
||||||
|
if (c != '%') {
|
||||||
|
++ptr;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (begin != ptr)
|
||||||
|
handler.on_text(begin, ptr);
|
||||||
|
++ptr; // consume '%'
|
||||||
|
if (ptr == end)
|
||||||
|
throw format_error("invalid format");
|
||||||
|
c = *ptr++;
|
||||||
|
switch (c) {
|
||||||
|
case '%':
|
||||||
|
handler.on_text(ptr - 1, ptr);
|
||||||
|
break;
|
||||||
|
case 'n': {
|
||||||
|
const char newline[] = "\n";
|
||||||
|
handler.on_text(newline, newline + 1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 't': {
|
||||||
|
const char tab[] = "\t";
|
||||||
|
handler.on_text(tab, tab + 1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// Day of the week:
|
||||||
|
case 'a':
|
||||||
|
handler.on_abbr_weekday();
|
||||||
|
break;
|
||||||
|
case 'A':
|
||||||
|
handler.on_full_weekday();
|
||||||
|
break;
|
||||||
|
case 'w':
|
||||||
|
handler.on_dec0_weekday(numeric_system::standard);
|
||||||
|
break;
|
||||||
|
case 'u':
|
||||||
|
handler.on_dec1_weekday(numeric_system::standard);
|
||||||
|
break;
|
||||||
|
// Month:
|
||||||
|
case 'b':
|
||||||
|
handler.on_abbr_month();
|
||||||
|
break;
|
||||||
|
case 'B':
|
||||||
|
handler.on_full_month();
|
||||||
|
break;
|
||||||
|
// Hour, minute, second:
|
||||||
|
case 'H':
|
||||||
|
handler.on_24_hour(numeric_system::standard);
|
||||||
|
break;
|
||||||
|
case 'I':
|
||||||
|
handler.on_12_hour(numeric_system::standard);
|
||||||
|
break;
|
||||||
|
case 'M':
|
||||||
|
handler.on_minute(numeric_system::standard);
|
||||||
|
break;
|
||||||
|
case 'S':
|
||||||
|
handler.on_second(numeric_system::standard);
|
||||||
|
break;
|
||||||
|
// Other:
|
||||||
|
case 'c':
|
||||||
|
handler.on_datetime(numeric_system::standard);
|
||||||
|
break;
|
||||||
|
case 'x':
|
||||||
|
handler.on_loc_date(numeric_system::standard);
|
||||||
|
break;
|
||||||
|
case 'X':
|
||||||
|
handler.on_loc_time(numeric_system::standard);
|
||||||
|
break;
|
||||||
|
case 'D':
|
||||||
|
handler.on_us_date();
|
||||||
|
break;
|
||||||
|
case 'F':
|
||||||
|
handler.on_iso_date();
|
||||||
|
break;
|
||||||
|
case 'r':
|
||||||
|
handler.on_12_hour_time();
|
||||||
|
break;
|
||||||
|
case 'R':
|
||||||
|
handler.on_24_hour_time();
|
||||||
|
break;
|
||||||
|
case 'T':
|
||||||
|
handler.on_iso_time();
|
||||||
|
break;
|
||||||
|
case 'p':
|
||||||
|
handler.on_am_pm();
|
||||||
|
break;
|
||||||
|
case 'z':
|
||||||
|
handler.on_utc_offset();
|
||||||
|
break;
|
||||||
|
case 'Z':
|
||||||
|
handler.on_tz_name();
|
||||||
|
break;
|
||||||
|
// Alternative representation:
|
||||||
|
case 'E': {
|
||||||
|
if (ptr == end)
|
||||||
|
throw format_error("invalid format");
|
||||||
|
c = *ptr++;
|
||||||
|
switch (c) {
|
||||||
|
case 'c':
|
||||||
|
handler.on_datetime(numeric_system::alternative);
|
||||||
|
break;
|
||||||
|
case 'x':
|
||||||
|
handler.on_loc_date(numeric_system::alternative);
|
||||||
|
break;
|
||||||
|
case 'X':
|
||||||
|
handler.on_loc_time(numeric_system::alternative);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw format_error("invalid format");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 'O':
|
||||||
|
if (ptr == end)
|
||||||
|
throw format_error("invalid format");
|
||||||
|
c = *ptr++;
|
||||||
|
switch (c) {
|
||||||
|
case 'w':
|
||||||
|
handler.on_dec0_weekday(numeric_system::alternative);
|
||||||
|
break;
|
||||||
|
case 'u':
|
||||||
|
handler.on_dec1_weekday(numeric_system::alternative);
|
||||||
|
break;
|
||||||
|
case 'H':
|
||||||
|
handler.on_24_hour(numeric_system::alternative);
|
||||||
|
break;
|
||||||
|
case 'I':
|
||||||
|
handler.on_12_hour(numeric_system::alternative);
|
||||||
|
break;
|
||||||
|
case 'M':
|
||||||
|
handler.on_minute(numeric_system::alternative);
|
||||||
|
break;
|
||||||
|
case 'S':
|
||||||
|
handler.on_second(numeric_system::alternative);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw format_error("invalid format");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw format_error("invalid format");
|
||||||
|
}
|
||||||
|
begin = ptr;
|
||||||
|
}
|
||||||
|
if (begin != ptr)
|
||||||
|
handler.on_text(begin, ptr);
|
||||||
|
return ptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct chrono_format_checker {
|
||||||
|
void report_no_date() { throw format_error("no date"); }
|
||||||
|
|
||||||
|
template <typename Char>
|
||||||
|
void on_text(const Char *, const Char *) {}
|
||||||
|
void on_abbr_weekday() { report_no_date(); }
|
||||||
|
void on_full_weekday() { report_no_date(); }
|
||||||
|
void on_dec0_weekday(numeric_system) { report_no_date(); }
|
||||||
|
void on_dec1_weekday(numeric_system) { report_no_date(); }
|
||||||
|
void on_abbr_month() { report_no_date(); }
|
||||||
|
void on_full_month() { report_no_date(); }
|
||||||
|
void on_24_hour(numeric_system) {}
|
||||||
|
void on_12_hour(numeric_system) {}
|
||||||
|
void on_minute(numeric_system) {}
|
||||||
|
void on_second(numeric_system) {}
|
||||||
|
void on_datetime(numeric_system) { report_no_date(); }
|
||||||
|
void on_loc_date(numeric_system) { report_no_date(); }
|
||||||
|
void on_loc_time(numeric_system) { report_no_date(); }
|
||||||
|
void on_us_date() { report_no_date(); }
|
||||||
|
void on_iso_date() { report_no_date(); }
|
||||||
|
void on_12_hour_time() {}
|
||||||
|
void on_24_hour_time() {}
|
||||||
|
void on_iso_time() {}
|
||||||
|
void on_am_pm() {}
|
||||||
|
void on_utc_offset() { report_no_date(); }
|
||||||
|
void on_tz_name() { report_no_date(); }
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename Int>
|
||||||
|
inline int to_int(Int value) {
|
||||||
|
FMT_ASSERT(value >= (std::numeric_limits<int>::min)() &&
|
||||||
|
value <= (std::numeric_limits<int>::max)(), "invalid value");
|
||||||
|
return static_cast<int>(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename FormatContext>
|
||||||
|
struct chrono_formatter {
|
||||||
|
FormatContext &context;
|
||||||
|
typename FormatContext::iterator out;
|
||||||
|
std::chrono::seconds s;
|
||||||
|
std::chrono::milliseconds ms;
|
||||||
|
|
||||||
|
typedef typename FormatContext::char_type char_type;
|
||||||
|
|
||||||
|
explicit chrono_formatter(FormatContext &ctx)
|
||||||
|
: context(ctx), out(ctx.out()) {}
|
||||||
|
|
||||||
|
int hour() const { return to_int((s.count() / 3600) % 24); }
|
||||||
|
|
||||||
|
int hour12() const {
|
||||||
|
auto hour = to_int((s.count() / 3600) % 12);
|
||||||
|
return hour > 0 ? hour : 12;
|
||||||
|
}
|
||||||
|
|
||||||
|
int minute() const { return to_int((s.count() / 60) % 60); }
|
||||||
|
int second() const { return to_int(s.count() % 60); }
|
||||||
|
|
||||||
|
std::tm time() const {
|
||||||
|
auto time = std::tm();
|
||||||
|
time.tm_hour = hour();
|
||||||
|
time.tm_min = minute();
|
||||||
|
time.tm_sec = second();
|
||||||
|
return time;
|
||||||
|
}
|
||||||
|
|
||||||
|
void write(int value, int width) {
|
||||||
|
typedef typename int_traits<int>::main_type main_type;
|
||||||
|
main_type n = to_unsigned(value);
|
||||||
|
int num_digits = static_cast<int>(internal::count_digits(n));
|
||||||
|
if (width > num_digits)
|
||||||
|
out = std::fill_n(out, width - num_digits, '0');
|
||||||
|
out = format_decimal<char_type>(out, n, num_digits);
|
||||||
|
}
|
||||||
|
|
||||||
|
void format_localized(const tm &time, const char *format) {
|
||||||
|
auto locale = context.locale().template get<std::locale>();
|
||||||
|
auto &facet = std::use_facet<std::time_put<char_type>>(locale);
|
||||||
|
std::basic_ostringstream<char_type> os;
|
||||||
|
os.imbue(locale);
|
||||||
|
facet.put(os, os, ' ', &time, format, format + std::strlen(format));
|
||||||
|
auto str = os.str();
|
||||||
|
std::copy(str.begin(), str.end(), out);
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_text(const char_type *begin, const char_type *end) {
|
||||||
|
std::copy(begin, end, out);
|
||||||
|
}
|
||||||
|
|
||||||
|
// These are not implemented because durations don't have date information.
|
||||||
|
void on_abbr_weekday() {}
|
||||||
|
void on_full_weekday() {}
|
||||||
|
void on_dec0_weekday(numeric_system) {}
|
||||||
|
void on_dec1_weekday(numeric_system) {}
|
||||||
|
void on_abbr_month() {}
|
||||||
|
void on_full_month() {}
|
||||||
|
void on_datetime(numeric_system) {}
|
||||||
|
void on_loc_date(numeric_system) {}
|
||||||
|
void on_loc_time(numeric_system) {}
|
||||||
|
void on_us_date() {}
|
||||||
|
void on_iso_date() {}
|
||||||
|
void on_utc_offset() {}
|
||||||
|
void on_tz_name() {}
|
||||||
|
|
||||||
|
void on_24_hour(numeric_system ns) {
|
||||||
|
if (ns == numeric_system::standard)
|
||||||
|
return write(hour(), 2);
|
||||||
|
auto time = tm();
|
||||||
|
time.tm_hour = hour();
|
||||||
|
format_localized(time, "%OH");
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_12_hour(numeric_system ns) {
|
||||||
|
if (ns == numeric_system::standard)
|
||||||
|
return write(hour12(), 2);
|
||||||
|
auto time = tm();
|
||||||
|
time.tm_hour = hour();
|
||||||
|
format_localized(time, "%OI");
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_minute(numeric_system ns) {
|
||||||
|
if (ns == numeric_system::standard)
|
||||||
|
return write(minute(), 2);
|
||||||
|
auto time = tm();
|
||||||
|
time.tm_min = minute();
|
||||||
|
format_localized(time, "%OM");
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_second(numeric_system ns) {
|
||||||
|
if (ns == numeric_system::standard) {
|
||||||
|
write(second(), 2);
|
||||||
|
if (ms != std::chrono::milliseconds(0)) {
|
||||||
|
*out++ = '.';
|
||||||
|
write(to_int(ms.count()), 3);
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
auto time = tm();
|
||||||
|
time.tm_sec = second();
|
||||||
|
format_localized(time, "%OS");
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_12_hour_time() { format_localized(time(), "%r"); }
|
||||||
|
|
||||||
|
void on_24_hour_time() {
|
||||||
|
write(hour(), 2);
|
||||||
|
*out++ = ':';
|
||||||
|
write(minute(), 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_iso_time() {
|
||||||
|
on_24_hour_time();
|
||||||
|
*out++ = ':';
|
||||||
|
write(second(), 2);
|
||||||
|
}
|
||||||
|
|
||||||
|
void on_am_pm() { format_localized(time(), "%p"); }
|
||||||
|
};
|
||||||
|
} // namespace internal
|
||||||
|
|
||||||
|
template <typename Period> FMT_CONSTEXPR const char *get_units() {
|
||||||
|
return FMT_NULL;
|
||||||
|
}
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::atto>() { return "as"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::femto>() { return "fs"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::pico>() { return "ps"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::nano>() { return "ns"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::micro>() { return "µs"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::milli>() { return "ms"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::centi>() { return "cs"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::deci>() { return "ds"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::ratio<1>>() { return "s"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::deca>() { return "das"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::hecto>() { return "hs"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::kilo>() { return "ks"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::mega>() { return "Ms"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::giga>() { return "Gs"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::tera>() { return "Ts"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::peta>() { return "Ps"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::exa>() { return "Es"; }
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::ratio<60>>() {
|
||||||
|
return "m";
|
||||||
|
}
|
||||||
|
template <> FMT_CONSTEXPR const char *get_units<std::ratio<3600>>() {
|
||||||
|
return "h";
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename Rep, typename Period, typename Char>
|
||||||
|
struct formatter<std::chrono::duration<Rep, Period>, Char> {
|
||||||
|
mutable basic_string_view<Char> format_str;
|
||||||
|
typedef std::chrono::duration<Rep, Period> duration;
|
||||||
|
|
||||||
|
FMT_CONSTEXPR auto parse(basic_parse_context<Char> &ctx)
|
||||||
|
-> decltype(ctx.begin()) {
|
||||||
|
auto begin = ctx.begin(), end = ctx.end();
|
||||||
|
end = parse_chrono_format(begin, end, internal::chrono_format_checker());
|
||||||
|
format_str = basic_string_view<Char>(&*begin, end - begin);
|
||||||
|
return end;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename FormatContext>
|
||||||
|
auto format(const duration &d, FormatContext &ctx)
|
||||||
|
-> decltype(ctx.out()) {
|
||||||
|
auto begin = format_str.begin(), end = format_str.end();
|
||||||
|
if (begin == end || *begin == '}') {
|
||||||
|
if (const char *unit = get_units<Period>())
|
||||||
|
return format_to(ctx.out(), "{}{}", d.count(), unit);
|
||||||
|
if (Period::den == 1)
|
||||||
|
return format_to(ctx.out(), "{}[{}s]", d.count(), Period::num);
|
||||||
|
return format_to(ctx.out(), "{}[{}/{}s]",
|
||||||
|
d.count(), Period::num, Period::den);
|
||||||
|
}
|
||||||
|
internal::chrono_formatter<FormatContext> f(ctx);
|
||||||
|
f.s = std::chrono::duration_cast<std::chrono::seconds>(d);
|
||||||
|
f.ms = std::chrono::duration_cast<std::chrono::milliseconds>(d - f.s);
|
||||||
|
parse_chrono_format(begin, end, f);
|
||||||
|
return f.out;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
FMT_END_NAMESPACE
|
||||||
|
|
||||||
|
#endif // FMT_CHRONO_H_
|
||||||
@ -500,26 +500,59 @@ template <>
|
|||||||
inline void reset_color<wchar_t>(FILE *stream) FMT_NOEXCEPT {
|
inline void reset_color<wchar_t>(FILE *stream) FMT_NOEXCEPT {
|
||||||
fputs(internal::data::WRESET_COLOR, stream);
|
fputs(internal::data::WRESET_COLOR, stream);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// The following specialiazation disables using std::FILE as a character type,
|
||||||
|
// which is needed because or else
|
||||||
|
// fmt::print(stderr, fmt::emphasis::bold, "");
|
||||||
|
// would take stderr (a std::FILE *) as the format string.
|
||||||
|
template <>
|
||||||
|
struct is_string<std::FILE *> : std::false_type {};
|
||||||
|
template <>
|
||||||
|
struct is_string<const std::FILE *> : std::false_type {};
|
||||||
} // namespace internal
|
} // namespace internal
|
||||||
|
|
||||||
template <
|
template <
|
||||||
typename S, typename Char = typename internal::char_t<S>::type>
|
typename S, typename Char = typename internal::char_t<S>::type>
|
||||||
void vprint(const text_style &tf, const S &format,
|
void vprint(std::FILE *f, const text_style &ts, const S &format,
|
||||||
basic_format_args<typename buffer_context<Char>::type> args) {
|
basic_format_args<typename buffer_context<Char>::type> args) {
|
||||||
if (tf.has_emphasis()) {
|
bool has_style = false;
|
||||||
|
if (ts.has_emphasis()) {
|
||||||
|
has_style = true;
|
||||||
internal::fputs<Char>(
|
internal::fputs<Char>(
|
||||||
internal::make_emphasis<Char>(tf.get_emphasis()), stdout);
|
internal::make_emphasis<Char>(ts.get_emphasis()), f);
|
||||||
}
|
}
|
||||||
if (tf.has_foreground()) {
|
if (ts.has_foreground()) {
|
||||||
|
has_style = true;
|
||||||
internal::fputs<Char>(
|
internal::fputs<Char>(
|
||||||
internal::make_foreground_color<Char>(tf.get_foreground()), stdout);
|
internal::make_foreground_color<Char>(ts.get_foreground()), f);
|
||||||
}
|
}
|
||||||
if (tf.has_background()) {
|
if (ts.has_background()) {
|
||||||
|
has_style = true;
|
||||||
internal::fputs<Char>(
|
internal::fputs<Char>(
|
||||||
internal::make_background_color<Char>(tf.get_background()), stdout);
|
internal::make_background_color<Char>(ts.get_background()), f);
|
||||||
}
|
}
|
||||||
vprint(format, args);
|
vprint(f, format, args);
|
||||||
internal::reset_color<Char>(stdout);
|
if (has_style) {
|
||||||
|
internal::reset_color<Char>(f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
Formats a string and prints it to the specified file stream using ANSI
|
||||||
|
escape sequences to specify text formatting.
|
||||||
|
Example:
|
||||||
|
fmt::print(fmt::emphasis::bold | fg(fmt::color::red),
|
||||||
|
"Elapsed time: {0:.2f} seconds", 1.23);
|
||||||
|
*/
|
||||||
|
template <typename String, typename... Args>
|
||||||
|
typename std::enable_if<internal::is_string<String>::value>::type print(
|
||||||
|
std::FILE *f, const text_style &ts, const String &format_str,
|
||||||
|
const Args &... args) {
|
||||||
|
internal::check_format_string<Args...>(format_str);
|
||||||
|
typedef typename internal::char_t<String>::type char_t;
|
||||||
|
typedef typename buffer_context<char_t>::type context_t;
|
||||||
|
format_arg_store<context_t, Args...> as{args...};
|
||||||
|
vprint(f, ts, format_str, basic_format_args<context_t>(as));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -530,13 +563,10 @@ void vprint(const text_style &tf, const S &format,
|
|||||||
"Elapsed time: {0:.2f} seconds", 1.23);
|
"Elapsed time: {0:.2f} seconds", 1.23);
|
||||||
*/
|
*/
|
||||||
template <typename String, typename... Args>
|
template <typename String, typename... Args>
|
||||||
typename std::enable_if<internal::is_string<String>::value>::type
|
typename std::enable_if<internal::is_string<String>::value>::type print(
|
||||||
print(const text_style &tf, const String &format_str, const Args & ... args) {
|
const text_style &ts, const String &format_str,
|
||||||
internal::check_format_string<Args...>(format_str);
|
const Args &... args) {
|
||||||
typedef typename internal::char_t<String>::type char_t;
|
return print(stdout, ts, format_str, args...);
|
||||||
typedef typename buffer_context<char_t>::type context_t;
|
|
||||||
format_arg_store<context_t, Args...> as{args...};
|
|
||||||
vprint(tf, format_str, basic_format_args<context_t>(as));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@ -12,11 +12,6 @@
|
|||||||
#include <ctime>
|
#include <ctime>
|
||||||
#include <locale>
|
#include <locale>
|
||||||
|
|
||||||
#if FMT_HAS_INCLUDE(<chrono>)
|
|
||||||
# include <chrono>
|
|
||||||
# include <sstream>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
FMT_BEGIN_NAMESPACE
|
FMT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
// Prevents expansion of a preceding token as a function-style macro.
|
// Prevents expansion of a preceding token as a function-style macro.
|
||||||
@ -28,242 +23,8 @@ inline null<> localtime_r FMT_NOMACRO(...) { return null<>(); }
|
|||||||
inline null<> localtime_s(...) { return null<>(); }
|
inline null<> localtime_s(...) { return null<>(); }
|
||||||
inline null<> gmtime_r(...) { return null<>(); }
|
inline null<> gmtime_r(...) { return null<>(); }
|
||||||
inline null<> gmtime_s(...) { return null<>(); }
|
inline null<> gmtime_s(...) { return null<>(); }
|
||||||
|
|
||||||
enum class numeric_system {
|
|
||||||
standard,
|
|
||||||
// Alternative numeric system, e.g. 十二 instead of 12 in ja_JP locale.
|
|
||||||
alternative
|
|
||||||
};
|
|
||||||
|
|
||||||
// Parses a put_time-like format string and invokes handler actions.
|
|
||||||
template <typename Char, typename Handler>
|
|
||||||
FMT_CONSTEXPR const Char *parse_chrono_format(
|
|
||||||
const Char *begin, const Char *end, Handler &&handler) {
|
|
||||||
auto ptr = begin;
|
|
||||||
while (ptr != end) {
|
|
||||||
auto c = *ptr;
|
|
||||||
if (c == '}') break;
|
|
||||||
if (c != '%') {
|
|
||||||
++ptr;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (begin != ptr)
|
|
||||||
handler.on_text(begin, ptr);
|
|
||||||
++ptr; // consume '%'
|
|
||||||
if (ptr == end)
|
|
||||||
throw format_error("invalid format");
|
|
||||||
c = *ptr++;
|
|
||||||
switch (c) {
|
|
||||||
case '%':
|
|
||||||
handler.on_text(ptr - 1, ptr);
|
|
||||||
break;
|
|
||||||
// Day of the week:
|
|
||||||
case 'a':
|
|
||||||
handler.on_abbr_weekday();
|
|
||||||
break;
|
|
||||||
case 'A':
|
|
||||||
handler.on_full_weekday();
|
|
||||||
break;
|
|
||||||
case 'w':
|
|
||||||
handler.on_dec0_weekday(numeric_system::standard);
|
|
||||||
break;
|
|
||||||
case 'u':
|
|
||||||
handler.on_dec1_weekday(numeric_system::standard);
|
|
||||||
break;
|
|
||||||
// Month:
|
|
||||||
case 'b':
|
|
||||||
handler.on_abbr_month();
|
|
||||||
break;
|
|
||||||
case 'B':
|
|
||||||
handler.on_full_month();
|
|
||||||
break;
|
|
||||||
// Hour, minute, second:
|
|
||||||
case 'H':
|
|
||||||
handler.on_24_hour(numeric_system::standard);
|
|
||||||
break;
|
|
||||||
case 'I':
|
|
||||||
handler.on_12_hour(numeric_system::standard);
|
|
||||||
break;
|
|
||||||
case 'M':
|
|
||||||
handler.on_minute(numeric_system::standard);
|
|
||||||
break;
|
|
||||||
case 'S':
|
|
||||||
handler.on_second(numeric_system::standard);
|
|
||||||
break;
|
|
||||||
// Alternative numeric system:
|
|
||||||
case 'O':
|
|
||||||
if (ptr == end)
|
|
||||||
throw format_error("invalid format");
|
|
||||||
c = *ptr++;
|
|
||||||
switch (c) {
|
|
||||||
case 'w':
|
|
||||||
handler.on_dec0_weekday(numeric_system::alternative);
|
|
||||||
break;
|
|
||||||
case 'u':
|
|
||||||
handler.on_dec1_weekday(numeric_system::alternative);
|
|
||||||
break;
|
|
||||||
case 'H':
|
|
||||||
handler.on_24_hour(numeric_system::alternative);
|
|
||||||
break;
|
|
||||||
case 'I':
|
|
||||||
handler.on_12_hour(numeric_system::alternative);
|
|
||||||
break;
|
|
||||||
case 'M':
|
|
||||||
handler.on_minute(numeric_system::alternative);
|
|
||||||
break;
|
|
||||||
case 'S':
|
|
||||||
handler.on_second(numeric_system::alternative);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
// TODO: parse more format specifiers
|
|
||||||
}
|
|
||||||
begin = ptr;
|
|
||||||
}
|
|
||||||
if (begin != ptr)
|
|
||||||
handler.on_text(begin, ptr);
|
|
||||||
return ptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct chrono_format_checker {
|
|
||||||
template <typename Char>
|
|
||||||
void on_text(const Char *, const Char *) {}
|
|
||||||
void on_abbr_weekday() {}
|
|
||||||
void on_full_weekday() {}
|
|
||||||
void on_dec0_weekday(numeric_system) {}
|
|
||||||
void on_dec1_weekday(numeric_system) {}
|
|
||||||
void on_abbr_month() {}
|
|
||||||
void on_full_month() {}
|
|
||||||
void on_24_hour(numeric_system) {}
|
|
||||||
void on_12_hour(numeric_system) {}
|
|
||||||
void on_minute(numeric_system) {}
|
|
||||||
void on_second(numeric_system) {}
|
|
||||||
};
|
|
||||||
} // namespace internal
|
} // namespace internal
|
||||||
|
|
||||||
#ifdef __cpp_lib_chrono
|
|
||||||
namespace internal {
|
|
||||||
|
|
||||||
template <typename Int>
|
|
||||||
inline int to_int(Int value) {
|
|
||||||
FMT_ASSERT(value >= (std::numeric_limits<int>::min)() &&
|
|
||||||
value <= (std::numeric_limits<int>::max)(), "invalid value");
|
|
||||||
return static_cast<int>(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename FormatContext>
|
|
||||||
struct chrono_formatter {
|
|
||||||
FormatContext &context;
|
|
||||||
typename FormatContext::iterator out;
|
|
||||||
std::chrono::seconds s;
|
|
||||||
std::chrono::milliseconds ms;
|
|
||||||
|
|
||||||
using char_type = typename FormatContext::char_type;
|
|
||||||
|
|
||||||
explicit chrono_formatter(FormatContext &ctx)
|
|
||||||
: context(ctx), out(ctx.out()) {}
|
|
||||||
|
|
||||||
void write(int value, int width) {
|
|
||||||
typedef typename int_traits<int>::main_type main_type;
|
|
||||||
main_type n = to_unsigned(value);
|
|
||||||
int num_digits = static_cast<int>(internal::count_digits(n));
|
|
||||||
if (width > num_digits)
|
|
||||||
out = std::fill_n(out, width - num_digits, '0');
|
|
||||||
out = format_decimal<char_type>(out, n, num_digits);
|
|
||||||
}
|
|
||||||
|
|
||||||
void format_localized(const tm &time, char format) {
|
|
||||||
auto locale = context.locale().template get<std::locale>();
|
|
||||||
auto &facet = std::use_facet<std::time_put<char_type>>(locale);
|
|
||||||
std::basic_ostringstream<char_type> os;
|
|
||||||
os.imbue(locale);
|
|
||||||
const char format_str[] = {'%', 'O', format};
|
|
||||||
facet.put(os, os, ' ', &time, format_str, format_str + sizeof(format_str));
|
|
||||||
auto str = os.str();
|
|
||||||
std::copy(str.begin(), str.end(), out);
|
|
||||||
}
|
|
||||||
|
|
||||||
void on_text(const char_type *begin, const char_type *end) {
|
|
||||||
std::copy(begin, end, out);
|
|
||||||
}
|
|
||||||
|
|
||||||
void on_abbr_weekday() {}
|
|
||||||
void on_full_weekday() {}
|
|
||||||
void on_dec0_weekday(numeric_system) {}
|
|
||||||
void on_dec1_weekday(numeric_system) {}
|
|
||||||
void on_abbr_month() {}
|
|
||||||
void on_full_month() {}
|
|
||||||
|
|
||||||
void on_24_hour(numeric_system ns) {
|
|
||||||
auto hour = to_int((s.count() / 3600) % 24);
|
|
||||||
if (ns == numeric_system::standard)
|
|
||||||
return write(hour, 2);
|
|
||||||
auto time = tm();
|
|
||||||
time.tm_hour = hour;
|
|
||||||
format_localized(time, 'H');
|
|
||||||
}
|
|
||||||
|
|
||||||
void on_12_hour(numeric_system ns) {
|
|
||||||
auto hour = to_int((s.count() / 3600) % 12);
|
|
||||||
hour = hour > 0 ? hour : 12;
|
|
||||||
if (ns == numeric_system::standard)
|
|
||||||
return write(hour, 2);
|
|
||||||
auto time = tm();
|
|
||||||
time.tm_hour = hour;
|
|
||||||
format_localized(time, 'I');
|
|
||||||
}
|
|
||||||
|
|
||||||
void on_minute(numeric_system ns) {
|
|
||||||
auto minute = to_int((s.count() / 60) % 60);
|
|
||||||
if (ns == numeric_system::standard)
|
|
||||||
return write(minute, 2);
|
|
||||||
auto time = tm();
|
|
||||||
time.tm_min = minute;
|
|
||||||
format_localized(time, 'M');
|
|
||||||
}
|
|
||||||
|
|
||||||
void on_second(numeric_system ns) {
|
|
||||||
auto second = to_int(s.count() % 60);
|
|
||||||
if (ns == numeric_system::standard) {
|
|
||||||
write(second, 2);
|
|
||||||
if (ms != std::chrono::milliseconds()) {
|
|
||||||
*out++ = '.';
|
|
||||||
write(to_int(ms.count()), 3);
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
auto time = tm();
|
|
||||||
time.tm_sec = second;
|
|
||||||
format_localized(time, 'S');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
} // namespace internal
|
|
||||||
|
|
||||||
template <typename Rep, typename Period, typename Char>
|
|
||||||
struct formatter<std::chrono::duration<Rep, Period>, Char> {
|
|
||||||
mutable basic_string_view<Char> format_str;
|
|
||||||
using Duration = std::chrono::duration<Rep, Period>;
|
|
||||||
|
|
||||||
FMT_CONSTEXPR auto parse(basic_parse_context<Char> &ctx)
|
|
||||||
-> decltype(ctx.begin()) {
|
|
||||||
auto begin = ctx.begin(), end = ctx.end();
|
|
||||||
end = parse_chrono_format(begin, end, internal::chrono_format_checker());
|
|
||||||
format_str = basic_string_view<Char>(&*begin, end - begin);
|
|
||||||
return end;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <typename FormatContext>
|
|
||||||
auto format(const Duration &d, FormatContext &ctx)
|
|
||||||
-> decltype(ctx.out()) {
|
|
||||||
internal::chrono_formatter<FormatContext> f(ctx);
|
|
||||||
f.s = std::chrono::duration_cast<std::chrono::seconds>(d);
|
|
||||||
f.ms = std::chrono::duration_cast<std::chrono::milliseconds>(d - f.s);
|
|
||||||
parse_chrono_format(format_str.begin(), format_str.end(), f);
|
|
||||||
return f.out;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
#endif // __cpp_lib_chrono
|
|
||||||
|
|
||||||
// Thread-safe replacement for std::localtime
|
// Thread-safe replacement for std::localtime
|
||||||
inline std::tm localtime(std::time_t time) {
|
inline std::tm localtime(std::time_t time) {
|
||||||
struct dispatcher {
|
struct dispatcher {
|
||||||
|
|||||||
@ -85,6 +85,7 @@ function(add_fmt_test name)
|
|||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
add_fmt_test(assert-test)
|
add_fmt_test(assert-test)
|
||||||
|
add_fmt_test(chrono-test)
|
||||||
add_fmt_test(core-test)
|
add_fmt_test(core-test)
|
||||||
add_fmt_test(gtest-extra-test)
|
add_fmt_test(gtest-extra-test)
|
||||||
add_fmt_test(format-test mock-allocator.h)
|
add_fmt_test(format-test mock-allocator.h)
|
||||||
|
|||||||
170
test/chrono-test.cc
Normal file
170
test/chrono-test.cc
Normal file
@ -0,0 +1,170 @@
|
|||||||
|
// Formatting library for C++ - time formatting tests
|
||||||
|
//
|
||||||
|
// Copyright (c) 2012 - present, Victor Zverovich
|
||||||
|
// All rights reserved.
|
||||||
|
//
|
||||||
|
// For the license information refer to format.h.
|
||||||
|
|
||||||
|
#include "fmt/chrono.h"
|
||||||
|
#include "gtest-extra.h"
|
||||||
|
|
||||||
|
#include <iomanip>
|
||||||
|
|
||||||
|
std::tm make_tm() {
|
||||||
|
auto time = std::tm();
|
||||||
|
time.tm_mday = 1;
|
||||||
|
return time;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::tm make_hour(int h) {
|
||||||
|
auto time = make_tm();
|
||||||
|
time.tm_hour = h;
|
||||||
|
return time;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::tm make_minute(int m) {
|
||||||
|
auto time = make_tm();
|
||||||
|
time.tm_min = m;
|
||||||
|
return time;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::tm make_second(int s) {
|
||||||
|
auto time = make_tm();
|
||||||
|
time.tm_sec = s;
|
||||||
|
return time;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string format_tm(const std::tm &time, const char *spec,
|
||||||
|
const std::locale &loc) {
|
||||||
|
auto &facet = std::use_facet<std::time_put<char>>(loc);
|
||||||
|
std::ostringstream os;
|
||||||
|
os.imbue(loc);
|
||||||
|
facet.put(os, os, ' ', &time, spec, spec + std::strlen(spec));
|
||||||
|
return os.str();
|
||||||
|
}
|
||||||
|
|
||||||
|
#define EXPECT_TIME(spec, time, duration) { \
|
||||||
|
std::locale loc("ja_JP.utf8"); \
|
||||||
|
EXPECT_EQ(format_tm(time, spec, loc), \
|
||||||
|
fmt::format(loc, "{:" spec "}", duration)); \
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ChronoTest, FormatDefault) {
|
||||||
|
EXPECT_EQ("42s", fmt::format("{}", std::chrono::seconds(42)));
|
||||||
|
EXPECT_EQ("42as",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::atto>(42)));
|
||||||
|
EXPECT_EQ("42fs",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::femto>(42)));
|
||||||
|
EXPECT_EQ("42ps",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::pico>(42)));
|
||||||
|
EXPECT_EQ("42ns", fmt::format("{}", std::chrono::nanoseconds(42)));
|
||||||
|
EXPECT_EQ("42µs", fmt::format("{}", std::chrono::microseconds(42)));
|
||||||
|
EXPECT_EQ("42ms", fmt::format("{}", std::chrono::milliseconds(42)));
|
||||||
|
EXPECT_EQ("42cs",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::centi>(42)));
|
||||||
|
EXPECT_EQ("42ds",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::deci>(42)));
|
||||||
|
EXPECT_EQ("42s", fmt::format("{}", std::chrono::seconds(42)));
|
||||||
|
EXPECT_EQ("42das",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::deca>(42)));
|
||||||
|
EXPECT_EQ("42hs",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::hecto>(42)));
|
||||||
|
EXPECT_EQ("42ks",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::kilo>(42)));
|
||||||
|
EXPECT_EQ("42Ms",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::mega>(42)));
|
||||||
|
EXPECT_EQ("42Gs",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::giga>(42)));
|
||||||
|
EXPECT_EQ("42Ts",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::tera>(42)));
|
||||||
|
EXPECT_EQ("42Ps",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::peta>(42)));
|
||||||
|
EXPECT_EQ("42Es",
|
||||||
|
fmt::format("{}", std::chrono::duration<int, std::exa>(42)));
|
||||||
|
EXPECT_EQ("42m", fmt::format("{}", std::chrono::minutes(42)));
|
||||||
|
EXPECT_EQ("42h", fmt::format("{}", std::chrono::hours(42)));
|
||||||
|
EXPECT_EQ("42[15s]",
|
||||||
|
fmt::format("{}",
|
||||||
|
std::chrono::duration<int, std::ratio<15, 1>>(42)));
|
||||||
|
EXPECT_EQ("42[15/4s]",
|
||||||
|
fmt::format("{}",
|
||||||
|
std::chrono::duration<int, std::ratio<15, 4>>(42)));
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ChronoTest, FormatSpecs) {
|
||||||
|
EXPECT_EQ("%", fmt::format("{:%%}", std::chrono::seconds(0)));
|
||||||
|
EXPECT_EQ("\n", fmt::format("{:%n}", std::chrono::seconds(0)));
|
||||||
|
EXPECT_EQ("\t", fmt::format("{:%t}", std::chrono::seconds(0)));
|
||||||
|
EXPECT_EQ("00", fmt::format("{:%S}", std::chrono::seconds(0)));
|
||||||
|
EXPECT_EQ("00", fmt::format("{:%S}", std::chrono::seconds(60)));
|
||||||
|
EXPECT_EQ("42", fmt::format("{:%S}", std::chrono::seconds(42)));
|
||||||
|
EXPECT_EQ("01.234", fmt::format("{:%S}", std::chrono::milliseconds(1234)));
|
||||||
|
EXPECT_EQ("00", fmt::format("{:%M}", std::chrono::minutes(0)));
|
||||||
|
EXPECT_EQ("00", fmt::format("{:%M}", std::chrono::minutes(60)));
|
||||||
|
EXPECT_EQ("42", fmt::format("{:%M}", std::chrono::minutes(42)));
|
||||||
|
EXPECT_EQ("01", fmt::format("{:%M}", std::chrono::seconds(61)));
|
||||||
|
EXPECT_EQ("00", fmt::format("{:%H}", std::chrono::hours(0)));
|
||||||
|
EXPECT_EQ("00", fmt::format("{:%H}", std::chrono::hours(24)));
|
||||||
|
EXPECT_EQ("14", fmt::format("{:%H}", std::chrono::hours(14)));
|
||||||
|
EXPECT_EQ("01", fmt::format("{:%H}", std::chrono::minutes(61)));
|
||||||
|
EXPECT_EQ("12", fmt::format("{:%I}", std::chrono::hours(0)));
|
||||||
|
EXPECT_EQ("12", fmt::format("{:%I}", std::chrono::hours(12)));
|
||||||
|
EXPECT_EQ("12", fmt::format("{:%I}", std::chrono::hours(24)));
|
||||||
|
EXPECT_EQ("04", fmt::format("{:%I}", std::chrono::hours(4)));
|
||||||
|
EXPECT_EQ("02", fmt::format("{:%I}", std::chrono::hours(14)));
|
||||||
|
EXPECT_EQ("03:25:45",
|
||||||
|
fmt::format("{:%H:%M:%S}", std::chrono::seconds(12345)));
|
||||||
|
EXPECT_EQ("03:25", fmt::format("{:%R}", std::chrono::seconds(12345)));
|
||||||
|
EXPECT_EQ("03:25:45", fmt::format("{:%T}", std::chrono::seconds(12345)));
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ChronoTest, InvalidSpecs) {
|
||||||
|
auto sec = std::chrono::seconds(0);
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%a}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%A}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%c}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%x}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%Ex}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%X}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%EX}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%D}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%F}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%Ec}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%w}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%u}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%b}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%B}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%z}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%Z}", sec), fmt::format_error, "no date");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%q}", sec), fmt::format_error,
|
||||||
|
"invalid format");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%Eq}", sec), fmt::format_error,
|
||||||
|
"invalid format");
|
||||||
|
EXPECT_THROW_MSG(fmt::format("{:%Oq}", sec), fmt::format_error,
|
||||||
|
"invalid format");
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ChronoTest, Locale) {
|
||||||
|
const char *loc_name = "ja_JP.utf8";
|
||||||
|
bool has_locale = false;
|
||||||
|
std::locale loc;
|
||||||
|
try {
|
||||||
|
loc = std::locale(loc_name);
|
||||||
|
has_locale = true;
|
||||||
|
} catch (const std::runtime_error &) {}
|
||||||
|
if (!has_locale) {
|
||||||
|
fmt::print("{} locale is missing.\n", loc_name);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
EXPECT_TIME("%OH", make_hour(14), std::chrono::hours(14));
|
||||||
|
EXPECT_TIME("%OI", make_hour(14), std::chrono::hours(14));
|
||||||
|
EXPECT_TIME("%OM", make_minute(42), std::chrono::minutes(42));
|
||||||
|
EXPECT_TIME("%OS", make_second(42), std::chrono::seconds(42));
|
||||||
|
auto time = make_tm();
|
||||||
|
time.tm_hour = 3;
|
||||||
|
time.tm_min = 25;
|
||||||
|
time.tm_sec = 45;
|
||||||
|
auto sec = std::chrono::seconds(12345);
|
||||||
|
EXPECT_TIME("%r", time, sec);
|
||||||
|
EXPECT_TIME("%p", time, sec);
|
||||||
|
}
|
||||||
@ -228,6 +228,11 @@ TEST(ColorsTest, Colors) {
|
|||||||
stdout,
|
stdout,
|
||||||
fmt::print(fg(fmt::color::blue) | fmt::emphasis::bold, "blue/bold"),
|
fmt::print(fg(fmt::color::blue) | fmt::emphasis::bold, "blue/bold"),
|
||||||
"\x1b[1m\x1b[38;2;000;000;255mblue/bold\x1b[0m");
|
"\x1b[1m\x1b[38;2;000;000;255mblue/bold\x1b[0m");
|
||||||
|
EXPECT_WRITE(stderr, fmt::print(stderr, fmt::emphasis::bold, "bold error"),
|
||||||
|
"\x1b[1mbold error\x1b[0m");
|
||||||
|
EXPECT_WRITE(stderr, fmt::print(stderr, fg(fmt::color::blue), "blue log"),
|
||||||
|
"\x1b[38;2;000;000;255mblue log\x1b[0m");
|
||||||
|
EXPECT_WRITE(stdout, fmt::print(fmt::text_style(), "hi"), "hi");
|
||||||
EXPECT_WRITE(stdout, fmt::print(fg(fmt::terminal_color::red), "tred"),
|
EXPECT_WRITE(stdout, fmt::print(fg(fmt::terminal_color::red), "tred"),
|
||||||
"\x1b[31mtred\x1b[0m");
|
"\x1b[31mtred\x1b[0m");
|
||||||
EXPECT_WRITE(stdout, fmt::print(bg(fmt::terminal_color::cyan), "tcyan"),
|
EXPECT_WRITE(stdout, fmt::print(bg(fmt::terminal_color::cyan), "tcyan"),
|
||||||
|
|||||||
@ -311,8 +311,8 @@ using fmt::error_code;
|
|||||||
using fmt::file;
|
using fmt::file;
|
||||||
|
|
||||||
TEST(ErrorCodeTest, Ctor) {
|
TEST(ErrorCodeTest, Ctor) {
|
||||||
EXPECT_EQ(0, error_code().get());
|
EXPECT_EQ(error_code().get(), 0);
|
||||||
EXPECT_EQ(42, error_code(42).get());
|
EXPECT_EQ(error_code(42).get(), 42);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(OutputRedirectTest, ScopedRedirect) {
|
TEST(OutputRedirectTest, ScopedRedirect) {
|
||||||
|
|||||||
@ -334,7 +334,7 @@ TEST(FileTest, Dup2NoExcept) {
|
|||||||
file copy = open_file();
|
file copy = open_file();
|
||||||
error_code ec;
|
error_code ec;
|
||||||
f.dup2(copy.descriptor(), ec);
|
f.dup2(copy.descriptor(), ec);
|
||||||
EXPECT_EQ(0, ec.get());
|
EXPECT_EQ(ec.get(), 0);
|
||||||
EXPECT_NE(f.descriptor(), copy.descriptor());
|
EXPECT_NE(f.descriptor(), copy.descriptor());
|
||||||
EXPECT_READ(copy, FILE_CONTENT);
|
EXPECT_READ(copy, FILE_CONTENT);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -66,61 +66,3 @@ TEST(TimeTest, GMTime) {
|
|||||||
std::tm tm = *std::gmtime(&t);
|
std::tm tm = *std::gmtime(&t);
|
||||||
EXPECT_TRUE(EqualTime(tm, fmt::gmtime(t)));
|
EXPECT_TRUE(EqualTime(tm, fmt::gmtime(t)));
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __cpp_lib_chrono
|
|
||||||
TEST(TimeTest, Chrono) {
|
|
||||||
EXPECT_EQ("00", fmt::format("{:%S}", std::chrono::seconds(0)));
|
|
||||||
EXPECT_EQ("00", fmt::format("{:%S}", std::chrono::seconds(60)));
|
|
||||||
EXPECT_EQ("42", fmt::format("{:%S}", std::chrono::seconds(42)));
|
|
||||||
EXPECT_EQ("01.234", fmt::format("{:%S}", std::chrono::milliseconds(1234)));
|
|
||||||
EXPECT_EQ("00", fmt::format("{:%M}", std::chrono::minutes(0)));
|
|
||||||
EXPECT_EQ("00", fmt::format("{:%M}", std::chrono::minutes(60)));
|
|
||||||
EXPECT_EQ("42", fmt::format("{:%M}", std::chrono::minutes(42)));
|
|
||||||
EXPECT_EQ("01", fmt::format("{:%M}", std::chrono::seconds(61)));
|
|
||||||
EXPECT_EQ("00", fmt::format("{:%H}", std::chrono::hours(0)));
|
|
||||||
EXPECT_EQ("00", fmt::format("{:%H}", std::chrono::hours(24)));
|
|
||||||
EXPECT_EQ("14", fmt::format("{:%H}", std::chrono::hours(14)));
|
|
||||||
EXPECT_EQ("01", fmt::format("{:%H}", std::chrono::minutes(61)));
|
|
||||||
EXPECT_EQ("12", fmt::format("{:%I}", std::chrono::hours(0)));
|
|
||||||
EXPECT_EQ("12", fmt::format("{:%I}", std::chrono::hours(12)));
|
|
||||||
EXPECT_EQ("12", fmt::format("{:%I}", std::chrono::hours(24)));
|
|
||||||
EXPECT_EQ("04", fmt::format("{:%I}", std::chrono::hours(4)));
|
|
||||||
EXPECT_EQ("02", fmt::format("{:%I}", std::chrono::hours(14)));
|
|
||||||
EXPECT_EQ("03:25:45",
|
|
||||||
fmt::format("{:%H:%M:%S}", std::chrono::seconds(12345)));
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string format_tm(const std::tm &time, const char *spec,
|
|
||||||
const std::locale &loc) {
|
|
||||||
std::ostringstream os;
|
|
||||||
os.imbue(loc);
|
|
||||||
os << std::put_time(&time, spec);
|
|
||||||
return os.str();
|
|
||||||
}
|
|
||||||
|
|
||||||
#define EXPECT_TIME(spec, field, value, duration) { \
|
|
||||||
auto time = std::tm(); \
|
|
||||||
time.field = value; \
|
|
||||||
std::locale("ja_JP.utf8"); \
|
|
||||||
EXPECT_EQ(format_tm(time, spec, loc), \
|
|
||||||
fmt::format(loc, "{:" spec "}", std::chrono::duration(value))); \
|
|
||||||
}
|
|
||||||
|
|
||||||
TEST(TimeTest, ChronoLocale) {
|
|
||||||
const char *loc_name = "ja_JP.utf8";
|
|
||||||
bool has_locale = false;
|
|
||||||
std::locale loc;
|
|
||||||
try {
|
|
||||||
loc = std::locale(loc_name);
|
|
||||||
has_locale = true;
|
|
||||||
} catch (const std::runtime_error &) {}
|
|
||||||
if (!has_locale) {
|
|
||||||
fmt::print("{} locale is missing.\n", loc_name);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
EXPECT_TIME("%OH", tm_hour, 14, hours);
|
|
||||||
EXPECT_TIME("%OI", tm_hour, 14, hours);
|
|
||||||
EXPECT_TIME("%OM", tm_min, 42, minutes);
|
|
||||||
EXPECT_TIME("%OS", tm_sec, 42, seconds);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user