store

package
v0.38.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 13, 2024 License: Apache-2.0 Imports: 11 Imported by: 44

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func LoadBlockStoreState

func LoadBlockStoreState(db dbm.DB) cmtstore.BlockStoreState

LoadBlockStoreState returns the BlockStoreState as loaded from disk. If no BlockStoreState was previously persisted, it returns the zero value.

func SaveBlockStoreState

func SaveBlockStoreState(bsj *cmtstore.BlockStoreState, db dbm.DB)

SaveBlockStoreState persists the blockStore state to the database. deprecated: still present in this version for API compatibility

func SaveBlockStoreStateBatch added in v0.38.4

func SaveBlockStoreStateBatch(bsj *cmtstore.BlockStoreState, batch dbm.Batch)

SaveBlockStoreStateBatch persists the blockStore state to the database. It uses the DB batch passed as parameter

Types

type BlockStore

type BlockStore struct {
	// contains filtered or unexported fields
}

BlockStore is a simple low level store for blocks.

There are three types of information stored:

  • BlockMeta: Meta information about each block
  • Block part: Parts of each block, aggregated w/ PartSet
  • Commit: The commit part of each block, for gossiping precommit votes

Currently the precommit signatures are duplicated in the Block parts as well as the Commit. In the future this may change, perhaps by moving the Commit data outside the Block. (TODO)

The store can be assumed to contain all contiguous blocks between base and height (inclusive).

// NOTE: BlockStore methods will panic if they encounter errors // deserializing loaded data, indicating probable corruption on disk.

func NewBlockStore

func NewBlockStore(db dbm.DB) *BlockStore

NewBlockStore returns a new BlockStore with the given DB, initialized to the last height that was committed to the DB.

func (*BlockStore) Base

func (bs *BlockStore) Base() int64

Base returns the first known contiguous block height, or 0 for empty block stores.

func (*BlockStore) Close

func (bs *BlockStore) Close() error

func (*BlockStore) DeleteLatestBlock

func (bs *BlockStore) DeleteLatestBlock() error

DeleteLatestBlock removes the block pointed to by height, lowering height by one.

func (*BlockStore) Height

func (bs *BlockStore) Height() int64

Height returns the last known contiguous block height, or 0 for empty block stores.

func (*BlockStore) IsEmpty added in v0.37.3

func (bs *BlockStore) IsEmpty() bool

func (*BlockStore) LoadBaseMeta

func (bs *BlockStore) LoadBaseMeta() *types.BlockMeta

LoadBase atomically loads the base block meta, or returns nil if no base is found.

func (*BlockStore) LoadBlock

func (bs *BlockStore) LoadBlock(height int64) *types.Block

LoadBlock returns the block with the given height. If no block is found for that height, it returns nil.

func (*BlockStore) LoadBlockByHash

func (bs *BlockStore) LoadBlockByHash(hash []byte) *types.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 (*BlockStore) LoadBlockCommit

func (bs *BlockStore) LoadBlockCommit(height int64) *types.Commit

LoadBlockCommit returns the Commit for the given height. This commit consists of the +2/3 and other Precommit-votes for block at `height`, and it comes from the block.LastCommit for `height+1`. If no commit is found for the given height, it returns nil.

func (*BlockStore) LoadBlockExtendedCommit added in v0.38.0

func (bs *BlockStore) LoadBlockExtendedCommit(height int64) *types.ExtendedCommit

LoadExtendedCommit returns the ExtendedCommit for the given height. The extended commit is not guaranteed to contain the same +2/3 precommits data as the commit in the block.

func (*BlockStore) LoadBlockMeta

func (bs *BlockStore) LoadBlockMeta(height int64) *types.BlockMeta

LoadBlockMeta returns the BlockMeta for the given height. If no block is found for the given height, it returns nil.

func (*BlockStore) LoadBlockMetaByHash

func (bs *BlockStore) LoadBlockMetaByHash(hash []byte) *types.BlockMeta

LoadBlockMetaByHash returns the blockmeta who's header corresponds to the given hash. If none is found, returns nil.

func (*BlockStore) LoadBlockPart

func (bs *BlockStore) LoadBlockPart(height int64, index int) *types.Part

LoadBlockPart returns the Part at the given index from the block at the given height. If no part is found for the given height and index, it returns nil.

func (*BlockStore) LoadSeenCommit

func (bs *BlockStore) LoadSeenCommit(height int64) *types.Commit

LoadSeenCommit returns the locally seen Commit for the given height. This is useful when we've seen a commit, but there has not yet been a new block at `height + 1` that includes this commit in its block.LastCommit.

func (*BlockStore) PruneBlocks

func (bs *BlockStore) PruneBlocks(height int64, state sm.State) (uint64, int64, error)

PruneBlocks removes block up to (but not including) a height. It returns number of blocks pruned and the evidence retain height - the height at which data needed to prove evidence must not be removed.

func (*BlockStore) SaveBlock

func (bs *BlockStore) SaveBlock(block *types.Block, blockParts *types.PartSet, seenCommit *types.Commit)

SaveBlock persists the given block, blockParts, and seenCommit to the underlying db. blockParts: Must be parts of the block seenCommit: The +2/3 precommits that were seen which committed at height.

If all the nodes restart after committing a block,
we need this to reload the precommits to catch-up nodes to the
most recent height.  Otherwise they'd stall at H-1.

func (*BlockStore) SaveBlockWithExtendedCommit added in v0.38.0

func (bs *BlockStore) SaveBlockWithExtendedCommit(block *types.Block, blockParts *types.PartSet, seenExtendedCommit *types.ExtendedCommit)

SaveBlockWithExtendedCommit persists the given block, blockParts, and seenExtendedCommit to the underlying db. seenExtendedCommit is stored under two keys in the database: as the seenCommit and as the ExtendedCommit data for the height. This allows the vote extension data to be persisted for all blocks that are saved.

func (*BlockStore) SaveSeenCommit

func (bs *BlockStore) SaveSeenCommit(height int64, seenCommit *types.Commit) error

SaveSeenCommit saves a seen commit, used by e.g. the state sync reactor when bootstrapping node.

func (*BlockStore) Size

func (bs *BlockStore) Size() int64

Size returns the number of blocks in the block store.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL