A user account is required in order to edit this wiki, but we've had to disable public user registrations due to spam.

To request an account, ask an autoconfirmed user on Chat (such as one of these permanent autoconfirmed members).

StringEncoding: Difference between revisions

From WHATWG Wiki
Jump to navigation Jump to search
mNo edit summary
 
(125 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Proposed String Encoding API for Typed Arrays
{{obsolete|spec=[https://encoding.spec.whatwg.org/#api Encoding Standard: API]}}
 
Proposed Text Encoding Web API for Typed Arrays


== Editors ==
== Editors ==
Line 9: Line 11:
This specification defines an API for encoding strings to binary data, and decoding strings from binary data.
This specification defines an API for encoding strings to binary data, and decoding strings from binary data.


NOTE: This specification intentionally does not address the opposite scenario of encoding binary data as strings and decoding binary data from strings, for example using Base64 encoding.  
NOTE: This specification intentionally does not address the opposite scenario of encoding binary data as strings and decoding binary data from strings, for example using Base64 encoding.
 
Discussion on this topic has so far taken place on the [http://www.khronos.org/webgl/public-mailing-list/ [email protected]] mailing list. See http://www.khronos.org/webgl/public-mailing-list/archives/1111/msg00017.html for the initial discussion thread.
 
Discussion has since moved to the [http://www.whatwg.org/mailing-list#specs WHATWG spec discussion] mailing list. See  http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2012-March/035038.html for the latest discussion thread.
 
== Open Issues ==


== Issues ==
* Should the <var>encoding</var> attribute return the <var>Name</var> of the encoding or the name that was passed in?


* Align with Blob API http://www.w3.org/TR/FileAPI/#readAsDataText - e.g. handling of invalid code points
== Notes to Implementers ==
* Resolve behavior when writing to a buffer that's too small - partial fill or don't change?


== API ==
* Streaming decode/encode requires retaining partial buffers between calls.
** Some encode/decode algorithms require adjusting the <var>code point pointer</var> or <var>byte pointer</var> by a negative amount. This could occur across "chunk" boundaries. This implies that when the internal <var>streaming</var> flag is set on an encoder/decoder that the last N elements of the stream are saved for the next call and used as a prefix for the stream. N is defined by the specific encoding algorithm.
** This is not yet implemented in the [http://code.google.com/p/stringencoding/ ECMAScript shim]
 
== Resolved Issues ==
 
<dl>
<dt>Encode as many characters as possible into a fixed-size buffer for transmission, and repeat starting with next unencoded character
<dd>Resolution: not for "v1" - can be implemented using this API, and breaking the string down by "character" is unlikely to be as obvious as it sounds - surrogate pairs, combining sequences, etc


Scripts in pages access the API through the top-level <code>window.stringEncoding</code> object which holds methods for encoding/decoding strings. Worker scripts can similarly use the <code>self.stringEncoding</code> object. (Since <code>window<code/> and <code>self</code> are the page and worker global object, respectively, scripts can simply refer to <code>stringEncoding</code> without a prefix.)
<dt>Support two versions of encode; one which takes target buffer, and one which creates/returns a right-sized buffer
<dd>Resolution: See above, and wait for developer feedback.


'''WebIDL'''
<dt>Allow arbitrary end byte sequences (e.g. <code>0xFF</code> for UTF-8 strings)
<dd>Resolution: Add <code>indexOf</code> to <code>ArrayBufferView</code>


<dt>Remove ''binary'' encoding? ''(a proposed 8-bit-clean encoding for interop with legacy binary data stored in ECMAScript strings)''
<dd>The only real use is with <code>atob()</code>/<code>btoa()</code>; a better API would be Base64 directly in/out of Typed Arrays. Consensus on WHATWG is to add better APIs e.g.
<pre>
<pre>
partial interface Window {
partial interface ArrayBufferView {
  readonly attribute StringEncoding stringEncoding;
    DOMString toBase64();
};
};


partial interface WorkerUtils {
partial interface ArrayBuffer {
  readonly attribute StringEncoding stringEncoding;
    static ArrayBuffer fromBase64(DOMString string);
};
};
</pre>
</pre>


The <code>stringEncoding</code> object exposes static methods for encoding and decoding strings from objects containing binary data as specified in the Typed Array specification.
<dt>Should this be a standalone API (as written), or live on e.g. DataView, or on e.g. String?
<dd>There seems to be pretty strong consensus that streaming, stateful coding is high priority and that an object-oriented API is cleanest, and shoe-horning those onto existing objects would be messy.


'''WebIDL'''
<dt>Should legacy encodings be supported?
<dd>Resolution: Consensus on the [http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2012-August/036825.html WHATWG mailing list] - support legacy encodings for decode, and only 'utf-8', 'utf-16' and 'utf-16be' for encode.


<pre>
<dt>What do to on encoding errors? If non-UTF encodings are supported then we may want to allow substitution (e.g. ASCII '?') or a script callback (for arbitrary escaping).
interface [
<dd>Resolution: not for "v1" (see above)
OmitConstructor
] StringEncoding {


DOMString decode(any array,
<dt>How are byte order marks handled?
                  optional unsigned long byteOffset,
<dd>BOM is respected if and only if the requested coding is a case-insensitive match for "<code>utf-16</code>"
                  optional unsigned long byteLength,
                  optional DOMString encoding)
                        raises(DOMException);


DOMString stringLength(any array,
</dl>
                        optional unsigned long byteOffset,
                        optional long byteLength,
                        optional DOMString encoding)
                                  raises(DOMException);


unsigned long encode(DOMString value,
== API ==
                      any array,
                      optional unsigned long byteOffset,
                      optional DOMString encoding)
                          raises(DOMException);


unsigned long encodedLength(DOMString value,
=== TextEncoder ===
                            optional DOMString encoding)
                                raises(DOMException);
}
</pre>


=== <code>decode</code> ===
'''WebIDL'''
<pre>
dictionary TextEncodeOptions {
  boolean stream = false;
};


This method decodes a string at the given <var>byteOffset</var> and <var>byteLength</var>, using the specified <var>encoding</var>. The <var>array</var> parameter must be an <code>ArrayBuffer</code> or <code>DataView</code>, otherwise a <code>TypeError</code> exception is raised. If array is a <code>DataView</code>, the <var>byteOffset</var> is in addition to any offset between the <code>DataView</code> and the underlying <code>ArrayBuffer</code>. If the <var>byteOffset</var> parameter is omitted it defaults to <code>0</code>. If the <var>byteLength</var> parameter is omitted it defaults to the length of the buffer (or view on the buffer), minus the <var>byteOffset</var>. If the <var>encoding</var> parameter is omitted it defaults to <code>UTF-8</code>.
[Constructor(optional DOMString encoding)]
interface TextEncoder {
  readonly attribute DOMString encoding;
  Uint8Array encode(DOMString? string, optional TextEncodeOptions options);
};
</pre>


Data is decoded starting at <var>byteOffset</var>. Decoding continues until <var>byteLength</var> bytes have been processed.  
The constructor runs the following steps:
# If the constructor is called with no arguments, let <var>label</var> be the "<code>utf-8</code>". Otherwise, let <var>label</var> be the value of the <var>encoding</var> argument.
# Run the '''steps to get an encoding''' from [http://encoding.spec.whatwg.org/ Encoding], with <var>label</var> as <var>label</var>.
#* If the steps result in failure, throw an "<code>EncodingError</code>" exception and terminate these steps.
#* Otherwise, if the <var>Name</var> of the returned encoding is not one of "<code>utf-8</code>", "<code>utf-16</code>", or "<code>utf-16be</code>" throw an "<code>EncodingError</code>" exception and terminate these steps.
#* Otherwise, set the encoder object's internal <var>encoding</var> property to the returned encoding.
# Initialize the internal <var>streaming</var> flag of the encoder object to false.
# Initialize the internal <var>encoding algorithm state</var> to the default values for the encoding <var>encoding</var>.


:''NOTE: '''U+0000''' characters have no special meaning and are returned as part of the string.''
<dl>
<dt><code>encoding</code> of type DOMString, readonly
<dd>Returns the <var>Name</var> of the encoder object's <var>encoding</var>, per [http://encoding.spec.whatwg.org/ Encoding].  


:''NOTE: If the encoded string includes a BOM that is considered part of the length. For example, to decode the UTF-16BE sequence <code>0xFE 0xFF 0x00 0x41 0x00 0x42 0x00 0x43</code> as the string <code>ABC</code> a ''byteLength'' of 8 must be specified.''
:Note that this may differ from the name of the encoding specified during the call to the constructor. For example, if the constructor is called with <var>encoding</var> of <code>"ascii"</code> the <var>encoding</var> attribute of the ''encoder object'' would have the value <code>"windows-1252"</code> as <code>"ascii"</code> is a label for that encoding.
</dl>


An exception ''(TBD)'' is raised if the method would read past the end of the underlying buffer. If the binary data or data range is not valid according to the specified encoding an exception ''(TBD)'' is raised. If the specified encoding is not known, an exception ''(TBD)'' is raised. If ''byteLength'' is negative and the specified encoding does not support encoding '''U+0000''' an exception ''(TBD)'' is raised.
<dl>
<dt><code>encode</code>
<dd>


:''ISSUE: If a BOM is present, is it returned as part of the string? FileReader.readAsText() strips the BOM.''
The <code>encode</code> method runs these steps:


:''ISSUE: Behavior if byteLength stops inside a multi-byte sequence.''
# If the internal <var>streaming</var> flag is not set, then reset the <var>encoding algorithm state</var> to the default values for <var>encoding</var>. Otherwise, the <var>encoding algorithm state</var> is re-used from the previous call to <code>encode</code> on this object.
# If the <var>options</var> parameter is specified and the <code>stream</code> option is '''true''', then the internal <var>streaming</var> flag is set; otherwise the internal <var>streaming</var> flag is cleared.
# Run the steps of the <var>encoding algorithm</var>:
#* The input to the algorithm is a <var>stream of code points</var>. The stream is composed of the Unicode code points for the Unicode characters produced by following the [http://dev.w3.org/2006/webapi/WebIDL/#dfn-obtain-unicode steps to convert a DOMString to a sequence of Unicode characters] in [http://dev.w3.org/2006/webapi/WebIDL/ WebIDL] with <var>string</var> as the input. If <var>string</var> is null, the <var>stream of code points</var> is empty.
#* If the <var>options</var> parameter not specified or the <code>stream</code> option is false, then after final code point is yielded by the stream then the '''EOF code point''' is yielded.
#* The output of the the algorithm is a <var>sequence of emitted bytes</var>.
# Returns a <code>Unit8Array</code> object wrapping an <code>ArrayBuffer</code> containing the <var>sequence of emitted bytes</var> by encoder algorithm.


=== <code>stringLength</code> ===
:''NOTE: Because only UTF encodings are supported, and because of the use of the [http://dev.w3.org/2006/webapi/WebIDL/#dfn-obtain-unicode steps to convert a DOMString to a sequence of Unicode characters] and thus Unicode code points, no input can cause the encoding process to emit an encoder error.''


This method determines the length of a "null-terminated" string at the given <var>byteOffset</var> up to <var>byteLength</var> bytes, using the specified <var>encoding</var>. The <var>array</var> parameter must be an <code>ArrayBuffer</code> or <code>DataView</code>, otherwise a <code>TypeError</code> exception is raised. If array is a <code>DataView</code>, the <var>byteOffset</var> is in addition to any offset between the <code>DataView</code> and the underlying <code>ArrayBuffer</code>. If the <var>byteOffset</var> parameter is omitted it defaults to <code>0</code>. If the <var>byteLength</var> parameter is omitted it defaults to the length of the buffer (or view on the buffer), minus the <var>byteOffset</var>. If the <var>encoding</var> parameter is omitted it defaults to <code>UTF-8</code>.
</dl>


Data is decoded starting at <var>byteOffset</var>. Decoding continues until a '''U+0000''' character is decoded or <var>byteLength</var> bytes have been processed. If a '''U+0000''' character is decoded, the number of bytes processed, not including those representing the '''U+0000''' character, are returned. If <var>byteLength</var> bytes are processed without a '''U+0000''' character decoded, -1 is returned.
=== TextDecoder ===


:''NOTE: The byte sequence representing terminator is encoding specific. For example, in UTF-16 encodings it would be the even-aligned two-octet sequence <code>0x00 0x00</code>''
'''WebIDL'''
<pre>
dictionary TextDecoderOptions {
  boolean fatal = false;
};


:''NOTE: If the encoded string includes a BOM that is considered part of the length. For example, <code>stringLength</code> would return a length of <code>8</code> for the UTF-16BE sequence <code>0xFE 0xFF 0x00 0x41 0x00 0x42 0x00 0x43 0x00 0x00</code>.
dictionary TextDecodeOptions {
  boolean stream = false;
};


An exception ''(TBD)'' is raised if the method would read past the end of the underlying buffer. If the binary data or data range is not valid according to the specified encoding an exception ''(TBD)'' is raised. If the specified encoding is not known, an exception ''(TBD)'' is raised. If the specified encoding does not support encoding '''U+0000''' an exception ''(TBD)'' is raised.
[Constructor(optional DOMString encoding, optional TextDecoderOptions options)]
 
interface TextDecoder {
:''ISSUE: Add an optional <code>unsigned short terminator</code> member, defaults to <code>0</code>?
  readonly attribute DOMString encoding;
  DOMString decode(optional ArrayBufferView view, optional TextDecodeOptions options);
};
</pre>


:''ISSUE: To allow terminators which aren't code points (e.g. 0xFF in UTF-8), make the optional terminator either a code point (default 0) or an Array of octets (e.g. [ 0xFF, 0XFF ] ?''
The constructor runs the following steps:
# The constructor creates a ''decoder object''. It has the internal properties <var>encoding</var>, a <var>fatal</var> flag which is initially unset,  a <var>streaming</var> flag which is initially unset, an <var>offset</var> pointer which is initially <code>0</code>, and a <var>useBOM</var> flag which is initially unset.
# If called without an <var>encoding</var> argument, let <var>label</var> be the "<code>utf-8</code>". Otherwise, let <var>label</var> be the value of the <var>encoding</var> argument.
# If <var>label</var> is a case-insensitive match for "<code>utf-16</code>" then set the internal <var>useBOM</var> flag.
# Run the '''steps to get an encoding''' from [http://encoding.spec.whatwg.org/ Encoding], with <var>label</var> as <var>label</var>.
## If the steps result in failure, throw a "<code>EncodingError</code>" exception and terminate these steps.
## Otherwise, set the ''decoder object's'' internal <var>encoding</var> property to the returned encoding.
# If the constructor is called with an <var>options</var> argument, and the <var>fatal</var> property of the dictionary is set, set the internal <var>fatal</var> flag of the ''decoder object''.
# Initialize the internal <var>encoding algorithm state</var> to the default values for the encoding <var>encoding</var>.
# Return the ''decoder object''.


=== <code>encode</code> ===
<dl>
<dt><code>encoding</code> of type DOMString, readonly
<dd>
Returns the <var>Name</var> of the decoder object's <var>encoding</var>, per [http://encoding.spec.whatwg.org/ Encoding].


Encodes the string <var>value</var> into the specified <var>array</var> at the given <var>byteOffset</var>, using the specified <var>encoding</var>. The <var>array</var> parameter must be an <code>ArrayBuffer</code> or <code>DataView</code>, otherwise a <code>TypeError</code> exception is raised. If the <var>byteOffset</var> parameter is omitted it defaults to <code>0</code>. If the <var>encoding</var> parameter is omitted it defaults to <code>UTF-8</code>. If array is a <code>DataView</code>, the <var>byteOffset</var> is in addition to any offset between the <code>DataView</code> and its underlying <code>ArrayBuffer</code>. The return value is the length of the encoded string, in bytes. No "null terminator" is added to the string, although a trailing <code>\x00</code> character in the string will be encoded if present and if it can be expressed in the specified encoding.  An exception ''(TBD)'' is raised if the method would write past the end of the underlying buffer. If <var>value</var> cannot be encoded with the specified encoding an exception ''(TBD)'' is raised. If the specified encoding is not known, an exception ''(TBD)'' is raised.
:Note that this may differ from the name of the encoding specified during the call to the constructor. For example, if the constructor is called with <var>encoding</var> of <code>"ascii"</code> the <var>encoding</var> attribute of the ''decoder object'' would have the value <code>"windows-1252"</code> as <code>"ascii"</code> is a label for that encoding.


If an exception is thrown by this method, the target buffer MUST NOT be changed.
<dt><code>decode</code>
<dd>


:''ISSUE: Alternately, we could allow "partial fill" and return an object with <code>bytesWritten</code> and <code>charactersWritten</code> properties.''
The <code>decode</code> method runs the following steps:


=== <code>encodedLength</code> ===
# If <var>view</var> is not specified, let <var>view</var> be a <code>Uint8Array</code> of length <code>0</code>.
# If the internal <var>streaming</var> flag of the ''decoder object'' is not set, then reset the <var>encoding algorithm state</var> to the default values for encoding <var>encoding</var> and set <var>offset</var> to <code>0</code>. Otherwise, the <var>encoding algorithm state</var> is re-used from the previous call to <code>decode</code> on this object.
# If the <var>options</var> parameter is specified and the <var>stream</var> option is '''true''', then the internal <var>streaming</var> flag is set. Otherwise the internal <var>streaming</var> flag is cleared.
# Run or resume the decoder algorithm of the ''decoder object's'' encoder, with the following additions:
#* The input to the algorithm is a <var>byte stream</var>.
#** If <var>offset</var> is greater than <code>0</code>, the bytes in <var>byte stream</var> for positions less than <var>offset</var> are provided by buffer(s) passed in to previous calls to <code>decode()</code>.
#** The bytes in <var>byte stream</var> for positions <var>offset</var> through <code><var>offset</var> + <var>view.byteLength</var> - 1</code> are provided by the bytes in <var>view.buffer</var> starting at offset <var>view.byteOffset</var>.
#** When accessing the byte in <var>byte stream</var> at position <code><var>offset</var> + <var>view.byteLength</var></code>:
#*** If the internal <var>streaming</var> flag is not set, then yield the '''EOF byte'''.
#*** Otherwise, set <var>offset</var> to <code><var>offset</var> + <var>view.byteLength</var></code> and suspend the steps of the decoder algorithm until a subsequent call to <code>decode()</code>
#* If encoding is one of "<code>utf-8</code>", "<code>utf-16</code>" or "<code>utf-16be</code>" and <var>offset</var> is <code>0</code>, then prior to running the steps of the decoder algorithm:
#** If the internal <var>useBOM</var> flag is set, then:
#*** If less than two bytes are present in the stream and the internal <var>streaming</var> flag is true, suspend this algorithm and return the empty string.
#*** If the next two bytes of the stream are '''0xFF 0xFE''' then set <var>offset</var> to <code>2</code>, and clear the <var>utf-16be</var> flag of the decoder state.
#*** If the next two bytes of the stream are '''0xFE 0xFF''' then set <var>offset</var> to <code>2</code>, and set the <var>utf-16be</var> flag of the decoder state.
#** If encoding is "<code>utf-8</code>", then:
#*** If less than three bytes are present in the stream and the internal <var>streaming</var> flag is true, suspend this algorithm and return the empty string.
#*** If the next three bytes of the stream are '''0xEF 0xBB 0xBF''' then set <var>offset</var> to <code>3</code>.
#** If encoding is "<code>utf-16</code>", then:
#*** If less than two bytes are present in the stream and the internal <var>streaming</var> flag is true, suspend this algorithm and return the empty string.
#*** If the next two bytes of the stream are '''0xFF 0xFE''' then set <var>offset</var> to <code>2</code>.
#** If encoding is "<code>utf-16be</code>", then:
#*** If less than two bytes are present in the stream and the internal <var>streaming</var> flag is true, suspend this algorithm and return the empty string.
#*** If the next two bytes of the stream are '''0xFE 0xFF''' then set <var>offset</var> to <code>2</code>.
#* If the internal <var>fatal</var> flag of the ''decoder object'' is set, then a '''decoder error''' causes an <code>DOMException</code> of type <code>EncodingError</code> to be thrown rather than emitting a fallback code point.
#* The output of the algorithm is a <var>sequence of emitted code points</var>.
# Return an IDL <code>DOMString</code> value that represents the sequence of code units resulting from encoding the <var>sequence of emitted code points</var> as UTF-16.


Computes and returns the length, in bytes, of the string <var>value</var> if it were to be encoded using the specified <var>encoding</var>. If the <var>encoding</var> parameter is omitted it defaults to <code>UTF-8</code>. If <var>value</var> cannot be encoded with the specified encoding an exception ''(TBD)'' is raised. If the specified encoding is not known, an exception ''(TBD)'' is raised.
</dl>
 
:''NOTE: If the encoding includes a BOM, the length of the BOM is included. For example, the string <code>ABC</code> may be encoded in UTF-16 as the octets <code>0xFE 0xFF 0x00 0x65 0x00 0x66 0x00 0x67</code> and have a length of 8.''


== Examples ==
== Examples ==
Line 118: Line 195:


<pre>
<pre>
function encodeArrayOfStrings(strings) {
function encodeArrayOfStrings(strings, encoding) {
   var len, i, bytes, view, offset;
   var encoder, encoded, len, i, bytes, view, offset;
 
  encoder = TextEncoder(encoding);
  encoded = [];


   len = Uint32Array.BYTES_PER_ELEMENT;
   len = Uint32Array.BYTES_PER_ELEMENT;
   for (i = 0; i < strings.length; i += 1) {
   for (i = 0; i < strings.length; i += 1) {
     len += Uint32Array.BYTES_PER_ELEMENT;
     len += Uint32Array.BYTES_PER_ELEMENT;
     len += stringEncoding.encodedLength(strings[i], "UTF-8");
     encoded[i] = TextEncoder(encoding).encode(strings[i]);
    len += encoded[i].byteLength;
   }
   }


Line 133: Line 214:
   view.setUint32(offset, strings.length);
   view.setUint32(offset, strings.length);
   offset += Uint32Array.BYTES_PER_ELEMENT;
   offset += Uint32Array.BYTES_PER_ELEMENT;
   for (i = 0; i < strings.length; i += 1) {
   for (i = 0; i < encoded.length; i += 1) {
     len = stringEncoding.encode(strings[i], view,
     len = encoded[i].byteLength;
                                offset + Uint32Array.BYTES_PER_ELEMENT,
                                "UTF-8");
     view.setUint32(offset, len);
     view.setUint32(offset, len);
     offset += Uint32Array.BYTES_PER_ELEMENT + len;
     offset += Uint32Array.BYTES_PER_ELEMENT;
    bytes.set(encoded[i], offset);
    offset += len;
   }
   }
   return bytes.buffer;
   return bytes.buffer;
Line 149: Line 230:


<pre>
<pre>
function decodeArrayOfStrings(buffer) {
function decodeArrayOfStrings(buffer, encoding) {
   var view, offset, num_strings, strings, i, len;
   var decoder, view, offset, num_strings, strings, i, len;


  decoder = TextDecoder(encoding);
   view = new DataView(buffer);
   view = new DataView(buffer);
   offset = 0;
   offset = 0;
Line 161: Line 243:
     len = view.getUint32(offset);
     len = view.getUint32(offset);
     offset += Uint32Array.BYTES_PER_ELEMENT;
     offset += Uint32Array.BYTES_PER_ELEMENT;
     strings[i] = stringEncoding.decode(view, offset,  
     strings[i] = decoder.decode(
                                      len, "UTF-8");
      new DataView(view.buffer, offset, len));
     offset += len;
     offset += len;
   }
   }
Line 171: Line 253:
== Encodings ==
== Encodings ==


Encoding names are case-insensitive.  
Encodings are defined and implemented per [http://encoding.spec.whatwg.org/ Encoding]. This implicitly includes the steps to <em>get an encoding</em> from a string, and the logic for label matching and case-insensitivity.


=== Standard Encodings ===
User agents MUST NOT support any other encodings or labels than those defined in [http://encoding.spec.whatwg.org/ Encoding], and MUST support all encodings and labels defined in that specification, with the additions defined below.


Implementations MUST support all of the following encodings:
:''NOTE: In [http://encoding.spec.whatwg.org/ Encoding], "ascii" is a label for '''windows-1252'''; there is no 7-bit-or-raise-exception encoding. Applications that are required to restrict the content of decoded strings should implement validation after decoding.''


:''ISSUE: Should anything be said about canonical forms in the Unicode encodings?''
:''NOTE: Unicode normalization forms are outside the scope of this specification. No normalization is done prior to encoding or after decoding.''


====<code>ASCII</code>====
:''NOTE: Handling of encoding-specific issues, e.g. over-long UTF-8 encodings, byte order marks, unmatched surrogate pairs, and so on is defined by [http://encoding.spec.whatwg.org/ Encoding].''
*decode: exception thrown if any octet in array is greater than '''0x7F'''
*encode: exception thrown if value string contains a character beyond '''U+007F'''


====<code>ISO-8859-1</code>====
== References ==
*decode: No encoding-specific exceptions thrown
*encode: exception thrown if value string contains a character beyond '''U+00FF'''


====<code>BINARY</code>====
* WebIDL http://dev.w3.org/2006/webapi/WebIDL
*decode: No encoding-specific exceptions are thrown
* Encoding http://encoding.spec.whatwg.org/
*encode: exception thrown if value string contains a character beyond '''U+00FF'''


:''NOTE: <code>ISO-8859-1</code> and <code>BINARY</code> are functionally identical in this specification. Both are included so that callers can be more explicit about the type of data being handled. Storing binary data in ECMAScript strings, one byte per character, was a common approach before Typed Array support was available. This "BINARY" encoding allows for easy interoperation with this legacy style of binary storage.''
====<code>UTF-8</code>====
*decode: BOM accepted (<code>0xEF 0xBB 0xBF</code>), exception thrown on invalid/truncated UTF-8 sequence; non-BMP characters in the UTF-8 encoded string yield UTF-16 surrogate pairs in the DOMString. BOM is not returned as part of the DOMString.
*encode: BOM is not written. Exception (TBD) thrown when there is no valid UTF-8 encoding of the string (e.g. <code>"abc\uD800def"</code> which contains a UTF-16 "surrogate half")
:''ISSUE: Are over-long UTF-8 sequences allowed?''
====<code>UTF-16</code>====
*decode: An exception thrown if BOM not present.  BOM is not returned as part of the DOMString.
*encode: outputs a BOM prefix; can be either LE or BE. Implementations may choose to always use the same endianness, or may match the machine architecture for better performance. Callers should not make assumptions about the endianness, and should use the <code>UTF-16BE</code> or <code>UTF-16LE</code> encodings if a specific endianness is desired.
====<code>UTF-16LE</code>====
*decode: BOM not required, but accepted (<code>0xFF 0xFE</code>); throws if incorrect BOM found or overall length is odd number of bytes. BOM is not returned as part of the DOMString.
*encode: does not write a BOM
:''ISSUE: throw if invalid surrogate pair encountered?''
====<code>UTF-16BE</code>====
*decode: BOM not required, but accepted (<code>0xFE 0xFF</code>); throws if incorrect BOM found or overall length is odd number of bytes. BOM is not returned as part of the DOMString.
*encode: does not write a BOM
:''ISSUE: throw if invalid surrogate pair encountered?''
=== Other Encodings ===
Browsers MAY support additional encodings.
:''TODO: Suggest other encodings - the suggested default encodings table from http://www.whatwg.org/specs/web-apps/current-work/multipage/parsing.html#encoding-sniffing-algorithm may be prove handy.''


== Acknowledgements ==
== Acknowledgements ==
Line 230: Line 278:
* Robert Mustacchi
* Robert Mustacchi
* Ryan Dahl
* Ryan Dahl
 
* Anne van Kesteren
* Cameron McCormack


== Appendix ==
== Appendix ==


A "shim" implementation in JavaScript (that may not fully match the current version of the spec) can be found at:
A "shim" implementation in ECMAScript (that may not fully match the current version of the spec) plus some initial unit tests can be found at:
 
:https://gist.github.com/1339793


[[Category:Proposals]]
:http://code.google.com/p/stringencoding/

Latest revision as of 15:16, 27 September 2014

This document is obsolete.

For the current specification, see: Encoding Standard: API


Proposed Text Encoding Web API for Typed Arrays

Editors

  • Joshua Bell (Google, Inc)

Abstract

This specification defines an API for encoding strings to binary data, and decoding strings from binary data.

NOTE: This specification intentionally does not address the opposite scenario of encoding binary data as strings and decoding binary data from strings, for example using Base64 encoding.

Discussion on this topic has so far taken place on the [email protected] mailing list. See http://www.khronos.org/webgl/public-mailing-list/archives/1111/msg00017.html for the initial discussion thread.

Discussion has since moved to the WHATWG spec discussion mailing list. See http://lists.whatwg.org/htdig.cgi/whatwg-whatwg.org/2012-March/035038.html for the latest discussion thread.

Open Issues

  • Should the encoding attribute return the Name of the encoding or the name that was passed in?

Notes to Implementers

  • Streaming decode/encode requires retaining partial buffers between calls.
    • Some encode/decode algorithms require adjusting the code point pointer or byte pointer by a negative amount. This could occur across "chunk" boundaries. This implies that when the internal streaming flag is set on an encoder/decoder that the last N elements of the stream are saved for the next call and used as a prefix for the stream. N is defined by the specific encoding algorithm.
    • This is not yet implemented in the ECMAScript shim

Resolved Issues

Encode as many characters as possible into a fixed-size buffer for transmission, and repeat starting with next unencoded character
Resolution: not for "v1" - can be implemented using this API, and breaking the string down by "character" is unlikely to be as obvious as it sounds - surrogate pairs, combining sequences, etc
Support two versions of encode; one which takes target buffer, and one which creates/returns a right-sized buffer
Resolution: See above, and wait for developer feedback.
Allow arbitrary end byte sequences (e.g. 0xFF for UTF-8 strings)
Resolution: Add indexOf to ArrayBufferView
Remove binary encoding? (a proposed 8-bit-clean encoding for interop with legacy binary data stored in ECMAScript strings)
The only real use is with atob()/btoa(); a better API would be Base64 directly in/out of Typed Arrays. Consensus on WHATWG is to add better APIs e.g.
partial interface ArrayBufferView {
    DOMString toBase64();
};

partial interface ArrayBuffer {
    static ArrayBuffer fromBase64(DOMString string);
};
Should this be a standalone API (as written), or live on e.g. DataView, or on e.g. String?
There seems to be pretty strong consensus that streaming, stateful coding is high priority and that an object-oriented API is cleanest, and shoe-horning those onto existing objects would be messy.
Should legacy encodings be supported?
Resolution: Consensus on the WHATWG mailing list - support legacy encodings for decode, and only 'utf-8', 'utf-16' and 'utf-16be' for encode.
What do to on encoding errors? If non-UTF encodings are supported then we may want to allow substitution (e.g. ASCII '?') or a script callback (for arbitrary escaping).
Resolution: not for "v1" (see above)
How are byte order marks handled?
BOM is respected if and only if the requested coding is a case-insensitive match for "utf-16"

API

TextEncoder

WebIDL

dictionary TextEncodeOptions {
  boolean stream = false;
};

[Constructor(optional DOMString encoding)]
interface TextEncoder {
  readonly attribute DOMString encoding;
  Uint8Array encode(DOMString? string, optional TextEncodeOptions options);
};

The constructor runs the following steps:

  1. If the constructor is called with no arguments, let label be the "utf-8". Otherwise, let label be the value of the encoding argument.
  2. Run the steps to get an encoding from Encoding, with label as label.
    • If the steps result in failure, throw an "EncodingError" exception and terminate these steps.
    • Otherwise, if the Name of the returned encoding is not one of "utf-8", "utf-16", or "utf-16be" throw an "EncodingError" exception and terminate these steps.
    • Otherwise, set the encoder object's internal encoding property to the returned encoding.
  3. Initialize the internal streaming flag of the encoder object to false.
  4. Initialize the internal encoding algorithm state to the default values for the encoding encoding.
encoding of type DOMString, readonly
Returns the Name of the encoder object's encoding, per Encoding.
Note that this may differ from the name of the encoding specified during the call to the constructor. For example, if the constructor is called with encoding of "ascii" the encoding attribute of the encoder object would have the value "windows-1252" as "ascii" is a label for that encoding.
encode
The encode method runs these steps:
  1. If the internal streaming flag is not set, then reset the encoding algorithm state to the default values for encoding. Otherwise, the encoding algorithm state is re-used from the previous call to encode on this object.
  2. If the options parameter is specified and the stream option is true, then the internal streaming flag is set; otherwise the internal streaming flag is cleared.
  3. Run the steps of the encoding algorithm:
    • The input to the algorithm is a stream of code points. The stream is composed of the Unicode code points for the Unicode characters produced by following the steps to convert a DOMString to a sequence of Unicode characters in WebIDL with string as the input. If string is null, the stream of code points is empty.
    • If the options parameter not specified or the stream option is false, then after final code point is yielded by the stream then the EOF code point is yielded.
    • The output of the the algorithm is a sequence of emitted bytes.
  4. Returns a Unit8Array object wrapping an ArrayBuffer containing the sequence of emitted bytes by encoder algorithm.
NOTE: Because only UTF encodings are supported, and because of the use of the steps to convert a DOMString to a sequence of Unicode characters and thus Unicode code points, no input can cause the encoding process to emit an encoder error.

TextDecoder

WebIDL

dictionary TextDecoderOptions {
  boolean fatal = false;
};

dictionary TextDecodeOptions {
  boolean stream = false;
};

[Constructor(optional DOMString encoding, optional TextDecoderOptions options)]
interface TextDecoder {
  readonly attribute DOMString encoding;
  DOMString decode(optional ArrayBufferView view, optional TextDecodeOptions options);
};

The constructor runs the following steps:

  1. The constructor creates a decoder object. It has the internal properties encoding, a fatal flag which is initially unset, a streaming flag which is initially unset, an offset pointer which is initially 0, and a useBOM flag which is initially unset.
  2. If called without an encoding argument, let label be the "utf-8". Otherwise, let label be the value of the encoding argument.
  3. If label is a case-insensitive match for "utf-16" then set the internal useBOM flag.
  4. Run the steps to get an encoding from Encoding, with label as label.
    1. If the steps result in failure, throw a "EncodingError" exception and terminate these steps.
    2. Otherwise, set the decoder object's internal encoding property to the returned encoding.
  5. If the constructor is called with an options argument, and the fatal property of the dictionary is set, set the internal fatal flag of the decoder object.
  6. Initialize the internal encoding algorithm state to the default values for the encoding encoding.
  7. Return the decoder object.
encoding of type DOMString, readonly
Returns the Name of the decoder object's encoding, per Encoding.
Note that this may differ from the name of the encoding specified during the call to the constructor. For example, if the constructor is called with encoding of "ascii" the encoding attribute of the decoder object would have the value "windows-1252" as "ascii" is a label for that encoding.
decode
The decode method runs the following steps:
  1. If view is not specified, let view be a Uint8Array of length 0.
  2. If the internal streaming flag of the decoder object is not set, then reset the encoding algorithm state to the default values for encoding encoding and set offset to 0. Otherwise, the encoding algorithm state is re-used from the previous call to decode on this object.
  3. If the options parameter is specified and the stream option is true, then the internal streaming flag is set. Otherwise the internal streaming flag is cleared.
  4. Run or resume the decoder algorithm of the decoder object's encoder, with the following additions:
    • The input to the algorithm is a byte stream.
      • If offset is greater than 0, the bytes in byte stream for positions less than offset are provided by buffer(s) passed in to previous calls to decode().
      • The bytes in byte stream for positions offset through offset + view.byteLength - 1 are provided by the bytes in view.buffer starting at offset view.byteOffset.
      • When accessing the byte in byte stream at position offset + view.byteLength:
        • If the internal streaming flag is not set, then yield the EOF byte.
        • Otherwise, set offset to offset + view.byteLength and suspend the steps of the decoder algorithm until a subsequent call to decode()
    • If encoding is one of "utf-8", "utf-16" or "utf-16be" and offset is 0, then prior to running the steps of the decoder algorithm:
      • If the internal useBOM flag is set, then:
        • If less than two bytes are present in the stream and the internal streaming flag is true, suspend this algorithm and return the empty string.
        • If the next two bytes of the stream are 0xFF 0xFE then set offset to 2, and clear the utf-16be flag of the decoder state.
        • If the next two bytes of the stream are 0xFE 0xFF then set offset to 2, and set the utf-16be flag of the decoder state.
      • If encoding is "utf-8", then:
        • If less than three bytes are present in the stream and the internal streaming flag is true, suspend this algorithm and return the empty string.
        • If the next three bytes of the stream are 0xEF 0xBB 0xBF then set offset to 3.
      • If encoding is "utf-16", then:
        • If less than two bytes are present in the stream and the internal streaming flag is true, suspend this algorithm and return the empty string.
        • If the next two bytes of the stream are 0xFF 0xFE then set offset to 2.
      • If encoding is "utf-16be", then:
        • If less than two bytes are present in the stream and the internal streaming flag is true, suspend this algorithm and return the empty string.
        • If the next two bytes of the stream are 0xFE 0xFF then set offset to 2.
    • If the internal fatal flag of the decoder object is set, then a decoder error causes an DOMException of type EncodingError to be thrown rather than emitting a fallback code point.
    • The output of the algorithm is a sequence of emitted code points.
  5. Return an IDL DOMString value that represents the sequence of code units resulting from encoding the sequence of emitted code points as UTF-16.

Examples

Example #1 - encoding strings

The following example uses the API to encode an array of strings into a ArrayBuffer. The result is a Uint8Array containing the number of strings (as a Uint32), followed by the length of the first string (as a Uint32), the UTF-8 encoded string data, the length of the second string (as a Uint32), the string data, and so on.

function encodeArrayOfStrings(strings, encoding) {
  var encoder, encoded, len, i, bytes, view, offset;

  encoder = TextEncoder(encoding);
  encoded = [];

  len = Uint32Array.BYTES_PER_ELEMENT;
  for (i = 0; i < strings.length; i += 1) {
    len += Uint32Array.BYTES_PER_ELEMENT;
    encoded[i] = TextEncoder(encoding).encode(strings[i]);
    len += encoded[i].byteLength;
  }

  bytes = new Uint8Array(len);
  view = new DataView(bytes.buffer);
  offset = 0;

  view.setUint32(offset, strings.length);
  offset += Uint32Array.BYTES_PER_ELEMENT;
  for (i = 0; i < encoded.length; i += 1) {
    len = encoded[i].byteLength;
    view.setUint32(offset, len);
    offset += Uint32Array.BYTES_PER_ELEMENT;
    bytes.set(encoded[i], offset);
    offset += len;
  }
  return bytes.buffer;
}

Example #2 - decoding strings

The following example decodes an ArrayBuffer containing data encoded in the format produced by the previous example back into an array of strings.

function decodeArrayOfStrings(buffer, encoding) {
  var decoder, view, offset, num_strings, strings, i, len;

  decoder = TextDecoder(encoding);
  view = new DataView(buffer);
  offset = 0;
  strings = [];

  num_strings = view.getUint32(offset);
  offset += Uint32Array.BYTES_PER_ELEMENT;
  for (i = 0; i < num_strings; i += 1) {
    len = view.getUint32(offset);
    offset += Uint32Array.BYTES_PER_ELEMENT;
    strings[i] = decoder.decode(
      new DataView(view.buffer, offset, len));
    offset += len;
  }
  return strings;
}

Encodings

Encodings are defined and implemented per Encoding. This implicitly includes the steps to get an encoding from a string, and the logic for label matching and case-insensitivity.

User agents MUST NOT support any other encodings or labels than those defined in Encoding, and MUST support all encodings and labels defined in that specification, with the additions defined below.

NOTE: In Encoding, "ascii" is a label for windows-1252; there is no 7-bit-or-raise-exception encoding. Applications that are required to restrict the content of decoded strings should implement validation after decoding.
NOTE: Unicode normalization forms are outside the scope of this specification. No normalization is done prior to encoding or after decoding.
NOTE: Handling of encoding-specific issues, e.g. over-long UTF-8 encodings, byte order marks, unmatched surrogate pairs, and so on is defined by Encoding.

References


Acknowledgements

  • Alan Chaney
  • Ben Noordhuis
  • Glenn Maynard
  • John Tamplin
  • Kenneth Russell (Google, Inc)
  • Robert Mustacchi
  • Ryan Dahl
  • Anne van Kesteren
  • Cameron McCormack

Appendix

A "shim" implementation in ECMAScript (that may not fully match the current version of the spec) plus some initial unit tests can be found at:

http://code.google.com/p/stringencoding/