quorum/block_pool.go

268 lines
5.7 KiB
Go
Raw Normal View History

package eth
import (
"bytes"
2014-09-24 02:41:57 -07:00
"container/list"
"math"
"math/big"
"sync"
2014-09-24 02:41:57 -07:00
"time"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/eth-go/ethutil"
)
2014-09-26 11:19:11 -07:00
var poollogger = ethlog.NewLogger("BPOOL")
type block struct {
from *Peer
2014-09-24 02:41:57 -07:00
peer *Peer
block *ethchain.Block
reqAt time.Time
requested int
}
type BlockPool struct {
mut sync.Mutex
eth *Ethereum
hashPool [][]byte
pool map[string]*block
2014-09-24 02:41:57 -07:00
td *big.Int
quit chan bool
2014-09-28 05:52:58 -07:00
fetchingHashes bool
downloadStartedAt time.Time
ChainLength, BlocksProcessed int
}
func NewBlockPool(eth *Ethereum) *BlockPool {
return &BlockPool{
eth: eth,
pool: make(map[string]*block),
td: ethutil.Big0,
2014-09-24 02:41:57 -07:00
quit: make(chan bool),
}
}
2014-09-17 06:58:02 -07:00
func (self *BlockPool) Len() int {
return len(self.hashPool)
}
func (self *BlockPool) HasLatestHash() bool {
2014-09-28 05:52:58 -07:00
self.mut.Lock()
defer self.mut.Unlock()
return self.pool[string(self.eth.BlockChain().CurrentBlock.Hash())] != nil
}
func (self *BlockPool) HasCommonHash(hash []byte) bool {
return self.eth.BlockChain().GetBlock(hash) != nil
}
2014-09-28 05:52:58 -07:00
func (self *BlockPool) Blocks() (blocks ethchain.Blocks) {
for _, item := range self.pool {
if item.block != nil {
blocks = append(blocks, item.block)
}
}
return
}
func (self *BlockPool) AddHash(hash []byte, peer *Peer) {
2014-09-28 05:52:58 -07:00
self.mut.Lock()
defer self.mut.Unlock()
if self.pool[string(hash)] == nil {
self.pool[string(hash)] = &block{peer, nil, nil, time.Now(), 0}
self.hashPool = append([][]byte{hash}, self.hashPool...)
}
}
2014-09-28 05:52:58 -07:00
func (self *BlockPool) Add(b *ethchain.Block, peer *Peer) {
self.mut.Lock()
defer self.mut.Unlock()
hash := string(b.Hash())
2014-09-15 06:42:12 -07:00
if self.pool[hash] == nil && !self.eth.BlockChain().HasBlock(b.Hash()) {
2014-09-26 11:19:11 -07:00
poollogger.Infof("Got unrequested block (%x...)\n", hash[0:4])
2014-09-14 05:30:33 -07:00
self.hashPool = append(self.hashPool, b.Hash())
self.pool[hash] = &block{peer, peer, b, time.Now(), 0}
2014-09-25 07:57:49 -07:00
2014-09-28 05:52:58 -07:00
if !self.eth.BlockChain().HasBlock(b.PrevHash) && !self.fetchingHashes {
2014-09-30 14:26:52 -07:00
//poollogger.Infof("Unknown block, requesting parent (%x...)\n", b.PrevHash[0:4])
//peer.QueueMessage(ethwire.NewMessage(ethwire.MsgGetBlockHashesTy, []interface{}{b.PrevHash, uint32(256)}))
2014-09-25 07:57:49 -07:00
}
2014-09-15 06:42:12 -07:00
} else if self.pool[hash] != nil {
self.pool[hash].block = b
}
self.BlocksProcessed++
}
2014-09-28 05:52:58 -07:00
func (self *BlockPool) Remove(hash []byte) {
self.mut.Lock()
defer self.mut.Unlock()
2014-09-28 05:52:58 -07:00
self.hashPool = ethutil.DeleteFromByteSlice(self.hashPool, hash)
delete(self.pool, string(hash))
}
func (self *BlockPool) ProcessCanonical(f func(block *ethchain.Block)) (procAmount int) {
blocks := self.Blocks()
2014-09-15 06:42:12 -07:00
ethchain.BlockBy(ethchain.Number).Sort(blocks)
for _, block := range blocks {
if self.eth.BlockChain().HasBlock(block.PrevHash) {
procAmount++
2014-09-15 06:42:12 -07:00
f(block)
2014-09-28 05:52:58 -07:00
self.Remove(block.Hash())
}
2014-09-15 06:42:12 -07:00
}
return
}
func (self *BlockPool) DistributeHashes() {
2014-09-28 05:52:58 -07:00
self.mut.Lock()
defer self.mut.Unlock()
var (
peerLen = self.eth.peers.Len()
2014-09-28 05:52:58 -07:00
amount = 256 * peerLen
dist = make(map[*Peer][][]byte)
)
num := int(math.Min(float64(amount), float64(len(self.pool))))
for i, j := 0, 0; i < len(self.hashPool) && j < num; i++ {
hash := self.hashPool[i]
item := self.pool[string(hash)]
if item != nil && item.block == nil {
var peer *Peer
lastFetchFailed := time.Since(item.reqAt) > 5*time.Second
// Handle failed requests
2014-09-28 05:52:58 -07:00
if lastFetchFailed && item.requested > 5 && item.peer != nil {
if item.requested < 100 {
// Select peer the hash was retrieved off
peer = item.from
} else {
// Remove it
self.hashPool = ethutil.DeleteFromByteSlice(self.hashPool, hash)
delete(self.pool, string(hash))
}
} else if lastFetchFailed || item.peer == nil {
// Find a suitable, available peer
eachPeer(self.eth.peers, func(p *Peer, v *list.Element) {
if peer == nil && len(dist[p]) < amount/peerLen {
peer = p
}
})
}
if peer != nil {
item.reqAt = time.Now()
item.peer = peer
item.requested++
dist[peer] = append(dist[peer], hash)
}
}
}
for peer, hashes := range dist {
peer.FetchBlocks(hashes)
}
2014-09-28 05:52:58 -07:00
if len(dist) > 0 {
self.downloadStartedAt = time.Now()
}
}
2014-09-24 02:41:57 -07:00
func (self *BlockPool) Start() {
2014-09-28 05:52:58 -07:00
go self.downloadThread()
go self.chainThread()
2014-09-24 02:41:57 -07:00
}
func (self *BlockPool) Stop() {
close(self.quit)
}
2014-09-28 05:52:58 -07:00
func (self *BlockPool) downloadThread() {
2014-09-24 02:41:57 -07:00
serviceTimer := time.NewTicker(100 * time.Millisecond)
out:
for {
select {
case <-self.quit:
break out
case <-serviceTimer.C:
// Check if we're catching up. If not distribute the hashes to
// the peers and download the blockchain
2014-09-28 05:52:58 -07:00
self.fetchingHashes = false
2014-09-24 02:41:57 -07:00
eachPeer(self.eth.peers, func(p *Peer, v *list.Element) {
if p.statusKnown && p.FetchingHashes() {
2014-09-28 05:52:58 -07:00
self.fetchingHashes = true
2014-09-24 02:41:57 -07:00
}
})
2014-09-28 05:52:58 -07:00
if !self.fetchingHashes && len(self.hashPool) > 0 {
self.DistributeHashes()
}
if self.ChainLength < len(self.hashPool) {
self.ChainLength = len(self.hashPool)
2014-09-24 02:41:57 -07:00
}
2014-09-28 05:52:58 -07:00
}
}
}
func (self *BlockPool) chainThread() {
procTimer := time.NewTicker(500 * time.Millisecond)
out:
for {
select {
case <-self.quit:
break out
2014-09-24 02:41:57 -07:00
case <-procTimer.C:
blocks := self.Blocks()
ethchain.BlockBy(ethchain.Number).Sort(blocks)
if len(blocks) > 0 {
if self.eth.BlockChain().HasBlock(blocks[0].PrevHash) {
for i, block := range blocks[1:] {
// NOTE: The Ith element in this loop refers to the previous block in
// outer "blocks"
if bytes.Compare(block.PrevHash, blocks[i].Hash()) != 0 {
blocks = blocks[:i]
break
}
}
} else {
blocks = nil
}
}
// Handle in batches of 4k
max := int(math.Min(4000, float64(len(blocks))))
for _, block := range blocks[:max] {
self.eth.Eventer().Post("block", block)
2014-09-24 02:41:57 -07:00
self.Remove(block.Hash())
2014-09-24 02:41:57 -07:00
}
}
}
}