2015-10-08 08:46:18 -04:00
|
|
|
package alloc
|
|
|
|
|
2016-01-10 04:50:36 -05:00
|
|
|
import (
|
2016-01-28 15:30:05 -05:00
|
|
|
"io"
|
2016-01-10 04:50:36 -05:00
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
2016-01-31 15:24:40 -05:00
|
|
|
const (
|
|
|
|
DefaultOffset = 16
|
|
|
|
)
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Buffer is a recyclable allocation of a byte array. Buffer.Release() recycles
|
|
|
|
// the buffer into an internal buffer pool, in order to recreate a buffer more
|
|
|
|
// quickly.
|
2015-10-08 08:46:18 -04:00
|
|
|
type Buffer struct {
|
2016-01-31 15:24:40 -05:00
|
|
|
head []byte
|
|
|
|
pool *bufferPool
|
|
|
|
Value []byte
|
|
|
|
offset int
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Release recycles the buffer into an internal buffer pool.
|
2015-10-08 08:46:18 -04:00
|
|
|
func (b *Buffer) Release() {
|
2016-02-01 06:22:29 -05:00
|
|
|
if b == nil {
|
|
|
|
return
|
|
|
|
}
|
2015-10-08 08:46:18 -04:00
|
|
|
b.pool.free(b)
|
2015-10-08 11:41:38 -04:00
|
|
|
b.head = nil
|
|
|
|
b.Value = nil
|
|
|
|
b.pool = nil
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Clear clears the content of the buffer, results an empty buffer with
|
|
|
|
// Len() = 0.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) Clear() *Buffer {
|
2016-01-31 15:24:40 -05:00
|
|
|
b.offset = DefaultOffset
|
|
|
|
b.Value = b.head[b.offset:b.offset]
|
2015-10-08 17:06:12 -04:00
|
|
|
return b
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// AppendBytes appends one or more bytes to the end of the buffer.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) AppendBytes(bytes ...byte) *Buffer {
|
|
|
|
b.Value = append(b.Value, bytes...)
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Append appends a byte array to the end of the buffer.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) Append(data []byte) *Buffer {
|
2015-10-08 08:46:18 -04:00
|
|
|
b.Value = append(b.Value, data...)
|
2015-10-08 17:06:12 -04:00
|
|
|
return b
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2016-01-31 15:24:40 -05:00
|
|
|
// Prepend prepends bytes in front of the buffer. Caller must ensure total bytes prepended is
|
|
|
|
// no more than 16 bytes.
|
|
|
|
func (b *Buffer) Prepend(data []byte) *Buffer {
|
2016-01-31 15:37:00 -05:00
|
|
|
b.SliceBack(len(data))
|
|
|
|
copy(b.Value, data)
|
2016-01-31 15:24:40 -05:00
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2015-12-14 18:53:27 -05:00
|
|
|
func (b *Buffer) Bytes() []byte {
|
|
|
|
return b.Value
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Slice cuts the buffer at the given position.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) Slice(from, to int) *Buffer {
|
2015-10-08 08:46:18 -04:00
|
|
|
b.Value = b.Value[from:to]
|
2015-10-08 17:06:12 -04:00
|
|
|
return b
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// SliceFrom cuts the buffer at the given position.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) SliceFrom(from int) *Buffer {
|
2015-10-08 08:46:18 -04:00
|
|
|
b.Value = b.Value[from:]
|
2015-10-08 17:06:12 -04:00
|
|
|
return b
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2016-01-31 15:37:00 -05:00
|
|
|
func (b *Buffer) SliceBack(offset int) *Buffer {
|
|
|
|
newoffset := b.offset - offset
|
|
|
|
if newoffset < 0 {
|
|
|
|
newoffset = 0
|
|
|
|
}
|
|
|
|
b.Value = b.head[newoffset : b.offset+len(b.Value)]
|
|
|
|
b.offset = newoffset
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Len returns the length of the buffer content.
|
2015-10-08 08:46:18 -04:00
|
|
|
func (b *Buffer) Len() int {
|
2016-02-01 06:22:29 -05:00
|
|
|
if b == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2015-10-08 08:46:18 -04:00
|
|
|
return len(b.Value)
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// IsFull returns true if the buffer has no more room to grow.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) IsFull() bool {
|
|
|
|
return len(b.Value) == cap(b.Value)
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Write implements Write method in io.Writer.
|
2015-10-10 14:52:13 -04:00
|
|
|
func (b *Buffer) Write(data []byte) (int, error) {
|
|
|
|
b.Append(data)
|
|
|
|
return len(data), nil
|
|
|
|
}
|
|
|
|
|
2016-01-28 15:30:05 -05:00
|
|
|
func (b *Buffer) Read(data []byte) (int, error) {
|
|
|
|
if b.Len() == 0 {
|
|
|
|
return 0, io.EOF
|
|
|
|
}
|
|
|
|
nBytes := copy(data, b.Value)
|
|
|
|
if nBytes == b.Len() {
|
|
|
|
b.Value = b.Value[:0]
|
|
|
|
} else {
|
|
|
|
b.Value = b.Value[nBytes:]
|
|
|
|
}
|
|
|
|
return nBytes, nil
|
|
|
|
}
|
|
|
|
|
2015-10-08 08:46:18 -04:00
|
|
|
type bufferPool struct {
|
2016-01-10 04:50:36 -05:00
|
|
|
chain chan []byte
|
|
|
|
allocator *sync.Pool
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2016-01-09 14:36:23 -05:00
|
|
|
func newBufferPool(bufferSize, poolSize int) *bufferPool {
|
2015-10-08 08:46:18 -04:00
|
|
|
pool := &bufferPool{
|
2016-01-10 04:50:36 -05:00
|
|
|
chain: make(chan []byte, poolSize),
|
|
|
|
allocator: &sync.Pool{
|
|
|
|
New: func() interface{} { return make([]byte, bufferSize) },
|
|
|
|
},
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
2016-01-09 14:36:23 -05:00
|
|
|
for i := 0; i < poolSize; i++ {
|
2015-10-08 11:41:38 -04:00
|
|
|
pool.chain <- make([]byte, bufferSize)
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
return pool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *bufferPool) allocate() *Buffer {
|
2015-10-08 11:41:38 -04:00
|
|
|
var b []byte
|
2015-10-08 08:46:18 -04:00
|
|
|
select {
|
|
|
|
case b = <-p.chain:
|
|
|
|
default:
|
2016-01-10 04:50:36 -05:00
|
|
|
b = p.allocator.Get().([]byte)
|
2015-10-08 11:41:38 -04:00
|
|
|
}
|
|
|
|
return &Buffer{
|
2016-01-31 15:24:40 -05:00
|
|
|
head: b,
|
|
|
|
pool: p,
|
|
|
|
Value: b[DefaultOffset:],
|
|
|
|
offset: DefaultOffset,
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *bufferPool) free(buffer *Buffer) {
|
|
|
|
select {
|
2015-10-08 11:41:38 -04:00
|
|
|
case p.chain <- buffer.head:
|
2015-10-08 08:46:18 -04:00
|
|
|
default:
|
2016-01-10 04:50:36 -05:00
|
|
|
p.allocator.Put(buffer.head)
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-09 14:36:23 -05:00
|
|
|
var smallPool = newBufferPool(1024, 256)
|
|
|
|
var mediumPool = newBufferPool(8*1024, 512)
|
|
|
|
var largePool = newBufferPool(64*1024, 128)
|
2015-10-08 08:46:18 -04:00
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// NewSmallBuffer creates a Buffer with 1K bytes of arbitrary content.
|
2015-10-08 17:06:12 -04:00
|
|
|
func NewSmallBuffer() *Buffer {
|
2015-10-08 08:46:18 -04:00
|
|
|
return smallPool.allocate()
|
|
|
|
}
|
2015-10-08 17:06:12 -04:00
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// NewBuffer creates a Buffer with 8K bytes of arbitrary content.
|
2015-10-08 17:06:12 -04:00
|
|
|
func NewBuffer() *Buffer {
|
|
|
|
return mediumPool.allocate()
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// NewLargeBuffer creates a Buffer with 64K bytes of arbitrary content.
|
2015-10-08 17:06:12 -04:00
|
|
|
func NewLargeBuffer() *Buffer {
|
|
|
|
return largePool.allocate()
|
|
|
|
}
|