Last active
March 24, 2023 09:36
-
-
Save larryhou/7740cf517a889ac289b962e9e325f04c to your computer and use it in GitHub Desktop.
Seekable memory buffer in golang
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io | |
import ( | |
"bytes" | |
"fmt" | |
"io" | |
) | |
type Buffer struct { | |
b bytes.Buffer | |
p int | |
n int | |
} | |
func (x *Buffer) Write(p []byte) (int, error) { | |
n := len(p) | |
t := x.p + n | |
x.grow(t) | |
copy(x.Bytes()[x.p:t], p) | |
if t > x.n { x.n = t } | |
x.p = t | |
return n, nil | |
} | |
func (x *Buffer) grow(n int) { | |
if n >= x.b.Cap() { | |
b := x.Bytes() | |
x.b.Grow(n) | |
copy(x.Bytes()[:x.n], b) | |
} | |
} | |
func (x *Buffer) WriteString(s string) (int, error) { | |
n := len(s) | |
t := x.p + n | |
x.grow(t) | |
copy(x.Bytes()[x.p:t], s) | |
if t > x.n { x.n = t } | |
x.p = t | |
return n, nil | |
} | |
func (x *Buffer) Reset() { | |
x.n = 0 | |
x.p = 0 | |
} | |
func (x *Buffer) String() string {return string(x.Bytes())} | |
func (x *Buffer) Bytes() []byte {return x.b.Bytes()[:x.n]} | |
func (x *Buffer) Len() int {return x.n} | |
func (x *Buffer) Read(p []byte) (int, error) { | |
return copy(p, x.Bytes()[x.p:]), nil | |
} | |
func (x *Buffer) Seek(offset int64, whence int) (int64, error) { | |
switch whence { | |
case io.SeekStart : x.p = int(offset) | |
case io.SeekCurrent: x.p = x.p + int(offset) | |
case io.SeekEnd : x.p = x.n + int(offset) | |
default: | |
return -1, fmt.Errorf("unsupported whence: %d", whence) | |
} | |
return int64(x.p), nil | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment