2019-08-16 17:13:04 +00:00
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-08-21 20:58:38 +00:00
|
|
|
"time"
|
2019-08-16 17:13:04 +00:00
|
|
|
|
2019-08-21 20:58:38 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/blockchain"
|
2019-08-16 20:03:11 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db"
|
2019-08-18 15:33:58 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/operations"
|
2019-08-16 17:13:04 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/p2p"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = shared.Service(&RegularSync{})
|
|
|
|
|
2019-08-21 16:04:00 +00:00
|
|
|
// Config to set up the regular sync service.
|
|
|
|
type Config struct {
|
|
|
|
P2P p2p.P2P
|
|
|
|
DB db.Database
|
|
|
|
Operations *operations.Service
|
2019-08-23 17:48:40 +00:00
|
|
|
Chain blockchainService
|
|
|
|
}
|
|
|
|
|
|
|
|
// This defines the interface for interacting with block chain service
|
|
|
|
type blockchainService interface {
|
|
|
|
blockchain.BlockReceiver
|
|
|
|
blockchain.HeadRetriever
|
|
|
|
blockchain.FinalizationRetriever
|
2019-08-21 16:04:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewRegularSync service.
|
|
|
|
func NewRegularSync(cfg *Config) *RegularSync {
|
|
|
|
return &RegularSync{
|
|
|
|
ctx: context.Background(),
|
|
|
|
db: cfg.DB,
|
|
|
|
p2p: cfg.P2P,
|
|
|
|
operations: cfg.Operations,
|
2019-08-22 18:11:52 +00:00
|
|
|
chain: cfg.Chain,
|
2019-08-21 16:04:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-16 17:13:04 +00:00
|
|
|
// RegularSync service is responsible for handling all run time p2p related operations as the
|
|
|
|
// main entry point for network messages.
|
|
|
|
type RegularSync struct {
|
2019-08-18 15:33:58 +00:00
|
|
|
ctx context.Context
|
|
|
|
p2p p2p.P2P
|
|
|
|
db db.Database
|
2019-08-21 16:04:00 +00:00
|
|
|
operations *operations.Service
|
2019-08-23 17:48:40 +00:00
|
|
|
chain blockchainService
|
2019-08-16 17:13:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start the regular sync service by initializing all of the p2p sync handlers.
|
|
|
|
func (r *RegularSync) Start() {
|
2019-08-21 20:58:38 +00:00
|
|
|
log.Info("Starting regular sync")
|
|
|
|
for !r.p2p.Started() {
|
|
|
|
time.Sleep(200 * time.Millisecond)
|
|
|
|
}
|
2019-08-16 17:13:04 +00:00
|
|
|
r.registerRPCHandlers()
|
|
|
|
r.registerSubscribers()
|
2019-08-21 20:58:38 +00:00
|
|
|
log.Info("Regular sync started")
|
2019-08-16 17:13:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Stop the regular sync service.
|
|
|
|
func (r *RegularSync) Stop() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Status of the currently running regular sync service.
|
|
|
|
func (r *RegularSync) Status() error {
|
|
|
|
return nil
|
|
|
|
}
|
2019-08-21 20:58:38 +00:00
|
|
|
|
|
|
|
// Syncing returns true if the node is currently syncing with the network.
|
|
|
|
func (r *RegularSync) Syncing() bool {
|
|
|
|
// TODO(3147): Use real value.
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checker defines a struct which can verify whether a node is currently
|
|
|
|
// synchronizing a chain with the rest of peers in the network.
|
|
|
|
type Checker interface {
|
|
|
|
Syncing() bool
|
|
|
|
Status() error
|
|
|
|
}
|