Struct penumbra_tct::Tree

source ·
pub struct Tree { /* private fields */ }
Expand description

A sparse merkle tree witnessing up to 65,536 epochs of up to 65,536 blocks of up to 65,536 [Commitment]s.

Implementations§

source§

impl Tree

source

pub fn new() -> Self

Create a new empty Tree for storing all commitments to the end of time.

source

pub fn root(&self) -> Root

Get the root hash of this Tree.

Internal hashing is performed lazily to prevent unnecessary intermediary hashes from being computed, so the first hash returned after a long sequence of insertions may take more time than subsequent calls.

Computed hashes are cached so that subsequent calls without further modification are very fast.

source

pub fn insert( &mut self, witness: Witness, commitment: StateCommitment ) -> Result<Position, InsertError>

Add a new [Commitment] to the most recent block of the most recent epoch of this Tree.

If successful, returns the Position at which the commitment was inserted.

§Errors

Returns InsertError if any of:

  • the Tree is full,
  • the current epoch is full, or
  • the current block is full.
source

pub fn witness(&self, commitment: StateCommitment) -> Option<Proof>

Get a Proof of inclusion for the commitment at this index in the tree.

If the index is not witnessed in this tree, return None.

source

pub fn forget(&mut self, commitment: StateCommitment) -> bool

Forget about the witness for the given [Commitment].

Returns true if the commitment was previously witnessed (and now is forgotten), and false if it was not witnessed.

source

pub fn position_of(&self, commitment: StateCommitment) -> Option<Position>

Get the position in this Tree of the given [Commitment], if it is currently witnessed.

source

pub fn insert_block( &mut self, block: impl Into<Finalized> ) -> Result<Root, InsertBlockError>

Add a new block all at once to the most recently inserted epoch of this Tree, returning the block root of the finalized block.

This can be used for two purposes:

  1. to insert a block::Root into the tree as a stand-in for an entire un-witnessed block, or
  2. to insert a block::Builder into the tree that was constructed separately.

The latter block::Builder API only accelerates tree construction when used in parallel, but the former block::Root insertion can be used to accelerate the construction of a tree even in a single thread, because if the root is already known, only one set of hashes need be performed, rather than performing hashing for each commitment in the block.

This function can be called on anything that implements Into<block::Finalized>, in particular:

§Errors

Returns InsertBlockError containing the inserted block without adding it to the Tree if the Tree is full or the current epoch is full.

source

pub fn end_block(&mut self) -> Result<Root, InsertBlockError>

Explicitly mark the end of the current block in this tree, advancing the position to the next block, and returning the root of the block which was just finalized.

source

pub fn current_block_root(&self) -> Root

Get the root hash of the most recent block in the most recent epoch of this Tree.

source

pub fn insert_epoch( &mut self, epoch: impl Into<Finalized> ) -> Result<Root, InsertEpochError>

Add a new epoch all at once to this Tree, returning the root of the finalized epoch which was inserted.

This can be used for two purposes:

  1. to insert an epoch::Root into the tree as a stand-in for an entire un-witnessed block, or
  2. to insert an epoch::Builder into the tree that was constructed separately.

The latter epoch::Builder API only accelerates tree construction when used in parallel, but the former epoch::Root insertion can be used to accelerate the construction of a tree even in a single thread, because if the root is already known, only one set of hashes need be performed, rather than performing hashing for each commitment in the epoch.

This function can be called on anything that implements Into<epoch::Finalized>, in particular:

§Errors

Returns InsertEpochError containing the epoch without adding it to the Tree if the Tree is full.

source

pub fn end_epoch(&mut self) -> Result<Root, InsertEpochError>

Explicitly mark the end of the current epoch in this tree, advancing the position to the next epoch, and returning the root of the epoch which was just finalized.

source

pub fn current_epoch_root(&self) -> Root

Get the root hash of the most recent epoch in this Tree.

source

pub fn position(&self) -> Option<Position>

The position in this Tree at which the next [Commitment] would be inserted.

If the Tree is full, returns None.

The maximum capacity of a Tree is 281,474,976,710,656 = 65,536 epochs of 65,536 blocks of 65,536 [Commitment]s.

Note that forgetting a commitment does not decrease this; it only decreases the witnessed_count.

source

pub fn forgotten(&self) -> Forgotten

The count of how many commitments have been forgotten explicitly using forget, or implicitly by being overwritten by a subsequent insertion of the same commitment (this case is rare in practice).

This does not include commitments that were inserted using Witness::Forget, only those forgotten subsequent to their insertion.

source

pub fn witnessed_count(&self) -> usize

The number of [Commitment]s currently witnessed in this Tree.

Note that forgetting a commitment decreases this count, but does not decrease the position of the next inserted [Commitment].

source

pub fn is_empty(&self) -> bool

Check whether this Tree is empty.

source

pub fn commitments( &self ) -> impl Iterator<Item = (Position, StateCommitment)> + Send + Sync + '_

Get an iterator over all commitments currently witnessed in the tree, ordered by position.

Unlike commitments_unordered, this guarantees that commitments will be returned in order, but it may be slower by a constant factor.

source

pub fn commitments_unordered( &self ) -> impl Iterator<Item = (StateCommitment, Position)> + Send + Sync + '_

Get an iterator over all commitments currently witnessed in the tree.

Unlike commitments, this does not guarantee that commitments will be returned in order, but it may be faster by a constant factor.

source

pub fn structure(&self) -> Node<'_>

Get a dynamic representation of the internal structure of the tree, which can be traversed and inspected arbitrarily.

source

pub fn from_reader<R: Read>(reader: &mut R) -> Result<Tree, R::Error>

Deserialize a tree from a storage::Read of its contents, without checking for internal consistency.

This can be more convenient than Tree::load, since it is able to internally query the storage for the last position and forgotten count.

⚠️ WARNING: Do not deserialize trees you did not serialize yourself, or risk violating internal invariants.

source

pub fn to_writer<W: Write>(&self, writer: &mut W) -> Result<(), W::Error>

Serialize the tree incrementally from the last stored Position and Forgotten specified, into a storage::Write, performing only the operations necessary to serialize the changes to the tree.

This can be more convenient than using Tree::updates, because it is able to internally query the storage for the last position and forgotten count, and drive the storage operations itself.

source

pub async fn from_async_reader<R: AsyncRead>( reader: &mut R ) -> Result<Tree, R::Error>

Deserialize a tree from a storage::AsyncRead of its contents, without checking for internal consistency.

This can be more convenient than Tree::load, since it is able to internally query the storage for the last position and forgotten count.

⚠️ WARNING: Do not deserialize trees you did not serialize yourself, or risk violating internal invariants.

source

pub async fn to_async_writer<W: AsyncWrite>( &self, writer: &mut W ) -> Result<(), W::Error>

Serialize the tree incrementally from the last stored Position and Forgotten specified, into a storage::AsyncWrite, performing only the operations necessary to serialize the changes to the tree.

This can be more convenient than using Tree::updates, because it is able to internally query the storage for the last position and forgotten count, and drive the storage operations itself.

source

pub fn load( last_position: impl Into<StoredPosition>, last_forgotten: Forgotten ) -> LoadCommitments

Deserialize a tree using externally driven iteration, without checking for internal consistency.

Reconstructing a Tree using this method requires stepping through a series of states, as follows:

  1. Tree::load returns an object LoadCommitments which can be used to insert positioned commitments.
  2. When all commitments have been inserted, call .load_hashes() to get an object LoadHashes.
  3. LoadHashes can be used to insert positioned, heighted hashes.
  4. Finally, call .finish() on the LoadHashes to get the Tree.

⚠️ WARNING: Do not deserialize trees you did not serialize yourself, or risk violating internal invariants. You must insert all the commitments and hashes corresponding to the stored tree, or the reconstructed tree will not match what was serialized, and further, it may have internal inconsistencies that will mean that the proofs it produces will not verify.

ℹ️ NOTE: You may prefer to use from_reader or from_async_reader, which drive the iteration over the underlying storage internally rather than requiring the caller to drive the iteration. Tree::load is predominanly useful in circumstances when this inversion of control does not make sense.

source

pub fn updates( &self, last_position: impl Into<StoredPosition>, last_forgotten: Forgotten ) -> impl Iterator<Item = Update> + Send + Sync + '_

Serialize the tree incrementally from the last stored Position and Forgotten specified, into an iterator of storage::Updates.

This returns only the operations necessary to serialize the changes to the tree, synchronizing the in-memory representation with what is stored.

The iterator of updates may be .collect()ed into a storage::Updates, which is more compact in-memory than .collect()ing into a Vec<Update>.

ℹ️ NOTE: You may prefer to use to_writer or to_async_writer, which drive the operations on the underlying storage internally rather than requiring the caller to drive iteration. Tree::updates is predominantly useful in circumstances when this inversion of control does not make sense.

Trait Implementations§

source§

impl Clone for Tree

source§

fn clone(&self) -> Tree

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Tree

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Tree

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Tree

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<Top<Tier<Tier<Item>>>> for Tree

source§

fn from(inner: Top<Tier<Tier<Item>>>) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Tree

source§

fn eq(&self, other: &Tree) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Tree

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for Tree

Auto Trait Implementations§

§

impl Freeze for Tree

§

impl !RefUnwindSafe for Tree

§

impl Send for Tree

§

impl Sync for Tree

§

impl Unpin for Tree

§

impl !UnwindSafe for Tree

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Conv for T

§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
§

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
§

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
§

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T> Pipe for T
where T: ?Sized,

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,