package discovery import ( "time" proto_discovery "github.com/harmony-one/harmony/api/proto/discovery" msg_pb "github.com/harmony-one/harmony/api/proto/message" proto_node "github.com/harmony-one/harmony/api/proto/node" "github.com/harmony-one/harmony/api/service" "github.com/harmony-one/harmony/internal/utils" "github.com/harmony-one/harmony/p2p" "github.com/harmony-one/harmony/p2p/host" ) // 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 messageChan chan *msg_pb.Message } // 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.ActionPause { // Recived Pause Message, to reduce the frequency of ping message to every 1 minute // TODO (leo) use different timer tick for different group, mainly differentiate beacon and regular shards // beacon ping could be less frequent than regular shard tick.Stop() tick = time.NewTicker(1 * time.Minute) } if a == p2p.ActionStart || a == p2p.ActionResume || a == p2p.ActionPause { if g == p2p.GroupIDBeacon || g == p2p.GroupIDBeaconClient { 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 { // The following logical will be used for 2nd stage peer discovery process 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("[DISCOVERY] Failed to send ping message", "group", g) } else { utils.GetLogInstance().Info("[DISCOVERY]", "Sent Ping Message", g) } } } } } } // Init is to initialize for discoveryService. func (s *Service) Init() { utils.GetLogInstance().Info("Init discovery service") } // SetMessageChan sets up message channel to service. func (s *Service) SetMessageChan(messageChan chan *msg_pb.Message) { s.messageChan = messageChan }