| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- // 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
- // A read buffer similar to bufio.Reader but zero-copy-ish
- // Also highly optimized for this particular use case.
- 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 into the buffer until at least _need_ bytes are in it
- func (b *buffer) fill(need int) (err error) {
- // move existing data to the beginning
- if b.length > 0 && b.idx > 0 {
- copy(b.buf[0:b.length], b.buf[b.idx:])
- }
- // grow buffer if necessary
- if need > len(b.buf) {
- for {
- b.buf = append(b.buf, 0)
- b.buf = b.buf[:cap(b.buf)]
- if cap(b.buf) < need {
- continue
- }
- break
- }
- }
- b.idx = 0
- var n int
- for {
- n, err = b.rd.Read(b.buf[b.length:])
- b.length += n
- if b.length < need && err == nil {
- continue
- }
- return // err
- }
- }
- // returns next N bytes from buffer.
- // The returned slice is only guaranteed to be valid until the next read
- func (b *buffer) readNext(need int) (p []byte, err error) {
- if b.length < need {
- // refill
- err = b.fill(need) // err deferred
- }
- p = b.buf[b.idx : b.idx+need]
- b.idx += need
- b.length -= need
- return
- }
|