forked from cerc-io/plugeth
Changed the block fetching code and hash distribution
This commit is contained in:
parent
d3a0bb4f35
commit
84690bfbbe
128
block_pool.go
128
block_pool.go
@ -3,17 +3,21 @@ package eth
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"container/list"
|
"container/list"
|
||||||
"fmt"
|
|
||||||
"math"
|
"math"
|
||||||
"math/big"
|
"math/big"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/ethereum/eth-go/ethchain"
|
"github.com/ethereum/eth-go/ethchain"
|
||||||
|
"github.com/ethereum/eth-go/ethlog"
|
||||||
"github.com/ethereum/eth-go/ethutil"
|
"github.com/ethereum/eth-go/ethutil"
|
||||||
|
"github.com/ethereum/eth-go/ethwire"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var poollogger = ethlog.NewLogger("[BPOOL]")
|
||||||
|
|
||||||
type block struct {
|
type block struct {
|
||||||
|
from *Peer
|
||||||
peer *Peer
|
peer *Peer
|
||||||
block *ethchain.Block
|
block *ethchain.Block
|
||||||
reqAt time.Time
|
reqAt time.Time
|
||||||
@ -30,6 +34,8 @@ type BlockPool struct {
|
|||||||
|
|
||||||
td *big.Int
|
td *big.Int
|
||||||
quit chan bool
|
quit chan bool
|
||||||
|
|
||||||
|
ChainLength, BlocksProcessed int
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewBlockPool(eth *Ethereum) *BlockPool {
|
func NewBlockPool(eth *Ethereum) *BlockPool {
|
||||||
@ -53,9 +59,9 @@ func (self *BlockPool) HasCommonHash(hash []byte) bool {
|
|||||||
return self.eth.BlockChain().GetBlock(hash) != nil
|
return self.eth.BlockChain().GetBlock(hash) != nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *BlockPool) AddHash(hash []byte) {
|
func (self *BlockPool) AddHash(hash []byte, peer *Peer) {
|
||||||
if self.pool[string(hash)] == nil {
|
if self.pool[string(hash)] == nil {
|
||||||
self.pool[string(hash)] = &block{nil, nil, time.Now(), 0}
|
self.pool[string(hash)] = &block{peer, nil, nil, time.Now(), 0}
|
||||||
|
|
||||||
self.hashPool = append([][]byte{hash}, self.hashPool...)
|
self.hashPool = append([][]byte{hash}, self.hashPool...)
|
||||||
}
|
}
|
||||||
@ -66,10 +72,12 @@ func (self *BlockPool) SetBlock(b *ethchain.Block, peer *Peer) {
|
|||||||
|
|
||||||
if self.pool[hash] == nil && !self.eth.BlockChain().HasBlock(b.Hash()) {
|
if self.pool[hash] == nil && !self.eth.BlockChain().HasBlock(b.Hash()) {
|
||||||
self.hashPool = append(self.hashPool, b.Hash())
|
self.hashPool = append(self.hashPool, b.Hash())
|
||||||
self.pool[hash] = &block{peer, b, time.Now(), 0}
|
self.pool[hash] = &block{peer, peer, b, time.Now(), 0}
|
||||||
} else if self.pool[hash] != nil {
|
} else if self.pool[hash] != nil {
|
||||||
self.pool[hash].block = b
|
self.pool[hash].block = b
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.BlocksProcessed++
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *BlockPool) getParent(block *ethchain.Block) *ethchain.Block {
|
func (self *BlockPool) getParent(block *ethchain.Block) *ethchain.Block {
|
||||||
@ -94,18 +102,24 @@ func (self *BlockPool) GetChainFromBlock(block *ethchain.Block) ethchain.Blocks
|
|||||||
return blocks
|
return blocks
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *BlockPool) CheckLinkAndProcess(f func(block *ethchain.Block)) {
|
func (self *BlockPool) Blocks() (blocks ethchain.Blocks) {
|
||||||
|
|
||||||
var blocks ethchain.Blocks
|
|
||||||
for _, item := range self.pool {
|
for _, item := range self.pool {
|
||||||
if item.block != nil {
|
if item.block != nil {
|
||||||
blocks = append(blocks, item.block)
|
blocks = append(blocks, item.block)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (self *BlockPool) ProcessCanonical(f func(block *ethchain.Block)) (procAmount int) {
|
||||||
|
blocks := self.Blocks()
|
||||||
|
|
||||||
ethchain.BlockBy(ethchain.Number).Sort(blocks)
|
ethchain.BlockBy(ethchain.Number).Sort(blocks)
|
||||||
for _, block := range blocks {
|
for _, block := range blocks {
|
||||||
if self.eth.BlockChain().HasBlock(block.PrevHash) {
|
if self.eth.BlockChain().HasBlock(block.PrevHash) {
|
||||||
|
procAmount++
|
||||||
|
|
||||||
f(block)
|
f(block)
|
||||||
|
|
||||||
hash := block.Hash()
|
hash := block.Hash()
|
||||||
@ -114,31 +128,58 @@ func (self *BlockPool) CheckLinkAndProcess(f func(block *ethchain.Block)) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *BlockPool) Take(amount int, peer *Peer) (hashes [][]byte) {
|
func (self *BlockPool) DistributeHashes() {
|
||||||
self.mut.Lock()
|
var (
|
||||||
defer self.mut.Unlock()
|
peerLen = self.eth.peers.Len()
|
||||||
|
amount = 200 * peerLen
|
||||||
|
dist = make(map[*Peer][][]byte)
|
||||||
|
)
|
||||||
|
|
||||||
num := int(math.Min(float64(amount), float64(len(self.pool))))
|
num := int(math.Min(float64(amount), float64(len(self.pool))))
|
||||||
j := 0
|
for i, j := 0, 0; i < len(self.hashPool) && j < num; i++ {
|
||||||
for i := 0; i < len(self.hashPool) && j < num; i++ {
|
hash := self.hashPool[i]
|
||||||
hash := string(self.hashPool[i])
|
item := self.pool[string(hash)]
|
||||||
item := self.pool[hash]
|
|
||||||
if item != nil && item.block == nil &&
|
|
||||||
(item.peer == nil ||
|
|
||||||
((time.Since(item.reqAt) > 5*time.Second && item.peer != peer) && self.eth.peers.Len() > 1) || // multiple peers
|
|
||||||
(time.Since(item.reqAt) > 5*time.Second && self.eth.peers.Len() == 1) /* single peer*/) {
|
|
||||||
self.pool[hash].peer = peer
|
|
||||||
self.pool[hash].reqAt = time.Now()
|
|
||||||
self.pool[hash].requested++
|
|
||||||
|
|
||||||
hashes = append(hashes, self.hashPool[i])
|
if item != nil && item.block == nil {
|
||||||
j++
|
var peer *Peer
|
||||||
|
lastFetchFailed := time.Since(item.reqAt) > 5*time.Second
|
||||||
|
|
||||||
|
// Handle failed requests
|
||||||
|
if lastFetchFailed && item.requested > 0 && 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)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
for peer, hashes := range dist {
|
||||||
|
peer.FetchBlocks(hashes)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *BlockPool) Start() {
|
func (self *BlockPool) Start() {
|
||||||
@ -158,7 +199,8 @@ out:
|
|||||||
case <-self.quit:
|
case <-self.quit:
|
||||||
break out
|
break out
|
||||||
case <-serviceTimer.C:
|
case <-serviceTimer.C:
|
||||||
// Clean up hashes that can't be fetched
|
// Check if we're catching up. If not distribute the hashes to
|
||||||
|
// the peers and download the blockchain
|
||||||
done := true
|
done := true
|
||||||
eachPeer(self.eth.peers, func(p *Peer, v *list.Element) {
|
eachPeer(self.eth.peers, func(p *Peer, v *list.Element) {
|
||||||
if p.statusKnown && p.FetchingHashes() {
|
if p.statusKnown && p.FetchingHashes() {
|
||||||
@ -166,29 +208,27 @@ out:
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
if done {
|
if done && len(self.hashPool) > 0 {
|
||||||
eachPeer(self.eth.peers, func(p *Peer, v *list.Element) {
|
self.DistributeHashes()
|
||||||
if p.statusKnown {
|
}
|
||||||
hashes := self.Take(100, p)
|
|
||||||
if len(hashes) > 0 {
|
if self.ChainLength < len(self.hashPool) {
|
||||||
p.FetchBlocks(hashes)
|
self.ChainLength = len(self.hashPool)
|
||||||
if len(hashes) == 1 {
|
|
||||||
fmt.Printf("last hash = %x\n", hashes[0])
|
|
||||||
} else {
|
|
||||||
fmt.Println("Requesting", len(hashes), "of", p)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
case <-procTimer.C:
|
case <-procTimer.C:
|
||||||
var err error
|
// XXX We can optimize this lifting this on to a new goroutine.
|
||||||
self.CheckLinkAndProcess(func(block *ethchain.Block) {
|
// We'd need to make sure that the pools are properly protected by a mutex
|
||||||
err = self.eth.StateManager().Process(block, false)
|
amount := self.ProcessCanonical(func(block *ethchain.Block) {
|
||||||
|
err := self.eth.StateManager().Process(block, false)
|
||||||
|
if err != nil {
|
||||||
|
poollogger.Infoln(err)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
if err != nil {
|
// Do not propagate to the network on catchups
|
||||||
peerlogger.Infoln(err)
|
if amount == 1 {
|
||||||
|
block := self.eth.BlockChain().CurrentBlock
|
||||||
|
self.eth.Broadcast(ethwire.MsgBlockTy, []interface{}{block.Value().Val})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user