forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 9
/
streambuf.go
481 lines (410 loc) · 12.6 KB
/
streambuf.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
// Package streambuf provides helpers for buffering multiple packet payloads
// and some general parsing functions. All parsing functions are re-entrant,
// that is if a parse function fails due do not having buffered enough bytes yet
// (error value ErrNoMoreBytes) the parser can be called again after appending more
// bytes to the buffer. Parsers potentially reading large amount of bytes might
// remember the last position.
// Additionally a Buffer can be marked as fixed. Fixed buffers to not support
// adding new data, plus ErrNoMoreBytes will never be returned. Instead if a parser
// decides it need more bytes ErrUnexpectedEOB will be returned.
//
// Error handling:
// All functions that might fail, will return an error. The last error reported
// will be stored with the buffer itself. Instead of checking every single error
// one can use the Failed() and Err() methods to check if the buffer is still in a
// valid state and all parsing was successful.
package streambuf
import (
"github.com/elastic/beats/libbeat/logp"
"bytes"
"errors"
)
// Error returned if Append or Write operation is not allowed due to the buffer
// being fixed
var ErrOperationNotAllowed = errors.New("Operation not allowed")
var ErrOutOfRange = errors.New("Data access out of range")
// Parse operation can not be continued. More bytes required. Only returned if
// buffer is not fixed
var ErrNoMoreBytes = errors.New("No more bytes")
// Parse operation failed cause of buffer snapped short + buffer is fixed.
var ErrUnexpectedEOB = errors.New("unexpected end of buffer")
var ErrExpectedByteSequenceMismatch = errors.New("expected byte sequence did not match")
// A Buffer is a variable sized buffer of bytes with Read, Write and simple
// parsing methods. The zero value is an empty buffer ready for use.
//
// A Buffer can be marked as fixed. In this case no data can be appended to the
// buffer anymore and parser/reader methods will fail with ErrUnexpectedEOB if they
// would expect more bytes to come. Mark buffers fixed if some slice was separated
// for further parsing first.
type Buffer struct {
data []byte
err error
fixed bool
// Internal parser state offsets.
// Offset is the position a parse might continue to work at when called
// again (e.g. useful for parsing tcp streams.). The mark is used to remember
// the position last parse operation ended at. The variable available is used
// for faster lookup
// Invariants:
// (1) 0 <= mark <= offset
// (2) 0 <= available <= len(data)
// (3) available = len(data) - mark
mark, offset, available int
}
// Init initializes a zero buffer with some byte slice being retained by the
// buffer. Usage of Init is optional as zero value Buffer is already in valid state.
func (b *Buffer) Init(d []byte, fixed bool) {
b.data = d
b.err = nil
b.fixed = fixed
b.mark = 0
b.offset = 0
b.available = len(d)
}
// New creates new extensible buffer from data slice being retained by the buffer.
func New(data []byte) *Buffer {
return &Buffer{
data: data,
fixed: false,
available: len(data),
}
}
// NewFixed create new fixed buffer from data slice being retained by the buffer.
func NewFixed(data []byte) *Buffer {
return &Buffer{
data: data,
fixed: true,
available: len(data),
}
}
// Snapshot creates a snapshot of buffers current state. Use in conjunction with
// Restore to get simple backtracking support. Between Snapshot and Restore the
// Reset method MUST not be called, as restored buffer will be in invalid state
// after.
func (b *Buffer) Snapshot() *Buffer {
tmp := *b
return &tmp
}
// Restore restores a buffers state. Use in conjunction with
// Snapshot to get simple backtracking support. Between Snapshot and Restore the
// Reset method MUST not be called, as restored buffer will be in invalid state
// after.
func (b *Buffer) Restore(snapshot *Buffer) {
b.err = snapshot.err
b.fixed = snapshot.fixed
b.mark = snapshot.mark
b.offset = snapshot.offset
b.available = snapshot.available
}
func (b *Buffer) doAppend(data []byte, retainable bool, newCap int) error {
if b.fixed {
return b.SetError(ErrOperationNotAllowed)
}
if b.err != nil && b.err != ErrNoMoreBytes {
return b.err
}
if len(b.data) == 0 {
retain := retainable && cap(data) > newCap
if retain {
b.data = data
} else {
if newCap < len(data) {
b.data = make([]byte, len(data))
} else {
b.data = make([]byte, len(data), newCap)
}
copy(b.data, data)
}
} else {
if newCap > 0 && cap(b.data[b.offset:]) < len(data) {
required := cap(b.data) + len(data)
if required < newCap {
tmp := make([]byte, len(b.data), newCap)
copy(tmp, b.data)
b.data = tmp
}
}
b.data = append(b.data, data...)
}
b.available += len(data)
// reset error status (continue parsing)
if b.err == ErrNoMoreBytes {
b.err = nil
}
return nil
}
// Append will append the given data to the buffer. If Buffer is fixed
// ErrOperationNotAllowed will be returned.
func (b *Buffer) Append(data []byte) error {
return b.doAppend(data, true, -1)
}
func (b *Buffer) AppendWithCapLimits(data []byte, newCap int) error {
return b.doAppend(data, true, newCap)
}
// Fix marks a buffer as fixed. No more data can be added to the buffer and
// parse operation might fail if they expect more bytes.
func (b *Buffer) Fix() {
b.fixed = true
}
// Total returns the total number of bytes stored in the buffer
func (b *Buffer) Total() int {
return len(b.data)
}
// Avail checks if count bytes are available for reading from the buffer.
func (b *Buffer) Avail(count int) bool {
return count <= b.available
}
// Len returns the number of bytes of the unread portion.
func (b *Buffer) Len() int {
return b.available
}
// Cap returns the buffer capacity until new memory must be allocated
func (b *Buffer) Cap() int {
return cap(b.data)
}
// LeftBehind returns the number of bytes a re-entrant but not yet finished
// parser did already read.
func (b *Buffer) LeftBehind() int {
return b.offset - b.mark
}
// BufferConsumed returns the number of bytes already consumed since last call to Reset.
func (b *Buffer) BufferConsumed() int {
return b.mark
}
// Advance will advance the buffers read pointer by count bytes. Returns
// ErrNoMoreBytes or ErrUnexpectedEOB if count bytes are not available.
func (b *Buffer) Advance(count int) error {
if !b.Avail(count) {
return b.bufferEndError()
}
b.mark += count
b.offset = b.mark
b.available -= count
return nil
}
// Failed returns true if buffer is in failed state. If buffer is in failed
// state, almost all buffer operations will fail
func (b *Buffer) Failed() bool {
failed := b.err != nil
if failed {
logp.Debug("streambuf", "buf parser already failed with: %s", b.err)
}
return failed
}
// Err returns the error value of the last failed operation.
func (b *Buffer) Err() error {
return b.err
}
// Check if n bytes are addressable in the buffer offset at b.mark and
// increases either the length or allocates bigger slice if necessary
func (b *Buffer) ensureLen(n int) {
delta := n - b.available
if delta <= 0 {
// no additional space required:
return
}
// newly available bytes
b.available += delta
total := len(b.data) + delta
if total <= cap(b.data) {
// enough space in slice -> grow it
b.data = b.data[0:total]
return
}
tmp := make([]byte, total)
copy(tmp, b.data)
b.data = tmp
}
// return slice to write to starting at off + b.mark with given length.
func (b *Buffer) sliceAt(off, len int) []byte {
off += b.mark
end := off + len
b.ensureLen(end - b.mark)
return b.data[off:end]
}
// Consume removes the first n bytes (special variant of Reset) from the
// beginning of the buffer, if at least n bytes have already been processed.
// Returns the byte slice of all bytes being removed from the buffer.
// If total buffer is < n, ErrOutOfRange will be reported or ErrOutOfRange if
// not enough bytes have been processed yet.
func (b *Buffer) Consume(n int) ([]byte, error) {
if n > len(b.data) {
return nil, ErrOutOfRange
}
newMark := b.mark - n
if newMark < 0 {
return nil, ErrOutOfRange
}
old := b.data[:n]
b.data = b.data[n:]
b.mark = newMark
b.offset -= n
b.available = len(b.data) - b.mark
return old, nil
}
// Reset remove all bytes already processed from the buffer. Use Reset after
// processing message to limit amount of buffered data.
func (b *Buffer) Reset() {
b.data = b.data[b.mark:]
b.offset -= b.mark
b.mark = 0
b.available = len(b.data)
b.err = nil
}
// BufferedBytes returns all buffered bytes since last reset.
func (b *Buffer) BufferedBytes() []byte {
return b.data
}
// Bytes returns all bytes not yet processed. The read counters are not advanced
// yet. For example use with fixed Buffer for simple lookahead.
//
// Note:
// The read markers are not advanced. If rest of buffer should be
// processed, call Advance immediately.
func (b *Buffer) Bytes() []byte {
return b.data[b.mark:]
}
func (b *Buffer) bufferEndError() error {
if b.fixed {
return b.SetError(ErrUnexpectedEOB)
}
return b.SetError(ErrNoMoreBytes)
}
// SetError marks a buffer as failed. Append and parse operations will fail with
// err. SetError returns err directly.
func (b *Buffer) SetError(err error) error {
b.err = err
return err
}
// Collect tries to collect count bytes from the buffer and updates the read
// pointers. If the buffer is in failed state or count bytes are not available
// an error will be returned.
func (b *Buffer) Collect(count int) ([]byte, error) {
if b.err != nil {
return nil, b.err
}
if !b.Avail(count) {
return nil, b.bufferEndError()
}
data := b.data[b.mark : b.mark+count]
b.Advance(count)
return data, nil
}
// CollectWithSuffix collects count bytes and checks delim will immediately
// follow the byte sequence. Returns count bytes without delim.
// If delim is not matched ErrExpectedByteSequenceMismatch will be raised.
func (b *Buffer) CollectWithSuffix(count int, delim []byte) ([]byte, error) {
total := count + len(delim)
if b.err != nil {
return nil, b.err
}
if !b.Avail(total) {
return nil, b.bufferEndError()
}
end := b.mark + count
if !bytes.HasPrefix(b.data[end:], delim) {
return nil, b.SetError(ErrExpectedByteSequenceMismatch)
}
data := b.data[b.mark : b.mark+count]
b.Advance(total)
return data, nil
}
// Index returns offset of seq in unprocessed buffer.
// Returns -1 if seq can not be found.
func (b *Buffer) Index(seq []byte) int {
return b.IndexFrom(0, seq)
}
// IndexFrom returns offset of seq in unprocessed buffer start at from.
// Returns -1 if seq can not be found.
func (b *Buffer) IndexFrom(from int, seq []byte) int {
if b.err != nil {
return -1
}
idx := bytes.Index(b.data[b.mark+from:], seq)
if idx < 0 {
return -1
}
return idx + from + b.mark
}
// IndexByte returns offset of byte in unprocessed buffer.
// Returns -1 if byte not in buffer.
func (b *Buffer) IndexByte(byte byte) int {
if b.err != nil {
return -1
}
idx := bytes.IndexByte(b.data[b.offset:], byte)
if idx < 0 {
return -1
}
return idx + (b.offset - b.mark)
}
// IndexByteFrom returns offset of byte in unpressed buffer starting at off.
// Returns -1 if byte not in buffer
func (b *Buffer) IndexByteFrom(off int, byte byte) int {
if b.err != nil {
return -1
}
idx := bytes.IndexByte(b.data[b.offset+off:], byte)
if idx < 0 {
return -1
}
return idx + (b.offset - b.mark) + off
}
// CollectUntil collects all bytes until delim was found (including delim).
func (b *Buffer) CollectUntil(delim []byte) ([]byte, error) {
if b.err != nil {
return nil, b.err
}
idx := bytes.Index(b.data[b.mark:], delim)
if idx < 0 {
return nil, b.bufferEndError()
}
end := b.mark + idx + len(delim)
data := b.data[b.mark:end]
b.Advance(len(data))
return data, nil
}
// CollectUntilByte collects all bytes until delim was found (including delim).
func (b *Buffer) CollectUntilByte(delim byte) ([]byte, error) {
if b.err != nil {
return nil, b.err
}
idx := bytes.IndexByte(b.data[b.offset:], delim)
if idx < 0 {
b.offset = b.mark + b.available
return nil, b.bufferEndError()
}
end := b.offset + idx + 1
data := b.data[b.mark:end]
b.Advance(len(data))
return data, nil
}
// CollectWhile collects all bytes until predicate returns false
func (b *Buffer) CollectWhile(pred func(byte) bool) ([]byte, error) {
if b.err != nil {
return nil, b.err
}
data := b.data[b.offset:]
for i, byte := range data {
if !pred(byte) {
end := b.offset + i + 1
data := b.data[b.mark:end]
b.Advance(len(data))
return data, nil
}
}
b.offset = b.mark + b.available
return nil, b.bufferEndError()
}
func (b *Buffer) PeekByte() (byte, error) {
return b.PeekByteFrom(0)
}
func (b *Buffer) PeekByteFrom(off int) (byte, error) {
if b.err != nil {
return 0, b.err
}
if !b.Avail(off + 1) {
return 0, b.bufferEndError()
}
return b.data[b.mark+off], nil
}