Skip to content

Commit

Permalink
GetBlockByNumber now properly looks for a number in the database
Browse files Browse the repository at this point in the history
  • Loading branch information
obscuren committed Mar 13, 2015
1 parent fee9aec commit b927c29
Showing 1 changed file with 33 additions and 28 deletions.
61 changes: 33 additions & 28 deletions core/chain_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ import (
var (
chainlogger = logger.NewLogger("CHAIN")
jsonlogger = logger.NewJsonLogger()

blockHashPre = []byte("block-hash-")
blockNumPre = []byte("block-num-")
)

type StateQuery interface {
Expand Down Expand Up @@ -165,9 +168,8 @@ func (self *ChainManager) setTransState(statedb *state.StateDB) {
func (bc *ChainManager) setLastBlock() {
data, _ := bc.blockDb.Get([]byte("LastBlock"))
if len(data) != 0 {
var block types.Block
rlp.Decode(bytes.NewReader(data), &block)
bc.currentBlock = &block
block := bc.GetBlock(data)
bc.currentBlock = block
bc.lastBlockHash = block.Hash()

// Set the last know difficulty (might be 0x0 as initial value, Genesis)
Expand Down Expand Up @@ -220,7 +222,7 @@ func (bc *ChainManager) Reset() {
defer bc.mu.Unlock()

for block := bc.currentBlock; block != nil; block = bc.GetBlock(block.Header().ParentHash) {
bc.blockDb.Delete(block.Hash())
bc.removeBlock(block)
}

// Prepare the genesis block
Expand All @@ -231,12 +233,16 @@ func (bc *ChainManager) Reset() {
bc.setTotalDifficulty(ethutil.Big("0"))
}

func (bc *ChainManager) removeBlock(block *types.Block) {
bc.blockDb.Delete(append(blockHashPre, block.Hash()...))
}

func (bc *ChainManager) ResetWithGenesisBlock(gb *types.Block) {
bc.mu.Lock()
defer bc.mu.Unlock()

for block := bc.currentBlock; block != nil; block = bc.GetBlock(block.Header().ParentHash) {
bc.blockDb.Delete(block.Hash())
bc.removeBlock(block)
}

// Prepare the genesis block
Expand All @@ -261,15 +267,20 @@ func (self *ChainManager) Export() []byte {
}

func (bc *ChainManager) insert(block *types.Block) {
encodedBlock := ethutil.Encode(block)
bc.blockDb.Put([]byte("LastBlock"), encodedBlock)
//encodedBlock := ethutil.Encode(block)
bc.blockDb.Put([]byte("LastBlock"), block.Hash())
bc.currentBlock = block
bc.lastBlockHash = block.Hash()

key := append(blockNumPre, block.Number().Bytes()...)
bc.blockDb.Put(key, bc.lastBlockHash)
}

func (bc *ChainManager) write(block *types.Block) {
encodedBlock := ethutil.Encode(block.RlpDataForStorage())
bc.blockDb.Put(block.Hash(), encodedBlock)

key := append(blockHashPre, block.Hash()...)
bc.blockDb.Put(key, encodedBlock)
}

// Accessors
Expand All @@ -279,7 +290,7 @@ func (bc *ChainManager) Genesis() *types.Block {

// Block fetching methods
func (bc *ChainManager) HasBlock(hash []byte) bool {
data, _ := bc.blockDb.Get(hash)
data, _ := bc.blockDb.Get(append(blockHashPre, hash...))
return len(data) != 0
}

Expand Down Expand Up @@ -307,7 +318,7 @@ func (self *ChainManager) GetBlockHashesFromHash(hash []byte, max uint64) (chain
}

func (self *ChainManager) GetBlock(hash []byte) *types.Block {
data, _ := self.blockDb.Get(hash)
data, _ := self.blockDb.Get(append(blockHashPre, hash...))
if len(data) == 0 {
return nil
}
Expand All @@ -320,6 +331,18 @@ func (self *ChainManager) GetBlock(hash []byte) *types.Block {
return &block
}

func (self *ChainManager) GetBlockByNumber(num uint64) *types.Block {
self.mu.RLock()
defer self.mu.RUnlock()

key, _ := self.blockDb.Get(append(blockNumPre, big.NewInt(int64(num)).Bytes()...))
if len(key) == 0 {
return nil
}

return self.GetBlock(key)
}

func (self *ChainManager) GetUnclesInChain(block *types.Block, length int) (uncles []*types.Header) {
for i := 0; block != nil && i < length; i++ {
uncles = append(uncles, block.Uncles()...)
Expand All @@ -342,24 +365,6 @@ func (self *ChainManager) GetAncestors(block *types.Block, length int) (blocks [
return
}

func (self *ChainManager) GetBlockByNumber(num uint64) *types.Block {
self.mu.RLock()
defer self.mu.RUnlock()

var block *types.Block

if num <= self.currentBlock.Number().Uint64() {
block = self.currentBlock
for ; block != nil; block = self.GetBlock(block.Header().ParentHash) {
if block.Header().Number.Uint64() == num {
break
}
}
}

return block
}

func (bc *ChainManager) setTotalDifficulty(td *big.Int) {
bc.blockDb.Put([]byte("LTD"), td.Bytes())
bc.td = td
Expand Down

0 comments on commit b927c29

Please sign in to comment.