| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 | 
							- // Package buf provides a light-weight memory allocation mechanism.
 
- package buf
 
- import (
 
- 	"io"
 
- )
 
- // Supplier is a writer that writes contents into the given buffer.
 
- type Supplier func([]byte) (int, error)
 
- // 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 {
 
- 	v []byte
 
- 	start int32
 
- 	end   int32
 
- }
 
- // Release recycles the buffer into an internal buffer pool.
 
- func (b *Buffer) Release() {
 
- 	if b == nil || b.v == nil {
 
- 		return
 
- 	}
 
- 	FreeBytes(b.v)
 
- 	b.v = nil
 
- 	b.start = 0
 
- 	b.end = 0
 
- }
 
- // Clear clears the content of the buffer, results an empty buffer with
 
- // Len() = 0.
 
- func (b *Buffer) Clear() {
 
- 	b.start = 0
 
- 	b.end = 0
 
- }
 
- // AppendBytes appends one or more bytes to the end of the buffer.
 
- func (b *Buffer) AppendBytes(bytes ...byte) int {
 
- 	return b.Append(bytes)
 
- }
 
- // Append appends a byte array to the end of the buffer.
 
- func (b *Buffer) Append(data []byte) int {
 
- 	nBytes := copy(b.v[b.end:], data)
 
- 	b.end += int32(nBytes)
 
- 	return nBytes
 
- }
 
- // AppendSupplier appends the content of a BytesWriter to the buffer.
 
- func (b *Buffer) AppendSupplier(writer Supplier) error {
 
- 	nBytes, err := writer(b.v[b.end:])
 
- 	b.end += int32(nBytes)
 
- 	return err
 
- }
 
- // Byte returns the bytes at index.
 
- func (b *Buffer) Byte(index int) byte {
 
- 	return b.v[b.start+int32(index)]
 
- }
 
- // SetByte sets the byte value at index.
 
- func (b *Buffer) SetByte(index int, value byte) {
 
- 	b.v[b.start+int32(index)] = value
 
- }
 
- // Bytes returns the content bytes of this Buffer.
 
- func (b *Buffer) Bytes() []byte {
 
- 	return b.v[b.start:b.end]
 
- }
 
- // Reset resets the content of the Buffer with a supplier.
 
- func (b *Buffer) Reset(writer Supplier) error {
 
- 	nBytes, err := writer(b.v)
 
- 	b.start = 0
 
- 	b.end = int32(nBytes)
 
- 	return err
 
- }
 
- // BytesRange returns a slice of this buffer with given from and to bounary.
 
- func (b *Buffer) BytesRange(from, to int) []byte {
 
- 	if from < 0 {
 
- 		from += b.Len()
 
- 	}
 
- 	if to < 0 {
 
- 		to += b.Len()
 
- 	}
 
- 	return b.v[b.start+int32(from) : b.start+int32(to)]
 
- }
 
- // BytesFrom returns a slice of this Buffer starting from the given position.
 
- func (b *Buffer) BytesFrom(from int) []byte {
 
- 	if from < 0 {
 
- 		from += b.Len()
 
- 	}
 
- 	return b.v[b.start+int32(from) : b.end]
 
- }
 
- // BytesTo returns a slice of this Buffer from start to the given position.
 
- func (b *Buffer) BytesTo(to int) []byte {
 
- 	if to < 0 {
 
- 		to += b.Len()
 
- 	}
 
- 	return b.v[b.start : b.start+int32(to)]
 
- }
 
- // Slice cuts the buffer at the given position.
 
- 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 + int32(to)
 
- 	b.start += int32(from)
 
- }
 
- // SliceFrom cuts the buffer at the given position.
 
- func (b *Buffer) SliceFrom(from int) {
 
- 	if from < 0 {
 
- 		from += b.Len()
 
- 	}
 
- 	b.start += int32(from)
 
- }
 
- // Len returns the length of the buffer content.
 
- func (b *Buffer) Len() int {
 
- 	if b == nil {
 
- 		return 0
 
- 	}
 
- 	return int(b.end - b.start)
 
- }
 
- // IsEmpty returns true if the buffer is empty.
 
- func (b *Buffer) IsEmpty() bool {
 
- 	return b.Len() == 0
 
- }
 
- // IsFull returns true if the buffer has no more room to grow.
 
- func (b *Buffer) IsFull() bool {
 
- 	return b.end == int32(len(b.v))
 
- }
 
- // Write implements Write method in io.Writer.
 
- func (b *Buffer) Write(data []byte) (int, error) {
 
- 	nBytes := copy(b.v[b.end:], data)
 
- 	b.end += int32(nBytes)
 
- 	return nBytes, nil
 
- }
 
- // Read implements io.Reader.Read().
 
- func (b *Buffer) Read(data []byte) (int, error) {
 
- 	if b.Len() == 0 {
 
- 		return 0, io.EOF
 
- 	}
 
- 	nBytes := copy(data, b.v[b.start:b.end])
 
- 	if nBytes == b.Len() {
 
- 		b.Clear()
 
- 	} else {
 
- 		b.start += int32(nBytes)
 
- 	}
 
- 	return nBytes, nil
 
- }
 
- // String returns the string form of this Buffer.
 
- func (b *Buffer) String() string {
 
- 	return string(b.Bytes())
 
- }
 
- // New creates a Buffer with 0 length and 2K capacity.
 
- func New() *Buffer {
 
- 	return &Buffer{
 
- 		v: pool2k.Get().([]byte),
 
- 	}
 
- }
 
- // NewSize creates and returns a buffer given capacity.
 
- func NewSize(size uint32) *Buffer {
 
- 	return &Buffer{
 
- 		v: NewBytes(size),
 
- 	}
 
- }
 
- func NewBytes(size uint32) []byte {
 
- 	if size > 128*1024 {
 
- 		return make([]byte, size)
 
- 	}
 
- 	if size > 64*1024 {
 
- 		return pool128k.Get().([]byte)
 
- 	}
 
- 	if size > 8*1024 {
 
- 		return pool64k.Get().([]byte)
 
- 	}
 
- 	if size > 2*1024 {
 
- 		return pool8k.Get().([]byte)
 
- 	}
 
- 	return pool2k.Get().([]byte)
 
- }
 
- func FreeBytes(b []byte) {
 
- 	size := cap(b)
 
- 	switch {
 
- 	case size >= 128*1024:
 
- 		pool128k.Put(b)
 
- 	case size >= 64*1024:
 
- 		pool64k.Put(b)
 
- 	case size >= 8*1024:
 
- 		pool8k.Put(b)
 
- 	case size >= 2*1024:
 
- 		pool2k.Put(b)
 
- 	}
 
- }
 
 
  |