package buf // Inspired by https://github.com/xtaci/smux/blob/master/alloc.go import ( "errors" "math/bits" "strconv" "sync" ) var DefaultAllocator = newDefaultAllocer() type Allocator interface { Get(size int) []byte Put(buf []byte) error } // defaultAllocator for incoming frames, optimized to prevent overwriting after zeroing type defaultAllocator struct { buffers []sync.Pool } // NewAllocator initiates a []byte allocator for frames less than 65536 bytes, // the waste(memory fragmentation) of space allocation is guaranteed to be // no more than 50%. func newDefaultAllocer() Allocator { alloc := new(defaultAllocator) alloc.buffers = make([]sync.Pool, 17) // 1B -> 64K for k := range alloc.buffers { i := k alloc.buffers[k].New = func() any { return make([]byte, 1< 65536 { panic("alloc bad size: " + strconv.Itoa(size)) } bits := msb(size) if size == 1< 65536 || cap(buf) != 1<