mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5bd902b5cf
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
26 lines
559 B
Go
26 lines
559 B
Go
package ttrpc
|
|
|
|
import (
|
|
"github.com/gogo/protobuf/proto"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type codec struct{}
|
|
|
|
func (c codec) Marshal(msg interface{}) ([]byte, error) {
|
|
switch v := msg.(type) {
|
|
case proto.Message:
|
|
return proto.Marshal(v)
|
|
default:
|
|
return nil, errors.Errorf("ttrpc: cannot marshal unknown type: %T", msg)
|
|
}
|
|
}
|
|
|
|
func (c codec) Unmarshal(p []byte, msg interface{}) error {
|
|
switch v := msg.(type) {
|
|
case proto.Message:
|
|
return proto.Unmarshal(p, v)
|
|
default:
|
|
return errors.Errorf("ttrpc: cannot unmarshal into unknown type: %T", msg)
|
|
}
|
|
}
|