2015-10-08 08:46:18 -04:00
|
|
|
package alloc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Buffer struct {
|
|
|
|
head []byte
|
|
|
|
pool *bufferPool
|
|
|
|
Value []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Buffer) Release() {
|
|
|
|
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-08 17:06:12 -04:00
|
|
|
func (b *Buffer) Clear() *Buffer {
|
2015-10-08 11:41:38 -04:00
|
|
|
b.Value = b.head[:0]
|
2015-10-08 17:06:12 -04:00
|
|
|
return b
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) AppendBytes(bytes ...byte) *Buffer {
|
|
|
|
b.Value = append(b.Value, bytes...)
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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-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
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Buffer) Len() int {
|
|
|
|
return len(b.Value)
|
|
|
|
}
|
|
|
|
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) IsFull() bool {
|
|
|
|
return len(b.Value) == cap(b.Value)
|
|
|
|
}
|
|
|
|
|
2015-10-10 14:52:13 -04:00
|
|
|
func (b *Buffer) Write(data []byte) (int, error) {
|
|
|
|
b.Append(data)
|
|
|
|
return len(data), nil
|
|
|
|
}
|
|
|
|
|
2015-10-08 08:46:18 -04:00
|
|
|
type bufferPool struct {
|
2015-10-08 11:41:38 -04:00
|
|
|
chain chan []byte
|
|
|
|
bufferSize int
|
|
|
|
buffers2Keep int
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2015-10-08 11:41:38 -04:00
|
|
|
func newBufferPool(bufferSize, buffers2Keep, poolSize int) *bufferPool {
|
2015-10-08 08:46:18 -04:00
|
|
|
pool := &bufferPool{
|
2015-10-08 11:41:38 -04:00
|
|
|
chain: make(chan []byte, poolSize),
|
|
|
|
bufferSize: bufferSize,
|
|
|
|
buffers2Keep: buffers2Keep,
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
2015-10-08 11:41:38 -04:00
|
|
|
for i := 0; i < buffers2Keep; i++ {
|
|
|
|
pool.chain <- make([]byte, bufferSize)
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
go pool.cleanup(time.Tick(1 * time.Second))
|
|
|
|
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:
|
2015-10-08 11:41:38 -04:00
|
|
|
b = make([]byte, p.bufferSize)
|
|
|
|
}
|
|
|
|
return &Buffer{
|
|
|
|
head: b,
|
|
|
|
pool: p,
|
|
|
|
Value: b,
|
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:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *bufferPool) cleanup(tick <-chan time.Time) {
|
|
|
|
for range tick {
|
|
|
|
pSize := len(p.chain)
|
2015-10-08 11:41:38 -04:00
|
|
|
if pSize > p.buffers2Keep {
|
2015-10-08 08:46:18 -04:00
|
|
|
<-p.chain
|
2015-10-08 09:28:22 -04:00
|
|
|
continue
|
|
|
|
}
|
2015-10-10 10:50:55 -04:00
|
|
|
for delta := p.buffers2Keep - pSize; delta > 0; delta-- {
|
2015-10-10 14:52:13 -04:00
|
|
|
select {
|
|
|
|
case p.chain <- make([]byte, p.bufferSize):
|
|
|
|
default:
|
|
|
|
}
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-08 17:06:12 -04:00
|
|
|
var smallPool = newBufferPool(1024, 16, 64)
|
|
|
|
var mediumPool = newBufferPool(8*1024, 256, 2048)
|
|
|
|
var largePool = newBufferPool(64*1024, 16, 64)
|
2015-10-08 08:46:18 -04:00
|
|
|
|
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
|
|
|
|
|
|
|
func NewBuffer() *Buffer {
|
|
|
|
return mediumPool.allocate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewLargeBuffer() *Buffer {
|
|
|
|
return largePool.allocate()
|
|
|
|
}
|