1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/common/buf/buffer.go

183 lines
3.8 KiB
Go
Raw Normal View History

2016-12-09 11:35:27 +01:00
package buf
import (
2016-01-28 21:30:05 +01:00
"io"
2018-08-16 12:05:33 +02:00
"v2ray.com/core/common/bytespool"
)
const (
// Size of a regular buffer.
Size = 2048
)
2016-12-09 12:08:25 +01:00
// Supplier is a writer that writes contents into the given buffer.
type Supplier func([]byte) (int, error)
2016-12-06 11:03:42 +01:00
2015-10-11 14:46:12 +02: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 {
2018-08-16 12:05:33 +02:00
v []byte
2018-03-08 22:30:52 +01:00
start int32
end int32
}
2015-10-11 14:46:12 +02:00
// Release recycles the buffer into an internal buffer pool.
func (b *Buffer) Release() {
2016-12-06 13:42:12 +01:00
if b == nil || b.v == nil {
2016-02-01 12:22:29 +01:00
return
}
2018-09-04 09:29:00 +02:00
pool.Put(b.v)
2016-12-06 13:42:12 +01:00
b.v = nil
2018-08-16 12:05:33 +02:00
b.Clear()
}
2015-10-11 14:46:12 +02:00
// Clear clears the content of the buffer, results an empty buffer with
// Len() = 0.
2016-12-06 11:03:42 +01:00
func (b *Buffer) Clear() {
2016-12-08 16:50:40 +01:00
b.start = 0
b.end = 0
2016-07-12 14:32:17 +02:00
}
2016-12-09 12:08:25 +01: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:])
2018-03-08 22:30:52 +01:00
b.end += int32(nBytes)
2016-12-09 12:08:25 +01:00
return err
2016-06-26 22:34:48 +02:00
}
2016-12-06 17:26:06 +01:00
// Byte returns the bytes at index.
2018-04-02 20:00:50 +02:00
func (b *Buffer) Byte(index int32) byte {
return b.v[b.start+index]
2016-12-05 15:19:14 +01:00
}
2016-12-06 17:26:06 +01:00
// SetByte sets the byte value at index.
2018-04-02 20:00:50 +02:00
func (b *Buffer) SetByte(index int32, value byte) {
b.v[b.start+index] = value
2016-12-06 11:31:19 +01:00
}
2016-02-06 22:28:35 +01:00
// Bytes returns the content bytes of this Buffer.
2015-12-15 00:53:27 +01:00
func (b *Buffer) Bytes() []byte {
2016-12-06 13:42:12 +01:00
return b.v[b.start:b.end]
}
2016-12-11 09:43:20 +01:00
// Reset resets the content of the Buffer with a supplier.
2016-12-09 12:08:25 +01:00
func (b *Buffer) Reset(writer Supplier) error {
2017-04-19 16:29:36 +02:00
nBytes, err := writer(b.v)
2017-04-27 13:31:09 +02:00
b.start = 0
2018-03-08 22:30:52 +01:00
b.end = int32(nBytes)
2018-09-01 21:19:15 +02:00
if b.end > int32(len(b.v)) {
b.end = int32(len(b.v))
}
2016-12-09 12:08:25 +01:00
return err
2015-12-15 00:53:27 +01:00
}
2018-03-23 23:17:29 +08:00
// BytesRange returns a slice of this buffer with given from and to boundary.
2018-04-02 20:00:50 +02:00
func (b *Buffer) BytesRange(from, to int32) []byte {
2016-12-05 15:19:14 +01:00
if from < 0 {
2016-12-06 11:03:42 +01:00
from += b.Len()
2016-12-05 15:19:14 +01:00
}
if to < 0 {
2016-12-06 11:03:42 +01:00
to += b.Len()
2016-12-05 15:19:14 +01:00
}
2018-04-02 20:00:50 +02:00
return b.v[b.start+from : b.start+to]
2016-12-05 15:19:14 +01:00
}
2016-12-11 09:43:20 +01:00
// BytesFrom returns a slice of this Buffer starting from the given position.
2018-04-02 20:00:50 +02:00
func (b *Buffer) BytesFrom(from int32) []byte {
2016-12-05 15:19:14 +01:00
if from < 0 {
2016-12-06 11:03:42 +01:00
from += b.Len()
2016-12-05 15:19:14 +01:00
}
2018-04-02 20:00:50 +02:00
return b.v[b.start+from : b.end]
2016-12-05 15:19:14 +01:00
}
2016-12-21 15:37:16 +01:00
// BytesTo returns a slice of this Buffer from start to the given position.
2018-04-02 20:00:50 +02:00
func (b *Buffer) BytesTo(to int32) []byte {
2016-12-05 15:19:14 +01:00
if to < 0 {
2016-12-06 11:03:42 +01:00
to += b.Len()
2016-12-05 15:19:14 +01:00
}
2018-04-02 20:00:50 +02:00
return b.v[b.start : b.start+to]
2016-12-05 15:19:14 +01:00
}
// Resize cuts the buffer at the given position.
func (b *Buffer) Resize(from, to int32) {
2016-12-06 11:03:42 +01:00
if from < 0 {
from += b.Len()
}
if to < 0 {
to += b.Len()
}
if to < from {
panic("Invalid slice")
}
2018-04-02 20:00:50 +02:00
b.end = b.start + to
b.start += from
}
// Advance cuts the buffer at the given position.
func (b *Buffer) Advance(from int32) {
2016-12-06 11:03:42 +01:00
if from < 0 {
from += b.Len()
}
2018-04-02 20:00:50 +02:00
b.start += from
}
2015-10-11 14:46:12 +02:00
// Len returns the length of the buffer content.
2018-04-02 20:00:50 +02:00
func (b *Buffer) Len() int32 {
2016-02-01 12:22:29 +01:00
if b == nil {
return 0
}
2018-04-02 20:00:50 +02:00
return b.end - b.start
}
2016-12-06 17:26:06 +01:00
// IsEmpty returns true if the buffer is empty.
2016-02-26 23:45:33 +01:00
func (b *Buffer) IsEmpty() bool {
return b.Len() == 0
}
2015-10-11 14:46:12 +02:00
// IsFull returns true if the buffer has no more room to grow.
2015-10-08 23:06:12 +02:00
func (b *Buffer) IsFull() bool {
2018-03-08 22:30:52 +01:00
return b.end == int32(len(b.v))
2015-10-08 23:06:12 +02:00
}
2015-10-11 14:46:12 +02:00
// Write implements Write method in io.Writer.
2015-10-10 20:52:13 +02:00
func (b *Buffer) Write(data []byte) (int, error) {
2016-12-06 13:42:12 +01:00
nBytes := copy(b.v[b.end:], data)
2018-03-08 22:30:52 +01:00
b.end += int32(nBytes)
2016-12-02 14:35:28 +01:00
return nBytes, nil
2015-10-10 20:52:13 +02:00
}
2018-07-30 22:45:06 +02:00
// WriteBytes appends one or more bytes to the end of the buffer.
func (b *Buffer) WriteBytes(bytes ...byte) (int, error) {
return b.Write(bytes)
}
2016-02-06 22:28:35 +01:00
// Read implements io.Reader.Read().
2016-01-28 21:30:05 +01:00
func (b *Buffer) Read(data []byte) (int, error) {
if b.Len() == 0 {
return 0, io.EOF
}
2016-12-06 13:42:12 +01:00
nBytes := copy(data, b.v[b.start:b.end])
2018-04-02 20:00:50 +02:00
if int32(nBytes) == b.Len() {
2016-05-12 17:20:07 -07:00
b.Clear()
2016-01-28 21:30:05 +01:00
} else {
2018-03-08 22:30:52 +01:00
b.start += int32(nBytes)
2016-01-28 21:30:05 +01:00
}
return nBytes, nil
}
2016-12-11 09:43:20 +01:00
// String returns the string form of this Buffer.
2016-04-29 23:40:28 +02:00
func (b *Buffer) String() string {
2016-12-09 00:25:48 +01:00
return string(b.Bytes())
2016-04-29 23:40:28 +02:00
}
2018-09-03 20:57:40 +02:00
var pool = bytespool.GetPool(Size)
2018-03-11 23:29:17 +01:00
// New creates a Buffer with 0 length and 2K capacity.
2016-12-09 12:08:25 +01:00
func New() *Buffer {
2018-03-11 23:06:04 +01:00
return &Buffer{
2018-09-03 20:57:40 +02:00
v: pool.Get().([]byte),
2016-12-11 09:43:20 +01:00
}
2016-07-16 13:22:08 +02:00
}