2008-11-25 09:41:58 -08:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
package io
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// Simple byte buffer for marshaling data.
|
2008-11-25 09:41:58 -08:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"io";
|
|
|
|
|
"os";
|
|
|
|
|
)
|
|
|
|
|
|
2008-12-18 22:37:22 -08:00
|
|
|
func bytecopy(dst []byte, doff int, src []byte, soff int, count int) {
|
2009-05-05 12:00:52 -07:00
|
|
|
for ; count > 0; count-- {
|
2008-11-25 09:41:58 -08:00
|
|
|
dst[doff] = src[soff];
|
|
|
|
|
doff++;
|
|
|
|
|
soff++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// A ByteBuffer is a simple implementation of the io.Read and io.Write interfaces
|
|
|
|
|
// connected to a buffer of bytes.
|
|
|
|
|
// The zero value for ByteBuffer is an empty buffer ready to use.
|
2009-01-20 14:40:40 -08:00
|
|
|
type ByteBuffer struct {
|
2009-05-05 12:00:52 -07:00
|
|
|
buf []byte; // contents are the bytes buf[off : len(buf)]
|
|
|
|
|
off int; // read at &buf[off], write at &buf[len(buf)]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Data returns the contents of the unread portion of the buffer;
|
|
|
|
|
// len(b.Data()) == b.Len().
|
|
|
|
|
func (b *ByteBuffer) Data() []byte {
|
|
|
|
|
return b.buf[b.off : len(b.buf)]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Len returns the number of bytes of the unread portion of the buffer;
|
|
|
|
|
// b.Len() == len(b.Data()).
|
|
|
|
|
func (b *ByteBuffer) Len() int {
|
|
|
|
|
return len(b.buf) - b.off
|
2008-11-25 09:41:58 -08:00
|
|
|
}
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// Reset resets the buffer so it has no content.
|
2008-11-25 09:41:58 -08:00
|
|
|
func (b *ByteBuffer) Reset() {
|
2009-05-05 12:00:52 -07:00
|
|
|
b.off = len(b.buf)
|
2008-11-25 09:41:58 -08:00
|
|
|
}
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// Write appends the contents of p to the buffer. The return
|
2009-05-05 12:00:52 -07:00
|
|
|
// value n is the length of p; err is always nil.
|
2009-04-17 00:08:24 -07:00
|
|
|
func (b *ByteBuffer) Write(p []byte) (n int, err os.Error) {
|
2009-05-05 12:00:52 -07:00
|
|
|
m := b.Len();
|
|
|
|
|
n = len(p);
|
|
|
|
|
|
|
|
|
|
if len(b.buf) + n > cap(b.buf) {
|
|
|
|
|
// not enough space at end
|
|
|
|
|
buf := b.buf;
|
|
|
|
|
if m + n > cap(b.buf) {
|
|
|
|
|
// not enough space anywhere
|
|
|
|
|
buf = make([]byte, 2*cap(b.buf) + n)
|
|
|
|
|
}
|
|
|
|
|
bytecopy(buf, 0, b.buf, b.off, m);
|
|
|
|
|
b.buf = buf;
|
|
|
|
|
b.off = 0
|
2008-11-25 09:41:58 -08:00
|
|
|
}
|
2009-05-05 12:00:52 -07:00
|
|
|
|
|
|
|
|
b.buf = b.buf[0 : b.off + m + n];
|
|
|
|
|
bytecopy(b.buf, b.off + m, p, 0, n);
|
|
|
|
|
return n, nil
|
2008-11-25 09:41:58 -08:00
|
|
|
}
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// Read reads the next len(p) bytes from the buffer or until the buffer
|
2009-05-05 12:00:52 -07:00
|
|
|
// is drained. The return value n is the number of bytes read; err is always nil.
|
2009-04-17 00:08:24 -07:00
|
|
|
func (b *ByteBuffer) Read(p []byte) (n int, err os.Error) {
|
2009-05-05 12:00:52 -07:00
|
|
|
m := b.Len();
|
|
|
|
|
n = len(p);
|
2008-11-25 09:41:58 -08:00
|
|
|
|
2009-05-05 12:00:52 -07:00
|
|
|
if n > m {
|
|
|
|
|
// more bytes requested than available
|
|
|
|
|
n = m
|
|
|
|
|
}
|
2009-01-20 12:57:25 -08:00
|
|
|
|
2009-05-05 12:00:52 -07:00
|
|
|
bytecopy(p, 0, b.buf, b.off, n);
|
|
|
|
|
b.off += n;
|
|
|
|
|
return n, nil
|
2008-11-25 09:41:58 -08:00
|
|
|
}
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// NewByteBufferFromArray creates and initializes a new ByteBuffer
|
|
|
|
|
// with buf as its initial contents.
|
2009-01-20 14:40:40 -08:00
|
|
|
func NewByteBufferFromArray(buf []byte) *ByteBuffer {
|
2009-05-05 12:00:52 -07:00
|
|
|
return &ByteBuffer{buf, 0};
|
2008-11-25 09:41:58 -08:00
|
|
|
}
|