v2ray-core/common/alloc/buffer.go

174 lines
3.6 KiB
Go
Raw Normal View History

package alloc
import (
2016-01-28 20:30:05 +00:00
"io"
)
2016-01-31 20:24:40 +00:00
const (
2016-02-06 21:28:35 +00:00
defaultOffset = 16
2016-01-31 20:24:40 +00:00
)
2015-10-11 12:46:12 +00: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.
type Buffer struct {
2016-01-31 20:24:40 +00:00
head []byte
2016-04-12 14:52:57 +00:00
pool *BufferPool
2016-01-31 20:24:40 +00:00
Value []byte
offset int
}
2015-10-11 12:46:12 +00:00
// Release recycles the buffer into an internal buffer pool.
func (b *Buffer) Release() {
2016-02-01 11:22:29 +00:00
if b == nil {
return
}
2016-04-12 14:52:57 +00:00
b.pool.Free(b)
2015-10-08 15:41:38 +00:00
b.head = nil
b.Value = nil
b.pool = nil
}
2015-10-11 12:46:12 +00:00
// Clear clears the content of the buffer, results an empty buffer with
// Len() = 0.
2015-10-08 21:06:12 +00:00
func (b *Buffer) Clear() *Buffer {
2016-02-06 21:28:35 +00:00
b.offset = defaultOffset
2016-01-31 20:24:40 +00:00
b.Value = b.head[b.offset:b.offset]
2015-10-08 21:06:12 +00:00
return b
}
2015-10-11 12:46:12 +00:00
// AppendBytes appends one or more bytes to the end of the buffer.
2015-10-08 21:06:12 +00:00
func (b *Buffer) AppendBytes(bytes ...byte) *Buffer {
b.Value = append(b.Value, bytes...)
return b
}
2015-10-11 12:46:12 +00:00
// Append appends a byte array to the end of the buffer.
2015-10-08 21:06:12 +00:00
func (b *Buffer) Append(data []byte) *Buffer {
b.Value = append(b.Value, data...)
2015-10-08 21:06:12 +00:00
return b
}
2016-04-29 21:40:28 +00:00
func (b *Buffer) AppendString(s string) *Buffer {
b.Value = append(b.Value, s...)
return b
}
2016-01-31 20:24:40 +00: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 20:37:00 +00:00
b.SliceBack(len(data))
copy(b.Value, data)
2016-01-31 20:24:40 +00:00
return b
}
2016-02-06 21:28:35 +00:00
// Bytes returns the content bytes of this Buffer.
2015-12-14 23:53:27 +00:00
func (b *Buffer) Bytes() []byte {
return b.Value
}
2015-10-11 12:46:12 +00:00
// Slice cuts the buffer at the given position.
2015-10-08 21:06:12 +00:00
func (b *Buffer) Slice(from, to int) *Buffer {
2016-05-13 00:20:07 +00:00
b.offset += from
b.Value = b.Value[from:to]
2015-10-08 21:06:12 +00:00
return b
}
2015-10-11 12:46:12 +00:00
// SliceFrom cuts the buffer at the given position.
2015-10-08 21:06:12 +00:00
func (b *Buffer) SliceFrom(from int) *Buffer {
2016-05-13 00:20:07 +00:00
b.offset += from
b.Value = b.Value[from:]
2015-10-08 21:06:12 +00:00
return b
}
2016-02-06 21:28:35 +00:00
// SliceBack extends the Buffer to its front by offset bytes.
// Caller must ensure cumulated offset is no more than 16.
2016-01-31 20:37:00 +00: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 12:46:12 +00:00
// Len returns the length of the buffer content.
func (b *Buffer) Len() int {
2016-02-01 11:22:29 +00:00
if b == nil {
return 0
}
return len(b.Value)
}
2016-02-26 22:45:33 +00:00
func (b *Buffer) IsEmpty() bool {
return b.Len() == 0
}
2015-10-11 12:46:12 +00:00
// IsFull returns true if the buffer has no more room to grow.
2015-10-08 21:06:12 +00:00
func (b *Buffer) IsFull() bool {
return len(b.Value) == cap(b.Value)
}
2015-10-11 12:46:12 +00:00
// Write implements Write method in io.Writer.
2015-10-10 18:52:13 +00:00
func (b *Buffer) Write(data []byte) (int, error) {
b.Append(data)
return len(data), nil
}
2016-02-06 21:28:35 +00:00
// Read implements io.Reader.Read().
2016-01-28 20:30:05 +00: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() {
2016-05-13 00:20:07 +00:00
b.Clear()
2016-01-28 20:30:05 +00:00
} else {
b.Value = b.Value[nBytes:]
2016-05-13 00:20:07 +00:00
b.offset += nBytes
2016-01-28 20:30:05 +00:00
}
return nBytes, nil
}
2016-02-26 22:45:33 +00:00
func (b *Buffer) FillFrom(reader io.Reader) (int, error) {
begin := b.Len()
b.Value = b.Value[:cap(b.Value)]
nBytes, err := reader.Read(b.Value[begin:])
2016-05-13 00:20:07 +00:00
if err == nil {
b.Value = b.Value[:begin+nBytes]
}
2016-02-26 22:45:33 +00:00
return nBytes, err
}
2016-04-29 21:40:28 +00:00
func (b *Buffer) String() string {
return string(b.Value)
}
2015-10-11 12:46:12 +00:00
// NewSmallBuffer creates a Buffer with 1K bytes of arbitrary content.
2015-10-08 21:06:12 +00:00
func NewSmallBuffer() *Buffer {
2016-04-12 14:52:57 +00:00
return smallPool.Allocate()
}
2015-10-08 21:06:12 +00:00
2015-10-11 12:46:12 +00:00
// NewBuffer creates a Buffer with 8K bytes of arbitrary content.
2015-10-08 21:06:12 +00:00
func NewBuffer() *Buffer {
2016-04-12 14:52:57 +00:00
return mediumPool.Allocate()
2015-10-08 21:06:12 +00:00
}
2015-10-11 12:46:12 +00:00
// NewLargeBuffer creates a Buffer with 64K bytes of arbitrary content.
2015-10-08 21:06:12 +00:00
func NewLargeBuffer() *Buffer {
2016-04-12 14:52:57 +00:00
return largePool.Allocate()
2015-10-08 21:06:12 +00:00
}
func NewBufferWithSize(size int) *Buffer {
if size <= SmallBufferSize {
return NewSmallBuffer()
}
if size <= BufferSize {
return NewBuffer()
}
return NewLargeBuffer()
}