| 
									
										
										
										
											2016-06-08 01:23:32 +02: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"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 07:46:32 -08:00
										 |  |  | using fmt::printf_arg_formatter; | 
					
						
							| 
									
										
										
										
											2016-06-08 01:23:32 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | // A custom argument formatter that doesn't print `-` for floating-point values
 | 
					
						
							|  |  |  | // rounded to 0.
 | 
					
						
							| 
									
										
										
										
											2018-01-14 07:19:23 -08:00
										 |  |  | class CustomArgFormatter : | 
					
						
							| 
									
										
										
										
											2018-01-15 08:22:31 -08:00
										 |  |  |     public fmt::arg_formatter<fmt::back_insert_range<fmt::internal::buffer>> { | 
					
						
							| 
									
										
										
										
											2016-06-08 01:23:32 +02:00
										 |  |  |  public: | 
					
						
							| 
									
										
										
										
											2018-02-11 09:23:47 -08:00
										 |  |  |   typedef fmt::back_insert_range<fmt::internal::buffer> range; | 
					
						
							| 
									
										
										
										
											2018-03-03 14:04:59 -08:00
										 |  |  |   typedef decltype(fmt::internal::declval<range>().begin()) iterator; | 
					
						
							| 
									
										
										
										
											2018-02-11 09:23:47 -08:00
										 |  |  |   typedef fmt::arg_formatter<range> base; | 
					
						
							| 
									
										
										
										
											2018-01-14 07:19:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-21 14:30:38 -08:00
										 |  |  |   CustomArgFormatter(fmt::basic_context<iterator, char> &ctx, | 
					
						
							|  |  |  |                      fmt::format_specs &s) | 
					
						
							| 
									
										
										
										
											2018-01-15 08:22:31 -08:00
										 |  |  |   : base(ctx, s) {} | 
					
						
							| 
									
										
										
										
											2016-06-08 01:23:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-14 07:19:23 -08:00
										 |  |  |   using base::operator(); | 
					
						
							| 
									
										
										
										
											2016-11-20 08:47:24 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   void operator()(double value) { | 
					
						
							| 
									
										
										
										
											2016-06-08 01:23:32 +02:00
										 |  |  |     if (round(value * pow(10, spec().precision())) == 0) | 
					
						
							|  |  |  |       value = 0; | 
					
						
							| 
									
										
										
										
											2018-01-14 07:19:23 -08:00
										 |  |  |     base::operator()(value); | 
					
						
							| 
									
										
										
										
											2016-06-08 01:23:32 +02:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-03 07:32:04 -08:00
										 |  |  | std::string custom_vformat(fmt::string_view format_str, fmt::format_args args) { | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  |   fmt::memory_buffer buffer; | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  |   // Pass custom argument formatter as a template arg to vwrite.
 | 
					
						
							| 
									
										
										
										
											2018-03-04 06:40:43 -08:00
										 |  |  |   fmt::vformat_to<CustomArgFormatter>(buffer, format_str, args); | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  |   return std::string(buffer.data(), buffer.size()); | 
					
						
							| 
									
										
										
										
											2016-06-08 01:23:32 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  | template <typename... Args> | 
					
						
							|  |  |  | std::string custom_format(const char *format_str, const Args & ... args) { | 
					
						
							| 
									
										
										
										
											2017-02-05 06:41:39 -08:00
										 |  |  |   auto va = fmt::make_args(args...); | 
					
						
							| 
									
										
										
										
											2016-08-27 07:57:48 -07:00
										 |  |  |   return custom_vformat(format_str, va); | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 01:23:32 +02:00
										 |  |  | TEST(CustomFormatterTest, Format) { | 
					
						
							|  |  |  |   EXPECT_EQ("0.00", custom_format("{:.2f}", -.00001)); | 
					
						
							|  |  |  | } |