blob: 1aee770641f94d8f7c9d53c7e2c817fba53a0ecb (
plain)
| 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
 | package pools
import (
	"sync"
	"codeberg.org/gruf/go-byteutil"
)
// BufferPool is a pooled allocator for bytes.Buffer objects
type BufferPool interface {
	// Get fetches a bytes.Buffer from pool
	Get() *byteutil.Buffer
	// Put places supplied bytes.Buffer in pool
	Put(*byteutil.Buffer)
}
// NewBufferPool returns a newly instantiated bytes.Buffer pool
func NewBufferPool(size int) BufferPool {
	return &bufferPool{
		pool: sync.Pool{
			New: func() interface{} {
				return &byteutil.Buffer{B: make([]byte, 0, size)}
			},
		},
		size: size,
	}
}
// bufferPool is our implementation of BufferPool
type bufferPool struct {
	pool sync.Pool
	size int
}
func (p *bufferPool) Get() *byteutil.Buffer {
	return p.pool.Get().(*byteutil.Buffer)
}
func (p *bufferPool) Put(buf *byteutil.Buffer) {
	if buf.Cap() < p.size {
		return
	}
	buf.Reset()
	p.pool.Put(buf)
}
 |