The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
woop/api/service/discovery/service.go

134 lines
3.8 KiB

package discovery
import (
"time"
proto_discovery "github.com/harmony-one/harmony/api/proto/discovery"
proto_node "github.com/harmony-one/harmony/api/proto/node"
"github.com/harmony-one/harmony/internal/utils"
"github.com/harmony-one/harmony/p2p"
"github.com/harmony-one/harmony/p2p/host"
"github.com/harmony-one/harmony/api/service"
)
// Service is the struct for discovery service.
type Service struct {
host p2p.Host
peerChan chan p2p.Peer
stopChan chan struct{}
actionChan chan p2p.GroupAction
config service.NodeConfig
actions map[p2p.GroupID]p2p.ActionType
}
// New returns discovery service.
// h is the p2p host
// config is the node config
// (TODO: leo, build two overlays of network)
func New(h p2p.Host, config service.NodeConfig, peerChan chan p2p.Peer) *Service {
return &Service{
host: h,
peerChan: peerChan,
stopChan: make(chan struct{}),
actionChan: make(chan p2p.GroupAction),
config: config,
actions: make(map[p2p.GroupID]p2p.ActionType),
}
}
// StartService starts discovery service.
func (s *Service) StartService() {
utils.GetLogInstance().Info("Starting discovery service.")
s.Init()
s.Run()
}
// StopService shutdowns discovery service.
func (s *Service) StopService() {
utils.GetLogInstance().Info("Shutting down discovery service.")
s.stopChan <- struct{}{}
utils.GetLogInstance().Info("discovery service stopped.")
}
// NotifyService receives notification from service manager
func (s *Service) NotifyService(params map[string]interface{}) {
data := params["peer"]
action, ok := data.(p2p.GroupAction)
if !ok {
utils.GetLogInstance().Error("Wrong data type passed to NotifyService")
return
}
utils.GetLogInstance().Info("[DISCOVERY]", "got notified", action)
s.actionChan <- action
}
// Run is the main function of the service
func (s *Service) Run() {
go s.contactP2pPeers()
}
func (s *Service) contactP2pPeers() {
tick := time.NewTicker(5 * time.Second)
pingMsg := proto_discovery.NewPingMessage(s.host.GetSelfPeer())
regMsgBuf := host.ConstructP2pMessage(byte(0), pingMsg.ConstructPingMessage())
pingMsg.Node.Role = proto_node.ClientRole
clientMsgBuf := host.ConstructP2pMessage(byte(0), pingMsg.ConstructPingMessage())
for {
select {
case peer, ok := <-s.peerChan:
if !ok {
utils.GetLogInstance().Debug("end of info", "peer", peer.PeerID)
break
}
s.host.AddPeer(&peer)
// Add to outgoing peer list
//s.host.AddOutgoingPeer(peer)
utils.GetLogInstance().Debug("[DISCOVERY]", "add outgoing peer", peer)
case <-s.stopChan:
utils.GetLogInstance().Debug("[DISCOVERY] stop pinging ...")
return
case action := <-s.actionChan:
s.config.Actions[action.Name] = action.Action
case <-tick.C:
var err error
for g, a := range s.config.Actions {
if a == p2p.ActionStart || a == p2p.ActionResume {
if g == p2p.GroupIDBeacon {
if s.config.IsBeacon {
// beacon chain node
err = s.host.SendMessageToGroups([]p2p.GroupID{s.config.Beacon}, regMsgBuf)
} else {
// non-beacon chain node, reg as client node
err = s.host.SendMessageToGroups([]p2p.GroupID{s.config.Beacon}, clientMsgBuf)
}
} else {
if s.config.Group == p2p.GroupIDUnknown {
continue
}
if s.config.IsClient {
// client node of reg shard, such as wallet/txgen
err = s.host.SendMessageToGroups([]p2p.GroupID{s.config.Group}, clientMsgBuf)
} else {
// regular node of a shard
err = s.host.SendMessageToGroups([]p2p.GroupID{s.config.Group}, regMsgBuf)
}
}
}
if err != nil {
utils.GetLogInstance().Error("Failed to send ping message", "group", s.config.Beacon)
}
}
}
}
}
// Init is to initialize for discoveryService.
func (s *Service) Init() {
utils.GetLogInstance().Info("Init discovery service")
}