forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ascii.go
212 lines (181 loc) · 4.11 KB
/
ascii.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
package streambuf
// ASCII parsing support
import (
"bytes"
"errors"
)
var ErrExpectedDigit = errors.New("Expected digit")
// UntilCRLF collects all bytes until a CRLF ("\r\n") sequence is found. The
// returned byte slice will not contain the CRLF sequence.
// If CRLF was not found yet one of ErrNoMoreBytes or ErrUnexpectedEOB will be
// reported.
func (b *Buffer) UntilCRLF() ([]byte, error) {
if b.err != nil {
return nil, b.err
}
data := b.data[b.offset:]
for i, byte := range data {
if byte != '\r' {
continue
}
if len(data) < i+2 {
b.offset += i
return nil, b.bufferEndError()
}
if data[i+1] != '\n' {
// false alarm, continue
continue
}
// yay, found
end := i
data = b.data[b.mark : b.offset+end]
b.Advance(len(data) + 2)
return data, nil
}
b.offset += len(data)
return nil, b.bufferEndError()
}
// Ignore symbol will advance the read pointer until the first symbol not
// matching s is found.
func (b *Buffer) IgnoreSymbol(s uint8) error {
if b.err != nil {
return b.err
}
data := b.data[b.offset:]
for i, byte := range data {
if byte != s {
b.Advance(b.offset + i - b.mark)
return nil
}
}
b.offset += len(data)
return b.bufferEndError()
}
// UntilSymbol collects all bytes until symbol s is found. If errOnEnd is set to
// true, the collected byte slice will be returned if no more bytes are available
// for parsing, but s has not matched yet.
func (b *Buffer) UntilSymbol(s uint8, errOnEnd bool) ([]byte, error) {
if b.err != nil {
return nil, b.err
}
data := b.data[b.offset:]
for i, byte := range data {
if byte == s {
data := b.data[b.mark : b.offset+i]
b.Advance(len(data))
return data, nil
}
}
if errOnEnd {
b.offset += len(data)
return nil, b.bufferEndError()
} else {
data := b.data[b.mark:]
b.Advance(len(data))
return data, nil
}
}
// AsciiUint will parse unsigned number from Buffer.
func (b *Buffer) AsciiUint(errOnEnd bool) (uint64, error) {
if b.err != nil {
return 0, b.err
}
if len(b.data) <= b.mark { // end of buffer
return 0, b.bufferEndError()
}
end, err := b.asciiFindNumberEnd(b.offset, errOnEnd)
if err != nil {
return 0, err
}
// parse value
value, err := doParseNumber(b.data[b.mark:end])
if err != nil {
return 0, err
}
b.Advance(end - b.mark)
return value, nil
}
// AsciiInt will parse (optionally) signed number from Buffer.
func (b *Buffer) AsciiInt(errOnEnd bool) (int64, error) {
if b.err != nil {
return 0, b.err
}
if len(b.data) <= b.mark { // end of buffer
return 0, b.bufferEndError()
}
// check signedness of number
signed := b.data[b.mark] == '-'
start := b.mark
if signed {
start++
if len(b.data) <= start {
return 0, b.bufferEndError()
}
} else if b.data[b.mark] == '+' {
start++
if len(b.data) <= start {
return 0, b.bufferEndError()
}
}
// adapt offset to point to start of number
offset := b.offset
if b.offset == b.mark {
offset = start
}
end, err := b.asciiFindNumberEnd(offset, errOnEnd)
if err != nil {
return 0, err
}
value, err := doParseNumber(b.data[start:end])
if err != nil {
return 0, err
}
b.Advance(end - b.mark)
if signed {
return -int64(value), nil
} else {
return int64(value), nil
}
}
// AsciiMatch checks the Buffer it's next byte sequence matched prefix. The
// read pointer is not advanced by AsciiPrefix.
func (b *Buffer) AsciiMatch(prefix []byte) (bool, error) {
if b.err != nil {
return false, b.err
}
if !b.Avail(len(prefix)) {
return false, b.bufferEndError()
}
has := bytes.HasPrefix(b.data[b.mark:], prefix)
return has, nil
}
func (b *Buffer) asciiFindNumberEnd(start int, errOnEnd bool) (int, error) {
// find end of number
end := -1
for i, byte := range b.data[start:] {
if byte < '0' || '9' < byte {
end = i + start
break
}
}
// check end
if end < 0 {
if errOnEnd {
return -1, b.bufferEndError()
} else {
end = len(b.data)
}
}
return end, nil
}
func doParseNumber(buf []byte) (uint64, error) {
if len(buf) == 0 {
return 0, ErrExpectedDigit
}
var value uint64
for _, byte := range buf {
value = uint64(byte-'0') + 10*value
}
return value, nil
}
// binary parsing support