github.com/dorkamotorka/go/src@v0.0.0-20230614113921-187095f0e316/unicode/utf16/utf16.go (about) 1 // Copyright 2010 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // Package utf16 implements encoding and decoding of UTF-16 sequences. 6 package utf16 7 8 // The conditions replacementChar==unicode.ReplacementChar and 9 // maxRune==unicode.MaxRune are verified in the tests. 10 // Defining them locally avoids this package depending on package unicode. 11 12 const ( 13 replacementChar = '\uFFFD' // Unicode replacement character 14 maxRune = '\U0010FFFF' // Maximum valid Unicode code point. 15 ) 16 17 const ( 18 // 0xd800-0xdc00 encodes the high 10 bits of a pair. 19 // 0xdc00-0xe000 encodes the low 10 bits of a pair. 20 // the value is those 20 bits plus 0x10000. 21 surr1 = 0xd800 22 surr2 = 0xdc00 23 surr3 = 0xe000 24 25 surrSelf = 0x10000 26 ) 27 28 // IsSurrogate reports whether the specified Unicode code point 29 // can appear in a surrogate pair. 30 func IsSurrogate(r rune) bool { 31 return surr1 <= r && r < surr3 32 } 33 34 // DecodeRune returns the UTF-16 decoding of a surrogate pair. 35 // If the pair is not a valid UTF-16 surrogate pair, DecodeRune returns 36 // the Unicode replacement code point U+FFFD. 37 func DecodeRune(r1, r2 rune) rune { 38 if surr1 <= r1 && r1 < surr2 && surr2 <= r2 && r2 < surr3 { 39 return (r1-surr1)<<10 | (r2 - surr2) + surrSelf 40 } 41 return replacementChar 42 } 43 44 // EncodeRune returns the UTF-16 surrogate pair r1, r2 for the given rune. 45 // If the rune is not a valid Unicode code point or does not need encoding, 46 // EncodeRune returns U+FFFD, U+FFFD. 47 func EncodeRune(r rune) (r1, r2 rune) { 48 if r < surrSelf || r > maxRune { 49 return replacementChar, replacementChar 50 } 51 r -= surrSelf 52 return surr1 + (r>>10)&0x3ff, surr2 + r&0x3ff 53 } 54 55 // Encode returns the UTF-16 encoding of the Unicode code point sequence s. 56 func Encode(s []rune) []uint16 { 57 n := len(s) 58 for _, v := range s { 59 if v >= surrSelf { 60 n++ 61 } 62 } 63 64 a := make([]uint16, n) 65 n = 0 66 for _, v := range s { 67 switch { 68 case 0 <= v && v < surr1, surr3 <= v && v < surrSelf: 69 // normal rune 70 a[n] = uint16(v) 71 n++ 72 case surrSelf <= v && v <= maxRune: 73 // needs surrogate sequence 74 r1, r2 := EncodeRune(v) 75 a[n] = uint16(r1) 76 a[n+1] = uint16(r2) 77 n += 2 78 default: 79 a[n] = uint16(replacementChar) 80 n++ 81 } 82 } 83 return a[:n] 84 } 85 86 // AppendRune appends the UTF-16 encoding of the Unicode code point r 87 // to the end of p and returns the extended buffer. If the rune is not 88 // a valid Unicode code point, it appends the encoding of U+FFFD. 89 func AppendRune(a []uint16, r rune) []uint16 { 90 // This function is inlineable for fast handling of ASCII. 91 switch { 92 case 0 <= r && r < surr1, surr3 <= r && r < surrSelf: 93 // normal rune 94 return append(a, uint16(r)) 95 case surrSelf <= r && r <= maxRune: 96 // needs surrogate sequence 97 r1, r2 := EncodeRune(r) 98 return append(a, uint16(r1), uint16(r2)) 99 } 100 return append(a, replacementChar) 101 } 102 103 // Decode returns the Unicode code point sequence represented 104 // by the UTF-16 encoding s. 105 func Decode(s []uint16) []rune { 106 // Preallocate capacity to hold up to 64 runes. 107 // Decode inlines, so the allocation can live on the stack. 108 buf := make([]rune, 0, 64) 109 return decode(s, buf) 110 } 111 112 // decode appends to buf the Unicode code point sequence represented 113 // by the UTF-16 encoding s and return the extended buffer. 114 func decode(s []uint16, buf []rune) []rune { 115 for i := 0; i < len(s); i++ { 116 var ar rune 117 switch r := s[i]; { 118 case r < surr1, surr3 <= r: 119 // normal rune 120 ar = rune(r) 121 case surr1 <= r && r < surr2 && i+1 < len(s) && 122 surr2 <= s[i+1] && s[i+1] < surr3: 123 // valid surrogate sequence 124 ar = DecodeRune(rune(r), rune(s[i+1])) 125 i++ 126 default: 127 // invalid surrogate sequence 128 ar = replacementChar 129 } 130 buf = append(buf, ar) 131 } 132 return buf 133 }