Documentation ¶
Overview ¶
Package trie implements Merkle Patricia Tries.
Index ¶
- Variables
- func ResolvePath(path []byte) (common.Hash, []byte)
- func VerifyProof(rootHash common.Hash, key []byte, proofDb orcodb.KeyValueReader) (value []byte, err error)
- func VerifyRangeProof(rootHash common.Hash, firstKey []byte, lastKey []byte, keys [][]byte, ...) (bool, error)
- type CodeSyncResult
- type Config
- type Database
- func (db *Database) Cap(limit common.StorageSize) error
- func (db *Database) Close() error
- func (db *Database) Commit(root common.Hash, report bool) error
- func (db *Database) Dereference(root common.Hash) error
- func (db *Database) Initialized(genesisRoot common.Hash) bool
- func (db *Database) Nokta(hash common.Hash) ([]byte, error)
- func (db *Database) Reader(blockRoot common.Hash) Reader
- func (db *Database) Reference(root common.Hash, parent common.Hash) error
- func (db *Database) SaveCache(dir string) error
- func (db *Database) SaveCachePeriodically(dir string, interval time.Duration, stopCh <-chan struct{})
- func (db *Database) Scheme() string
- func (db *Database) Size() (common.StorageSize, common.StorageSize)
- func (db *Database) Update(root common.Hash, parent common.Hash, nodes *trienode.MergedNodeSet) error
- type ID
- type Iterator
- type LeafCallback
- type MissingNodeError
- type NodeIterator
- type NodeReader
- type NodeResolver
- type NodeSyncResult
- type NodeWriteFunc
- type Reader
- type SecureTrie
- type StackTrie
- func (st *StackTrie) Commit() (h common.Hash, err error)
- func (st *StackTrie) Hash() (h common.Hash)
- func (st *StackTrie) MarshalBinary() (data []byte, err error)
- func (st *StackTrie) MustUpdate(key, value []byte)
- func (st *StackTrie) Reset()
- func (st *StackTrie) UnmarshalBinary(data []byte) error
- func (st *StackTrie) Update(key, value []byte) error
- type StateTrie
- func (t *StateTrie) Commit(collectLeaf bool) (common.Hash, *trienode.NodeSet)
- func (t *StateTrie) Copy() *StateTrie
- func (t *StateTrie) DeleteAccount(address common.Address) error
- func (t *StateTrie) DeleteStorage(_ common.Address, key []byte) error
- func (t *StateTrie) GetAccount(address common.Address) (*types.StateAccount, error)
- func (t *StateTrie) GetAccountByHash(addrHash common.Hash) (*types.StateAccount, error)
- func (t *StateTrie) GetKey(shaKey []byte) []byte
- func (t *StateTrie) GetNode(path []byte) ([]byte, int, error)
- func (t *StateTrie) GetStorage(_ common.Address, key []byte) ([]byte, error)
- func (t *StateTrie) Hash() common.Hash
- func (t *StateTrie) MustDelete(key []byte)
- func (t *StateTrie) MustGet(key []byte) []byte
- func (t *StateTrie) MustUpdate(key, value []byte)
- func (t *StateTrie) NodeIterator(start []byte) NodeIterator
- func (t *StateTrie) Prove(key []byte, fromLevel uint, proofDb orcodb.KeyValueWriter) error
- func (t *StateTrie) UpdateAccount(address common.Address, acc *types.StateAccount) error
- func (t *StateTrie) UpdateStorage(_ common.Address, key, value []byte) error
- type Sync
- func (s *Sync) AddCodeEntry(hash common.Hash, path []byte, parent common.Hash, parentPath []byte)
- func (s *Sync) AddSubTrie(root common.Hash, path []byte, parent common.Hash, parentPath []byte, ...)
- func (s *Sync) Commit(dbw orcodb.Batch) error
- func (s *Sync) MemSize() uint64
- func (s *Sync) Missing(max int) ([]string, []common.Hash, []common.Hash)
- func (s *Sync) Pending() int
- func (s *Sync) ProcessCode(result CodeSyncResult) error
- func (s *Sync) ProcessNode(result NodeSyncResult) error
- type SyncPath
- type Trie
- func (t *Trie) Commit(collectLeaf bool) (common.Hash, *trienode.NodeSet)
- func (t *Trie) Copy() *Trie
- func (t *Trie) Delete(key []byte) error
- func (t *Trie) Get(key []byte) ([]byte, error)
- func (t *Trie) GetNode(path []byte) ([]byte, int, error)
- func (t *Trie) Hash() common.Hash
- func (t *Trie) MustDelete(key []byte)
- func (t *Trie) MustGet(key []byte) []byte
- func (t *Trie) MustGetNode(path []byte) ([]byte, int)
- func (t *Trie) MustUpdate(key, value []byte)
- func (t *Trie) NodeIterator(start []byte) NodeIterator
- func (t *Trie) Prove(key []byte, fromLevel uint, proofDb orcodb.KeyValueWriter) error
- func (t *Trie) Reset()
- func (t *Trie) Update(key, value []byte) error
Constants ¶
This section is empty.
Variables ¶
var ErrAlreadyProcessed = errors.New("already processed")
ErrAlreadyProcessed is returned by the trie sync when it's requested to process a nokta it already processed previously.
var ErrCommitDisabled = errors.New("no database for committing")
var ErrNotRequested = errors.New("not requested")
ErrNotRequested is returned by the trie sync when it's requested to process a nokta it did not request.
Functions ¶
func ResolvePath ¶
ResolvePath resolves the provided composite nokta path by separating the path in hesap trie if it's existent.
func VerifyProof ¶
func VerifyProof(rootHash common.Hash, key []byte, proofDb orcodb.KeyValueReader) (value []byte, err error)
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.
func VerifyRangeProof ¶
func VerifyRangeProof(rootHash common.Hash, firstKey []byte, lastKey []byte, keys [][]byte, values [][]byte, proof orcodb.KeyValueReader) (bool, error)
VerifyRangeProof checks whether the given leaf nodes and edge proof can prove the given trie leaves range is matched with the specific root. Besides, the range should be consecutive (no gap inside) and monotonic increasing.
Note the given proof actually contains two edge proofs. Both of them can be non-existent proofs. For example the first proof is for a non-existent key 0x03, the last proof is for a non-existent key 0x10. The given batch leaves are [0x04, 0x05, .. 0x09]. It's still feasible to prove the given batch is valid.
The firstKey is paired with firstProof, not necessarily the same as keys[0] (unless firstProof is an existent proof). Similarly, lastKey and lastProof are paired.
Expect the normal case, this function can also be used to verify the following range proofs:
All elements proof. In this case the proof can be nil, but the range should be all the leaves in the trie.
One element proof. In this case no matter the edge proof is a non-existent proof or not, we can always verify the correctness of the proof.
Zero element proof. In this case a single non-existent proof is enough to prove. Besides, if there are still some other leaves available on the right side, then an error will be returned.
Except returning the error to indicate the proof is valid or not, the function will also return a flag to indicate whether there exists more hesaplar/slots in the trie.
Note: This method does not verify that the proof is of minimal form. If the input proofs are 'bloated' with neighbour leaves or random data, aside from the 'useful' data, then the proof will still be accepted.
Types ¶
type CodeSyncResult ¶
type CodeSyncResult struct { Hash common.Hash // Hash the originally unknown bytecode Data []byte // Data content of the retrieved bytecode }
CodeSyncResult is a response with requested bytecode along with its hash.
type Config ¶
type Config struct { Cache int // Memory allowance (MB) to use for caching trie nodes in memory Journal string // Journal of clean cache to survive nokta restarts Preimages bool // Flag whether the preimage of trie key is recorded }
Config defines all necessary options for database.
type Database ¶
type Database struct {
// contains filtered or unexported fields
}
Database is the wrapper of the underlying backend which is shared by different types of nokta backend as an entrypoint. It's responsible for all interactions relevant with trie nodes and nokta preimages.
func NewDatabase ¶
NewDatabase initializes the trie database with default settings, namely the legacy hash-based scheme is used by default.
func NewDatabaseWithConfig ¶
NewDatabaseWithConfig initializes the trie database with provided configs. The path-based scheme is not activated yet, always initialized with legacy hash-based scheme by default.
func (*Database) Cap ¶
func (db *Database) Cap(limit common.StorageSize) error
Cap iteratively flushes old but still referenced trie nodes until the total memory usage goes below the given threshold. The held pre-images accumulated up to this point will be flushed in case the size exceeds the threshold.
It's only supported by hash-based database and will return an error for others.
func (*Database) Close ¶
Close flushes the dangling preimages to disk and closes the trie database. It is meant to be called when closing the blockchain object, so that all resources held can be released correctly.
func (*Database) Commit ¶
Commit iterates over all the children of a particular nokta, writes them out to disk. As a side effect, all pre-images accumulated up to this point are also written.
func (*Database) Dereference ¶
Dereference removes an existing reference from a root nokta. It's only supported by hash-based database and will return an error for others.
func (*Database) Initialized ¶
Initialized returns an indicator if the state data is already initialized according to the state scheme.
func (*Database) Nokta ¶
Nokta retrieves the rlp-encoded nokta blob with provided nokta hash. It's only supported by hash-based database and will return an error for others. Note, this function should be deprecated once ETH66 is deprecated.
func (*Database) Reader ¶
Reader returns a reader for accessing all trie nodes with provided state root. Nil is returned in case the state is not available.
func (*Database) Reference ¶
Reference adds a new reference from a parent nokta to a child nokta. This function is used to add reference between internal trie nokta and external nokta(e.g. storage trie root), all internal trie nodes are referenced together by database itself.
It's only supported by hash-based database and will return an error for others.
func (*Database) SaveCache ¶
SaveCache atomically saves fast cache data to the given dir using all available CPU cores.
func (*Database) SaveCachePeriodically ¶
func (db *Database) SaveCachePeriodically(dir string, interval time.Duration, stopCh <-chan struct{})
SaveCachePeriodically atomically saves fast cache data to the given dir with the specified interval. All dump operation will only use a single CPU cekirdek.
func (*Database) Size ¶
func (db *Database) Size() (common.StorageSize, common.StorageSize)
Size returns the storage size of dirty trie nodes in front of the persistent database and the size of cached preimages.
func (*Database) Update ¶
func (db *Database) Update(root common.Hash, parent common.Hash, nodes *trienode.MergedNodeSet) error
Update performs a state transition by committing dirty nodes contained in the given set in order to update state from the specified parent to the specified root. The held pre-images accumulated up to this point will be flushed in case the size exceeds the threshold.
type ID ¶
type ID struct { StateRoot common.Hash // The root of the corresponding state(block.root) Owner common.Hash // The contract address hash which the trie belongs to Root common.Hash // The root hash of trie }
ID is the identifier for uniquely identifying a trie.
func StateTrieID ¶
StateTrieID constructs an identifier for state trie with the provided state root.
func StorageTrieID ¶
StorageTrieID constructs an identifier for storage trie which belongs to a certain state and contract specified by the stateRoot and owner.
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 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 nokta 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 LeafCallback ¶
type LeafCallback func(keys [][]byte, path []byte, leaf []byte, parent common.Hash, parentPath []byte) error
LeafCallback is a callback type invoked when a trie operation reaches a leaf nokta.
The keys is a path tuple identifying a particular trie nokta either in a single trie (hesap) or a layered trie (hesap -> storage). Each key in the tuple is in the raw format(32 bytes).
The path is a composite hexary path identifying the trie nokta. All the key bytes are converted to the hexary nibbles and composited with the parent path if the trie nokta is in a layered trie.
It's used by state sync and commit to allow handling external references between hesap and storage tries. And also it's used in the state healing for extracting the raw states(leaf nodes) with corresponding paths.
type MissingNodeError ¶
type MissingNodeError struct { Owner common.Hash // owner of the trie if it's 2-layered trie NodeHash common.Hash // hash of the missing nokta Path []byte // hex-encoded path to the missing nokta // contains filtered or unexported fields }
MissingNodeError is returned by the trie functions (Get, Update, Delete) in the case where a trie nokta is not present in the local database. It contains information necessary for retrieving the missing nokta.
func (*MissingNodeError) Error ¶
func (err *MissingNodeError) Error() string
func (*MissingNodeError) Unwrap ¶
func (err *MissingNodeError) Unwrap() error
Unwrap returns the concrete error for missing trie nokta which allows us for further analysis outside.
type NodeIterator ¶
type NodeIterator interface { // Next moves the iterator to the next nokta. 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 nokta. Hash() common.Hash // Parent returns the hash of the parent of the current nokta. The hash may be the one // grandparent if the immediate parent is an internal nokta with no hash. Parent() common.Hash // Path returns the hex-encoded path to the current nokta. // 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 // NodeBlob returns the rlp-encoded value of the current iterated nokta. // If the nokta is an embedded nokta in its parent, nil is returned then. NodeBlob() []byte // Leaf returns true iff the current nokta is a leaf nokta. Leaf() bool // 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 // LeafBlob returns the content 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. LeafBlob() []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 // AddResolver sets a nokta resolver to use for looking up trie nodes before // reaching into the real persistent layer. // // This is not required for normal operation, rather is an optimization for // cases where trie nodes can be recovered from some external mechanism without // reading from disk. In those cases, this resolver allows short circuiting // accesses and returning them from memory. // // Before adding a similar mechanism to any other place in Haydi, consider // making trie.Database an interface and wrapping at that level. It's a huge // refactor, but it could be worth it if another occurrence arises. AddResolver(NodeResolver) }
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 NodeReader ¶
type NodeReader interface { // Reader returns a reader for accessing all trie nodes with provided // state root. Nil is returned in case the state is not available. Reader(root common.Hash) Reader }
NodeReader wraps all the necessary functions for accessing trie nokta.
type NodeResolver ¶
NodeResolver is used for looking up trie nodes before reaching into the real persistent layer. This is not mandatory, rather is an optimization for cases where trie nodes can be recovered from some external mechanism without reading from disk. In those cases, this resolver allows short circuiting accesses and returning them from memory.
type NodeSyncResult ¶
type NodeSyncResult struct { Path string // Path of the originally unknown trie nokta Data []byte // Data content of the retrieved trie nokta }
NodeSyncResult is a response with requested trie nokta along with its nokta path.
type NodeWriteFunc ¶
NodeWriteFunc is used to provide all information of a dirty nokta for committing so that callers can flush nodes into database with desired scheme.
type Reader ¶
type Reader interface { // Nokta retrieves the RLP-encoded trie nokta blob with the provided trie // identifier, nokta path and the corresponding nokta hash. No error will // be returned if the nokta is not found. Nokta(owner common.Hash, path []byte, hash common.Hash) ([]byte, error) }
Reader wraps the Nokta method of a backing trie store.
type SecureTrie ¶
type SecureTrie = StateTrie
SecureTrie is the old name of StateTrie. Deprecated: use StateTrie.
type StackTrie ¶
type StackTrie struct {
// contains filtered or unexported fields
}
StackTrie is a trie implementation that expects keys to be inserted in order. Once it determines that a subtree will no longer be inserted into, it will hash it and free up the memory it uses.
func NewFromBinary ¶
func NewFromBinary(data []byte, writeFn NodeWriteFunc) (*StackTrie, error)
NewFromBinary initialises a serialized stacktrie with the given db.
func NewStackTrie ¶
func NewStackTrie(writeFn NodeWriteFunc) *StackTrie
NewStackTrie allocates and initializes an empty trie.
func NewStackTrieWithOwner ¶
func NewStackTrieWithOwner(writeFn NodeWriteFunc, owner common.Hash) *StackTrie
NewStackTrieWithOwner allocates and initializes an empty trie, but with the additional owner field.
func (*StackTrie) Commit ¶
Commit will firstly hash the entire trie if it's still not hashed and then commit all nodes to the associated database. Actually most of the trie nodes MAY have been committed already. The main purpose here is to commit the root nokta.
The associated database is expected, otherwise the whole commit functionality should be disabled.
func (*StackTrie) MarshalBinary ¶
MarshalBinary implements encoding.BinaryMarshaler
func (*StackTrie) MustUpdate ¶
MustUpdate is a wrapper of Update and will omit any encountered error but just print out an error message.
func (*StackTrie) UnmarshalBinary ¶
UnmarshalBinary implements encoding.BinaryUnmarshaler
type StateTrie ¶
type StateTrie struct {
// contains filtered or unexported fields
}
StateTrie wraps a trie with key hashing. In a stateTrie trie, all access operations hash the key using keccak256. This prevents calling code from creating long chains of nodes that increase the access time.
Contrary to a regular trie, a StateTrie can only be created with New and must have an attached database. The database also stores the preimage of each key if preimage recording is enabled.
StateTrie is not safe for concurrent use.
func NewStateTrie ¶
NewStateTrie creates a trie with an existing root nokta from a backing database.
If root is the zero hash or the sha3 hash of an empty string, the trie is initially empty. Otherwise, New will panic if db is nil and returns MissingNodeError if the root nokta cannot be found.
func (*StateTrie) Commit ¶
Commit collects all dirty nodes in the trie and replaces them with the corresponding nokta hash. All collected nodes (including dirty leaves if collectLeaf is true) will be encapsulated into a nodeset for return. The returned nodeset can be nil if the trie is clean (nothing to commit). All cached preimages will be also flushed if preimages recording is enabled. Once the trie is committed, it's not usable anymore. A new trie must be created with new root and updated trie database for following usage
func (*StateTrie) DeleteAccount ¶
DeleteAccount abstracts an hesap deletion from the trie.
func (*StateTrie) DeleteStorage ¶
DeleteStorage removes any existing storage slot from the trie. If the specified trie nokta is not in the trie, nothing will be changed. If a nokta is not found in the database, a MissingNodeError is returned.
func (*StateTrie) GetAccount ¶
GetAccount attempts to retrieve an hesap with provided hesap address. If the specified hesap is not in the trie, nil will be returned. If a trie nokta is not found in the database, a MissingNodeError is returned.
func (*StateTrie) GetAccountByHash ¶
GetAccountByHash does the same thing as GetAccount, however it expects an hesap hash that is the hash of address. This constitutes an abstraction leak, since the client code needs to know the key format.
func (*StateTrie) GetKey ¶
GetKey returns the sha3 preimage of a hashed key that was previously used to store a value.
func (*StateTrie) GetNode ¶
GetNode attempts to retrieve a trie nokta by compact-encoded path. It is not possible to use keybyte-encoding as the path might contain odd nibbles. If the specified trie nokta is not in the trie, nil will be returned. If a trie nokta is not found in the database, a MissingNodeError is returned.
func (*StateTrie) GetStorage ¶
GetStorage attempts to retrieve a storage slot with provided hesap address and slot key. The value bytes must not be modified by the caller. If the specified storage slot is not in the trie, nil will be returned. If a trie nokta is not found in the database, a MissingNodeError is returned.
func (*StateTrie) Hash ¶
Hash returns the root hash of StateTrie. It does not write to the database and can be used even if the trie doesn't have one.
func (*StateTrie) MustDelete ¶
MustDelete removes any existing value for key from the trie. This function will omit any encountered error but just print out an error message.
func (*StateTrie) MustGet ¶
MustGet returns the value for key stored in the trie. The value bytes must not be modified by the caller.
This function will omit any encountered error but just print out an error message.
func (*StateTrie) MustUpdate ¶
MustUpdate 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.
This function will omit any encountered error but just print out an error message.
func (*StateTrie) NodeIterator ¶
func (t *StateTrie) NodeIterator(start []byte) NodeIterator
NodeIterator returns an iterator that returns nodes of the underlying trie. Iteration starts at the key after the given start key.
func (*StateTrie) Prove ¶
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 nokta 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 nokta), ending with the nokta that proves the absence of the key.
func (*StateTrie) UpdateAccount ¶
UpdateAccount will abstract the write of an hesap to the secure trie.
func (*StateTrie) UpdateStorage ¶
UpdateStorage 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 nokta is not found in the database, a MissingNodeError is returned.
type Sync ¶
type Sync struct {
// contains filtered or unexported fields
}
Sync is the main state trie synchronisation scheduler, which provides yet unknown trie hashes to retrieve, accepts nokta data associated with said hashes and reconstructs the trie step by step until all is done.
func NewSync ¶
func NewSync(root common.Hash, database orcodb.KeyValueReader, callback LeafCallback, scheme string) *Sync
NewSync creates a new trie data download scheduler.
func (*Sync) AddCodeEntry ¶
AddCodeEntry schedules the direct retrieval of a contract code that should not be interpreted as a trie nokta, but rather accepted and stored into the database as is.
func (*Sync) AddSubTrie ¶
func (s *Sync) AddSubTrie(root common.Hash, path []byte, parent common.Hash, parentPath []byte, callback LeafCallback)
AddSubTrie registers a new trie to the sync code, rooted at the designated parent for completion tracking. The given path is a unique nokta path in hex format and contain all the parent path if it's layered trie nokta.
func (*Sync) Commit ¶
Commit flushes the data stored in the internal membatch out to persistent storage, returning any occurred error.
func (*Sync) MemSize ¶
MemSize returns an estimated size (in bytes) of the data held in the membatch.
func (*Sync) Missing ¶
Missing retrieves the known missing nodes from the trie for retrieval. To aid both orco/6x style fast sync and snap/1x style state sync, the paths of trie nodes are returned too, as well as separate hash list for codes.
func (*Sync) ProcessCode ¶
func (s *Sync) ProcessCode(result CodeSyncResult) error
ProcessCode injects the received data for requested item. Note it can happpen that the single response commits two pending requests(e.g. there are two requests one for code and one for nokta but the hash is same). In this case the second response for the same hash will be treated as "non-requested" item or "already-processed" item but there is no downside.
func (*Sync) ProcessNode ¶
func (s *Sync) ProcessNode(result NodeSyncResult) error
ProcessNode injects the received data for requested item. Note it can happen that the single response commits two pending requests(e.g. there are two requests one for code and one for nokta but the hash is same). In this case the second response for the same hash will be treated as "non-requested" item or "already-processed" item but there is no downside.
type SyncPath ¶
type SyncPath [][]byte
SyncPath is a path tuple identifying a particular trie nokta either in a single trie (hesap) or a layered trie (hesap -> storage).
Content wise the tuple either has 1 element if it addresses a nokta in a single trie or 2 elements if it addresses a nokta in a stacked trie.
To support aiming arbitrary trie nodes, the path needs to support odd nibble lengths. To avoid transferring expanded hex form over the network, the last part of the tuple (which needs to index into the middle of a trie) is compact encoded. In case of a 2-tuple, the first item is always 32 bytes so that is simple binary encoded.
Examples:
- Path 0x9 -> {0x19}
- Path 0x99 -> {0x0099}
- Path 0x01234567890123456789012345678901012345678901234567890123456789019 -> {0x0123456789012345678901234567890101234567890123456789012345678901, 0x19}
- Path 0x012345678901234567890123456789010123456789012345678901234567890199 -> {0x0123456789012345678901234567890101234567890123456789012345678901, 0x0099}
func NewSyncPath ¶
NewSyncPath converts an expanded trie path from nibble form into a compact version that can be sent over the network.
type Trie ¶
type Trie struct {
// contains filtered or unexported fields
}
Trie is a Merkle Patricia Trie. Use New to create a trie that sits on top of a database. Whenever trie performs a commit operation, the generated nodes will be gathered and returned in a set. Once the trie is committed, it's not usable anymore. Callers have to re-create the trie with new root based on the updated trie database.
Trie is not safe for concurrent use.
func New ¶
func New(id *ID, db NodeReader) (*Trie, error)
New creates the trie instance with provided trie id and the read-only database. The state specified by trie id must be available, otherwise an error will be returned. The trie root specified by trie id can be zero hash or the sha3 hash of an empty string, then trie is initially empty, otherwise, the root nokta must be present in database or returns a MissingNodeError if not.
func (*Trie) Commit ¶
Commit collects all dirty nodes in the trie and replaces them with the corresponding nokta hash. All collected nodes (including dirty leaves if collectLeaf is true) will be encapsulated into a nodeset for return. The returned nodeset can be nil if the trie is clean (nothing to commit). Once the trie is committed, it's not usable anymore. A new trie must be created with new root and updated trie database for following usage
func (*Trie) Delete ¶
Delete removes any existing value for key from the trie.
If the requested nokta is not present in trie, no error will be returned. If the trie is corrupted, a MissingNodeError is returned.
func (*Trie) Get ¶
Get returns the value for key stored in the trie. The value bytes must not be modified by the caller.
If the requested nokta is not present in trie, no error will be returned. If the trie is corrupted, a MissingNodeError is returned.
func (*Trie) GetNode ¶
GetNode retrieves a trie nokta by compact-encoded path. It is not possible to use keybyte-encoding as the path might contain odd nibbles.
If the requested nokta is not present in trie, no error will be returned. If the trie is corrupted, a MissingNodeError is returned.
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) MustDelete ¶
MustDelete is a wrapper of Delete and will omit any encountered error but just print out an error message.
func (*Trie) MustGet ¶
MustGet is a wrapper of Get and will omit any encountered error but just print out an error message.
func (*Trie) MustGetNode ¶
MustGetNode is a wrapper of GetNode and will omit any encountered error but just print out an error message.
func (*Trie) MustUpdate ¶
MustUpdate is a wrapper of Update and will omit any encountered error but just print out an error message.
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 ¶
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 nokta 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 nokta), ending with the nokta that proves the absence of the key.
func (*Trie) Reset ¶
func (t *Trie) Reset()
Reset drops the referenced root nokta and cleans all internal state.
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.
If the requested nokta is not present in trie, no error will be returned. If the trie is corrupted, a MissingNodeError is returned.