|
@ -2,6 +2,7 @@ package store |
|
|
|
|
|
|
|
|
import ( |
|
|
import ( |
|
|
"fmt" |
|
|
"fmt" |
|
|
|
|
|
"strconv" |
|
|
"sync" |
|
|
"sync" |
|
|
|
|
|
|
|
|
"github.com/pkg/errors" |
|
|
"github.com/pkg/errors" |
|
@ -73,6 +74,24 @@ func (bs *BlockStore) LoadBlock(height int64) *types.Block { |
|
|
return block |
|
|
return block |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// LoadBlockByHash returns the block with the given hash.
|
|
|
|
|
|
// If no block is found for that hash, it returns nil.
|
|
|
|
|
|
// Panics if it fails to parse height associated with the given hash.
|
|
|
|
|
|
func (bs *BlockStore) LoadBlockByHash(hash []byte) *types.Block { |
|
|
|
|
|
bz := bs.db.Get(calcBlockHashKey(hash)) |
|
|
|
|
|
if len(bz) == 0 { |
|
|
|
|
|
return nil |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
s := string(bz) |
|
|
|
|
|
height, err := strconv.ParseInt(s, 10, 64) |
|
|
|
|
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
panic(errors.Wrapf(err, "failed to extract height from %s", s)) |
|
|
|
|
|
} |
|
|
|
|
|
return bs.LoadBlock(height) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
// LoadBlockPart returns the Part at the given index
|
|
|
// LoadBlockPart returns the Part at the given index
|
|
|
// from the block at the given height.
|
|
|
// from the block at the given height.
|
|
|
// If no part is found for the given height and index, it returns nil.
|
|
|
// If no part is found for the given height and index, it returns nil.
|
|
@ -147,7 +166,10 @@ func (bs *BlockStore) SaveBlock(block *types.Block, blockParts *types.PartSet, s |
|
|
if block == nil { |
|
|
if block == nil { |
|
|
panic("BlockStore can only save a non-nil block") |
|
|
panic("BlockStore can only save a non-nil block") |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
height := block.Height |
|
|
height := block.Height |
|
|
|
|
|
hash := block.Hash() |
|
|
|
|
|
|
|
|
if g, w := height, bs.Height()+1; g != w { |
|
|
if g, w := height, bs.Height()+1; g != w { |
|
|
panic(fmt.Sprintf("BlockStore can only save contiguous blocks. Wanted %v, got %v", w, g)) |
|
|
panic(fmt.Sprintf("BlockStore can only save contiguous blocks. Wanted %v, got %v", w, g)) |
|
|
} |
|
|
} |
|
@ -159,6 +181,7 @@ func (bs *BlockStore) SaveBlock(block *types.Block, blockParts *types.PartSet, s |
|
|
blockMeta := types.NewBlockMeta(block, blockParts) |
|
|
blockMeta := types.NewBlockMeta(block, blockParts) |
|
|
metaBytes := cdc.MustMarshalBinaryBare(blockMeta) |
|
|
metaBytes := cdc.MustMarshalBinaryBare(blockMeta) |
|
|
bs.db.Set(calcBlockMetaKey(height), metaBytes) |
|
|
bs.db.Set(calcBlockMetaKey(height), metaBytes) |
|
|
|
|
|
bs.db.Set(calcBlockHashKey(hash), []byte(fmt.Sprintf("%d", height))) |
|
|
|
|
|
|
|
|
// Save block parts
|
|
|
// Save block parts
|
|
|
for i := 0; i < blockParts.Total(); i++ { |
|
|
for i := 0; i < blockParts.Total(); i++ { |
|
@ -213,6 +236,10 @@ func calcSeenCommitKey(height int64) []byte { |
|
|
return []byte(fmt.Sprintf("SC:%v", height)) |
|
|
return []byte(fmt.Sprintf("SC:%v", height)) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
func calcBlockHashKey(hash []byte) []byte { |
|
|
|
|
|
return []byte(fmt.Sprintf("BH:%x", hash)) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
var blockStoreKey = []byte("blockStore") |
|
|
var blockStoreKey = []byte("blockStore") |
|
|