-
Notifications
You must be signed in to change notification settings - Fork 0
/
support.go
53 lines (45 loc) · 1.53 KB
/
support.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package gossip
import (
"github.com/hyperledger/fabric/gossip/common"
"github.com/hyperledger/fabric/gossip/discovery"
gossip2 "github.com/hyperledger/fabric/gossip/gossip"
)
// DiscoverySupport implements support that is used for service discovery
// that is obtained from gossip
type DiscoverySupport struct {
gossip2.Gossip
}
// NewDiscoverySupport creates a new DiscoverySupport
func NewDiscoverySupport(g gossip2.Gossip) *DiscoverySupport {
return &DiscoverySupport{g}
}
// ChannelExists returns whether a given channel exists or not
func (s *DiscoverySupport) ChannelExists(channel string) bool {
return s.SelfChannelInfo(common.ChainID(channel)) != nil
}
// PeersOfChannel returns the NetworkMembers considered alive
// and also subscribed to the channel given
func (s *DiscoverySupport) PeersOfChannel(chain common.ChainID) discovery.Members {
msg := s.SelfChannelInfo(chain)
if msg == nil {
return nil
}
stateInf := msg.GetStateInfo()
selfMember := discovery.NetworkMember{
Properties: stateInf.Properties,
PKIid: stateInf.PkiId,
Envelope: msg.Envelope,
}
return append(s.Gossip.PeersOfChannel(chain), selfMember)
}
// Peers returns the NetworkMembers considered alive
func (s *DiscoverySupport) Peers() discovery.Members {
peers := s.Gossip.Peers()
peers = append(peers, s.Gossip.SelfMembershipInfo())
// Return only the peers that have an external endpoint.
return discovery.Members(peers).Filter(discovery.HasExternalEndpoint)
}