2016-06-19 10:55:50 -04:00
|
|
|
// Package alloc provides a light-weight memory allocation mechanism.
|
2015-10-08 08:46:18 -04:00
|
|
|
package alloc
|
|
|
|
|
2016-01-10 04:50:36 -05:00
|
|
|
import (
|
2016-07-17 17:11:05 -04:00
|
|
|
"hash"
|
2016-01-28 15:30:05 -05:00
|
|
|
"io"
|
2016-06-26 16:34:48 -04:00
|
|
|
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common/serial"
|
2016-01-10 04:50:36 -05:00
|
|
|
)
|
|
|
|
|
2016-01-31 15:24:40 -05:00
|
|
|
const (
|
2016-02-06 16:28:35 -05:00
|
|
|
defaultOffset = 16
|
2016-01-31 15:24:40 -05:00
|
|
|
)
|
|
|
|
|
2015-10-11 08:46:12 -04: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.
|
2015-10-08 08:46:18 -04:00
|
|
|
type Buffer struct {
|
2016-11-19 15:13:00 -05:00
|
|
|
head []byte
|
|
|
|
pool Pool
|
|
|
|
Value []byte
|
|
|
|
offset int
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2016-11-19 15:13:00 -05:00
|
|
|
func CreateBuffer(container []byte, parent Pool) *Buffer {
|
2016-07-15 08:24:20 -04:00
|
|
|
b := new(Buffer)
|
|
|
|
b.head = container
|
|
|
|
b.pool = parent
|
2016-11-19 15:13:00 -05:00
|
|
|
b.Value = b.head[defaultOffset:]
|
|
|
|
b.offset = defaultOffset
|
2016-07-15 08:24:20 -04:00
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Release recycles the buffer into an internal buffer pool.
|
2015-10-08 08:46:18 -04:00
|
|
|
func (b *Buffer) Release() {
|
2016-07-15 08:24:20 -04:00
|
|
|
if b == nil || b.head == nil {
|
2016-02-01 06:22:29 -05:00
|
|
|
return
|
|
|
|
}
|
2016-07-16 07:22:08 -04:00
|
|
|
if b.pool != nil {
|
|
|
|
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-11 08:46:12 -04:00
|
|
|
// Clear clears the content of the buffer, results an empty buffer with
|
|
|
|
// Len() = 0.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) Clear() *Buffer {
|
2016-11-19 15:13:00 -05:00
|
|
|
b.offset = defaultOffset
|
2016-01-31 15:24:40 -05:00
|
|
|
b.Value = b.head[b.offset:b.offset]
|
2015-10-08 17:06:12 -04:00
|
|
|
return b
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2016-08-17 06:05:53 -04:00
|
|
|
// Reset resets this Buffer into its original state.
|
2016-07-12 08:32:17 -04:00
|
|
|
func (b *Buffer) Reset() *Buffer {
|
2016-11-19 15:13:00 -05:00
|
|
|
b.offset = defaultOffset
|
2016-11-19 08:38:35 -05:00
|
|
|
b.Value = b.head[b.offset:]
|
2016-07-12 08:32:17 -04:00
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// AppendBytes appends one or more bytes to the end of the buffer.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) AppendBytes(bytes ...byte) *Buffer {
|
|
|
|
b.Value = append(b.Value, bytes...)
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Append appends a byte array to the end of the buffer.
|
2015-10-08 17:06:12 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-06-19 11:02:20 -04:00
|
|
|
// AppendString appends a given string to the end of the buffer.
|
2016-04-29 17:40:28 -04:00
|
|
|
func (b *Buffer) AppendString(s string) *Buffer {
|
|
|
|
b.Value = append(b.Value, s...)
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2016-11-27 11:01:44 -05:00
|
|
|
func (b *Buffer) AppendUint16(val uint16) *Buffer {
|
|
|
|
b.Value = serial.Uint16ToBytes(val, b.Value)
|
2016-06-26 16:34:48 -04:00
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2016-11-27 11:01:44 -05:00
|
|
|
func (b *Buffer) AppendUint32(val uint32) *Buffer {
|
|
|
|
b.Value = serial.Uint32ToBytes(val, b.Value)
|
2016-06-26 16:34:48 -04:00
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2016-01-31 15:24:40 -05: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 15:37:00 -05:00
|
|
|
b.SliceBack(len(data))
|
|
|
|
copy(b.Value, data)
|
2016-01-31 15:24:40 -05:00
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2016-06-26 16:34:48 -04:00
|
|
|
func (b *Buffer) PrependBytes(data ...byte) *Buffer {
|
|
|
|
return b.Prepend(data)
|
|
|
|
}
|
|
|
|
|
2016-11-27 11:01:44 -05:00
|
|
|
func (b *Buffer) PrependUint16(val uint16) *Buffer {
|
2016-06-26 16:34:48 -04:00
|
|
|
b.SliceBack(2)
|
2016-11-27 11:01:44 -05:00
|
|
|
serial.Uint16ToBytes(val, b.Value[:0])
|
2016-06-26 16:34:48 -04:00
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2016-11-27 11:01:44 -05:00
|
|
|
func (b *Buffer) PrependUint32(val uint32) *Buffer {
|
2016-06-26 16:34:48 -04:00
|
|
|
b.SliceBack(4)
|
2016-11-27 11:01:44 -05:00
|
|
|
serial.Uint32ToBytes(val, b.Value[:0])
|
2016-06-26 16:34:48 -04:00
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2016-07-17 17:11:05 -04:00
|
|
|
func (b *Buffer) PrependHash(h hash.Hash) *Buffer {
|
|
|
|
b.SliceBack(h.Size())
|
|
|
|
h.Sum(b.Value[:0])
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2016-02-06 16:28:35 -05:00
|
|
|
// Bytes returns the content bytes of this Buffer.
|
2015-12-14 18:53:27 -05:00
|
|
|
func (b *Buffer) Bytes() []byte {
|
|
|
|
return b.Value
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Slice cuts the buffer at the given position.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) Slice(from, to int) *Buffer {
|
2016-05-12 20:20:07 -04:00
|
|
|
b.offset += from
|
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-11 08:46:12 -04:00
|
|
|
// SliceFrom cuts the buffer at the given position.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) SliceFrom(from int) *Buffer {
|
2016-05-12 20:20:07 -04:00
|
|
|
b.offset += from
|
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
|
|
|
}
|
|
|
|
|
2016-02-06 16:28:35 -05:00
|
|
|
// SliceBack extends the Buffer to its front by offset bytes.
|
|
|
|
// Caller must ensure cumulated offset is no more than 16.
|
2016-01-31 15:37:00 -05:00
|
|
|
func (b *Buffer) SliceBack(offset int) *Buffer {
|
|
|
|
newoffset := b.offset - offset
|
|
|
|
if newoffset < 0 {
|
2016-07-15 08:24:20 -04:00
|
|
|
panic("Negative buffer offset.")
|
2016-01-31 15:37:00 -05:00
|
|
|
}
|
|
|
|
b.Value = b.head[newoffset : b.offset+len(b.Value)]
|
|
|
|
b.offset = newoffset
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Len returns the length of the buffer content.
|
2015-10-08 08:46:18 -04:00
|
|
|
func (b *Buffer) Len() int {
|
2016-02-01 06:22:29 -05:00
|
|
|
if b == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2015-10-08 08:46:18 -04:00
|
|
|
return len(b.Value)
|
|
|
|
}
|
|
|
|
|
2016-02-26 17:45:33 -05:00
|
|
|
func (b *Buffer) IsEmpty() bool {
|
|
|
|
return b.Len() == 0
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// IsFull returns true if the buffer has no more room to grow.
|
2015-10-08 17:06:12 -04:00
|
|
|
func (b *Buffer) IsFull() bool {
|
|
|
|
return len(b.Value) == cap(b.Value)
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Write implements Write method in io.Writer.
|
2015-10-10 14:52:13 -04:00
|
|
|
func (b *Buffer) Write(data []byte) (int, error) {
|
2016-12-02 08:35:28 -05:00
|
|
|
begin := b.Len()
|
|
|
|
b.Value = b.Value[:cap(b.Value)]
|
|
|
|
nBytes := copy(b.Value[begin:], data)
|
|
|
|
b.Value = b.Value[:begin+nBytes]
|
|
|
|
return nBytes, nil
|
2015-10-10 14:52:13 -04:00
|
|
|
}
|
|
|
|
|
2016-02-06 16:28:35 -05:00
|
|
|
// Read implements io.Reader.Read().
|
2016-01-28 15:30:05 -05: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-12 20:20:07 -04:00
|
|
|
b.Clear()
|
2016-01-28 15:30:05 -05:00
|
|
|
} else {
|
|
|
|
b.Value = b.Value[nBytes:]
|
2016-05-12 20:20:07 -04:00
|
|
|
b.offset += nBytes
|
2016-01-28 15:30:05 -05:00
|
|
|
}
|
|
|
|
return nBytes, nil
|
|
|
|
}
|
|
|
|
|
2016-02-26 17:45:33 -05: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-11-21 18:00:27 -05:00
|
|
|
b.Value = b.Value[:begin+nBytes]
|
2016-02-26 17:45:33 -05:00
|
|
|
return nBytes, err
|
|
|
|
}
|
|
|
|
|
2016-04-29 17:40:28 -04:00
|
|
|
func (b *Buffer) String() string {
|
|
|
|
return string(b.Value)
|
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// NewBuffer creates a Buffer with 8K bytes of arbitrary content.
|
2015-10-08 17:06:12 -04:00
|
|
|
func NewBuffer() *Buffer {
|
2016-04-12 10:52:57 -04:00
|
|
|
return mediumPool.Allocate()
|
2015-10-08 17:06:12 -04:00
|
|
|
}
|
|
|
|
|
2016-11-21 16:08:34 -05:00
|
|
|
func NewSmallBuffer() *Buffer {
|
|
|
|
return smallPool.Allocate()
|
|
|
|
}
|
2016-07-16 07:22:08 -04:00
|
|
|
|
|
|
|
func NewLocalBuffer(size int) *Buffer {
|
2016-11-19 15:13:00 -05:00
|
|
|
return CreateBuffer(make([]byte, size), nil)
|
2016-07-16 07:22:08 -04:00
|
|
|
}
|