1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-03 20:45:23 +00:00
v2fly/common/buf/buffer.go

196 lines
4.1 KiB
Go
Raw Normal View History

2016-12-09 11:08:25 +00:00
// Package buf provides a light-weight memory allocation mechanism.
2016-12-09 10:35:27 +00:00
package buf
import (
2016-01-28 20:30:05 +00:00
"io"
)
2016-12-09 11:08:25 +00:00
// Supplier is a writer that writes contents into the given buffer.
type Supplier func([]byte) (int, error)
2016-12-06 10:03:42 +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-12-06 12:42:12 +00:00
v []byte
2016-12-06 10:03:42 +00:00
pool Pool
start int
end int
}
2015-10-11 12:46:12 +00:00
// Release recycles the buffer into an internal buffer pool.
func (b *Buffer) Release() {
2016-12-06 12:42:12 +00:00
if b == nil || b.v == nil {
2016-02-01 11:22:29 +00:00
return
}
2016-07-16 11:22:08 +00:00
if b.pool != nil {
b.pool.Free(b)
}
2016-12-06 12:42:12 +00:00
b.v = nil
2015-10-08 15:41:38 +00:00
b.pool = nil
2016-12-30 22:12:00 +00:00
b.start = 0
b.end = 0
}
2015-10-11 12:46:12 +00:00
// Clear clears the content of the buffer, results an empty buffer with
// Len() = 0.
2016-12-06 10:03:42 +00:00
func (b *Buffer) Clear() {
2016-12-08 15:50:40 +00:00
b.start = 0
b.end = 0
2016-07-12 12:32:17 +00:00
}
2015-10-11 12:46:12 +00:00
// AppendBytes appends one or more bytes to the end of the buffer.
2017-03-27 09:12:34 +00:00
func (b *Buffer) AppendBytes(bytes ...byte) int {
return b.Append(bytes)
2015-10-08 21:06:12 +00:00
}
2015-10-11 12:46:12 +00:00
// Append appends a byte array to the end of the buffer.
2017-03-27 09:12:34 +00:00
func (b *Buffer) Append(data []byte) int {
2016-12-06 12:42:12 +00:00
nBytes := copy(b.v[b.end:], data)
2016-12-06 10:03:42 +00:00
b.end += nBytes
2017-03-27 09:12:34 +00:00
return nBytes
2016-06-26 20:34:48 +00:00
}
2016-12-09 11:08:25 +00:00
// AppendSupplier appends the content of a BytesWriter to the buffer.
func (b *Buffer) AppendSupplier(writer Supplier) error {
nBytes, err := writer(b.v[b.end:])
2016-12-06 10:03:42 +00:00
b.end += nBytes
2016-12-09 11:08:25 +00:00
return err
2016-06-26 20:34:48 +00:00
}
2016-12-06 16:26:06 +00:00
// Byte returns the bytes at index.
2016-12-05 14:19:14 +00:00
func (b *Buffer) Byte(index int) byte {
2016-12-06 12:42:12 +00:00
return b.v[b.start+index]
2016-12-05 14:19:14 +00:00
}
2016-12-06 16:26:06 +00:00
// SetByte sets the byte value at index.
2016-12-06 10:31:19 +00:00
func (b *Buffer) SetByte(index int, value byte) {
2016-12-06 12:42:12 +00:00
b.v[b.start+index] = value
2016-12-06 10:31:19 +00:00
}
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 {
2016-12-06 12:42:12 +00:00
return b.v[b.start:b.end]
}
2016-12-11 08:43:20 +00:00
// Reset resets the content of the Buffer with a supplier.
2016-12-09 11:08:25 +00:00
func (b *Buffer) Reset(writer Supplier) error {
2016-12-08 15:50:40 +00:00
b.start = 0
2016-12-09 11:08:25 +00:00
nBytes, err := writer(b.v[b.start:])
b.end = b.start + nBytes
return err
2015-12-14 23:53:27 +00:00
}
2016-12-06 16:26:06 +00:00
// BytesRange returns a slice of this buffer with given from and to bounary.
2016-12-05 14:19:14 +00:00
func (b *Buffer) BytesRange(from, to int) []byte {
if from < 0 {
2016-12-06 10:03:42 +00:00
from += b.Len()
2016-12-05 14:19:14 +00:00
}
if to < 0 {
2016-12-06 10:03:42 +00:00
to += b.Len()
2016-12-05 14:19:14 +00:00
}
2016-12-06 12:42:12 +00:00
return b.v[b.start+from : b.start+to]
2016-12-05 14:19:14 +00:00
}
2016-12-11 08:43:20 +00:00
// BytesFrom returns a slice of this Buffer starting from the given position.
2016-12-05 14:19:14 +00:00
func (b *Buffer) BytesFrom(from int) []byte {
if from < 0 {
2016-12-06 10:03:42 +00:00
from += b.Len()
2016-12-05 14:19:14 +00:00
}
2016-12-06 12:42:12 +00:00
return b.v[b.start+from : b.end]
2016-12-05 14:19:14 +00:00
}
2016-12-21 14:37:16 +00:00
// BytesTo returns a slice of this Buffer from start to the given position.
2016-12-05 14:19:14 +00:00
func (b *Buffer) BytesTo(to int) []byte {
if to < 0 {
2016-12-06 10:03:42 +00:00
to += b.Len()
2016-12-05 14:19:14 +00:00
}
2016-12-06 12:42:12 +00:00
return b.v[b.start : b.start+to]
2016-12-05 14:19:14 +00:00
}
2015-10-11 12:46:12 +00:00
// Slice cuts the buffer at the given position.
2016-12-06 10:03:42 +00:00
func (b *Buffer) Slice(from, to int) {
if from < 0 {
from += b.Len()
}
if to < 0 {
to += b.Len()
}
if to < from {
panic("Invalid slice")
}
b.end = b.start + to
b.start += from
}
2015-10-11 12:46:12 +00:00
// SliceFrom cuts the buffer at the given position.
2016-12-06 10:03:42 +00:00
func (b *Buffer) SliceFrom(from int) {
if from < 0 {
from += b.Len()
}
b.start += from
}
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
}
2016-12-06 10:03:42 +00:00
return b.end - b.start
}
2016-12-06 16:26:06 +00:00
// IsEmpty returns true if the buffer is empty.
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 {
2016-12-06 12:42:12 +00:00
return b.end == len(b.v)
2015-10-08 21:06:12 +00:00
}
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) {
2016-12-06 12:42:12 +00:00
nBytes := copy(b.v[b.end:], data)
2016-12-06 10:03:42 +00:00
b.end += nBytes
2016-12-02 13:35:28 +00:00
return nBytes, nil
2015-10-10 18:52:13 +00:00
}
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
}
2016-12-06 12:42:12 +00:00
nBytes := copy(data, b.v[b.start:b.end])
2016-01-28 20:30:05 +00:00
if nBytes == b.Len() {
2016-05-13 00:20:07 +00:00
b.Clear()
2016-01-28 20:30:05 +00:00
} else {
2016-12-06 10:03:42 +00:00
b.start += nBytes
2016-01-28 20:30:05 +00:00
}
return nBytes, nil
}
2016-12-11 08:43:20 +00:00
// String returns the string form of this Buffer.
2016-04-29 21:40:28 +00:00
func (b *Buffer) String() string {
2016-12-08 23:25:48 +00:00
return string(b.Bytes())
2016-04-29 21:40:28 +00:00
}
2017-02-15 21:51:01 +00:00
// New creates a Buffer with 0 length and 8K capacity.
2016-12-09 11:08:25 +00:00
func New() *Buffer {
2016-04-12 14:52:57 +00:00
return mediumPool.Allocate()
2015-10-08 21:06:12 +00:00
}
2017-02-15 21:51:01 +00:00
// NewSmall returns a buffer with 0 length and 2K capacity.
2016-12-09 11:08:25 +00:00
func NewSmall() *Buffer {
2016-11-21 21:08:34 +00:00
return smallPool.Allocate()
}
2016-07-16 11:22:08 +00:00
2017-02-15 21:51:01 +00:00
// NewLocal creates and returns a buffer with 0 length and given capacity on current thread.
2016-12-09 11:08:25 +00:00
func NewLocal(size int) *Buffer {
2016-12-11 08:43:20 +00:00
return &Buffer{
v: make([]byte, size),
pool: nil,
}
2016-07-16 11:22:08 +00:00
}