2008-11-21 17:13:31 -07:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// UTF-8 support.
|
|
|
|
|
|
|
|
package utf8
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
const (
|
2008-11-21 17:13:31 -07:00
|
|
|
RuneError = 0xFFFD;
|
|
|
|
RuneSelf = 0x80;
|
2008-11-24 15:51:33 -07:00
|
|
|
RuneMax = 0x10FFFF;
|
|
|
|
UTFMax = 4;
|
2008-11-21 17:13:31 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2009-01-16 13:47:24 -07:00
|
|
|
_T1 = 0x00; // 0000 0000
|
|
|
|
_Tx = 0x80; // 1000 0000
|
|
|
|
_T2 = 0xC0; // 1100 0000
|
|
|
|
_T3 = 0xE0; // 1110 0000
|
|
|
|
_T4 = 0xF0; // 1111 0000
|
|
|
|
_T5 = 0xF8; // 1111 1000
|
|
|
|
|
|
|
|
_Maskx = 0x3F; // 0011 1111
|
|
|
|
_Mask2 = 0x1F; // 0001 1111
|
|
|
|
_Mask3 = 0x0F; // 0000 1111
|
|
|
|
_Mask4 = 0x07; // 0000 0111
|
|
|
|
|
|
|
|
_Rune1Max = 1<<7 - 1;
|
|
|
|
_Rune2Max = 1<<11 - 1;
|
|
|
|
_Rune3Max = 1<<16 - 1;
|
|
|
|
_Rune4Max = 1<<21 - 1;
|
2008-11-21 17:13:31 -07:00
|
|
|
)
|
|
|
|
|
2009-01-16 13:47:24 -07:00
|
|
|
func decodeRuneInternal(p []byte) (rune, size int, short bool) {
|
2008-11-24 15:51:33 -07:00
|
|
|
n := len(p);
|
|
|
|
if n < 1 {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 0, true;
|
|
|
|
}
|
|
|
|
c0 := p[0];
|
|
|
|
|
|
|
|
// 1-byte, 7-bit sequence?
|
2009-01-16 13:47:24 -07:00
|
|
|
if c0 < _Tx {
|
2008-11-21 17:13:31 -07:00
|
|
|
return int(c0), 1, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// unexpected continuation byte?
|
2009-01-16 13:47:24 -07:00
|
|
|
if c0 < _T2 {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// need first continuation byte
|
2008-11-24 15:51:33 -07:00
|
|
|
if n < 2 {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 1, true
|
|
|
|
}
|
|
|
|
c1 := p[1];
|
2009-01-16 13:47:24 -07:00
|
|
|
if c1 < _Tx || _T2 <= c1 {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2-byte, 11-bit sequence?
|
2009-01-16 13:47:24 -07:00
|
|
|
if c0 < _T3 {
|
|
|
|
rune = int(c0&_Mask2)<<6 | int(c1&_Maskx);
|
|
|
|
if rune <= _Rune1Max {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
return rune, 2, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// need second continuation byte
|
2008-11-24 15:51:33 -07:00
|
|
|
if n < 3 {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 1, true
|
|
|
|
}
|
|
|
|
c2 := p[2];
|
2009-01-16 13:47:24 -07:00
|
|
|
if c2 < _Tx || _T2 <= c2 {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3-byte, 16-bit sequence?
|
2009-01-16 13:47:24 -07:00
|
|
|
if c0 < _T4 {
|
|
|
|
rune = int(c0&_Mask3)<<12 | int(c1&_Maskx)<<6 | int(c2&_Maskx);
|
|
|
|
if rune <= _Rune2Max {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
return rune, 3, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// need third continuation byte
|
2008-11-24 15:51:33 -07:00
|
|
|
if n < 4 {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 1, true
|
|
|
|
}
|
|
|
|
c3 := p[3];
|
2009-01-16 13:47:24 -07:00
|
|
|
if c3 < _Tx || _T2 <= c3 {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// 4-byte, 21-bit sequence?
|
2009-01-16 13:47:24 -07:00
|
|
|
if c0 < _T5 {
|
|
|
|
rune = int(c0&_Mask4)<<18 | int(c1&_Maskx)<<12 | int(c2&_Maskx)<<6 | int(c3&_Maskx);
|
|
|
|
if rune <= _Rune3Max {
|
2008-11-21 17:13:31 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
return rune, 4, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// error
|
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
|
2009-01-16 13:47:24 -07:00
|
|
|
func decodeRuneInStringInternal(s string, i int, n int) (rune, size int, short bool) {
|
2008-11-24 15:51:33 -07:00
|
|
|
if n < 1 {
|
|
|
|
return RuneError, 0, true;
|
|
|
|
}
|
|
|
|
c0 := s[i];
|
|
|
|
|
|
|
|
// 1-byte, 7-bit sequence?
|
2009-01-16 13:47:24 -07:00
|
|
|
if c0 < _Tx {
|
2008-11-24 15:51:33 -07:00
|
|
|
return int(c0), 1, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// unexpected continuation byte?
|
2009-01-16 13:47:24 -07:00
|
|
|
if c0 < _T2 {
|
2008-11-24 15:51:33 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// need first continuation byte
|
|
|
|
if n < 2 {
|
|
|
|
return RuneError, 1, true
|
|
|
|
}
|
|
|
|
c1 := s[i+1];
|
2009-01-16 13:47:24 -07:00
|
|
|
if c1 < _Tx || _T2 <= c1 {
|
2008-11-24 15:51:33 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2-byte, 11-bit sequence?
|
2009-01-16 13:47:24 -07:00
|
|
|
if c0 < _T3 {
|
|
|
|
rune = int(c0&_Mask2)<<6 | int(c1&_Maskx);
|
|
|
|
if rune <= _Rune1Max {
|
2008-11-24 15:51:33 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
return rune, 2, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// need second continuation byte
|
|
|
|
if n < 3 {
|
|
|
|
return RuneError, 1, true
|
|
|
|
}
|
|
|
|
c2 := s[i+2];
|
2009-01-16 13:47:24 -07:00
|
|
|
if c2 < _Tx || _T2 <= c2 {
|
2008-11-24 15:51:33 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3-byte, 16-bit sequence?
|
2009-01-16 13:47:24 -07:00
|
|
|
if c0 < _T4 {
|
|
|
|
rune = int(c0&_Mask3)<<12 | int(c1&_Maskx)<<6 | int(c2&_Maskx);
|
|
|
|
if rune <= _Rune2Max {
|
2008-11-24 15:51:33 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
return rune, 3, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// need third continuation byte
|
|
|
|
if n < 4 {
|
|
|
|
return RuneError, 1, true
|
|
|
|
}
|
|
|
|
c3 := s[i+3];
|
2009-01-16 13:47:24 -07:00
|
|
|
if c3 < _Tx || _T2 <= c3 {
|
2008-11-24 15:51:33 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// 4-byte, 21-bit sequence?
|
2009-01-16 13:47:24 -07:00
|
|
|
if c0 < _T5 {
|
|
|
|
rune = int(c0&_Mask4)<<18 | int(c1&_Maskx)<<12 | int(c2&_Maskx)<<6 | int(c3&_Maskx);
|
|
|
|
if rune <= _Rune3Max {
|
2008-11-24 15:51:33 -07:00
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
return rune, 4, false
|
|
|
|
}
|
|
|
|
|
|
|
|
// error
|
|
|
|
return RuneError, 1, false
|
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func FullRune(p []byte) bool {
|
2009-01-16 13:47:24 -07:00
|
|
|
rune, size, short := decodeRuneInternal(p);
|
2008-11-21 17:13:31 -07:00
|
|
|
return !short
|
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func FullRuneInString(s string, i int) bool {
|
2009-01-16 13:47:24 -07:00
|
|
|
rune, size, short := decodeRuneInStringInternal(s, i, len(s) - i);
|
2008-11-24 15:51:33 -07:00
|
|
|
return !short
|
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func DecodeRune(p []byte) (rune, size int) {
|
2008-11-21 17:13:31 -07:00
|
|
|
var short bool;
|
2009-01-16 13:47:24 -07:00
|
|
|
rune, size, short = decodeRuneInternal(p);
|
2008-11-21 17:13:31 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func DecodeRuneInString(s string, i int) (rune, size int) {
|
2008-11-24 15:51:33 -07:00
|
|
|
var short bool;
|
2009-01-16 13:47:24 -07:00
|
|
|
rune, size, short = decodeRuneInStringInternal(s, i, len(s) - i);
|
2008-11-24 15:51:33 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func RuneLen(rune int) int {
|
2008-11-21 17:13:31 -07:00
|
|
|
switch {
|
2009-01-16 13:47:24 -07:00
|
|
|
case rune <= _Rune1Max:
|
2008-11-21 17:13:31 -07:00
|
|
|
return 1;
|
2009-01-16 13:47:24 -07:00
|
|
|
case rune <= _Rune2Max:
|
2008-11-21 17:13:31 -07:00
|
|
|
return 2;
|
2009-01-16 13:47:24 -07:00
|
|
|
case rune <= _Rune3Max:
|
2008-11-21 17:13:31 -07:00
|
|
|
return 3;
|
2009-01-16 13:47:24 -07:00
|
|
|
case rune <= _Rune4Max:
|
2008-11-21 17:13:31 -07:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func EncodeRune(rune int, p []byte) int {
|
2009-01-16 13:47:24 -07:00
|
|
|
if rune <= _Rune1Max {
|
2008-11-21 17:13:31 -07:00
|
|
|
p[0] = byte(rune);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-01-16 13:47:24 -07:00
|
|
|
if rune <= _Rune2Max {
|
|
|
|
p[0] = _T2 | byte(rune>>6);
|
|
|
|
p[1] = _Tx | byte(rune)&_Maskx;
|
2008-11-21 17:13:31 -07:00
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if rune > RuneMax {
|
|
|
|
rune = RuneError
|
|
|
|
}
|
|
|
|
|
2009-01-16 13:47:24 -07:00
|
|
|
if rune <= _Rune3Max {
|
|
|
|
p[0] = _T3 | byte(rune>>12);
|
|
|
|
p[1] = _Tx | byte(rune>>6)&_Maskx;
|
|
|
|
p[2] = _Tx | byte(rune)&_Maskx;
|
2008-11-21 17:13:31 -07:00
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
|
2009-01-16 13:47:24 -07:00
|
|
|
p[0] = _T4 | byte(rune>>18);
|
|
|
|
p[1] = _Tx | byte(rune>>12)&_Maskx;
|
|
|
|
p[2] = _Tx | byte(rune>>6)&_Maskx;
|
|
|
|
p[3] = _Tx | byte(rune)&_Maskx;
|
2008-11-21 17:13:31 -07:00
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func RuneCount(p []byte) int {
|
2008-12-04 22:00:34 -07:00
|
|
|
i := 0;
|
|
|
|
var n int;
|
|
|
|
for n = 0; i < len(p); n++ {
|
|
|
|
if p[i] < RuneSelf {
|
|
|
|
i++;
|
|
|
|
} else {
|
|
|
|
rune, size := DecodeRune(p[i:len(p)]);
|
|
|
|
i += size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
func RuneCountInString(s string, i int, l int) int {
|
2008-12-04 22:00:34 -07:00
|
|
|
ei := i + l;
|
|
|
|
n := 0;
|
|
|
|
for n = 0; i < ei; n++ {
|
|
|
|
if s[i] < RuneSelf {
|
|
|
|
i++;
|
|
|
|
} else {
|
2009-01-16 13:47:24 -07:00
|
|
|
rune, size, short := decodeRuneInStringInternal(s, i, ei - i);
|
2008-12-04 22:00:34 -07:00
|
|
|
i += size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|