delimited

package
v0.6.11 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 30, 2022 License: BSD-3-Clause, GPL-3.0 Imports: 5 Imported by: 0

Documentation

Overview

Package delimited implements a simple reader and writer for streams of length-delimited byte records. Each record is written as a varint-encoded length in bytes, followed immediately by the record itself. A stream consists of a sequence of such records packed consecutively without additional padding. No checksums or compression are being used.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type DataSource

type DataSource interface {
	// Next will return the next record in the sequence
	// Note:
	// - io.EOF is returned when no further records are available
	// - the slice returned by Next() is only required to be valid until a subsequent call to Next()
	Next() ([]byte, error)
}

DataSource represents a sequence of records.

type Reader

type Reader struct {
	// contains filtered or unexported fields
}

Reader reads length-delimited records from a byte data source.

func NewReader

func NewReader(r io.Reader) *Reader

NewReader returns a new delimited Reader for the records in r.

func (*Reader) Next

func (r *Reader) Next() ([]byte, error)

Next returns the next length-delimited record from the input Note:

  • returns io.EOF if there are no more records available
  • returns io.ErrUnexpectedEOF if a short record is found, with a length of n but fewer than n bytes of data
  • since there is no resynchronization mechanism, it is generally not possible to recover from a short record in this format

The slice returned is valid only until a subsequent call to Next.

func (*Reader) NextProto

func (r *Reader) NextProto(pb proto.Message) error

NextProto consumes the next available record by calling r.Next and decodes it into protobuf using proto.Unmarshal().

type Sink

type Sink interface {
	// Put delivers a record to the sink.
	Put([]byte) error
}

Sink models a receiver of delimited records.

type Writer

type Writer struct {
	// contains filtered or unexported fields
}

Writer outputs delimited records to an io.Writer.

func NewWriter

func NewWriter(w io.Writer) *Writer

NewWriter constructs a new delimited Writer that writes records to w.

func (Writer) Put

func (w Writer) Put(record []byte) error

Put writes the specified record to the writer Note:

  • equivalent to writeRecord, but discards the number of bytes written

func (Writer) PutProto

func (w Writer) PutProto(msg proto.Message) error

PutProto encodes and writes the specified proto.Message to the writer.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL