2016-06-07 23:23:32 +00:00
|
|
|
/*
|
|
|
|
Custom argument formatter tests
|
|
|
|
|
|
|
|
Copyright (c) 2016, Victor Zverovich
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
For the license information refer to format.h.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fmt/printf.h"
|
|
|
|
#include "gtest-extra.h"
|
|
|
|
|
2016-11-20 15:42:38 +00:00
|
|
|
using fmt::PrintfArgFormatter;
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
// A custom argument formatter that doesn't print `-` for floating-point values
|
|
|
|
// rounded to 0.
|
2016-11-20 17:36:27 +00:00
|
|
|
class CustomArgFormatter : public fmt::ArgFormatter<char> {
|
2016-06-07 23:23:32 +00:00
|
|
|
public:
|
2016-11-07 00:11:24 +00:00
|
|
|
CustomArgFormatter(fmt::Writer &w, fmt::basic_format_context<char> &ctx,
|
|
|
|
fmt::FormatSpec &s)
|
2016-11-20 17:36:27 +00:00
|
|
|
: fmt::ArgFormatter<char>(w, ctx, s) {}
|
2016-06-07 23:23:32 +00:00
|
|
|
|
2016-11-20 17:36:27 +00:00
|
|
|
using fmt::ArgFormatter<char>::operator();
|
2016-11-20 16:47:24 +00:00
|
|
|
|
|
|
|
void operator()(double value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
if (round(value * pow(10, spec().precision())) == 0)
|
|
|
|
value = 0;
|
2016-11-20 17:36:27 +00:00
|
|
|
fmt::ArgFormatter<char>::operator()(value);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// A custom argument formatter that doesn't print `-` for floating-point values
|
|
|
|
// rounded to 0.
|
2016-11-20 15:42:38 +00:00
|
|
|
class CustomPrintfArgFormatter : public PrintfArgFormatter<char> {
|
2016-06-07 23:23:32 +00:00
|
|
|
public:
|
2016-07-21 13:59:28 +00:00
|
|
|
CustomPrintfArgFormatter(fmt::BasicWriter<char> &w, fmt::FormatSpec &spec)
|
2016-11-20 15:42:38 +00:00
|
|
|
: PrintfArgFormatter<char>(w, spec) {}
|
2016-06-07 23:23:32 +00:00
|
|
|
|
2016-11-20 15:42:38 +00:00
|
|
|
using PrintfArgFormatter<char>::operator();
|
|
|
|
|
|
|
|
void operator()(double value) {
|
2016-06-07 23:23:32 +00:00
|
|
|
if (round(value * pow(10, spec().precision())) == 0)
|
|
|
|
value = 0;
|
2016-11-20 15:42:38 +00:00
|
|
|
PrintfArgFormatter<char>::operator()(value);
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-11-07 00:11:24 +00:00
|
|
|
std::string custom_vformat(fmt::CStringRef format_str, fmt::format_args args) {
|
2016-06-07 23:23:32 +00:00
|
|
|
fmt::MemoryWriter writer;
|
2016-10-27 00:54:11 +00:00
|
|
|
// Pass custom argument formatter as a template arg to vformat.
|
|
|
|
fmt::vformat<CustomArgFormatter>(writer, format_str, args);
|
2016-06-07 23:23:32 +00:00
|
|
|
return writer.str();
|
|
|
|
}
|
|
|
|
|
2016-08-27 00:23:13 +00:00
|
|
|
template <typename... Args>
|
|
|
|
std::string custom_format(const char *format_str, const Args & ... args) {
|
2016-11-07 03:27:14 +00:00
|
|
|
auto va = fmt::make_format_args(args...);
|
2016-08-27 14:57:48 +00:00
|
|
|
return custom_vformat(format_str, va);
|
2016-08-27 00:23:13 +00:00
|
|
|
}
|
|
|
|
|
2016-11-07 00:11:24 +00:00
|
|
|
typedef fmt::printf_context<char, CustomPrintfArgFormatter>
|
2016-10-07 15:37:06 +00:00
|
|
|
CustomPrintfFormatter;
|
|
|
|
|
|
|
|
std::string custom_vsprintf(
|
|
|
|
const char* format_str,
|
2016-12-30 18:19:38 +00:00
|
|
|
fmt::basic_format_args<CustomPrintfFormatter> args) {
|
2016-06-07 23:23:32 +00:00
|
|
|
fmt::MemoryWriter writer;
|
2016-11-07 00:11:24 +00:00
|
|
|
CustomPrintfFormatter formatter(format_str, args);
|
|
|
|
formatter.format(writer);
|
2016-06-07 23:23:32 +00:00
|
|
|
return writer.str();
|
|
|
|
}
|
2016-08-27 00:23:13 +00:00
|
|
|
|
|
|
|
template <typename... Args>
|
|
|
|
std::string custom_sprintf(const char *format_str, const Args & ... args) {
|
2016-11-07 03:27:14 +00:00
|
|
|
auto va = fmt::make_xformat_args<CustomPrintfFormatter>(args...);
|
2016-08-27 14:57:48 +00:00
|
|
|
return custom_vsprintf(format_str, va);
|
2016-08-27 00:23:13 +00:00
|
|
|
}
|
2016-06-07 23:23:32 +00:00
|
|
|
|
|
|
|
TEST(CustomFormatterTest, Format) {
|
|
|
|
EXPECT_EQ("0.00", custom_format("{:.2f}", -.00001));
|
|
|
|
EXPECT_EQ("0.00", custom_sprintf("%.2f", -.00001));
|
|
|
|
}
|