1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/common/alloc/buffer_pool.go

111 lines
2.0 KiB
Go
Raw Normal View History

2016-04-12 14:52:57 +00:00
package alloc
import (
2016-08-25 09:21:32 +00:00
"os"
"strconv"
2016-04-12 14:52:57 +00:00
"sync"
)
2016-12-06 16:26:51 +00:00
// Pool provides functionality to generate and recycle buffers on demand.
2016-07-28 14:24:15 +00:00
type Pool interface {
Allocate() *Buffer
Free(*Buffer)
}
2016-11-21 21:08:34 +00:00
type SyncPool struct {
allocator *sync.Pool
}
func NewSyncPool(bufferSize uint32) *SyncPool {
pool := &SyncPool{
allocator: &sync.Pool{
New: func() interface{} { return make([]byte, bufferSize) },
},
}
return pool
}
func (p *SyncPool) Allocate() *Buffer {
return CreateBuffer(p.allocator.Get().([]byte), p)
}
func (p *SyncPool) Free(buffer *Buffer) {
rawBuffer := buffer.head
if rawBuffer == nil {
return
}
p.allocator.Put(rawBuffer)
}
2016-04-12 14:52:57 +00:00
type BufferPool struct {
chain chan []byte
allocator *sync.Pool
}
2016-08-25 09:21:32 +00:00
func NewBufferPool(bufferSize, poolSize uint32) *BufferPool {
2016-04-12 14:52:57 +00:00
pool := &BufferPool{
chain: make(chan []byte, poolSize),
allocator: &sync.Pool{
New: func() interface{} { return make([]byte, bufferSize) },
},
}
2016-08-25 09:21:32 +00:00
for i := uint32(0); i < poolSize; i++ {
2016-04-12 14:52:57 +00:00
pool.chain <- make([]byte, bufferSize)
}
return pool
}
func (p *BufferPool) Allocate() *Buffer {
var b []byte
select {
case b = <-p.chain:
default:
b = p.allocator.Get().([]byte)
}
2016-11-19 20:13:00 +00:00
return CreateBuffer(b, p)
2016-04-12 14:52:57 +00:00
}
func (p *BufferPool) Free(buffer *Buffer) {
rawBuffer := buffer.head
if rawBuffer == nil {
return
}
select {
case p.chain <- rawBuffer:
default:
p.allocator.Put(rawBuffer)
}
}
2016-05-11 17:54:20 +00:00
const (
2016-08-25 09:21:32 +00:00
mediumBufferByteSize = 8 * 1024
BufferSize = mediumBufferByteSize - defaultOffset
2016-11-21 21:08:34 +00:00
smallBufferByteSize = 2 * 1024
SmallBufferSize = smallBufferByteSize - defaultOffset
2016-08-25 09:21:32 +00:00
PoolSizeEnvKey = "v2ray.buffer.size"
2016-05-11 17:54:20 +00:00
)
2016-08-25 09:21:32 +00:00
var (
2016-12-04 23:48:41 +00:00
mediumPool Pool
2016-11-21 21:08:34 +00:00
smallPool = NewSyncPool(2048)
2016-08-25 09:21:32 +00:00
)
func init() {
var size uint32 = 20
sizeStr := os.Getenv(PoolSizeEnvKey)
if len(sizeStr) > 0 {
customSize, err := strconv.ParseUint(sizeStr, 10, 32)
if err == nil {
size = uint32(customSize)
}
}
2016-12-04 23:48:41 +00:00
if size > 0 {
totalByteSize := size * 1024 * 1024
mediumPool = NewBufferPool(mediumBufferByteSize, totalByteSize/mediumBufferByteSize)
} else {
mediumPool = NewSyncPool(mediumBufferByteSize)
}
2016-08-25 09:21:32 +00:00
}