Feature #18579
closedConcatenation of ASCII-8BIT strings shouldn't behave differently depending on string contents
Description
Currently strings tagged with ASCII-8BIT will behave differently when concatenating depending on the string contents.
When concatenating strings the resulting string has the encoding of the LHS. For example:
z = a + b
z
will have the encoding of a
(if the encodings are compatible).
However ASCII-8BIT
behaves differently. If b
has "ASCII-8BIT" encoding, then the encoding of z
will sometimes be the encoding of a
, sometimes it will be the encoding of b
, and sometimes it will be an exception.
Here is an example program:
def concat a, b
str = a + b
str
end
concat "bar", "foo".encode("US-ASCII") # Return value encoding is LHS, UTF-8
concat "bar".encode("US-ASCII"), "foo".b # Return value encoding is LHS, US-ASCII
concat "ほげ", "foo".b # Return value encoding is LHS, UTF-8
concat "bar", "bad\376\377str".b # Return value encoding is RHS, ASCII-8BIT. Why?
concat "ほげ", "bad\376\377str".b # Exception
This behavior is too hard to understand. Usually we think LHS encoding will win, or there will be an exception. Even worse is that string concatenation can "infect" strings. For example:
def concat a, b
str = a + b
str
end
str = concat "bar", "bad\376\377str".b # this worked
p str
str = concat "ほげ", str # exception
p str
The first concatenation succeeded, but the second one failed. As a developer it is difficult to find where the "bad string" was introduced. In the above example, the string may have been read from the network, but by the time an exception is raised it is far from where the "bad string" originated. In the above example, the bad data came from like 6, but the exception was raised on line 8.
I propose that ASCII-8BIT strings raise an exception if they cannot be converted in to the LHS encoding. So the above program would become like this:
def concat a, b
str = a + b
str
end
concat "bar", "foo".encode("US-ASCII") # Return value encoding is LHS, UTF-8
concat "bar".encode("US-ASCII"), "foo".b # Return value encoding is LHS, US-ASCII
concat "ほげ", "foo".b # Return value encoding is LHS, UTF-8
concat "bar", "bad\376\377str".b # Exception <--- NEW!!
concat "ほげ", "bad\376\377str".b # Exception
I'm open to other solutions, but the underlying issue is that concatenating an ASCII-8BIT string with a non-ASCII-8BIT string is usually a bug and by the time an exception is raised, it is very far from the origin of the string.