Title
What if arguments alias the output buffer in `std::format_to`?
Status
new
Section
[format.functions]
Submitter
Jan Schultke

Created on 2024-04-24.00:00:00 last changed 3 weeks ago

Messages

Date: 2024-04-24.00:00:00
int main() {
  int x = 12345;
  // note: this is "awoo" followed by 28 zeros ([dcl.init.string] p3)
  char buffer[32] = "awoo";
  std::format_to(buffer, "{}{}", x, buffer);
  std::println("{}", buffer);
}

The output of this code is unspecified to be either "1234512345" or "12345awoo", where GCC currently outputs the former. Formatting occurs through function calls (see [format.formatter.spec] p1) and those cannot be unsequenced, however, it's also nowhere stated in what order the arguments get formatted and how the output iterator is advanced between calls to the formatters.

The status quo is undesirable because unspecified formatting output is not useful to the user, and the lack of a precondition which would forbid aliasing between arguments and the output buffer restricts the implementation.

My intuition is to add Preconditions specifications to functions in [format.functions] which would forbid the output range of the output iterator to overlap ranges of the arguments.

A friend of mine has suggested to add a Preconditions to the BasicFormatter requirements instead, dealing with the issue at the root (f.format(u, fc)).

History
Date User Action Args
2024-04-24 00:00:00admincreate