1 Star 0 Fork 0

peter/fabric

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
protobuf.go 893 Bytes
Copy Edit Raw Blame History
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package lifecycle
import (
"github.com/golang/protobuf/proto"
"github.com/pkg/errors"
)
// Protobuf defines the subset of protobuf lifecycle needs and allows
// for injection of mocked marshaling errors.
type Protobuf interface {
Marshal(msg proto.Message) (marshaled []byte, err error)
Unmarshal(marshaled []byte, msg proto.Message) error
}
// ProtobufImpl is the standard implementation to use for Protobuf
type ProtobufImpl struct{}
// Marshal passes through to proto.Marshal
func (p ProtobufImpl) Marshal(msg proto.Message) ([]byte, error) {
res, err := proto.Marshal(msg)
return res, errors.WithStack(err)
}
// Unmarshal passes through to proto.Unmarshal
func (p ProtobufImpl) Unmarshal(marshaled []byte, msg proto.Message) error {
return errors.WithStack(proto.Unmarshal(marshaled, msg))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/peter_code_git/fabric.git
git@gitee.com:peter_code_git/fabric.git
peter_code_git
fabric
fabric
v1.4.2

Search