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.
56 lines
1.7 KiB
56 lines
1.7 KiB
package consensus
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
msg_pb "github.com/harmony-one/harmony/api/proto/message"
|
|
"github.com/harmony-one/harmony/consensus"
|
|
"github.com/harmony-one/harmony/core/types"
|
|
"github.com/harmony-one/harmony/internal/utils"
|
|
)
|
|
|
|
// Service is the consensus service.
|
|
type Service struct {
|
|
blockChannel chan *types.Block // The channel to receive new blocks from Node
|
|
consensus *consensus.Consensus
|
|
stopChan chan struct{}
|
|
stoppedChan chan struct{}
|
|
startChan chan struct{}
|
|
messageChan chan *msg_pb.Message
|
|
}
|
|
|
|
// New returns consensus service.
|
|
func New(blockChannel chan *types.Block, consensus *consensus.Consensus, startChan chan struct{}) *Service {
|
|
return &Service{blockChannel: blockChannel, consensus: consensus, startChan: startChan}
|
|
}
|
|
|
|
// StartService starts consensus service.
|
|
func (s *Service) StartService() {
|
|
utils.Logger().Info().Msg("[consensus/service] Starting consensus service.")
|
|
s.stopChan = make(chan struct{})
|
|
s.stoppedChan = make(chan struct{})
|
|
s.consensus.Start(s.blockChannel, s.stopChan, s.stoppedChan, s.startChan)
|
|
s.consensus.WaitForNewRandomness()
|
|
}
|
|
|
|
// StopService stops consensus service.
|
|
func (s *Service) StopService() {
|
|
utils.Logger().Info().Msg("Stopping consensus service.")
|
|
s.stopChan <- struct{}{}
|
|
<-s.stoppedChan
|
|
utils.Logger().Info().Msg("Consensus service stopped.")
|
|
}
|
|
|
|
// NotifyService notify service
|
|
func (s *Service) NotifyService(params map[string]interface{}) {
|
|
return
|
|
}
|
|
|
|
// SetMessageChan sets up message channel to service.
|
|
func (s *Service) SetMessageChan(messageChan chan *msg_pb.Message) {
|
|
s.messageChan = messageChan
|
|
}
|
|
|
|
// APIs for the services.
|
|
func (s *Service) APIs() []rpc.API {
|
|
return nil
|
|
}
|
|
|