Documentation ¶
Overview ¶
Package trie implements Merkle Patricia Tries.
Index ¶
- Variables
- func DeriveRoot(list DerivableList) thor.Bytes32
- func VerifyNodeHash(blob, expectedHash []byte) (bool, error)
- func VerifyProof(rootHash thor.Bytes32, key []byte, proofDb DatabaseReader) (value []byte, err error, nodes int)
- type Database
- type DatabaseKeyEncoder
- type DatabaseReader
- type DatabaseReaderTo
- type DatabaseWriter
- type DerivableList
- type ExtendedTrie
- func (e *ExtendedTrie) CacheTTL() uint16
- func (e *ExtendedTrie) Commit(seq uint64) (root thor.Bytes32, err error)
- func (e *ExtendedTrie) CommitTo(db DatabaseWriter, seq uint64) (root thor.Bytes32, err error)
- func (e *ExtendedTrie) Get(key []byte) (val, meta []byte, err error)
- func (e *ExtendedTrie) Hash() thor.Bytes32
- func (e *ExtendedTrie) IsNonCrypto() bool
- func (e *ExtendedTrie) NodeIterator(start []byte, filter func(seq uint64) bool) NodeIterator
- func (e *ExtendedTrie) RootNode() Node
- func (e *ExtendedTrie) SetCacheTTL(ttl uint16)
- func (e *ExtendedTrie) SetRootNode(root Node)
- func (e *ExtendedTrie) Update(key, value, meta []byte) error
- type Iterator
- type Leaf
- type MissingNodeError
- type Node
- type NodeIterator
- type Trie
- func (t *Trie) Commit() (root thor.Bytes32, err error)
- func (t *Trie) CommitTo(db DatabaseWriter) (root thor.Bytes32, err error)
- func (t *Trie) Delete(key []byte)
- func (t *Trie) Get(key []byte) []byte
- func (t *Trie) Hash() thor.Bytes32
- func (t *Trie) NodeIterator(start []byte) NodeIterator
- func (t *Trie) Prove(key []byte, fromLevel uint, proofDb DatabaseWriter) error
- func (t *Trie) Root() []byte
- func (t *Trie) TryDelete(key []byte) error
- func (t *Trie) TryGet(key []byte) ([]byte, error)
- func (t *Trie) TryUpdate(key, value []byte) error
- func (t *Trie) Update(key, value []byte)
Constants ¶
This section is empty.
Variables ¶
var NonCryptoNodeHash = thor.BytesToBytes32(bytes.Repeat([]byte{0xff}, 32))
Functions ¶
func DeriveRoot ¶
func DeriveRoot(list DerivableList) thor.Bytes32
func VerifyNodeHash ¶
VerifyNodeHash verifies the hash of the node blob (trailing excluded).
func VerifyProof ¶
func VerifyProof(rootHash thor.Bytes32, key []byte, proofDb DatabaseReader) (value []byte, err error, nodes int)
VerifyProof checks merkle proofs. The given proof must contain the value for key in a trie with the given root hash. VerifyProof returns an error if the proof contains invalid trie nodes or the wrong value.
Types ¶
type Database ¶
type Database interface { DatabaseReader DatabaseWriter }
Database must be implemented by backing stores for the trie.
type DatabaseKeyEncoder ¶
DatabaseKeyEncoder defines the method how to produce database key. If the database implements this interface, everytime before save the node, Encode is called and its return-value will be the saving key instead of node hash.
type DatabaseReader ¶
DatabaseReader wraps the Get method of a backing store for the trie.
type DatabaseReaderTo ¶
type DatabaseReaderTo interface { // GetTo gets value for the given key and append to dst. GetTo(key, dst []byte) (value []byte, err error) }
DatabaseReaderTo wraps the GetTo method of backing store for the trie. The purpose of this interface is to reuse read buffer and avoid allocs. If the database implements this interface, DatabaseReader.Get will not be called when resolving nodes.
type DatabaseWriter ¶
type DatabaseWriter interface { // Put stores the mapping key->value in the database. // Implementations must not hold onto the value bytes, the trie // will reuse the slice across calls to Put. Put(key, value []byte) error }
DatabaseWriter wraps the Put method of a backing store for the trie.
type DerivableList ¶
type ExtendedTrie ¶
type ExtendedTrie struct {
// contains filtered or unexported fields
}
ExtendedTrie is an extended Merkle Patricia Trie which supports nodes sequence number and leaf metadata.
func NewExtended ¶
NewExtended creates an extended trie.
func NewExtendedCached ¶
func NewExtendedCached(rootNode Node, db Database, nonCrypto bool) *ExtendedTrie
NewExtendedCached creates an extended trie with the given root node.
func (*ExtendedTrie) CacheTTL ¶
func (e *ExtendedTrie) CacheTTL() uint16
CacheTTL returns the life time of a cached node.
func (*ExtendedTrie) Commit ¶
func (e *ExtendedTrie) Commit(seq uint64) (root thor.Bytes32, err error)
Commit writes all nodes with the given sequence number to the trie's database.
Committing flushes nodes from memory. Subsequent Get calls will load nodes from the database.
func (*ExtendedTrie) CommitTo ¶
func (e *ExtendedTrie) CommitTo(db DatabaseWriter, seq uint64) (root thor.Bytes32, err error)
CommitTo writes all nodes with the given sequence number to the given database.
Committing flushes nodes from memory. Subsequent Get calls will load nodes from the trie's database. Calling code must ensure that the changes made to db are written back to the trie's attached database before using the trie.
func (*ExtendedTrie) Get ¶
func (e *ExtendedTrie) Get(key []byte) (val, meta []byte, err error)
Get returns the value and metadata for key stored in the trie. The value and meta bytes must not be modified by the caller. If a node was not found in the database, a MissingNodeError is returned.
func (*ExtendedTrie) Hash ¶
func (e *ExtendedTrie) Hash() thor.Bytes32
Hash returns the root hash of the trie. It does not write to the database and can be used even if the trie doesn't have one.
func (*ExtendedTrie) IsNonCrypto ¶
func (e *ExtendedTrie) IsNonCrypto() bool
IsNonCrypto returns whether the trie is a non-crypto trie.
func (*ExtendedTrie) NodeIterator ¶
func (e *ExtendedTrie) NodeIterator(start []byte, filter func(seq uint64) bool) NodeIterator
NodeIterator returns an iterator that returns nodes of the trie. Iteration starts at the key after the given start key. It filters out nodes satisfy the filter.
func (*ExtendedTrie) RootNode ¶
func (e *ExtendedTrie) RootNode() Node
RootNode returns the current root node.
func (*ExtendedTrie) SetCacheTTL ¶
func (e *ExtendedTrie) SetCacheTTL(ttl uint16)
SetCacheTTL sets life time of a cached node.
func (*ExtendedTrie) SetRootNode ¶
func (e *ExtendedTrie) SetRootNode(root Node)
SetRootNode replace the root node with the given one.
func (*ExtendedTrie) Update ¶
func (e *ExtendedTrie) Update(key, value, meta []byte) error
Update associates key with value and metadata in the trie. Subsequent calls to Get will return value. If value has length zero, any existing value is deleted from the trie and calls to Get will return nil.
The value and meta bytes must not be modified by the caller while they are stored in the trie.
If a node was not found in the database, a MissingNodeError is returned.
type Iterator ¶
type Iterator struct { Key []byte // Current data key on which the iterator is positioned on Value []byte // Current data value on which the iterator is positioned on Meta []byte // Current metadata on which the iterator is positioned on Err error // contains filtered or unexported fields }
Iterator is a key-value trie iterator that traverses a Trie.
func NewIterator ¶
func NewIterator(it NodeIterator) *Iterator
NewIterator creates a new key-value iterator from a node iterator. Note that the value returned by the iterator is raw. If the content is encoded (e.g. storage value is RLP-encoded), it's caller's duty to decode it.
type MissingNodeError ¶
type MissingNodeError struct { NodeHash *hashNode // hash of the missing node Path []byte // hex-encoded path to the missing node Err error // the actual error }
MissingNodeError is returned by the trie functions (TryGet, TryUpdate, TryDelete) in the case where a trie node is not present in the local database. It contains information necessary for retrieving the missing node.
func (*MissingNodeError) Error ¶
func (err *MissingNodeError) Error() string
type Node ¶
type Node struct {
// contains filtered or unexported fields
}
Node contains the internal node object.
type NodeIterator ¶
type NodeIterator interface { // Next moves the iterator to the next node. If the parameter is false, any child // nodes will be skipped. Next(bool) bool // Error returns the error status of the iterator. Error() error // Hash returns the hash of the current node. Hash() thor.Bytes32 // Node calls the handler with the blob of the current node if any. Node(handler func(blob []byte) error) error // SeqNum returns the sequence number of the current node. SeqNum() uint64 // Parent returns the hash of the parent of the current node. The hash may be the one // grandparent if the immediate parent is an internal node with no hash. Parent() thor.Bytes32 // Path returns the hex-encoded path to the current node. // Callers must not retain references to the return value after calling Next. // For leaf nodes, the last element of the path is the 'terminator symbol' 0x10. Path() []byte // Leaf returns the leaf node if the current node is a leaf node, or nil returned. Leaf() *Leaf // LeafKey returns the key of the leaf. The method panics if the iterator is not // positioned at a leaf. Callers must not retain references to the value after // calling Next. LeafKey() []byte // LeafProof returns the Merkle proof of the leaf. The method panics if the // iterator is not positioned at a leaf. Callers must not retain references // to the value after calling Next. LeafProof() [][]byte }
NodeIterator is an iterator to traverse the trie pre-order.
func NewDifferenceIterator ¶
func NewDifferenceIterator(a, b NodeIterator) (NodeIterator, *int)
NewDifferenceIterator constructs a NodeIterator that iterates over elements in b that are not in a. Returns the iterator, and a pointer to an integer recording the number of nodes seen.
func NewUnionIterator ¶
func NewUnionIterator(iters []NodeIterator) (NodeIterator, *int)
NewUnionIterator constructs a NodeIterator that iterates over elements in the union of the provided NodeIterators. Returns the iterator, and a pointer to an integer recording the number of nodes visited.
type Trie ¶
type Trie struct {
// contains filtered or unexported fields
}
Trie is a Merkle Patricia Trie. The zero value is an empty trie with no database. Use New to create a trie that sits on top of a database.
Trie is not safe for concurrent use.
func New ¶
New creates a trie with an existing root node from db.
If root is the zero hash or the blake2b hash of an empty string, the trie is initially empty and does not require a database. Otherwise, New will panic if db is nil and returns a MissingNodeError if root does not exist in the database. Accessing the trie loads nodes from db on demand.
func (*Trie) Commit ¶
Commit writes all nodes to the trie's database. Nodes are stored with their blake2b hash as the key.
Committing flushes nodes from memory. Subsequent Get calls will load nodes from the database.
func (*Trie) CommitTo ¶
func (t *Trie) CommitTo(db DatabaseWriter) (root thor.Bytes32, err error)
CommitTo writes all nodes to the given database. Nodes are stored with their blake2b hash as the key.
Committing flushes nodes from memory. Subsequent Get calls will load nodes from the trie's database. Calling code must ensure that the changes made to db are written back to the trie's attached database before using the trie.
func (*Trie) Get ¶
Get returns the value for key stored in the trie. The value bytes must not be modified by the caller.
func (*Trie) Hash ¶
Hash returns the root hash of the trie. It does not write to the database and can be used even if the trie doesn't have one.
func (*Trie) NodeIterator ¶
func (t *Trie) NodeIterator(start []byte) NodeIterator
NodeIterator returns an iterator that returns nodes of the trie. Iteration starts at the key after the given start key.
func (*Trie) Prove ¶
func (t *Trie) Prove(key []byte, fromLevel uint, proofDb DatabaseWriter) error
Prove constructs a merkle proof for key. The result contains all encoded nodes on the path to the value at key. The value itself is also included in the last node and can be retrieved by verifying the proof.
If the trie does not contain a value for key, the returned proof contains all nodes of the longest existing prefix of the key (at least the root node), ending with the node that proves the absence of the key.
func (*Trie) TryDelete ¶
TryDelete removes any existing value for key from the trie. If a node was not found in the database, a MissingNodeError is returned.
func (*Trie) TryGet ¶
TryGet returns the value for key stored in the trie. The value bytes must not be modified by the caller. If a node was not found in the database, a MissingNodeError is returned.
func (*Trie) TryUpdate ¶
TryUpdate associates key with value in the trie. Subsequent calls to Get will return value. If value has length zero, any existing value is deleted from the trie and calls to Get will return nil.
The value bytes must not be modified by the caller while they are stored in the trie.
If a node was not found in the database, a MissingNodeError is returned.
func (*Trie) Update ¶
Update associates key with value in the trie. Subsequent calls to Get will return value. If value has length zero, any existing value is deleted from the trie and calls to Get will return nil.
The value bytes must not be modified by the caller while they are stored in the trie.