Struct fork_tree::ForkTree [−][src]
pub struct ForkTree<H, N, V> { /* fields omitted */ }
Expand description
A tree data structure that stores several nodes across multiple branches. Top-level branches are called roots. The tree has functionality for finalizing nodes, which means that that node is traversed, and all competing branches are pruned. It also guarantees that nodes in the tree are finalized in order. Each node is uniquely identified by its hash but can be ordered by its number. In order to build the tree an external function must be provided when interacting with the tree to establish a node’s ancestry.
Implementations
Prune the tree, removing all non-canonical nodes. We find the node in the
tree that is the deepest ancestor of the given hash and that passes the
given predicate. If such a node exists, we re-root the tree to this
node. Otherwise the tree remains unchanged. The given function
is_descendent_of
should return true
if the second hash (target) is a
descendent of the first hash (base).
Returns all pruned node data.
Rebalance the tree, i.e. sort child nodes by max branch depth (decreasing).
Most operations in the tree are performed with depth-first search starting from the leftmost node at every level, since this tree is meant to be used in a blockchain context, a good heuristic is that the node we’ll be looking for at any point will likely be in one of the deepest chains (i.e. the longest ones).
Import a new node into the tree. The given function is_descendent_of
should return true
if the second hash (target) is a descendent of the
first hash (base). This method assumes that nodes in the same branch are
imported in order.
Returns true
if the imported node is a root.
Iterates over the existing roots in the tree.
Iterates the nodes in the tree in pre-order.
Find a node in the tree that is the deepest ancestor of the given
block hash and which passes the given predicate. The given function
is_descendent_of
should return true
if the second hash (target)
is a descendent of the first hash (base).
Map fork tree into values of new types.
Same as find_node_where
, but returns mutable reference.
Same as find_node_where
, but returns indexes.
Finalize a root in the tree and return it, return None
in case no root
with the given hash exists. All other roots are pruned, and the children
of the finalized node become the new roots.
Finalize a node in the tree. This method will make sure that the node
being finalized is either an existing root (and return its data), or a
node from a competing branch (not in the tree), tree pruning is done
accordingly. The given function is_descendent_of
should return true
if the second hash (target) is a descendent of the first hash (base).
Finalize a node in the tree and all its ancestors. The given function
is_descendent_of
should return true
if the second hash (target) is
Checks if any node in the tree is finalized by either finalizing the
node itself or a child node that’s not in the tree, guaranteeing that
the node being finalized isn’t a descendent of any of the node’s
children. Returns Some(true)
if the node being finalized is a root,
Some(false)
if the node being finalized is not a root, and None
if
no node in the tree is finalized. The given predicate
is checked on
the prospective finalized root and must pass for finalization to occur.
The given function is_descendent_of
should return true
if the second
hash (target) is a descendent of the first hash (base).
Finalize a root in the tree by either finalizing the node itself or a
child node that’s not in the tree, guaranteeing that the node being
finalized isn’t a descendent of any of the root’s children. The given
predicate
is checked on the prospective finalized root and must pass for
finalization to occur. The given function is_descendent_of
should
return true
if the second hash (target) is a descendent of the first
hash (base).
Trait Implementations
Attempt to deserialise the value from input.
Attempt to skip the encoded value from input. Read more
fn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
Returns the fixed encoded size of the type. Read more
Convert self to a slice and append it to the destination.
fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
fn using_encoded<R, F>(&self, f: F) -> R where
F: FnOnce(&[u8]) -> R,
Convert self to a slice and then invoke the given closure with it.
fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
Calculates the encoded size. Read more
Auto Trait Implementations
impl<H, N, V> RefUnwindSafe for ForkTree<H, N, V> where
H: RefUnwindSafe,
N: RefUnwindSafe,
V: RefUnwindSafe,
impl<H, N, V> UnwindSafe for ForkTree<H, N, V> where
H: UnwindSafe,
N: UnwindSafe,
V: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
T: Encode,
impl<'_, T> EncodeLike<&'_ T> for T where
T: Encode,
impl<'_, T> EncodeLike<&'_ mut T> for T where
T: Encode,
impl<T> EncodeLike<Arc<T>> for T where
T: Encode,
impl<T> EncodeLike<Rc<T>> for T where
T: Encode,