-
-
Notifications
You must be signed in to change notification settings - Fork 134
/
string.go
60 lines (54 loc) · 1.71 KB
/
string.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package bin
import (
"errors"
"io"
)
const (
// If L <= 253, the serialization contains one byte with the value of L,
// then L bytes of the string followed by 0 to 3 characters containing 0,
// such that the overall length of the value be divisible by 4,
// whereupon all of this is interpreted as a sequence of int(L/4)+1 32-bit numbers.
maxSmallStringLength = 253
// If L >= 254, the serialization contains byte 254, followed by 3 bytes with
// the string length L, followed by L bytes of the string, further followed
// by 0 to 3 null padding bytes.
firstLongStringByte = 254
)
func encodeString(b []byte, v string) []byte {
l := len(v)
if l <= maxSmallStringLength {
b = append(b, byte(l))
b = append(b, v...)
currentLen := l + 1
b = append(b, make([]byte, nearestPaddedValueLength(currentLen)-currentLen)...)
return b
}
b = append(b, firstLongStringByte, byte(l), byte(l>>8), byte(l>>16))
b = append(b, v...)
currentLen := l + 4
b = append(b, make([]byte, nearestPaddedValueLength(currentLen)-currentLen)...)
return b
}
func decodeString(b []byte) (n int, v string, err error) {
if len(b) == 0 {
return 0, "", io.ErrUnexpectedEOF
}
if b[0] == firstLongStringByte {
if len(b) < 4 {
return 0, "", io.ErrUnexpectedEOF
}
strLen := uint32(b[1]) | uint32(b[2])<<8 | uint32(b[3])<<16
if len(b) < (int(strLen) + 4) {
return 0, "", io.ErrUnexpectedEOF
}
return nearestPaddedValueLength(int(strLen) + 4), string(b[4 : strLen+4]), nil
}
strLen := b[0]
if len(b) < (int(strLen) + 1) {
return 0, "", io.ErrUnexpectedEOF
}
if strLen >= maxSmallStringLength {
return 0, "", errors.New("invalid length")
}
return nearestPaddedValueLength(int(strLen) + 1), string(b[1 : strLen+1]), nil
}