63 Star 183 Fork 3

Gitee 极速下载/hyperledger-fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/hyperledger/fabric
克隆/下载
common.go 2.63 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package common
import (
"fmt"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric/protos/msp"
)
func (e *Envelope) StaticallyOpaqueFields() []string {
return []string{"payload"}
}
func (e *Envelope) StaticallyOpaqueFieldProto(name string) (proto.Message, error) {
if name != e.StaticallyOpaqueFields()[0] {
return nil, fmt.Errorf("not a marshaled field: %s", name)
}
return &Payload{}, nil
}
func (p *Payload) VariablyOpaqueFields() []string {
return []string{"data"}
}
var PayloadDataMap = map[int32]proto.Message{
int32(HeaderType_CONFIG): &ConfigEnvelope{},
int32(HeaderType_ORDERER_TRANSACTION): &Envelope{},
int32(HeaderType_CONFIG_UPDATE): &ConfigUpdateEnvelope{},
int32(HeaderType_MESSAGE): &ConfigValue{}, // Only used by broadcast_msg sample client
}
func (p *Payload) VariablyOpaqueFieldProto(name string) (proto.Message, error) {
if name != p.VariablyOpaqueFields()[0] {
return nil, fmt.Errorf("not a marshaled field: %s", name)
}
if p.Header == nil {
return nil, fmt.Errorf("cannot determine payload type when header is missing")
}
ch := &ChannelHeader{}
if err := proto.Unmarshal(p.Header.ChannelHeader, ch); err != nil {
return nil, fmt.Errorf("corrupt channel header: %s", err)
}
if msg, ok := PayloadDataMap[ch.Type]; ok {
return proto.Clone(msg), nil
}
return nil, fmt.Errorf("decoding type %v is unimplemented", ch.Type)
}
func (h *Header) StaticallyOpaqueFields() []string {
return []string{"channel_header", "signature_header"}
}
func (h *Header) StaticallyOpaqueFieldProto(name string) (proto.Message, error) {
switch name {
case h.StaticallyOpaqueFields()[0]: // channel_header
return &ChannelHeader{}, nil
case h.StaticallyOpaqueFields()[1]: // signature_header
return &SignatureHeader{}, nil
default:
return nil, fmt.Errorf("unknown header field: %s", name)
}
}
func (sh *SignatureHeader) StaticallyOpaqueFields() []string {
return []string{"creator"}
}
func (sh *SignatureHeader) StaticallyOpaqueFieldProto(name string) (proto.Message, error) {
switch name {
case sh.StaticallyOpaqueFields()[0]: // channel_header
return &msp.SerializedIdentity{}, nil
default:
return nil, fmt.Errorf("unknown header field: %s", name)
}
}
func (bd *BlockData) StaticallyOpaqueSliceFields() []string {
return []string{"data"}
}
func (bd *BlockData) StaticallyOpaqueSliceFieldProto(fieldName string, index int) (proto.Message, error) {
if fieldName != bd.StaticallyOpaqueSliceFields()[0] {
return nil, fmt.Errorf("not an opaque slice field: %s", fieldName)
}
return &Envelope{}, nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mirrors/hyperledger-fabric.git
git@gitee.com:mirrors/hyperledger-fabric.git
mirrors
hyperledger-fabric
hyperledger-fabric
v1.4.0

搜索帮助

0d507c66 1850385 C8b1a773 1850385