forked from go-sql-driver/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuffer.go
85 lines (70 loc) · 1.4 KB
/
buffer.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
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
//
// Copyright 2013 Julien Schmidt. All rights reserved.
// http://www.julienschmidt.com
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at http://mozilla.org/MPL/2.0/.
package mysql
import (
"io"
)
const (
defaultBufSize = 4096
)
type buffer struct {
buf []byte
rd io.Reader
idx int
length int
}
func newBuffer(rd io.Reader) *buffer {
return &buffer{
buf: make([]byte, defaultBufSize),
rd: rd,
}
}
// fill reads at least _need_ bytes in the buffer
// existing data in the buffer gets lost
func (b *buffer) fill(need int) (err error) {
b.idx = 0
b.length = 0
var n int
for b.length < need {
n, err = b.rd.Read(b.buf[b.length:])
b.length += n
if err == nil {
continue
}
return // err
}
return
}
// read len(p) bytes
func (b *buffer) read(p []byte) (err error) {
need := len(p)
if b.length < need {
if b.length > 0 {
copy(p[0:b.length], b.buf[b.idx:])
need -= b.length
p = p[b.length:]
b.idx = 0
b.length = 0
}
if need >= len(b.buf) {
var n int
has := 0
for err == nil && need > has {
n, err = b.rd.Read(p[has:])
has += n
}
return
}
err = b.fill(need) // err deferred
}
copy(p, b.buf[b.idx:])
b.idx += need
b.length -= need
return
}