兄弟连区块链技术培训Fabric 1.0源代码分析(16)gossip(流言算法) #GossipServer(Gossip服务端)
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
兄弟连区块链技术培训Fabric 1.0源代码分析(16)gossip (流言算法)#GossipServer(Gossip服务端)
## 1、GossipServer概述
GossipServer相关代码,分布在protos/gossip、gossip/comm目录下。目录结构如下:
* protos/gossip目录:
* message.pb.go,GossipClient接口定义及实现,GossipServer接口定义。
* gossip/comm目录:
* comm.go,Comm接口定义。
* conn.go,connFactory接口定义,以及connectionStore结构体及方法。
* comm_impl.go,commImpl结构体及方法(同时实现GossipServer接口/Comm接口/connFactory接口)。
* demux.go,ChannelDeMultiplexer结构体及方法。
## 2、GossipClient接口定义及实现
### 2.1、GossipClient接口定义
```go
type GossipClient interface {
// GossipStream is the gRPC stream used for sending and receiving m essages
GossipStream(ctx context.Context, opts ...grpc.CallOption) (Gossip_ GossipStreamClient, error)
// Ping is used to probe a remote peer's aliveness
Ping(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*Emp ty, error)
}
//代码在protos/gossip/message.pb.go
```
### 2.2、GossipClient接口实现
```go
type gossipClient struct {
cc *grpc.ClientConn
}
func NewGossipClient(cc *grpc.ClientConn) GossipClient {
return &gossipClient{cc}
}
func (c *gossipClient) GossipStream(ctx context.Context, opts ...grpc.C allOption) (Gossip_GossipStreamClient, error) {
stream, err := grpc.NewClientStream(ctx, &_Gossip_serviceDesc.Strea ms[0], , "/gossip.Gossip/GossipStream", opts...)
if err != nil {
return nil, err
}
x := &gossipGossipStreamClient{stream}
return x, nil
}
func (c *gossipClient) Ping(ctx context.Context, in *Empty, opts ...grp c.CallOption) (*Empty, error) {
out := new(Empty)
err := grpc.Invoke(ctx, "/gossip.Gossip/Ping", in, out, , opt s...)
if err != nil {
return nil, err
}
return out, nil
}
//代码在protos/gossip/message.pb.go
```
### 2.3、Gossip_GossipStreamClient接口定义及实现
```go
type Gossip_GossipStreamClient interface {
Send(*Envelope) error
Recv() (*Envelope, error)
grpc.ClientStream
}
type gossipGossipStreamClient struct {
grpc.ClientStream
}
func (x *gossipGossipStreamClient) Send(m *Envelope) error {
return x.ClientStream.SendMsg(m)
}
func (x *gossipGossipStreamClient) Recv() (*Envelope, error) {
m := new(Envelope)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
//代码在protos/gossip/message.pb.go
```
## 3、GossipServer接口定义
### 3.1、GossipServer接口定义
```go
type GossipServer interface {
// GossipStream is the gRPC stream used for sending and receiving m essages
GossipStream(Gossip_GossipStreamServer) error
// Ping is used to probe a remote peer's aliveness
Ping(context.Context, *Empty) (*Empty, error)
}
func RegisterGossipServer(s *grpc.Server, srv GossipServer) {
s.RegisterService(&_Gossip_serviceDesc, srv)
}
func _Gossip_GossipStream_Handler(srv interface{}, stream grpc.ServerSt ream) error {
return srv.(GossipServer).GossipStream(&gossipGossipStreamServer{st ream})
}
func _Gossip_Ping_Handler(srv interface{}, ctx context.Context, dec fun c(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interfa ce{}, error) {
in := new(Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {