Closed Bug 819869 Opened 12 years ago Closed 7 years ago

Remove support for non-default replacement character support from nsIConverterOutputStream

Categories

(Core :: Internationalization, defect)

defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla56

People

(Reporter: hsivonen, Assigned: hsivonen)

References

Details

(Whiteboard: [fixed by encoding_rs])

The support for non-default replacement characters in nsIConverterInputStream complicates the implementation but does not seem to have proper use cases.

We should remove support for non-default replacement characters either by changing the signature to drop the last parameter or by making the initialization with a non-default value throw.
We need to remove nsIUnicodeDecoder::GetCharacterForUnMapped() first. It does not return U+FFFD for Shift_JIS.
Depends on: 736438
IIANM this is orthogonal to bug 736438 and bug 593338. Those have minor interoperability and backward compatibility concerns, but I think this should just be fixed. It looks to as if nsIConverterOutputStream was written with support for non-default replacement character because U+FFFD is not necessarily expressable in the target encoding, and then nsIConverterInputStream got non-default replacement character support from a mistaken desire for consistency.
Most (AFAICT all) callers don't call GetCharacterForUnMapped() to get the default replacement character. They just use zero (meaning throw if fail) or nsIConverterInputStream::DEFAULT_REPLACEMENT_CHAR. And they cannot call GetCharacterForUnMapped() because the function is not scriptable.
If we remove the support for non-default replacement char without unifying the default replacement character, nsIConverterInputStream will begin failing to convert Shift_JIS for virtually all callers.
Fixed by bug 1261841. If the caller asks for replacement, U+FFFD is used regardless of what character was requested.
Assignee: nobody → hsivonen
Status: NEW → RESOLVED
Closed: 7 years ago
Resolution: --- → FIXED
Whiteboard: [fixed by encoding_rs]
Target Milestone: --- → mozilla56
Depends on: 1372886
The commit message should have been nsIConverterOutputStream, sorry.
Summary: Remove support for non-default replacement character support from nsIConverterInputStream → Remove support for non-default replacement character support from nsIConverterOutputStream
You need to log in before you can comment on or make changes to this bug.