You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
537 B
29 lines
537 B
3 years ago
|
package msgpack
|
||
|
|
||
|
import (
|
||
|
"github.com/go-kratos/kratos/v2/encoding"
|
||
|
"github.com/vmihailenco/msgpack/v5"
|
||
|
)
|
||
|
|
||
|
// Name is the name registered for the msgpack compressor.
|
||
|
const Name = "msgpack"
|
||
|
|
||
|
func init() {
|
||
|
encoding.RegisterCodec(codec{})
|
||
|
}
|
||
|
|
||
|
// codec is a Codec implementation with msgpack.
|
||
|
type codec struct{}
|
||
|
|
||
|
func (codec) Marshal(v interface{}) ([]byte, error) {
|
||
|
return msgpack.Marshal(v)
|
||
|
}
|
||
|
|
||
|
func (codec) Unmarshal(data []byte, v interface{}) error {
|
||
|
return msgpack.Unmarshal(data, v)
|
||
|
}
|
||
|
|
||
|
func (codec) Name() string {
|
||
|
return Name
|
||
|
}
|