2018-03-04 17:16:51 +00:00
|
|
|
// Formatting library for C++ - custom argument formatter tests
|
|
|
|
//
|
|
|
|
// Copyright (c) 2012 - present, Victor Zverovich
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// For the license information refer to format.h.
|
|
|
|
|
|
|
|
#include "fmt/format.h"
|
2016-06-07 23:23:32 +00:00
|
|
|
#include "gtest-extra.h"
|
|
|
|
|
|
|
|
// A custom argument formatter that doesn't print `-` for floating-point values
|
|
|
|
// rounded to 0.
|
2018-03-04 17:16:51 +00:00
|
|
|
class custom_arg_formatter :
|
2018-01-15 16:22:31 +00:00
|
|
|
public fmt::arg_formatter<fmt::back_insert_range<fmt::internal::buffer>> {
|
2016-06-07 23:23:32 +00:00
|
|
|
public:
|
2018-02-11 17:23:47 +00:00
|
|
|
typedef fmt::back_insert_range<fmt::internal::buffer> range;
|
|
|
|
typedef fmt::arg_formatter<range> base;
|
2018-01-14 15:19:23 +00:00
|
|
|
|
2018-04-08 14:03:44 +00:00
|
|
|
custom_arg_formatter(fmt::format_context &ctx, fmt::format_specs &s)
|
2018-01-15 16:22:31 +00:00
|
|
|
: base(ctx, s) {}
|
2016-06-07 23:23:32 +00:00
|
|
|
|
2018-01-14 15:19:23 +00:00
|
|
|
using base::operator();
|
2016-11-20 16:47:24 +00:00
|
|
|
|
2018-03-30 18:20:12 +00:00
|
|
|
iterator operator()(double value) {
|
2018-06-06 13:57:59 +00:00
|
|
|
#if FMT_GCC_VERSION
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wfloat-equal"
|
|
|
|
#endif
|
|
|
|
// Comparing a float to 0.0 is safe
|
|
|
|
if (round(value * pow(10, spec().precision())) == 0.0)
|
2016-06-07 23:23:32 +00:00
|
|
|
value = 0;
|
2018-03-30 18:20:12 +00:00
|
|
|
return base::operator()(value);
|
2018-06-06 13:57:59 +00:00
|
|
|
#if FMT_GCC_VERSION
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
#endif
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-06-06 13:57:59 +00:00
|
|
|
static std::string custom_vformat(fmt::string_view format_str, fmt::format_args args) {
|
2017-02-18 17:13:12 +00:00
|
|
|
fmt::memory_buffer buffer;
|
2017-02-14 21:29:47 +00:00
|
|
|
// Pass custom argument formatter as a template arg to vwrite.
|
2018-03-04 17:16:51 +00:00
|
|
|
fmt::vformat_to<custom_arg_formatter>(buffer, format_str, args);
|
2017-02-14 21:29:47 +00:00
|
|
|
return std::string(buffer.data(), buffer.size());
|
2016-06-07 23:23:32 +00:00
|
|
|
}
|
|
|
|
|
2016-08-27 00:23:13 +00:00
|
|
|
template <typename... Args>
|
|
|
|
std::string custom_format(const char *format_str, const Args & ... args) {
|
2018-04-08 14:21:26 +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-06-07 23:23:32 +00:00
|
|
|
TEST(CustomFormatterTest, Format) {
|
|
|
|
EXPECT_EQ("0.00", custom_format("{:.2f}", -.00001));
|
|
|
|
}
|