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.
154 lines
3.4 KiB
154 lines
3.4 KiB
package downloader
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/harmony-one/harmony/core/types"
|
|
"github.com/harmony-one/harmony/internal/utils"
|
|
"github.com/rs/zerolog"
|
|
)
|
|
|
|
// lastMileCache keeps the last 50 number blocks in memory cache
|
|
const lastMileCap = 50
|
|
|
|
type (
|
|
// beaconHelper is the helper for the beacon downloader. The beaconHelper is only started
|
|
// when node is running on side chain, listening to beacon client pub-sub message and
|
|
// insert the latest blocks to the beacon chain.
|
|
beaconHelper struct {
|
|
bc blockChain
|
|
ih insertHelper
|
|
blockC <-chan *types.Block
|
|
// TODO: refactor this hook to consensus module. We'd better put it in
|
|
// consensus module under a subscription.
|
|
insertHook func()
|
|
|
|
lastMileCache *blocksByNumber
|
|
insertC chan insertTask
|
|
closeC chan struct{}
|
|
logger zerolog.Logger
|
|
}
|
|
|
|
insertTask struct {
|
|
doneC chan struct{}
|
|
}
|
|
)
|
|
|
|
func newBeaconHelper(bc blockChain, ih insertHelper, blockC <-chan *types.Block, insertHook func()) *beaconHelper {
|
|
return &beaconHelper{
|
|
bc: bc,
|
|
ih: ih,
|
|
blockC: blockC,
|
|
insertHook: insertHook,
|
|
lastMileCache: newBlocksByNumber(lastMileCap),
|
|
insertC: make(chan insertTask, 1),
|
|
closeC: make(chan struct{}),
|
|
logger: utils.Logger().With().
|
|
Str("module", "downloader").
|
|
Str("sub-module", "beacon helper").
|
|
Logger(),
|
|
}
|
|
}
|
|
|
|
func (bh *beaconHelper) start() {
|
|
go bh.loop()
|
|
}
|
|
|
|
func (bh *beaconHelper) close() {
|
|
close(bh.closeC)
|
|
}
|
|
|
|
func (bh *beaconHelper) loop() {
|
|
for {
|
|
select {
|
|
case <-time.Tick(10 * time.Second):
|
|
bh.insertAsync()
|
|
|
|
case b, ok := <-bh.blockC:
|
|
if !ok {
|
|
return // blockC closed. Node exited
|
|
}
|
|
if b == nil {
|
|
continue
|
|
}
|
|
bh.lastMileCache.push(b)
|
|
bh.insertAsync()
|
|
|
|
case it := <-bh.insertC:
|
|
inserted, bn, err := bh.insertLastMileBlocks()
|
|
if err != nil {
|
|
bh.logger.Warn().Err(err).Msg("insert last mile blocks error")
|
|
continue
|
|
}
|
|
bh.logger.Info().Int("inserted", inserted).
|
|
Uint64("end height", bn).
|
|
Uint32("shard", bh.bc.ShardID()).
|
|
Msg("insert last mile blocks")
|
|
|
|
close(it.doneC)
|
|
|
|
case <-bh.closeC:
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// insertSync triggers the insert last mile without blocking
|
|
func (bh *beaconHelper) insertAsync() {
|
|
select {
|
|
case bh.insertC <- insertTask{
|
|
doneC: make(chan struct{}),
|
|
}:
|
|
default:
|
|
}
|
|
}
|
|
|
|
// insertSync triggers the insert last mile while blocking
|
|
func (bh *beaconHelper) insertSync() {
|
|
task := insertTask{
|
|
doneC: make(chan struct{}),
|
|
}
|
|
bh.insertC <- task
|
|
<-task.doneC
|
|
}
|
|
|
|
func (bh *beaconHelper) insertLastMileBlocks() (inserted int, bn uint64, err error) {
|
|
bn = bh.bc.CurrentBlock().NumberU64() + 1
|
|
for {
|
|
b := bh.getNextBlock(bn)
|
|
if b == nil {
|
|
bn--
|
|
return
|
|
}
|
|
// TODO: Instruct the beacon helper to verify signatures. This may require some forks
|
|
// in pub-sub message (add commit sigs in node.block.sync messages)
|
|
if _, err = bh.bc.InsertChain(types.Blocks{b}, true); err != nil {
|
|
bn--
|
|
return
|
|
}
|
|
bh.logger.Info().Uint64("number", b.NumberU64()).Msg("Inserted block from beacon pub-sub")
|
|
if bh.insertHook != nil {
|
|
bh.insertHook()
|
|
}
|
|
inserted++
|
|
bn++
|
|
}
|
|
}
|
|
|
|
func (bh *beaconHelper) getNextBlock(expBN uint64) *types.Block {
|
|
for bh.lastMileCache.len() > 0 {
|
|
b := bh.lastMileCache.pop()
|
|
if b == nil {
|
|
return nil
|
|
}
|
|
if b.NumberU64() < expBN {
|
|
continue
|
|
}
|
|
if b.NumberU64() > expBN {
|
|
bh.lastMileCache.push(b)
|
|
return nil
|
|
}
|
|
return b
|
|
}
|
|
return nil
|
|
}
|
|
|