Documentation ¶
Overview ¶
Package filebuffer is a package implementing a few file like interfaces backed by a byte buffer. Implemented interfaces:
* Reader * ReaderAt * Writer * Seeker * Closer
Index ¶
- type Buffer
- func (f *Buffer) Bytes() []byte
- func (f *Buffer) Close() error
- func (f *Buffer) Read(b []byte) (n int, err error)
- func (f *Buffer) ReadAt(p []byte, off int64) (n int, err error)
- func (f *Buffer) Seek(offset int64, whence int) (idx int64, err error)
- func (f *Buffer) String() string
- func (f *Buffer) Write(p []byte) (n int, err error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Buffer ¶
type Buffer struct { // Buff is the backing buffer Buff *bytes.Buffer // Index indicates where in the buffer we are at Index int64 // contains filtered or unexported fields }
Buffer implements interfaces implemented by files. The main purpose of this type is to have an in memory replacement for a file.
func NewFromReader ¶ added in v1.0.1
NewFromReader is a convenience method that returns a new populated Buffer whose contents are sourced from a supplied reader by loading it entirely into memory.
func (*Buffer) Close ¶
Close implements io.Closer https://golang.org/pkg/io/#Closer It closes the buffer, rendering it unusable for I/O. It returns an error, if any.
func (*Buffer) Read ¶
When Read encounters an error or end-of-file condition after successfully reading n > 0 bytes, it returns the number of bytes read. It may return the (non-nil) error from the same call or return the error (and n == 0) from a subsequent call. An instance of this general case is that a Reader returning a non-zero number of bytes at the end of the input stream may return either err == EOF or err == nil. The next Read should return 0, EOF.
func (*Buffer) ReadAt ¶
ReadAt implements io.ReaderAt https://golang.org/pkg/io/#ReaderAt ReadAt reads len(p) bytes into p starting at offset off in the underlying input source. It returns the number of bytes read (0 <= n <= len(p)) and any error encountered.
When ReadAt returns n < len(p), it returns a non-nil error explaining why more bytes were not returned. In this respect, ReadAt is stricter than Read.
Even if ReadAt returns n < len(p), it may use all of p as scratch space during the call. If some data is available but not len(p) bytes, ReadAt blocks until either all the data is available or an error occurs. In this respect ReadAt is different from Read.
If the n = len(p) bytes returned by ReadAt are at the end of the input source, ReadAt may return either err == EOF or err == nil.
If ReadAt is reading from an input source with a seek offset, ReadAt should not affect nor be affected by the underlying seek offset. Clients of ReadAt can execute parallel ReadAt calls on the same input source.
func (*Buffer) Seek ¶
Seek implements io.Seeker https://golang.org/pkg/io/#Seeker