README
MessagePack encoding for Golang
Supports:
- Primitives, arrays, maps, structs, time.Time and interface{}.
- Appengine *datastore.Key and datastore.Cursor.
- CustomEncoder/CustomDecoder interfaces for custom encoding.
- Extensions to encode type information.
- Renaming fields via
msgpack:"my_field_name"
. - Omitting individual empty fields via
msgpack:",omitempty"
tag or all empty fields in a struct. - Map keys sorting.
- Encoding/decoding all structs as arrays or individual structs.
- Encoder.UseJSONTag with Decoder.UseJSONTag can turn msgpack into drop-in replacement for JSON.
- Simple but very fast and efficient queries.
API docs: https://godoc.org/github.com/vmihailenco/msgpack. Examples: https://godoc.org/github.com/vmihailenco/msgpack#pkg-examples.
Installation
Install:
go get -u github.com/vmihailenco/msgpack
Quickstart
func ExampleMarshal() {
type Item struct {
Foo string
}
b, err := msgpack.Marshal(&Item{Foo: "bar"})
if err != nil {
panic(err)
}
var item Item
err = msgpack.Unmarshal(b, &item)
if err != nil {
panic(err)
}
fmt.Println(item.Foo)
// Output: bar
}
Benchmark
BenchmarkStructVmihailencoMsgpack-4 200000 12814 ns/op 2128 B/op 26 allocs/op
BenchmarkStructUgorjiGoMsgpack-4 100000 17678 ns/op 3616 B/op 70 allocs/op
BenchmarkStructUgorjiGoCodec-4 100000 19053 ns/op 7346 B/op 23 allocs/op
BenchmarkStructJSON-4 20000 69438 ns/op 7864 B/op 26 allocs/op
BenchmarkStructGOB-4 10000 104331 ns/op 14664 B/op 278 allocs/op
Howto
Please go through examples to get an idea how to use this package.
See also
Documentation
Index ¶
- func Marshal(v interface{}) ([]byte, error)
- func Register(value interface{}, enc encoderFunc, dec decoderFunc)
- func RegisterExt(id int8, value interface{})
- func Unmarshal(data []byte, v interface{}) error
- type CustomDecoder
- type CustomEncoder
- type Decoder
- func (d *Decoder) Decode(v interface{}) error
- func (d *Decoder) DecodeArrayLen() (int, error)
- func (d *Decoder) DecodeBool() (bool, error)
- func (d *Decoder) DecodeBytes() ([]byte, error)
- func (d *Decoder) DecodeBytesLen() (int, error)
- func (d *Decoder) DecodeExtHeader() (typeId int8, length int, err error)
- func (d *Decoder) DecodeFloat32() (float32, error)
- func (d *Decoder) DecodeFloat64() (float64, error)
- func (d *Decoder) DecodeInt() (int, error)
- func (d *Decoder) DecodeInt16() (int16, error)
- func (d *Decoder) DecodeInt32() (int32, error)
- func (d *Decoder) DecodeInt64() (int64, error)
- func (d *Decoder) DecodeInt8() (int8, error)
- func (d *Decoder) DecodeInterface() (interface{}, error)
- func (d *Decoder) DecodeInterfaceLoose() (interface{}, error)
- func (d *Decoder) DecodeMap() (interface{}, error)
- func (d *Decoder) DecodeMapLen() (int, error)
- func (d *Decoder) DecodeMulti(v ...interface{}) error
- func (d *Decoder) DecodeNil() error
- func (d *Decoder) DecodeSlice() ([]interface{}, error)
- func (d *Decoder) DecodeString() (string, error)
- func (d *Decoder) DecodeTime() (time.Time, error)
- func (d *Decoder) DecodeUint() (uint, error)
- func (d *Decoder) DecodeUint16() (uint16, error)
- func (d *Decoder) DecodeUint32() (uint32, error)
- func (d *Decoder) DecodeUint64() (uint64, error)
- func (d *Decoder) DecodeUint8() (uint8, error)
- func (d *Decoder) DecodeValue(v reflect.Value) error
- func (d *Decoder) PeekCode() (codes.Code, error)
- func (d *Decoder) Query(query string) ([]interface{}, error)
- func (d *Decoder) Reset(r io.Reader) error
- func (d *Decoder) SetDecodeMapFunc(fn func(*Decoder) (interface{}, error))
- func (d *Decoder) Skip() error
- func (d *Decoder) UseDecodeInterfaceLoose(flag bool) *Decoder
- func (d *Decoder) UseJSONTag(v bool) *Decoder
- type Encoder
- func (e *Encoder) Encode(v interface{}) error
- func (e *Encoder) EncodeArrayLen(l int) error
- func (e *Encoder) EncodeBool(value bool) error
- func (e *Encoder) EncodeBytes(v []byte) error
- func (e *Encoder) EncodeBytesLen(l int) error
- func (e *Encoder) EncodeExtHeader(typeId int8, length int) error
- func (e *Encoder) EncodeFloat32(n float32) error
- func (e *Encoder) EncodeFloat64(n float64) error
- func (e *Encoder) EncodeInt(n int64) error
- func (e *Encoder) EncodeInt16(n int16) error
- func (e *Encoder) EncodeInt32(n int32) error
- func (e *Encoder) EncodeInt64(n int64) error
- func (e *Encoder) EncodeInt8(n int8) error
- func (e *Encoder) EncodeMapLen(l int) error
- func (e *Encoder) EncodeMulti(v ...interface{}) error
- func (e *Encoder) EncodeNil() error
- func (e *Encoder) EncodeString(v string) error
- func (e *Encoder) EncodeTime(tm time.Time) error
- func (e *Encoder) EncodeUint(n uint64) error
- func (e *Encoder) EncodeUint16(n uint16) error
- func (e *Encoder) EncodeUint32(n uint32) error
- func (e *Encoder) EncodeUint64(n uint64) error
- func (e *Encoder) EncodeUint8(n uint8) error
- func (e *Encoder) EncodeValue(v reflect.Value) error
- func (e *Encoder) SortMapKeys(flag bool) *Encoder
- func (e *Encoder) StructAsArray(flag bool) *Encoder
- func (e *Encoder) UseCompactEncoding(flag bool) *Encoder
- func (e *Encoder) UseJSONTag(flag bool) *Encoder
- type Marshaler
- type Unmarshaler
Examples ¶
Constants ¶
Variables ¶
Functions ¶
func Register ¶
func Register(value interface{}, enc encoderFunc, dec decoderFunc)
Register registers encoder and decoder functions for a value. This is low level API and in most cases you should prefer implementing Marshaler/CustomEncoder and Unmarshaler/CustomDecoder interfaces.
func RegisterExt ¶
func RegisterExt(id int8, value interface{})
RegisterExt records a type, identified by a value for that type, under the provided id. That id will identify the concrete type of a value sent or received as an interface variable. Only types that will be transferred as implementations of interface values need to be registered. Expecting to be used only during initialization, it panics if the mapping between types and ids is not a bijection.
Types ¶
type CustomDecoder ¶
type CustomEncoder ¶
type Decoder ¶
type Decoder struct {
// contains filtered or unexported fields
}
func NewDecoder ¶
NewDecoder returns a new decoder that reads from r.
The decoder introduces its own buffering and may read data from r beyond the MessagePack values requested. Buffering can be disabled by passing a reader that implements io.ByteScanner interface.
func (*Decoder) DecodeArrayLen ¶
DecodeArrayLen decodes array length. Length is -1 when array is nil.
func (*Decoder) DecodeBool ¶
func (*Decoder) DecodeBytes ¶
func (*Decoder) DecodeBytesLen ¶
func (*Decoder) DecodeExtHeader ¶
func (*Decoder) DecodeFloat32 ¶
func (*Decoder) DecodeFloat64 ¶
DecodeFloat64 decodes msgpack float32/64 into Go float64.
func (*Decoder) DecodeInt16 ¶
func (*Decoder) DecodeInt32 ¶
func (*Decoder) DecodeInt64 ¶
DecodeInt64 decodes msgpack int8/16/32/64 and uint8/16/32/64 into Go int64.
func (*Decoder) DecodeInt8 ¶
func (*Decoder) DecodeInterface ¶
DecodeInterface decodes value into interface. It returns following types:
- nil, - bool, - int8, int16, int32, int64, - uint8, uint16, uint32, uint64, - float32 and float64, - string, - []byte, - slices of any of the above, - maps of any of the above.
DecodeInterface should be used only when you don't know the type of value you are decoding. For example, if you are decoding number it is better to use DecodeInt64 for negative numbers and DecodeUint64 for positive numbers.
func (*Decoder) DecodeInterfaceLoose ¶
DecodeInterfaceLoose is like DecodeInterface except that:
- int8, int16, and int32 are converted to int64, - uint8, uint16, and uint32 are converted to uint64, - float32 is converted to float64.
func (*Decoder) DecodeMapLen ¶
DecodeMapLen decodes map length. Length is -1 when map is nil.
func (*Decoder) DecodeMulti ¶
func (*Decoder) DecodeSlice ¶
func (*Decoder) DecodeString ¶
func (*Decoder) DecodeUint ¶
func (*Decoder) DecodeUint16 ¶
func (*Decoder) DecodeUint32 ¶
func (*Decoder) DecodeUint64 ¶
DecodeUint64 decodes msgpack int8/16/32/64 and uint8/16/32/64 into Go uint64.
func (*Decoder) DecodeUint8 ¶
func (*Decoder) PeekCode ¶
PeekCode returns the next MessagePack code without advancing the reader. Subpackage msgpack/codes contains list of available codes.
func (*Decoder) Query ¶
Query extracts data specified by the query from the msgpack stream skipping any other data. Query consists of map keys and array indexes separated with dot, e.g. key1.0.key2.
func (*Decoder) SetDecodeMapFunc ¶
func (*Decoder) UseDecodeInterfaceLoose ¶
UseDecodeInterfaceLoose causes decoder to use DecodeInterfaceLoose to decode msgpack value into Go interface{}.
func (*Decoder) UseJSONTag ¶
UseJSONTag causes the Decoder to use json struct tag as fallback option if there is no msgpack tag.
type Encoder ¶
type Encoder struct {
// contains filtered or unexported fields
}
func NewEncoder ¶
NewEncoder returns a new encoder that writes to w.
func (*Encoder) EncodeArrayLen ¶
func (*Encoder) EncodeBool ¶
func (*Encoder) EncodeBytes ¶
func (*Encoder) EncodeBytesLen ¶
func (*Encoder) EncodeFloat32 ¶
func (*Encoder) EncodeFloat64 ¶
func (*Encoder) EncodeInt ¶
EncodeNumber encodes an int64 in 1, 2, 3, 5, or 9 bytes. Type of number is lost during encoding.
func (*Encoder) EncodeInt16 ¶
EncodeInt16 encodes an int16 in 3 bytes preserving type of the number.
func (*Encoder) EncodeInt32 ¶
EncodeInt32 encodes an int32 in 5 bytes preserving type of the number.
func (*Encoder) EncodeInt64 ¶
EncodeInt64 encodes an int64 in 9 bytes preserving type of the number.
func (*Encoder) EncodeInt8 ¶
EncodeInt8 encodes an int8 in 2 bytes preserving type of the number.
func (*Encoder) EncodeMapLen ¶
func (*Encoder) EncodeMulti ¶
func (*Encoder) EncodeString ¶
func (*Encoder) EncodeUint ¶
EncodeUnsignedNumber encodes an uint64 in 1, 2, 3, 5, or 9 bytes. Type of the number is lost during encoding.
func (*Encoder) EncodeUint16 ¶
EncodeUint16 encodes an uint16 in 3 bytes preserving type of the number.
func (*Encoder) EncodeUint32 ¶
EncodeUint32 encodes an uint16 in 5 bytes preserving type of the number.
func (*Encoder) EncodeUint64 ¶
EncodeUint64 encodes an uint16 in 9 bytes preserving type of the number.
func (*Encoder) EncodeUint8 ¶
EncodeUint8 encodes an uint8 in 2 bytes preserving type of the number.
func (*Encoder) SortMapKeys ¶
SortMapKeys causes the Encoder to encode map keys in increasing order. Supported map types are:
- map[string]string - map[string]interface{}
func (*Encoder) StructAsArray ¶
StructAsArray causes the Encoder to encode Go structs as MessagePack arrays.
func (*Encoder) UseCompactEncoding ¶
UseCompactEncoding causes the Encoder to chose the most compact encoding. For example, it allows to encode Go int64 as msgpack int8 saving 7 bytes.
func (*Encoder) UseJSONTag ¶
UseJSONTag causes the Encoder to use json struct tag as fallback option if there is no msgpack tag.
type Unmarshaler ¶
Source Files
Directories
Path | Synopsis |
---|---|