import "github.com/dreadl0ck/netcap/delimited"
This package 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.
datasource.go reader.go sink.go utils.go writer.go
func Copy(sink Sink, src DataSource) error
Copy copies each record read from src to sink sequentially until src.Next() Note: - returns io.EOF or another error occurs
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) }
A DataSource represents a sequence of records.
type Reader struct {
// contains filtered or unexported fields
}
Reader reads length-delimited records from a byte data source
NewReader returns a new delimited Reader for the records in r
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.
NextProto consumes the next available record by calling r.Next and decodes it into protobuf using proto.Unmarshal()
Sink models a receiver of delimited records
type Writer struct {
// contains filtered or unexported fields
}
Writer outputs delimited records to an io.Writer
NewWriter constructs a new delimited Writer that writes records to w.
Put writes the specified record to the writer Note:
- equivalent to WriteRecord, but discards the number of bytes written
PutProto encodes and writes the specified proto.Message to the writer
WriteRecord writes the specified record to the underlying writer Note:
- returns the total number of bytes written including the length tag
Package delimited imports 6 packages (graph) and is imported by 6 packages. Updated 2019-11-12. Refresh now. Tools for package owners.