Documentation ¶
Overview ¶
Package encoding converts arbitrary objects into byte slices, and vis versa. It also contains helper functions for reading and writing length- prefixed data. See doc/Encoding.md for the full encoding specification.
Index ¶
- func DecInt64(b []byte) int64
- func DecUint64(b []byte) uint64
- func EncInt64(i int64) (b []byte)
- func EncUint64(i uint64) (b []byte)
- func Marshal(v interface{}) []byte
- func MarshalAll(vs ...interface{}) []byte
- func ReadFile(filename string, v interface{}) error
- func ReadObject(r io.Reader, obj interface{}, maxLen uint64) error
- func ReadPrefix(r io.Reader, maxLen uint64) ([]byte, error)
- func Unmarshal(b []byte, v interface{}) error
- func UnmarshalAll(b []byte, vs ...interface{}) error
- func WriteFile(filename string, v interface{}) error
- func WriteObject(w io.Writer, v interface{}) error
- func WritePrefix(w io.Writer, data []byte) error
- type Decoder
- type Encoder
- type GenericMarshaler
- type SiaMarshaler
- type SiaUnmarshaler
- type StdGenericMarshaler
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DecInt64 ¶
DecInt64 decodes a slice of 8 bytes into an int64. If len(b) < 8, the slice is padded with zeros.
func DecUint64 ¶
DecUint64 decodes a slice of 8 bytes into a uint64. If len(b) < 8, the slice is padded with zeros.
func Marshal ¶
func Marshal(v interface{}) []byte
Marshal returns the encoding of v. For encoding details, see the package docstring.
func MarshalAll ¶
func MarshalAll(vs ...interface{}) []byte
MarshalAll encodes all of its inputs and returns their concatenation.
func ReadObject ¶
ReadObject reads and decodes a length-prefixed and marshalled object.
func ReadPrefix ¶
ReadPrefix reads an 8-byte length prefixes, followed by the number of bytes specified in the prefix. The operation is aborted if the prefix exceeds a specified maximum length.
func Unmarshal ¶
Unmarshal decodes the encoded value b and stores it in v, which must be a pointer. The decoding rules are the inverse of those specified in the package docstring for marshaling.
func UnmarshalAll ¶ added in v1.0.0
UnmarshalAll decodes the encoded values in b and stores them in vs, which must be pointers.
func WriteFile ¶ added in v0.3.1
WriteFile writes v to a file. The file will be created if it does not exist.
func WriteObject ¶
WriteObject writes a length-prefixed object to w.
Types ¶
type Decoder ¶ added in v0.3.1
type Decoder struct {
// contains filtered or unexported fields
}
A Decoder reads and decodes values from an input stream.
func NewDecoder ¶ added in v0.3.1
NewDecoder returns a new decoder that reads from r.
func (*Decoder) Decode ¶ added in v0.3.1
Decode reads the next encoded value from its input stream and stores it in v, which must be a pointer. The decoding rules are the inverse of those specified in the package docstring.
type Encoder ¶ added in v0.3.1
type Encoder struct {
// contains filtered or unexported fields
}
An Encoder writes objects to an output stream.
func NewEncoder ¶ added in v0.3.1
NewEncoder returns a new encoder that writes to w.
type GenericMarshaler ¶ added in v1.0.0
type GenericMarshaler interface { Marshal(interface{}) []byte Unmarshal([]byte, interface{}) error }
GenericMarshaler marshals objects into byte slices and unmarshals byte slices into objects.
type SiaMarshaler ¶
A SiaMarshaler can encode and write itself to a stream.
type SiaUnmarshaler ¶
A SiaUnmarshaler can read and decode itself from a stream.
type StdGenericMarshaler ¶ added in v1.0.0
type StdGenericMarshaler struct{}
StdGenericMarshaler is an implementation of GenericMarshaler that uses the encoding.Marshal and encoding.Unmarshal functions to perform its marshaling/unmarshaling.
func (StdGenericMarshaler) Marshal ¶ added in v1.0.0
func (m StdGenericMarshaler) Marshal(v interface{}) []byte
Marshal returns the encoding of v. For encoding details, see the package docstring.
func (StdGenericMarshaler) Unmarshal ¶ added in v1.0.0
func (m StdGenericMarshaler) Unmarshal(b []byte, v interface{}) error
Unmarshal decodes the encoded value b and stores it in v, which must be a pointer. The decoding rules are the inverse of those specified in the package docstring for marshaling.