Documentation
¶
Overview ¶
Package rawdb contains a collection of low level database accessors.
Index ¶
- Variables
- func DeleteBlock(db DatabaseDeleter, shardId uint16, hash common.Hash, number uint64)
- func DeleteBody(db DatabaseDeleter, shardId uint16, hash common.Hash, number uint64)
- func DeleteCanonicalHash(db DatabaseDeleter, shardId uint16, number uint64)
- func DeleteHeader(db DatabaseDeleter, shardId uint16, hash common.Hash, number uint64)
- func DeleteReceipts(db DatabaseDeleter, shardId uint16, hash common.Hash, number uint64)
- func DeleteShardBlockEntry(db DatabaseDeleter, hash common.Hash)
- func DeleteTd(db DatabaseDeleter, shardId uint16, hash common.Hash, number uint64)
- func DeleteTxLookupEntry(db DatabaseDeleter, hash common.Hash)
- func FindCommonAncestor(db DatabaseReader, a, b types.HeaderIntf) types.HeaderIntf
- func GetTxOfAccountNonce(db DatabaseReader, account common.Address, nonce uint64) (common.Hash, bool)
- func HasBody(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.BlockIntf
- func ReadBloomBits(db DatabaseReader, bit uint, section uint64, head common.Hash) ([]byte, error)
- func ReadBody(db DatabaseReader, hash common.Hash, number uint64) *types.SuperBody
- func ReadBodyRLP(db DatabaseReader, hash common.Hash, number uint64) rlp.RawValue
- func ReadCanonicalHash(db DatabaseReader, shardId uint16, number uint64) common.Hash
- func ReadChainConfig(db DatabaseReader, hash common.Hash) *params.ChainConfig
- func ReadDatabaseVersion(db DatabaseReader) int
- func ReadFastTrieProgress(db DatabaseReader) uint64
- func ReadHeadBlockHash(db DatabaseReader, shardId uint16) common.Hash
- func ReadHeadFastBlockHash(db DatabaseReader, shardId uint16) common.Hash
- func ReadHeadHeaderHash(db DatabaseReader, shardId uint16) common.Hash
- func ReadHeader(db DatabaseReader, hash common.Hash, number uint64) types.HeaderIntf
- func ReadHeaderNumber(db DatabaseReader, hash common.Hash) *uint64
- func ReadHeaderRLP(db DatabaseReader, hash common.Hash, number uint64) rlp.RawValue
- func ReadLatestShardInfo(db DatabaseReader, shardId uint16) (common.Hash, uint64, common.Hash, uint64)
- func ReadPendingTransactions(db DatabaseReader) ([]*common.Hash, error)
- func ReadPreimage(db DatabaseReader, shardId uint16, hash common.Hash) []byte
- func ReadRawTransaction(db DatabaseReader, hash common.Hash) (*types.Transaction, error)
- func ReadReceipt(db DatabaseReader, hash common.Hash) (*types.Receipt, common.Hash, uint64, uint64)
- func ReadReceipts(db DatabaseReader, hash common.Hash, number uint64) types.Receipts
- func ReadRejectedBloomBits(db DatabaseReader, bit uint, section uint64, head common.Hash) ([]byte, error)
- func ReadTd(db DatabaseReader, shardId uint16, hash common.Hash, number uint64) *big.Int
- func ReadTransaction(db DatabaseReader, hash common.Hash) (*types.Transaction, common.Hash, uint64, uint64)
- func ReadTxLookupEntry(db DatabaseReader, hash common.Hash) (uint16, common.Hash, uint64, uint64)
- func WriteBlock(db DatabaseWriter, block types.BlockIntf)
- func WriteBloomBits(db DatabaseWriter, bit uint, section uint64, head common.Hash, bits []byte)
- func WriteBody(db DatabaseWriter, hash common.Hash, shardId uint16, number uint64, ...)
- func WriteBodyRLP(db DatabaseWriter, hash common.Hash, number uint64, rlp rlp.RawValue)
- func WriteCanonicalHash(db DatabaseWriter, shardId uint16, hash common.Hash, number uint64)
- func WriteChainConfig(db DatabaseWriter, hash common.Hash, cfg *params.ChainConfig)
- func WriteDatabaseVersion(db DatabaseWriter, version int)
- func WriteFastTrieProgress(db DatabaseWriter, count uint64)
- func WriteHeadBlockHash(db DatabaseWriter, shardId uint16, hash common.Hash)
- func WriteHeadFastBlockHash(db DatabaseWriter, shardId uint16, hash common.Hash)
- func WriteHeadHeaderHash(db DatabaseWriter, shardId uint16, hash common.Hash)
- func WriteHeader(db DatabaseWriter, header types.HeaderIntf)
- func WriteLatestShardInfo(db DatabaseWriter, shardConfirmed types.HeaderIntf, shardMax types.HeaderIntf)
- func WritePendingTransactions(db DatabaseWriter, txHashes []*common.Hash) error
- func WritePreimages(db DatabaseWriter, shardId uint16, number uint64, ...)
- func WriteRawTransaction(db DatabaseWriter, hash common.Hash, tx *types.Transaction) error
- func WriteReceipts(db DatabaseWriter, shardId uint16, hash common.Hash, number uint64, ...)
- func WriteRejectedBloomBits(db DatabaseWriter, bit uint, section uint64, head common.Hash, bits []byte)
- func WriteShardBlockEntries(db DatabaseWriter, block types.BlockIntf)
- func WriteTd(db DatabaseWriter, shardId uint16, hash common.Hash, number uint64, ...)
- func WriteTxLookupEntries(db DatabaseWriter, block types.BlockIntf, receipts types.Receipts)
- func WriteTxOfAccountNonce(db DatabaseWriter, account common.Address, nonce uint64, hash common.Hash) error
- type DatabaseDeleter
- type DatabaseReader
- type DatabaseWriter
- type ShardStoreInfo
- type TxLookupEntry
Constants ¶
This section is empty.
Variables ¶
var ( // Chain index prefixes (use `i` + single byte to avoid mixing data types). BloomBitsIndexPrefix = []byte("iB") // BloomBitsIndexPrefix is the data table of a chain indexer to track its progress )
The fields below define the low level database schema prefixing.
Functions ¶
func DeleteBlock ¶
func DeleteBlock(db DatabaseDeleter, shardId uint16, hash common.Hash, number uint64)
DeleteBlock removes all block data associated with a hash.
func DeleteBody ¶
func DeleteBody(db DatabaseDeleter, shardId uint16, hash common.Hash, number uint64)
DeleteBody removes all block body data associated with a hash.
func DeleteCanonicalHash ¶
func DeleteCanonicalHash(db DatabaseDeleter, shardId uint16, number uint64)
DeleteCanonicalHash removes the number to hash canonical mapping.
func DeleteHeader ¶
func DeleteHeader(db DatabaseDeleter, shardId uint16, hash common.Hash, number uint64)
DeleteHeader removes all block header data associated with a hash.
func DeleteReceipts ¶
func DeleteReceipts(db DatabaseDeleter, shardId uint16, hash common.Hash, number uint64)
DeleteReceipts removes all receipt data associated with a block hash.
func DeleteShardBlockEntry ¶
func DeleteShardBlockEntry(db DatabaseDeleter, hash common.Hash)
DeleteTxLookupEntry removes all transaction data associated with a hash.
func DeleteTd ¶
func DeleteTd(db DatabaseDeleter, shardId uint16, hash common.Hash, number uint64)
DeleteTd removes all block total difficulty data associated with a hash.
func DeleteTxLookupEntry ¶
func DeleteTxLookupEntry(db DatabaseDeleter, hash common.Hash)
DeleteTxLookupEntry removes all transaction data associated with a hash.
func FindCommonAncestor ¶
func FindCommonAncestor(db DatabaseReader, a, b types.HeaderIntf) types.HeaderIntf
FindCommonAncestor returns the last common ancestor of two block headers
func GetTxOfAccountNonce ¶
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 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 ¶
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 ReadBloomBits ¶
ReadBloomBits retrieves the compressed bloom bit vector belonging to the given section and bit index from the.
func ReadBodyRLP ¶
ReadBodyRLP retrieves the block body (transactions and uncles) in RLP encoding.
func ReadCanonicalHash ¶
func ReadCanonicalHash(db DatabaseReader, shardId uint16, 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 ReadDatabaseVersion ¶
func ReadDatabaseVersion(db DatabaseReader) int
ReadDatabaseVersion retrieves the version number of the database.
func ReadFastTrieProgress ¶
func ReadFastTrieProgress(db DatabaseReader) uint64
ReadFastTrieProgress retrieves the number of tries nodes fast synced to allow reporting correct numbers across restarts.
func ReadHeadBlockHash ¶
func ReadHeadBlockHash(db DatabaseReader, shardId uint16) common.Hash
ReadHeadBlockHash retrieves the hash of the current canonical head block.
func ReadHeadFastBlockHash ¶
func ReadHeadFastBlockHash(db DatabaseReader, shardId uint16) common.Hash
ReadHeadFastBlockHash retrieves the hash of the current fast-sync head block.
func ReadHeadHeaderHash ¶
func ReadHeadHeaderHash(db DatabaseReader, shardId uint16) common.Hash
ReadHeadHeaderHash retrieves the hash of the current canonical head header.
func ReadHeader ¶
func ReadHeader(db DatabaseReader, hash common.Hash, number uint64) types.HeaderIntf
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 ReadLatestShardInfo ¶
func ReadLatestShardInfo(db DatabaseReader, shardId uint16) (common.Hash, uint64, common.Hash, uint64)
Get latest informations of specified shard returns: result.confirmedHash,result.confirmedNumber,result.maxTdHash,result.maxTdNumber
func ReadPendingTransactions ¶
func ReadPendingTransactions(db DatabaseReader) ([]*common.Hash, error)
func ReadPreimage ¶
func ReadPreimage(db DatabaseReader, shardId uint16, hash common.Hash) []byte
ReadPreimage retrieves a single preimage of the provided hash.
func ReadRawTransaction ¶
func ReadRawTransaction(db DatabaseReader, hash common.Hash) (*types.Transaction, error)
func ReadReceipt ¶
ReadReceipt retrieves a specific transaction receipt from the database, along with its added positional metadata.
func ReadReceipts ¶
ReadReceipts retrieves all the transaction receipts belonging to a block.
func ReadRejectedBloomBits ¶
func ReadRejectedBloomBits(db DatabaseReader, bit uint, section uint64, head common.Hash) ([]byte, error)
ReadBloomBits retrieves the compressed bloom bit vector belonging to the given section and bit index from the.
func ReadTransaction ¶
func ReadTransaction(db DatabaseReader, hash common.Hash) (*types.Transaction, common.Hash, uint64, uint64)
ReadTransaction retrieves a specific transaction from the database, along with its added positional metadata.
func ReadTxLookupEntry ¶
ReadTxLookupEntry retrieves the positional metadata associated with a transaction hash to allow retrieving the transaction or receipt by hash.
func WriteBlock ¶
func WriteBlock(db DatabaseWriter, block types.BlockIntf)
WriteBlock serializes a block into the database, header and body separately.
func WriteBloomBits ¶
WriteBloomBits stores the compressed bloom bits vector belonging to the given section and bit index.
func WriteBody ¶
func WriteBody(db DatabaseWriter, hash common.Hash, shardId uint16, number uint64, body *types.SuperBody)
WriteBody storea a block body into the database. add shardid into db, so we can judge which body should be used on reading
func WriteBodyRLP ¶
WriteBodyRLP stores an RLP encoded block body into the database.
func WriteCanonicalHash ¶
func WriteCanonicalHash(db DatabaseWriter, shardId uint16, 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 WriteDatabaseVersion ¶
func WriteDatabaseVersion(db DatabaseWriter, version int)
WriteDatabaseVersion stores the version number of the database
func WriteFastTrieProgress ¶
func WriteFastTrieProgress(db DatabaseWriter, count uint64)
WriteFastTrieProgress stores the fast sync trie process counter to support retrieving it across restarts.
func WriteHeadBlockHash ¶
func WriteHeadBlockHash(db DatabaseWriter, shardId uint16, hash common.Hash)
WriteHeadBlockHash stores the head block's hash.
func WriteHeadFastBlockHash ¶
func WriteHeadFastBlockHash(db DatabaseWriter, shardId uint16, hash common.Hash)
WriteHeadFastBlockHash stores the hash of the current fast-sync head block.
func WriteHeadHeaderHash ¶
func WriteHeadHeaderHash(db DatabaseWriter, shardId uint16, hash common.Hash)
WriteHeadHeaderHash stores the hash of the current canonical head header.
func WriteHeader ¶
func WriteHeader(db DatabaseWriter, header types.HeaderIntf)
WriteHeader stores a block header into the database and also stores the hash- to-number mapping.
func WriteLatestShardInfo ¶
func WriteLatestShardInfo(db DatabaseWriter, shardConfirmed types.HeaderIntf, shardMax types.HeaderIntf)
WriteLatestShardInfo stores a block header into the database and also stores the hash- to-number mapping.
func WritePendingTransactions ¶
func WritePendingTransactions(db DatabaseWriter, txHashes []*common.Hash) error
func WritePreimages ¶
func WritePreimages(db DatabaseWriter, shardId uint16, number uint64, preimages map[common.Hash][]byte)
WritePreimages writes the provided set of preimages to the database. `number` is the current block number, and is used for debug messages only.
func WriteRawTransaction ¶
func WriteRawTransaction(db DatabaseWriter, hash common.Hash, tx *types.Transaction) error
func WriteReceipts ¶
func WriteReceipts(db DatabaseWriter, shardId uint16, hash common.Hash, number uint64, receipts types.Receipts)
WriteReceipts stores all the transaction receipts belonging to a block.
func WriteRejectedBloomBits ¶
func WriteRejectedBloomBits(db DatabaseWriter, bit uint, section uint64, head common.Hash, bits []byte)
WriteBloomBits stores the compressed bloom bits vector belonging to the given section and bit index.
func WriteShardBlockEntries ¶
func WriteShardBlockEntries(db DatabaseWriter, block types.BlockIntf)
WriteShardBlockEntries stores a positional metadata for every shardBlock from a master block, enabling hash based transaction and receipt lookups.
func WriteTxLookupEntries ¶
func WriteTxLookupEntries(db DatabaseWriter, block types.BlockIntf, receipts types.Receipts)
WriteTxLookupEntries stores a positional metadata for every transaction from a block, enabling hash based transaction and receipt lookups.
func WriteTxOfAccountNonce ¶
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.
type ShardStoreInfo ¶
type ShardStoreInfo struct {
// contains filtered or unexported fields
}