Documentation ¶
Overview ¶
Package rawdb contains a collection of low level database accessors.
Index ¶
- func DeleteBlock(db DatabaseDeleter, hash common.Hash, number uint64)
- func DeleteBody(db DatabaseDeleter, hash common.Hash, number uint64)
- func DeleteCanonicalHash(db DatabaseDeleter, number uint64)
- func DeleteFruitsHead(db DatabaseDeleter, hash common.Hash, number uint64)
- func DeleteFtLookupEntry(db DatabaseDeleter, fastHash common.Hash)
- func DeleteHeader(db DatabaseDeleter, hash common.Hash, number uint64)
- func DeleteTd(db DatabaseDeleter, hash common.Hash, number uint64)
- func FindCommonAncestor(db DatabaseReader, a, b *types.SnailHeader) *types.SnailHeader
- func HasBody(db DatabaseReader, hash common.Hash, number uint64) bool
- func HasFruitsHead(db DatabaseReader, hash common.Hash, number uint64) bool
- func HasHeader(db DatabaseReader, hash common.Hash, number uint64) bool
- func ReadBlock(db DatabaseReader, hash common.Hash, number uint64) *types.SnailBlock
- func ReadBody(db DatabaseReader, hash common.Hash, number uint64) *types.SnailBody
- func ReadBodyRLP(db DatabaseReader, hash common.Hash, number uint64) rlp.RawValue
- func ReadCanonicalHash(db DatabaseReader, number uint64) common.Hash
- func ReadChainConfig(db DatabaseReader, hash common.Hash) *params.ChainConfig
- func ReadCommitteeStates(db DatabaseReader, committee uint64) []*big.Int
- func ReadDatabaseVersion(db DatabaseReader) int
- func ReadFHsRLP(db DatabaseReader, hash common.Hash, number uint64) rlp.RawValue
- func ReadFruit(db DatabaseReader, fastHash common.Hash) (*types.SnailBlock, common.Hash, uint64, uint64)
- func ReadFruitHead(db DatabaseReader, fastHash common.Hash) (*types.SnailHeader, common.Hash, uint64, uint64)
- func ReadFruitsHead(db DatabaseReader, hash common.Hash, number uint64) []*types.SnailHeader
- func ReadFtLookupEntry(db DatabaseReader, fastHash common.Hash) (common.Hash, uint64, uint64)
- func ReadHeadBlockHash(db DatabaseReader) common.Hash
- func ReadHeadFastBlockHash(db DatabaseReader) common.Hash
- func ReadHeadHeaderHash(db DatabaseReader) common.Hash
- func ReadHeader(db DatabaseReader, hash common.Hash, number uint64) *types.SnailHeader
- func ReadHeaderNumber(db DatabaseReader, hash common.Hash) *uint64
- func ReadHeaderRLP(db DatabaseReader, hash common.Hash, number uint64) rlp.RawValue
- func ReadLastDataSet(db DatabaseReader, epoch uint64) [][]byte
- func ReadLightCheckPoint(db DatabaseReader) uint64
- func ReadTd(db DatabaseReader, hash common.Hash, number uint64) *big.Int
- func WriteBlock(db DatabaseWriter, block *types.SnailBlock)
- func WriteBody(db DatabaseWriter, hash common.Hash, number uint64, body *types.SnailBody)
- func WriteBodyRLP(db DatabaseWriter, hash common.Hash, number uint64, rlp rlp.RawValue)
- func WriteCanonicalHash(db DatabaseWriter, hash common.Hash, number uint64)
- func WriteChainConfig(db DatabaseWriter, hash common.Hash, cfg *params.ChainConfig)
- func WriteCommitteeStates(db DatabaseWriter, committee uint64, changes []*big.Int)
- func WriteDatabaseVersion(db DatabaseWriter, version int)
- func WriteFHsRLP(db DatabaseWriter, hash common.Hash, number uint64, rlp rlp.RawValue)
- func WriteFruitsHead(db DatabaseWriter, hash common.Hash, number uint64, heads []*types.SnailHeader)
- func WriteFtHeadLookupEntries(db DatabaseWriter, head *types.SnailHeader, fruitHeads []*types.SnailHeader)
- func WriteFtLookupEntries(db DatabaseWriter, block *types.SnailBlock)
- func WriteHeadBlockHash(db DatabaseWriter, hash common.Hash)
- func WriteHeadFastBlockHash(db DatabaseWriter, hash common.Hash)
- func WriteHeadHeaderHash(db DatabaseWriter, hash common.Hash)
- func WriteHeader(db DatabaseWriter, header *types.SnailHeader)
- func WriteLastDataSet(db DatabaseWriter, epoch uint64, dataSet [][]byte)
- func WriteLightCheckPoint(db DatabaseWriter, count uint64)
- func WriteTd(db DatabaseWriter, hash common.Hash, number uint64, td *big.Int)
- type DatabaseDeleter
- type DatabaseReader
- type DatabaseWriter
- type FtLookupEntry
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DeleteBlock ¶
func DeleteBlock(db DatabaseDeleter, hash common.Hash, number uint64)
DeleteBlock removes all block data associated with a hash.
func DeleteBody ¶
func DeleteBody(db DatabaseDeleter, hash common.Hash, number uint64)
DeleteBody removes all block body data associated with a hash.
func DeleteCanonicalHash ¶
func DeleteCanonicalHash(db DatabaseDeleter, number uint64)
DeleteCanonicalHash removes the number to hash canonical mapping.
func DeleteFruitsHead ¶
func DeleteFruitsHead(db DatabaseDeleter, hash common.Hash, number uint64)
DeleteBody removes all block body data associated with a hash.
func DeleteFtLookupEntry ¶
func DeleteFtLookupEntry(db DatabaseDeleter, fastHash common.Hash)
DeleteFtLookupEntry removes all fruit data associated with a hash.
func DeleteHeader ¶
func DeleteHeader(db DatabaseDeleter, hash common.Hash, number uint64)
DeleteHeader removes all block header data associated with a hash.
func DeleteTd ¶
func DeleteTd(db DatabaseDeleter, hash common.Hash, number uint64)
DeleteTd removes all block total difficulty data associated with a hash.
func FindCommonAncestor ¶
func FindCommonAncestor(db DatabaseReader, a, b *types.SnailHeader) *types.SnailHeader
FindCommonAncestor returns the last common ancestor of two block headers
func HasBody ¶
func HasBody(db DatabaseReader, hash common.Hash, number uint64) bool
HasBody verifies the existence of a block body corresponding to the hash.
func HasFruitsHead ¶
func HasFruitsHead(db DatabaseReader, hash common.Hash, number uint64) bool
HasBody verifies the existence of a block body corresponding to the hash.
func HasHeader ¶
func HasHeader(db DatabaseReader, hash common.Hash, number uint64) bool
HasHeader verifies the existence of a block header corresponding to the hash.
func ReadBlock ¶
func ReadBlock(db DatabaseReader, hash common.Hash, number uint64) *types.SnailBlock
ReadBlock retrieves an entire block corresponding to the hash, assembling it back from the stored header and body. If either the header or body could not be retrieved nil is returned.
Note, due to concurrent download of header and block body the header and thus canonical hash can be stored in the database but the body data not (yet).
func ReadBodyRLP ¶
ReadBodyRLP retrieves the block body (transactions and uncles) in RLP encoding.
func ReadCanonicalHash ¶
func ReadCanonicalHash(db DatabaseReader, number uint64) common.Hash
ReadCanonicalHash retrieves the hash assigned to a canonical block number.
func ReadChainConfig ¶
func ReadChainConfig(db DatabaseReader, hash common.Hash) *params.ChainConfig
ReadChainConfig retrieves the consensus settings based on the given genesis hash.
func ReadCommitteeStates ¶
func ReadCommitteeStates(db DatabaseReader, committee uint64) []*big.Int
ReadCommitteeStates returns the all committee members states flag sepecified with fastblock height
func ReadDatabaseVersion ¶
func ReadDatabaseVersion(db DatabaseReader) int
ReadDatabaseVersion retrieves the version number of the database.
func ReadFHsRLP ¶
ReadFHsRLP retrieves the fruits head in RLP encoding.
func ReadFruit ¶
func ReadFruit(db DatabaseReader, fastHash common.Hash) (*types.SnailBlock, common.Hash, uint64, uint64)
ReadFruit retrieves a specific fruit from the database, along with its added positional metadata.
func ReadFruitHead ¶
func ReadFruitHead(db DatabaseReader, fastHash common.Hash) (*types.SnailHeader, common.Hash, uint64, uint64)
ReadFruitHead retrieves a specific fruit from the database, along with its added positional metadata.
func ReadFruitsHead ¶
func ReadFruitsHead(db DatabaseReader, hash common.Hash, number uint64) []*types.SnailHeader
ReadBody retrieves the block body corresponding to the hash.
func ReadFtLookupEntry ¶
ReadFtLookupEntry retrieves the positional metadata associated with a fruit hash to allow retrieving the fruit by hash.
func ReadHeadBlockHash ¶
func ReadHeadBlockHash(db DatabaseReader) common.Hash
ReadHeadBlockHash retrieves the hash of the current canonical head block.
func ReadHeadFastBlockHash ¶
func ReadHeadFastBlockHash(db DatabaseReader) common.Hash
ReadHeadFastBlockHash retrieves the hash of the current fast-sync head block.
func ReadHeadHeaderHash ¶
func ReadHeadHeaderHash(db DatabaseReader) common.Hash
ReadHeadHeaderHash retrieves the hash of the current canonical head header.
func ReadHeader ¶
func ReadHeader(db DatabaseReader, hash common.Hash, number uint64) *types.SnailHeader
ReadHeader retrieves the block header corresponding to the hash.
func ReadHeaderNumber ¶
func ReadHeaderNumber(db DatabaseReader, hash common.Hash) *uint64
ReadHeaderNumber returns the header number assigned to a hash.
func ReadHeaderRLP ¶
ReadHeaderRLP retrieves a block header in its raw RLP database encoding.
func ReadLastDataSet ¶
func ReadLastDataSet(db DatabaseReader, epoch uint64) [][]byte
ReadLastDataSet retrieves the number of tries nodes fast synced to allow reporting correct numbers across restarts.
func ReadLightCheckPoint ¶
func ReadLightCheckPoint(db DatabaseReader) uint64
ReadLightCheckPoint retrieves the number of tries nodes fast synced to allow reporting correct numbers across restarts.
func WriteBlock ¶
func WriteBlock(db DatabaseWriter, block *types.SnailBlock)
WriteBlock serializes a block into the database, header and body separately.
func WriteBodyRLP ¶
WriteBodyRLP stores an RLP encoded block body into the database.
func WriteCanonicalHash ¶
func WriteCanonicalHash(db DatabaseWriter, hash common.Hash, number uint64)
WriteCanonicalHash stores the hash assigned to a canonical block number.
func WriteChainConfig ¶
func WriteChainConfig(db DatabaseWriter, hash common.Hash, cfg *params.ChainConfig)
WriteChainConfig writes the chain config settings to the database.
func WriteCommitteeStates ¶
func WriteCommitteeStates(db DatabaseWriter, committee uint64, changes []*big.Int)
WriteCommitteeStates store the all committee members sepecified with fastblock height
func WriteDatabaseVersion ¶
func WriteDatabaseVersion(db DatabaseWriter, version int)
WriteDatabaseVersion stores the version number of the database
func WriteFHsRLP ¶
WriteBodyRLP stores an RLP encoded block body into the database.
func WriteFruitsHead ¶
func WriteFruitsHead(db DatabaseWriter, hash common.Hash, number uint64, heads []*types.SnailHeader)
WriteBody storea a block body into the database.
func WriteFtHeadLookupEntries ¶
func WriteFtHeadLookupEntries(db DatabaseWriter, head *types.SnailHeader, fruitHeads []*types.SnailHeader)
WriteFtHeadLookupEntries stores a positional metadata for every fruit from a block, enabling hash based fruit lookups.
func WriteFtLookupEntries ¶
func WriteFtLookupEntries(db DatabaseWriter, block *types.SnailBlock)
WriteFtLookupEntries stores a positional metadata for every fruit from a block, enabling hash based fruit lookups.
func WriteHeadBlockHash ¶
func WriteHeadBlockHash(db DatabaseWriter, hash common.Hash)
WriteHeadBlockHash stores the head block's hash.
func WriteHeadFastBlockHash ¶
func WriteHeadFastBlockHash(db DatabaseWriter, hash common.Hash)
WriteHeadFastBlockHash stores the hash of the current fast-sync head block.
func WriteHeadHeaderHash ¶
func WriteHeadHeaderHash(db DatabaseWriter, hash common.Hash)
WriteHeadHeaderHash stores the hash of the current canonical head header.
func WriteHeader ¶
func WriteHeader(db DatabaseWriter, header *types.SnailHeader)
WriteHeader stores a block header into the database and also stores the hash- to-number mapping.
func WriteLastDataSet ¶
func WriteLastDataSet(db DatabaseWriter, epoch uint64, dataSet [][]byte)
WriteLastDataSet stores the fast sync trie process counter to support retrieving it across restarts.
func WriteLightCheckPoint ¶
func WriteLightCheckPoint(db DatabaseWriter, count uint64)
WriteLightCheckPoint stores the fast sync trie process counter to support retrieving it across restarts.
Types ¶
type DatabaseDeleter ¶
DatabaseDeleter wraps the Delete method of a backing data store.
type DatabaseReader ¶
DatabaseReader wraps the Has and Get method of a backing data store.
type DatabaseWriter ¶
DatabaseWriter wraps the Put method of a backing data store.