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";
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TODO(r): Do better memory management.
|
|
|
|
|
|
2008-12-18 22:37:22 -08:00
|
|
|
func bytecopy(dst []byte, doff int, src []byte, soff int, count int) {
|
2008-11-25 09:41:58 -08:00
|
|
|
for i := 0; i < count; i++ {
|
|
|
|
|
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 {
|
2008-12-18 22:37:22 -08:00
|
|
|
buf []byte;
|
2008-11-25 09:41:58 -08:00
|
|
|
off int; // Read from here
|
|
|
|
|
len int; // Write to here
|
|
|
|
|
cap int;
|
|
|
|
|
}
|
|
|
|
|
|
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() {
|
|
|
|
|
b.off = 0;
|
|
|
|
|
b.len = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// Write appends the contents of p to the buffer. The return
|
|
|
|
|
// value is the length of p; err is always nil.
|
2008-12-18 22:37:22 -08:00
|
|
|
func (b *ByteBuffer) Write(p []byte) (n int, err *os.Error) {
|
2008-11-25 09:41:58 -08:00
|
|
|
plen := len(p);
|
2008-12-18 22:37:22 -08:00
|
|
|
if len(b.buf) == 0 {
|
2008-11-25 09:41:58 -08:00
|
|
|
b.cap = plen + 1024;
|
2009-01-06 15:19:02 -08:00
|
|
|
b.buf = make([]byte, b.cap);
|
2008-11-25 09:41:58 -08:00
|
|
|
b.len = 0;
|
|
|
|
|
}
|
2009-04-06 17:03:07 -07:00
|
|
|
if b.len + plen > b.cap {
|
2008-11-25 09:41:58 -08:00
|
|
|
b.cap = 2*(b.cap + plen);
|
2009-01-06 15:19:02 -08:00
|
|
|
nb := make([]byte, b.cap);
|
2008-11-25 09:41:58 -08:00
|
|
|
bytecopy(nb, 0, b.buf, 0, b.len);
|
|
|
|
|
b.buf = nb;
|
|
|
|
|
}
|
|
|
|
|
bytecopy(b.buf, b.len, p, 0, plen);
|
|
|
|
|
b.len += plen;
|
|
|
|
|
return plen, nil;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// Read reads the next len(p) bytes from the buffer or until the buffer
|
|
|
|
|
// is drained. The return value is the number of bytes read; err is always nil.
|
2008-12-18 22:37:22 -08:00
|
|
|
func (b *ByteBuffer) Read(p []byte) (n int, err *os.Error) {
|
2008-11-25 09:41:58 -08:00
|
|
|
plen := len(p);
|
2008-12-18 22:37:22 -08:00
|
|
|
if len(b.buf) == 0 {
|
2008-11-25 09:41:58 -08:00
|
|
|
return 0, nil
|
|
|
|
|
}
|
|
|
|
|
if b.off == b.len { // empty buffer
|
|
|
|
|
b.Reset();
|
|
|
|
|
return 0, nil
|
|
|
|
|
}
|
|
|
|
|
if plen > b.len - b.off {
|
|
|
|
|
plen = b.len - b.off
|
|
|
|
|
}
|
|
|
|
|
bytecopy(p, 0, b.buf, b.off, plen);
|
|
|
|
|
b.off += plen;
|
|
|
|
|
return plen, nil;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// Len returns the length of the underlying buffer.
|
2008-11-25 09:41:58 -08:00
|
|
|
func (b *ByteBuffer) Len() int {
|
|
|
|
|
return b.len
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// Off returns the location within the buffer of the next byte to be read.
|
2009-01-20 12:57:25 -08:00
|
|
|
func (b *ByteBuffer) Off() int {
|
|
|
|
|
return b.off
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-06 03:43:44 -08:00
|
|
|
// Data returns the contents of the unread portion of the buffer.
|
2008-12-18 22:37:22 -08:00
|
|
|
func (b *ByteBuffer) Data() []byte {
|
2008-11-25 09:41:58 -08:00
|
|
|
return b.buf[b.off:b.len]
|
|
|
|
|
}
|
|
|
|
|
|
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-01-06 15:19:02 -08:00
|
|
|
b := new(ByteBuffer);
|
2008-11-25 09:41:58 -08:00
|
|
|
b.buf = buf;
|
|
|
|
|
b.off = 0;
|
|
|
|
|
b.len = len(buf);
|
|
|
|
|
b.cap = len(buf);
|
|
|
|
|
return b;
|
|
|
|
|
}
|