2016-12-09 05:35:27 -05:00
|
|
|
package buf
|
2015-10-08 08:46:18 -04:00
|
|
|
|
2016-01-10 04:50:36 -05:00
|
|
|
import (
|
2016-01-28 15:30:05 -05:00
|
|
|
"io"
|
2018-08-16 06:05:33 -04:00
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/common/bytespool"
|
2018-08-16 06:05:33 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Size of a regular buffer.
|
|
|
|
Size = 2048
|
2016-01-10 04:50:36 -05:00
|
|
|
)
|
|
|
|
|
2020-11-17 15:23:30 -05:00
|
|
|
var pool = bytespool.GetPool(Size)
|
|
|
|
|
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 {
|
2018-08-16 06:05:33 -04:00
|
|
|
v []byte
|
2018-03-08 16:30:52 -05:00
|
|
|
start int32
|
|
|
|
end int32
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2020-11-17 15:23:30 -05:00
|
|
|
// New creates a Buffer with 0 length and 2K capacity.
|
|
|
|
func New() *Buffer {
|
|
|
|
return &Buffer{
|
|
|
|
v: pool.Get().([]byte),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// StackNew creates a new Buffer object on stack.
|
|
|
|
// This method is for buffers that is released in the same function.
|
|
|
|
func StackNew() Buffer {
|
|
|
|
return Buffer{
|
|
|
|
v: pool.Get().([]byte),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-12-06 07:42:12 -05:00
|
|
|
if b == nil || b.v == nil {
|
2016-02-01 06:22:29 -05:00
|
|
|
return
|
|
|
|
}
|
2018-11-16 04:30:26 -05:00
|
|
|
|
|
|
|
p := b.v
|
2016-12-06 07:42:12 -05:00
|
|
|
b.v = nil
|
2018-08-16 06:05:33 -04:00
|
|
|
b.Clear()
|
2020-11-21 16:05:01 -05:00
|
|
|
pool.Put(p) // nolint: staticcheck
|
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.
|
2016-12-06 05:03:42 -05:00
|
|
|
func (b *Buffer) Clear() {
|
2016-12-08 10:50:40 -05:00
|
|
|
b.start = 0
|
|
|
|
b.end = 0
|
2016-07-12 08:32:17 -04:00
|
|
|
}
|
|
|
|
|
2016-12-06 11:26:06 -05:00
|
|
|
// Byte returns the bytes at index.
|
2018-04-02 14:00:50 -04:00
|
|
|
func (b *Buffer) Byte(index int32) byte {
|
|
|
|
return b.v[b.start+index]
|
2016-12-05 09:19:14 -05:00
|
|
|
}
|
|
|
|
|
2016-12-06 11:26:06 -05:00
|
|
|
// SetByte sets the byte value at index.
|
2018-04-02 14:00:50 -04:00
|
|
|
func (b *Buffer) SetByte(index int32, value byte) {
|
|
|
|
b.v[b.start+index] = value
|
2016-12-06 05:31:19 -05:00
|
|
|
}
|
|
|
|
|
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 {
|
2016-12-06 07:42:12 -05:00
|
|
|
return b.v[b.start:b.end]
|
|
|
|
}
|
|
|
|
|
2018-11-02 16:34:04 -04:00
|
|
|
// Extend increases the buffer size by n bytes, and returns the extended part.
|
|
|
|
// It panics if result size is larger than buf.Size.
|
|
|
|
func (b *Buffer) Extend(n int32) []byte {
|
|
|
|
end := b.end + n
|
|
|
|
if end > int32(len(b.v)) {
|
2018-11-16 04:30:26 -05:00
|
|
|
panic("extending out of bound")
|
2018-10-24 07:16:08 -04:00
|
|
|
}
|
2018-11-02 16:34:04 -04:00
|
|
|
ext := b.v[b.end:end]
|
|
|
|
b.end = end
|
|
|
|
return ext
|
2015-12-14 18:53:27 -05:00
|
|
|
}
|
|
|
|
|
2018-03-23 11:17:29 -04:00
|
|
|
// BytesRange returns a slice of this buffer with given from and to boundary.
|
2018-04-02 14:00:50 -04:00
|
|
|
func (b *Buffer) BytesRange(from, to int32) []byte {
|
2016-12-05 09:19:14 -05:00
|
|
|
if from < 0 {
|
2016-12-06 05:03:42 -05:00
|
|
|
from += b.Len()
|
2016-12-05 09:19:14 -05:00
|
|
|
}
|
|
|
|
if to < 0 {
|
2016-12-06 05:03:42 -05:00
|
|
|
to += b.Len()
|
2016-12-05 09:19:14 -05:00
|
|
|
}
|
2018-04-02 14:00:50 -04:00
|
|
|
return b.v[b.start+from : b.start+to]
|
2016-12-05 09:19:14 -05:00
|
|
|
}
|
|
|
|
|
2016-12-11 03:43:20 -05:00
|
|
|
// BytesFrom returns a slice of this Buffer starting from the given position.
|
2018-04-02 14:00:50 -04:00
|
|
|
func (b *Buffer) BytesFrom(from int32) []byte {
|
2016-12-05 09:19:14 -05:00
|
|
|
if from < 0 {
|
2016-12-06 05:03:42 -05:00
|
|
|
from += b.Len()
|
2016-12-05 09:19:14 -05:00
|
|
|
}
|
2018-04-02 14:00:50 -04:00
|
|
|
return b.v[b.start+from : b.end]
|
2016-12-05 09:19:14 -05:00
|
|
|
}
|
|
|
|
|
2016-12-21 09:37:16 -05:00
|
|
|
// BytesTo returns a slice of this Buffer from start to the given position.
|
2018-04-02 14:00:50 -04:00
|
|
|
func (b *Buffer) BytesTo(to int32) []byte {
|
2016-12-05 09:19:14 -05:00
|
|
|
if to < 0 {
|
2016-12-06 05:03:42 -05:00
|
|
|
to += b.Len()
|
2016-12-05 09:19:14 -05:00
|
|
|
}
|
2018-04-02 14:00:50 -04:00
|
|
|
return b.v[b.start : b.start+to]
|
2016-12-05 09:19:14 -05:00
|
|
|
}
|
|
|
|
|
2018-04-19 17:48:38 -04:00
|
|
|
// Resize cuts the buffer at the given position.
|
|
|
|
func (b *Buffer) Resize(from, to int32) {
|
2016-12-06 05:03:42 -05:00
|
|
|
if from < 0 {
|
|
|
|
from += b.Len()
|
|
|
|
}
|
|
|
|
if to < 0 {
|
|
|
|
to += b.Len()
|
|
|
|
}
|
|
|
|
if to < from {
|
|
|
|
panic("Invalid slice")
|
|
|
|
}
|
2018-04-02 14:00:50 -04:00
|
|
|
b.end = b.start + to
|
|
|
|
b.start += from
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2018-04-19 17:48:38 -04:00
|
|
|
// Advance cuts the buffer at the given position.
|
|
|
|
func (b *Buffer) Advance(from int32) {
|
2016-12-06 05:03:42 -05:00
|
|
|
if from < 0 {
|
|
|
|
from += b.Len()
|
|
|
|
}
|
2018-04-02 14:00:50 -04:00
|
|
|
b.start += from
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2015-10-11 08:46:12 -04:00
|
|
|
// Len returns the length of the buffer content.
|
2018-04-02 14:00:50 -04:00
|
|
|
func (b *Buffer) Len() int32 {
|
2016-02-01 06:22:29 -05:00
|
|
|
if b == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2018-04-02 14:00:50 -04:00
|
|
|
return b.end - b.start
|
2015-10-08 08:46:18 -04:00
|
|
|
}
|
|
|
|
|
2016-12-06 11:26:06 -05:00
|
|
|
// IsEmpty returns true if the buffer is empty.
|
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 {
|
2019-11-21 21:11:23 -05:00
|
|
|
return b != nil && b.end == int32(len(b.v))
|
2015-10-08 17:06:12 -04:00
|
|
|
}
|
|
|
|
|
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-06 07:42:12 -05:00
|
|
|
nBytes := copy(b.v[b.end:], data)
|
2018-03-08 16:30:52 -05:00
|
|
|
b.end += int32(nBytes)
|
2016-12-02 08:35:28 -05:00
|
|
|
return nBytes, nil
|
2015-10-10 14:52:13 -04:00
|
|
|
}
|
|
|
|
|
2018-11-14 16:11:05 -05:00
|
|
|
// WriteByte writes a single byte into the buffer.
|
|
|
|
func (b *Buffer) WriteByte(v byte) error {
|
|
|
|
if b.IsFull() {
|
|
|
|
return newError("buffer full")
|
|
|
|
}
|
|
|
|
b.v[b.end] = v
|
|
|
|
b.end++
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-11-02 16:34:04 -04:00
|
|
|
// WriteString implements io.StringWriter.
|
|
|
|
func (b *Buffer) WriteString(s string) (int, error) {
|
|
|
|
return b.Write([]byte(s))
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
2016-12-06 07:42:12 -05:00
|
|
|
nBytes := copy(data, b.v[b.start:b.end])
|
2018-04-02 14:00:50 -04:00
|
|
|
if int32(nBytes) == b.Len() {
|
2016-05-12 20:20:07 -04:00
|
|
|
b.Clear()
|
2016-01-28 15:30:05 -05:00
|
|
|
} else {
|
2018-03-08 16:30:52 -05:00
|
|
|
b.start += int32(nBytes)
|
2016-01-28 15:30:05 -05:00
|
|
|
}
|
|
|
|
return nBytes, nil
|
|
|
|
}
|
|
|
|
|
2018-11-02 10:01:33 -04:00
|
|
|
// ReadFrom implements io.ReaderFrom.
|
|
|
|
func (b *Buffer) ReadFrom(reader io.Reader) (int64, error) {
|
|
|
|
n, err := reader.Read(b.v[b.end:])
|
|
|
|
b.end += int32(n)
|
|
|
|
return int64(n), err
|
|
|
|
}
|
|
|
|
|
2018-11-02 16:34:04 -04:00
|
|
|
// ReadFullFrom reads exact size of bytes from given reader, or until error occurs.
|
2018-11-02 10:01:33 -04:00
|
|
|
func (b *Buffer) ReadFullFrom(reader io.Reader, size int32) (int64, error) {
|
|
|
|
end := b.end + size
|
|
|
|
if end > int32(len(b.v)) {
|
2018-11-16 04:30:26 -05:00
|
|
|
v := end
|
|
|
|
return 0, newError("out of bound: ", v)
|
2018-11-02 10:01:33 -04:00
|
|
|
}
|
|
|
|
n, err := io.ReadFull(reader, b.v[b.end:end])
|
|
|
|
b.end += int32(n)
|
|
|
|
return int64(n), err
|
|
|
|
}
|
|
|
|
|
2016-12-11 03:43:20 -05:00
|
|
|
// String returns the string form of this Buffer.
|
2016-04-29 17:40:28 -04:00
|
|
|
func (b *Buffer) String() string {
|
2016-12-08 18:25:48 -05:00
|
|
|
return string(b.Bytes())
|
2016-04-29 17:40:28 -04:00
|
|
|
}
|