-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathbufio.go
600 lines (512 loc) · 11.4 KB
/
bufio.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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
package resp
import (
"bytes"
"fmt"
"io"
"strconv"
"sync"
)
type bufioR struct {
rd io.Reader
buf []byte
r, w int
}
// Buffered returns the number of buffered bytes
func (b *bufioR) Buffered() int {
return b.w - b.r
}
func (b *bufioR) PeekByte() (byte, error) {
if err := b.require(1); err != nil {
return 0, err
}
return b.buf[b.r], nil
}
func (b *bufioR) PeekType() (t ResponseType, err error) {
if err = b.require(1); err != nil {
return
}
switch b.buf[b.r] {
case '*':
t = TypeArray
case '$':
if err = b.require(2); err != nil {
return
}
if b.buf[b.r+1] == '-' {
t = TypeNil
} else {
t = TypeBulk
}
case '+':
t = TypeInline
case '-':
t = TypeError
case ':':
t = TypeInt
}
return
}
func (b *bufioR) ReadNil() error {
line, err := b.ReadLine()
if err != nil {
return err
}
if len(line) < 3 || !bytes.Equal(line[:3], binNIL[:3]) {
return errNotANilMessage
}
return nil
}
func (b *bufioR) ReadInt() (int64, error) {
line, err := b.ReadLine()
if err != nil {
return 0, err
}
return line.ParseInt()
}
func (b *bufioR) ReadError() (string, error) {
line, err := b.ReadLine()
if err != nil {
return "", err
}
return line.ParseMessage('-')
}
func (b *bufioR) ReadInlineString() (string, error) {
line, err := b.ReadLine()
if err != nil {
return "", err
}
return line.ParseMessage('+')
}
func (b *bufioR) ReadArrayLen() (int, error) {
line, err := b.ReadLine()
if err != nil {
return 0, err
}
sz, err := line.ParseSize('*', errInvalidMultiBulkLength)
if err != nil {
return 0, err
}
return int(sz), nil
}
func (b *bufioR) ReadBulkLen() (int64, error) {
line, err := b.ReadLine()
if err != nil {
return 0, err
}
return line.ParseSize('$', errInvalidBulkLength)
}
func (b *bufioR) ReadBulk(p []byte) ([]byte, error) {
sz, err := b.ReadBulkLen()
if err != nil {
return p, err
}
if err := b.require(int(sz + 2)); err != nil {
return p, err
}
p = append(p, b.buf[b.r:b.r+int(sz)]...)
b.r += int(sz + 2)
return p, nil
}
func (b *bufioR) StreamBulk() (io.ReadCloser, error) {
sz, err := b.ReadBulkLen()
if err != nil {
return nil, err
}
return &bulkReader{bufioR: b, n: sz + 2}, nil
}
func (b *bufioR) ReadBulkString() (string, error) {
sz, err := b.ReadBulkLen()
if err != nil {
return "", err
}
if err := b.require(int(sz + 2)); err != nil {
return "", err
}
s := string(b.buf[b.r : b.r+int(sz)])
b.r += int(sz + 2)
return s, nil
}
func (b *bufioR) SkipBulk() error {
sz, err := b.ReadBulkLen()
if err != nil {
return err
}
return b.skipN(sz + 2)
}
func (b *bufioR) skipN(sz int64) error {
// if bulk doesn't overflow buffer
extra := sz - int64(b.Buffered())
if extra < 1 {
b.r += int(sz)
return nil
}
// otherwise, reset buffer ...
b.r = 0
b.w = 0
// ... and discard the extra bytes
x := extra
r := io.LimitReader(b.rd, x)
for {
n, err := r.Read(b.buf)
x -= int64(n)
if err == io.EOF {
break
} else if err != nil {
return err
}
}
if x != 0 {
return io.EOF
}
return nil
}
func (b *bufioR) PeekN(offset, n int) ([]byte, error) {
if err := b.require(offset + n); err != nil {
return nil, err
}
return b.buf[b.r+offset : b.r+offset+n], nil
}
// PeekLine returns the next line until CRLF without reading it
func (b *bufioR) PeekLine(offset int) (bufioLn, error) {
index := -1
// try to find the end of the line
start := b.r + offset
if start < b.w {
index = bytes.IndexByte(b.buf[start:b.w], '\r')
}
// try to read more data into the buffer if not in the buffer
if index < 0 {
if err := b.fill(); err != nil {
return nil, err
}
start = b.r + offset
if start < b.w {
index = bytes.IndexByte(b.buf[start:b.w], '\r')
}
}
// fail if still nothing found
if index < 0 {
return nil, errInlineRequestTooLong
}
// Although rarely, make sure '\n' is buffered.
if (start + index + 1) >= b.w {
if err := b.require(offset + index + 2); err != nil {
return nil, err
}
start = b.r + offset
}
return bufioLn(b.buf[start : start+index+2]), nil
}
// ReadLine returns the next line until CRLF
func (b *bufioR) ReadLine() (bufioLn, error) {
line, err := b.PeekLine(0)
b.r += len(line)
return line, err
}
// Reset resets the reader with an new interface
func (b *bufioR) Reset(r io.Reader) {
b.reset(b.buf, r)
}
// require ensures that sz bytes are buffered
func (b *bufioR) require(sz int) error {
extra := sz - b.Buffered()
if extra < 1 {
return nil
}
// compact first
b.compact()
// grow the buffer if necessary
if n := b.w + extra; n > len(b.buf) {
buf := make([]byte, n)
copy(buf, b.buf[:b.w])
b.buf = buf
}
// read data into buffer
n, err := io.ReadAtLeast(b.rd, b.buf[b.w:], extra)
b.w += n
return err
}
// fill tries to read more data into the buffer
func (b *bufioR) fill() error {
b.compact()
if b.w < len(b.buf) {
n, err := b.rd.Read(b.buf[b.w:])
b.w += n
return err
}
return nil
}
// compact moves the unread chunk to the beginning of the buffer
func (b *bufioR) compact() {
if b.r > 0 {
copy(b.buf, b.buf[b.r:b.w])
b.w -= b.r
b.r = 0
}
}
func (b *bufioR) reset(buf []byte, rd io.Reader) {
*b = bufioR{buf: buf, rd: rd}
}
// --------------------------------------------------------------------
type bulkReader struct {
*bufioR
n int64
}
func (b *bulkReader) Read(p []byte) (n int, err error) {
if b.n <= 0 {
return 0, io.EOF
}
if int64(len(p)) > b.n {
p = p[0:b.n]
}
if b.Buffered() == 0 {
n, err = b.rd.Read(p)
} else {
n = copy(p, b.buf[b.r:b.w])
b.r += n
}
b.n -= int64(n)
if pad := 2 - b.n; pad > 0 {
n -= int(pad)
}
return
}
// Close discards any unread data
func (b *bulkReader) Close() error {
if b.n <= 0 {
return nil
}
err := b.skipN(b.n)
b.n = 0
return err
}
// --------------------------------------------------------------------
type bufioLn []byte
// Trim truncates CRLF
func (ln bufioLn) Trim() bufioLn {
n := len(ln)
for ; n > 0; n-- {
if c := ln[n-1]; !asciiSpace[c] {
break
}
}
return ln[:n]
}
// FirstWord return the first word
func (ln bufioLn) FirstWord() string {
offset := 0
inWord := false
data := ln.Trim()
for i, c := range data {
if asciiSpace[c] {
if inWord {
return string(data[offset:i])
}
inWord = false
} else {
if !inWord {
offset = i
}
inWord = true
}
}
return string(data[offset:])
}
// ParseInt parses an int
func (ln bufioLn) ParseInt() (int64, error) {
data := ln.Trim()
if len(data) < 2 {
return 0, protoErrorf("Protocol error: expected ':', got ' '")
} else if data[0] != ':' {
return 0, protoErrorf("Protocol error: expected ':', got '%s'", string(data[0]))
}
n, m := int64(0), int64(1)
for i, c := range data[1:] {
if c >= '0' && c <= '9' {
n = n*10 + int64(c-'0')
} else if c == '-' && i == 0 {
m = -1
} else {
return 0, errNotANumber
}
}
return n * m, nil
}
// ParseMessage converts the line to a string
func (ln bufioLn) ParseMessage(prefix byte) (string, error) {
data := ln.Trim()
if len(data) < 1 {
return "", protoErrorf("Protocol error: expected '%s', got ' '", string(prefix))
} else if data[0] != prefix {
return "", protoErrorf("Protocol error: expected '%s', got '%s'", string(prefix), string(data[0]))
}
return string(data[1:]), nil
}
// ParseSize parses a size with prefix
func (ln bufioLn) ParseSize(prefix byte, fallback error) (int64, error) {
data := ln.Trim()
if len(data) == 0 {
return 0, protoErrorf("Protocol error: expected '%s', got ' '", string(prefix))
} else if data[0] != prefix {
return 0, protoErrorf("Protocol error: expected '%s', got '%s'", string(prefix), string(data[0]))
} else if len(data) < 2 {
return 0, fallback
}
var n int64
for _, c := range data[1:] {
if c >= '0' && c <= '9' {
n = n*10 + int64(c-'0')
} else {
return 0, fallback
}
}
if n < 0 {
return 0, fallback
}
return n, nil
}
// --------------------------------------------------------------------
type bufioW struct {
io.Writer
buf []byte
mu sync.Mutex
}
// Buffered returns the number of buffered bytes
func (b *bufioW) Buffered() int {
b.mu.Lock()
n := len(b.buf)
b.mu.Unlock()
return n
}
// AppendArrayLen appends an array header to the output buffer
func (b *bufioW) AppendArrayLen(n int) {
b.mu.Lock()
b.appendSize('*', int64(n))
b.mu.Unlock()
}
// AppendBulk appends bulk bytes to the output buffer
func (b *bufioW) AppendBulk(p []byte) {
b.mu.Lock()
b.appendSize('$', int64(len(p)))
b.buf = append(b.buf, p...)
b.buf = append(b.buf, binCRLF...)
b.mu.Unlock()
}
// AppendBulkString appends a bulk string to the output buffer
func (b *bufioW) AppendBulkString(s string) {
b.mu.Lock()
b.appendSize('$', int64(len(s)))
b.buf = append(b.buf, s...)
b.buf = append(b.buf, binCRLF...)
b.mu.Unlock()
}
// AppendInline appends inline bytes to the output buffer
func (b *bufioW) AppendInline(p []byte) {
b.mu.Lock()
b.buf = append(b.buf, '+')
b.buf = append(b.buf, p...)
b.buf = append(b.buf, binCRLF...)
b.mu.Unlock()
}
// AppendInlineString appends an inline string to the output buffer
func (b *bufioW) AppendInlineString(s string) {
b.mu.Lock()
b.buf = append(b.buf, '+')
b.buf = append(b.buf, s...)
b.buf = append(b.buf, binCRLF...)
b.mu.Unlock()
}
// AppendError appends an error message to the output buffer
func (b *bufioW) AppendError(msg string) {
b.mu.Lock()
b.buf = append(b.buf, '-')
b.buf = append(b.buf, msg...)
b.buf = append(b.buf, binCRLF...)
b.mu.Unlock()
}
// AppendErrorf appends an error message to the output buffer
func (b *bufioW) AppendErrorf(pattern string, args ...interface{}) {
b.AppendError(fmt.Sprintf(pattern, args...))
}
// AppendInt appends a numeric response to the output buffer
func (b *bufioW) AppendInt(n int64) {
b.mu.Lock()
switch n {
case 0:
b.buf = append(b.buf, binZERO...)
case 1:
b.buf = append(b.buf, binONE...)
default:
b.buf = append(b.buf, ':')
b.buf = append(b.buf, strconv.FormatInt(n, 10)...)
b.buf = append(b.buf, binCRLF...)
}
b.mu.Unlock()
}
// AppendNil appends a nil-value to the output buffer
func (b *bufioW) AppendNil() {
b.mu.Lock()
b.buf = append(b.buf, binNIL...)
b.mu.Unlock()
}
// AppendOK appends "OK" to the output buffer
func (b *bufioW) AppendOK() {
b.mu.Lock()
b.buf = append(b.buf, binOK...)
b.mu.Unlock()
}
// CopyBulk flushes the existing buffer and read n bytes from the reader directly to
// the client connection.
func (b *bufioW) CopyBulk(src io.Reader, n int64) error {
b.mu.Lock()
defer b.mu.Unlock()
b.appendSize('$', n)
if start := len(b.buf); int64(cap(b.buf)-start) >= n+2 {
b.buf = b.buf[:start+int(n)]
if _, err := io.ReadFull(src, b.buf[start:]); err != nil {
return err
}
b.buf = append(b.buf, binCRLF...)
return nil
}
if err := b.flush(); err != nil {
return err
}
b.buf = b.buf[:cap(b.buf)]
_, err := io.CopyBuffer(b, io.LimitReader(src, int64(n)), b.buf)
b.buf = b.buf[:0]
if err != nil {
return err
}
b.buf = append(b.buf, binCRLF...)
return nil
}
// Flush flushes pending buffer
func (b *bufioW) Flush() error {
b.mu.Lock()
err := b.flush()
b.mu.Unlock()
return err
}
// Reset resets the writer with an new interface
func (b *bufioW) Reset(w io.Writer) {
b.reset(b.buf, w)
}
func (b *bufioW) flush() error {
if len(b.buf) == 0 {
return nil
}
if _, err := b.Write(b.buf); err != nil {
return err
}
b.buf = b.buf[:0]
return nil
}
func (b *bufioW) appendSize(c byte, n int64) {
b.buf = append(b.buf, c)
b.buf = append(b.buf, strconv.FormatInt(n, 10)...)
b.buf = append(b.buf, binCRLF...)
}
func (b *bufioW) reset(buf []byte, wr io.Writer) {
*b = bufioW{buf: buf[:0], Writer: wr}
}