9da015d58b
BUG= TEST= Review URL: https://chromiumcodereview.appspot.com//9310038 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@3816 260f80e4-7a28-3924-810f-c04153c831b5
222 lines
7.4 KiB
Dart
222 lines
7.4 KiB
Dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
final int _UTF8_ONE_BYTE_MAX = 0x7f;
|
|
final int _UTF8_TWO_BYTE_MAX = 0x7ff;
|
|
final int _UTF8_THREE_BYTE_MAX = 0xffff;
|
|
|
|
final int _UTF8_LO_SIX_BIT_MASK = 0x3f;
|
|
|
|
final int _UTF8_FIRST_BYTE_OF_TWO_BASE = 0xc0;
|
|
final int _UTF8_FIRST_BYTE_OF_THREE_BASE = 0xe0;
|
|
final int _UTF8_FIRST_BYTE_OF_FOUR_BASE = 0xf0;
|
|
final int _UTF8_FIRST_BYTE_OF_FIVE_BASE = 0xf8;
|
|
final int _UTF8_FIRST_BYTE_OF_SIX_BASE = 0xfc;
|
|
|
|
final int _UTF8_FIRST_BYTE_OF_TWO_MASK = 0x1f;
|
|
final int _UTF8_FIRST_BYTE_OF_THREE_MASK = 0xf;
|
|
final int _UTF8_FIRST_BYTE_OF_FOUR_MASK = 0x7;
|
|
|
|
final int _UTF8_FIRST_BYTE_BOUND_EXCL = 0xfe;
|
|
final int _UTF8_SUBSEQUENT_BYTE_BASE = 0x80;
|
|
|
|
/**
|
|
* Produce a String from a sequence of UTF-8 encoded bytes. The parameters
|
|
* allow an offset into a list of bytes (as int), limiting the length of the
|
|
* values be decoded and the ability of override the default Unicode
|
|
* replacement character. Set the replacementCharacter to null to throw an
|
|
* IllegalArgumentException rather than replace the bad value.
|
|
*/
|
|
String decodeFromUtf8(List<int> bytes, [int offset = 0, int length,
|
|
int replacementCodepoint = UNICODE_REPLACEMENT_CHARACTER_CODEPOINT]) =>
|
|
codepointsToString(_utf8ToCodepoints(
|
|
bytes, offset, length, replacementCodepoint));
|
|
|
|
/**
|
|
* Produce a sequence of UTF-8 encoded bytes from the provided string.
|
|
*/
|
|
List<int> encodeAsUtf8(String str) =>
|
|
_codepointsToUtf8(stringToCodepoints(str));
|
|
|
|
int _addToEncoding(int offset, int bytes, int value, List<int> buffer) {
|
|
while(bytes > 0) {
|
|
buffer[offset + bytes] = _UTF8_SUBSEQUENT_BYTE_BASE |
|
|
(value & _UTF8_LO_SIX_BIT_MASK);
|
|
value = value >> 6;
|
|
bytes--;
|
|
}
|
|
return value;
|
|
}
|
|
|
|
/**
|
|
* Encode code points as UTF-8 code units.
|
|
*/
|
|
List<int> _codepointsToUtf8(
|
|
List<int> codepoints, [int offset = 0, int length]) {
|
|
if (!(offset >= 0)) {
|
|
throw new IllegalArgumentException("offset");
|
|
}
|
|
|
|
if (!(length == null || length >= 0)) {
|
|
throw new IllegalArgumentException("length");
|
|
}
|
|
|
|
int end = length != null ?
|
|
Math.min(codepoints.length, offset + length) :
|
|
codepoints.length;
|
|
|
|
int encodedLength = 0;
|
|
for (int i = offset; i < end; i++) {
|
|
int value = codepoints[i];
|
|
if (value < 0 || value > UNICODE_VALID_RANGE_MAX) {
|
|
encodedLength += 3;
|
|
} else if (value <= _UTF8_ONE_BYTE_MAX) {
|
|
encodedLength++;
|
|
} else if (value <= _UTF8_TWO_BYTE_MAX) {
|
|
encodedLength += 2;
|
|
} else if (value <= _UTF8_THREE_BYTE_MAX) {
|
|
encodedLength += 3;
|
|
} else if (value <= UNICODE_VALID_RANGE_MAX) {
|
|
encodedLength += 4;
|
|
}
|
|
}
|
|
|
|
List<int> encoded = new List<int>(encodedLength);
|
|
int insertAt = 0;
|
|
for (int i = offset; i < end; i++) {
|
|
int value = codepoints[i];
|
|
if (value < 0 || value > UNICODE_VALID_RANGE_MAX) {
|
|
encoded.setRange(insertAt, 3, [0xef, 0xbf, 0xbd]);
|
|
insertAt += 3;
|
|
} else if (value <= _UTF8_ONE_BYTE_MAX) {
|
|
encoded[insertAt] = value;
|
|
insertAt++;
|
|
} else if (value <= _UTF8_TWO_BYTE_MAX) {
|
|
encoded[insertAt] = _UTF8_FIRST_BYTE_OF_TWO_BASE | (
|
|
_UTF8_FIRST_BYTE_OF_TWO_MASK &
|
|
_addToEncoding(insertAt, 1, value, encoded));
|
|
insertAt += 2;
|
|
} else if (value <= _UTF8_THREE_BYTE_MAX) {
|
|
encoded[insertAt] = _UTF8_FIRST_BYTE_OF_THREE_BASE | (
|
|
_UTF8_FIRST_BYTE_OF_THREE_MASK &
|
|
_addToEncoding(insertAt, 2, value, encoded));
|
|
insertAt += 3;
|
|
} else if (value <= UNICODE_VALID_RANGE_MAX) {
|
|
encoded[insertAt] = _UTF8_FIRST_BYTE_OF_FOUR_BASE | (
|
|
_UTF8_FIRST_BYTE_OF_FOUR_MASK &
|
|
_addToEncoding(insertAt, 3, value, encoded));
|
|
insertAt += 4;
|
|
}
|
|
}
|
|
return encoded;
|
|
}
|
|
|
|
|
|
// Because UTF-8 specifies byte order, we do not have to follow the pattern
|
|
// used by UTF-16 & UTF-32 regarding byte order.
|
|
List<int> _utf8ToCodepoints(
|
|
List<int> utf8EncodedBytes, [int offset = 0, int length,
|
|
int replacementCodepoint = UNICODE_REPLACEMENT_CHARACTER_CODEPOINT]) {
|
|
if (!(offset >= 0)) {
|
|
throw new IllegalArgumentException("offset");
|
|
}
|
|
|
|
if (!(length == null || length >= 0)) {
|
|
throw new IllegalArgumentException("length");
|
|
}
|
|
|
|
int end = length != null ?
|
|
Math.min(utf8EncodedBytes.length, offset + length) :
|
|
utf8EncodedBytes.length;
|
|
|
|
void addReplacementCodepoint(void f(int v), int replacementCodepoint) {
|
|
if(replacementCodepoint != null) {
|
|
f(replacementCodepoint);
|
|
} else {
|
|
throw new IllegalArgumentException("Invalid encoding");
|
|
}
|
|
}
|
|
|
|
void apply(void f(int v)) {
|
|
int i = offset;
|
|
while (i < end) {
|
|
int value = utf8EncodedBytes[i++];
|
|
if (value >= 0) {
|
|
if (value <= _UTF8_ONE_BYTE_MAX) {
|
|
f(value);
|
|
} else if (value < _UTF8_FIRST_BYTE_OF_TWO_BASE) {
|
|
addReplacementCodepoint(f, replacementCodepoint);
|
|
continue;
|
|
} else {
|
|
int additionalBytes = 0;
|
|
if (value < _UTF8_FIRST_BYTE_OF_THREE_BASE) {
|
|
value -= _UTF8_FIRST_BYTE_OF_TWO_BASE;
|
|
additionalBytes = 1;
|
|
} else if (value < _UTF8_FIRST_BYTE_OF_FOUR_BASE) {
|
|
value -= _UTF8_FIRST_BYTE_OF_THREE_BASE;
|
|
additionalBytes = 2;
|
|
} else if (value < _UTF8_FIRST_BYTE_OF_FIVE_BASE) {
|
|
value -= _UTF8_FIRST_BYTE_OF_FOUR_BASE;
|
|
additionalBytes = 3;
|
|
} else if (value < _UTF8_FIRST_BYTE_OF_SIX_BASE) {
|
|
value -= _UTF8_FIRST_BYTE_OF_FIVE_BASE;
|
|
additionalBytes = 4;
|
|
} else if (value < _UTF8_FIRST_BYTE_BOUND_EXCL) {
|
|
value -= _UTF8_FIRST_BYTE_OF_SIX_BASE;
|
|
additionalBytes = 5;
|
|
} else {
|
|
addReplacementCodepoint(f, replacementCodepoint);
|
|
continue;
|
|
}
|
|
int j = 0;
|
|
while (j < additionalBytes && i < end) {
|
|
int nextValue = utf8EncodedBytes[i++];
|
|
if (nextValue > _UTF8_ONE_BYTE_MAX &&
|
|
nextValue < _UTF8_FIRST_BYTE_OF_TWO_BASE) {
|
|
value = (value << 6) | (nextValue & _UTF8_LO_SIX_BIT_MASK);
|
|
} else {
|
|
// if sequence-starting code unit, reposition cursor to start here
|
|
if (nextValue >= _UTF8_FIRST_BYTE_OF_TWO_BASE) {
|
|
i--;
|
|
}
|
|
break;
|
|
}
|
|
j++;
|
|
}
|
|
if (j == additionalBytes && (
|
|
value < UNICODE_UTF16_RESERVED_LO ||
|
|
value > UNICODE_UTF16_RESERVED_HI)) {
|
|
if ((additionalBytes == 1 && value > _UTF8_ONE_BYTE_MAX) ||
|
|
(additionalBytes == 2 && value > _UTF8_TWO_BYTE_MAX) ||
|
|
(additionalBytes == 3 && value > _UTF8_THREE_BYTE_MAX &&
|
|
value <= UNICODE_VALID_RANGE_MAX)) {
|
|
f(value);
|
|
} else {
|
|
addReplacementCodepoint(f, replacementCodepoint);
|
|
}
|
|
} else {
|
|
addReplacementCodepoint(f, replacementCodepoint);
|
|
continue;
|
|
}
|
|
}
|
|
} else {
|
|
addReplacementCodepoint(f, replacementCodepoint);
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
|
|
int codepointBufferLength = 0;
|
|
apply(void _(int value) {
|
|
codepointBufferLength++;
|
|
});
|
|
|
|
List<int> codepointBuffer = new List<int>(codepointBufferLength);
|
|
int i = 0;
|
|
apply(void _(int value) {
|
|
codepointBuffer[i++] = value;
|
|
});
|
|
return codepointBuffer;
|
|
}
|