Skip to content

Commit e281749

Browse files
committed
Simplify range formatter
1 parent 11f2f30 commit e281749

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

include/fmt/base.h

+6-4
Original file line numberDiff line numberDiff line change
@@ -2961,8 +2961,8 @@ template <typename OutputIt, typename Sentinel = OutputIt>
29612961
struct format_to_result {
29622962
/** Iterator pointing to just after the last successful write in the range. */
29632963
OutputIt out;
2964-
/** Sentinel indicating the end of the output range. */
2965-
Sentinel out_last;
2964+
/** Specifies if the output was truncated. */
2965+
bool truncated;
29662966

29672967
FMT_CONSTEXPR operator OutputIt&() & noexcept { return out; }
29682968
FMT_CONSTEXPR operator const OutputIt&() const& noexcept { return out; }
@@ -2974,13 +2974,15 @@ struct format_to_result {
29742974
template <size_t N>
29752975
auto vformat_to(char (&out)[N], string_view fmt, format_args args)
29762976
-> format_to_result<char*> {
2977-
return {vformat_to_n(out, N, fmt, args).out, out + N};
2977+
auto result = vformat_to_n(out, N, fmt, args);
2978+
return {result.out, result.size > N};
29782979
}
29792980

29802981
template <size_t N, typename... T>
29812982
FMT_INLINE auto format_to(char (&out)[N], format_string<T...> fmt, T&&... args)
29822983
-> format_to_result<char*> {
2983-
return vformat_to(out, fmt, fmt::make_format_args(args...));
2984+
auto result = fmt::format_to_n(out, N, fmt, static_cast<T&&>(args)...);
2985+
return {result.out, result.size > N};
29842986
}
29852987

29862988
/** Returns the number of chars in the output of ``format(fmt, args...)``. */

test/base-test.cc

+6-6
Original file line numberDiff line numberDiff line change
@@ -697,13 +697,13 @@ TEST(core_test, format_to_c_array) {
697697
char buffer[4];
698698
auto result = fmt::format_to(buffer, "{}", 12345);
699699
EXPECT_EQ(4, std::distance(&buffer[0], result.out));
700-
EXPECT_EQ(0, std::distance(result.out, result.out_last));
700+
EXPECT_TRUE(result.truncated);
701701
EXPECT_EQ(buffer + 4, result.out);
702702
EXPECT_EQ("1234", fmt::string_view(buffer, 4));
703703

704704
result = fmt::format_to(buffer, "{:s}", "foobar");
705705
EXPECT_EQ(4, std::distance(&buffer[0], result.out));
706-
EXPECT_EQ(0, std::distance(result.out, result.out_last));
706+
EXPECT_TRUE(result.truncated);
707707
EXPECT_EQ(buffer + 4, result.out);
708708
EXPECT_EQ("foob", fmt::string_view(buffer, 4));
709709

@@ -713,24 +713,24 @@ TEST(core_test, format_to_c_array) {
713713
buffer[3] = 'x';
714714
result = fmt::format_to(buffer, "{}", 'A');
715715
EXPECT_EQ(1, std::distance(&buffer[0], result.out));
716-
EXPECT_EQ(3, std::distance(result.out, result.out_last));
716+
EXPECT_FALSE(result.truncated);
717717
EXPECT_EQ(buffer + 1, result.out);
718718
EXPECT_EQ("Axxx", fmt::string_view(buffer, 4));
719719

720720
result = fmt::format_to(buffer, "{}{} ", 'B', 'C');
721721
EXPECT_EQ(3, std::distance(&buffer[0], result.out));
722-
EXPECT_EQ(1, std::distance(result.out, result.out_last));
722+
EXPECT_FALSE(result.truncated);
723723
EXPECT_EQ(buffer + 3, result.out);
724724
EXPECT_EQ("BC x", fmt::string_view(buffer, 4));
725725

726726
result = fmt::format_to(buffer, "{}", "ABCDE");
727727
EXPECT_EQ(4, std::distance(&buffer[0], result.out));
728-
EXPECT_EQ(0, std::distance(result.out, result.out_last));
728+
EXPECT_TRUE(result.truncated);
729729
EXPECT_EQ("ABCD", fmt::string_view(buffer, 4));
730730

731731
result = fmt::format_to(buffer, "{}", std::string(1000, '*'));
732732
EXPECT_EQ(4, std::distance(&buffer[0], result.out));
733-
EXPECT_EQ(0, std::distance(result.out, result.out_last));
733+
EXPECT_TRUE(result.truncated);
734734
EXPECT_EQ("****", fmt::string_view(buffer, 4));
735735
}
736736

0 commit comments

Comments
 (0)