referrerpolicy=no-referrer-when-downgrade
sp_state_machine

Type Alias InMemoryBackend

Source
pub type InMemoryBackend<H> = TrieBackend<PrefixedMemoryDB<H>, H>;
Expand description

Trie backend with in-memory storage.

Aliased Type§

struct InMemoryBackend<H> { /* private fields */ }

Implementations

Source§

impl<H: Hasher> TrieBackend<PrefixedMemoryDB<H>, H>
where H::Out: Codec + Ord,

Source

pub fn update<T: IntoIterator<Item = (Option<ChildInfo>, StorageCollection)>>( &self, changes: T, state_version: StateVersion, ) -> Self

Copy the state, with applied updates

Source

pub fn insert<T: IntoIterator<Item = (Option<ChildInfo>, StorageCollection)>>( &mut self, changes: T, state_version: StateVersion, )

Insert values into backend trie.

Source

pub fn update_backend(&self, root: H::Out, changes: PrefixedMemoryDB<H>) -> Self

Merge trie nodes into this backend.

Source

pub fn apply_transaction( &mut self, root: H::Out, transaction: PrefixedMemoryDB<H>, )

Apply the given transaction to this backend and set the root to the given value.

Source

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

Compare with another in-memory backend.

Source§

impl<S: TrieBackendStorage<H>, H: Hasher, C: TrieCacheProvider<H> + Send + Sync, R: TrieRecorderProvider<H> + Send + Sync> TrieBackend<S, H, C, R>
where H::Out: Codec,

Source

pub fn essence(&self) -> &TrieBackendEssence<S, H, C, R>

Get backend essence reference.

Source

pub fn backend_storage_mut(&mut self) -> &mut S

Get backend storage reference.

Source

pub fn backend_storage(&self) -> &S

Get backend storage reference.

Source

pub fn set_root(&mut self, root: H::Out)

Set trie root.

Source

pub fn root(&self) -> &H::Out

Get trie root.

Source

pub fn into_storage(self) -> S

Consumes self and returns underlying storage.

Source

pub fn extract_proof(self) -> Option<StorageProof>

Extract the StorageProof.

This only returns Some when there was a recorder set.

Trait Implementations

Source§

impl<S: TrieBackendStorage<H>, H: Hasher, C> AsTrieBackend<H, C> for TrieBackend<S, H, C>

Source§

type TrieBackendStorage = S

Type of trie backend storage.
Source§

fn as_trie_backend(&self) -> &TrieBackend<S, H, C>

Return the type as TrieBackend.
Source§

impl<S: TrieBackendStorage<H>, H: Hasher, C: TrieCacheProvider<H> + Send + Sync, R: TrieRecorderProvider<H> + Send + Sync> Backend<H> for TrieBackend<S, H, C, R>
where H::Out: Ord + Codec,

Source§

type Error = String

An error type when fetching data is not possible.
Source§

type TrieBackendStorage = S

Type of trie backend storage.
Source§

type RawIter = RawIter<S, H, C, R>

Type of the raw storage iterator.
Source§

fn storage_hash(&self, key: &[u8]) -> Result<Option<H::Out>, Self::Error>

Get keyed storage value hash or None if there is nothing associated.
Source§

fn storage(&self, key: &[u8]) -> Result<Option<StorageValue>, Self::Error>

Get keyed storage or None if there is nothing associated.
Source§

fn child_storage_hash( &self, child_info: &ChildInfo, key: &[u8], ) -> Result<Option<H::Out>, Self::Error>

Get child keyed storage value hash or None if there is nothing associated.
Source§

fn child_storage( &self, child_info: &ChildInfo, key: &[u8], ) -> Result<Option<StorageValue>, Self::Error>

Get child keyed child storage or None if there is nothing associated.
Source§

fn closest_merkle_value( &self, key: &[u8], ) -> Result<Option<MerkleValue<H::Out>>, Self::Error>

Get the merkle value or None if there is nothing associated.
Source§

fn child_closest_merkle_value( &self, child_info: &ChildInfo, key: &[u8], ) -> Result<Option<MerkleValue<H::Out>>, Self::Error>

Get the child merkle value or None if there is nothing associated.
Source§

fn next_storage_key( &self, key: &[u8], ) -> Result<Option<StorageKey>, Self::Error>

Return the next key in storage in lexicographic order or None if there is no value.
Source§

fn next_child_storage_key( &self, child_info: &ChildInfo, key: &[u8], ) -> Result<Option<StorageKey>, Self::Error>

Return the next key in child storage in lexicographic order or None if there is no value.
Source§

fn raw_iter(&self, args: IterArgs<'_>) -> Result<Self::RawIter, Self::Error>

Returns a lifetimeless raw storage iterator.
Source§

fn storage_root<'a>( &self, delta: impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>, state_version: StateVersion, ) -> (H::Out, PrefixedMemoryDB<H>)
where H::Out: Ord,

Calculate the storage root, with given delta over what is already stored in the backend, and produce a “transaction” that can be used to commit. Does not include child storage updates.
Source§

fn child_storage_root<'a>( &self, child_info: &ChildInfo, delta: impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>, state_version: StateVersion, ) -> (H::Out, bool, PrefixedMemoryDB<H>)
where H::Out: Ord,

Calculate the child storage root, with given delta over what is already stored in the backend, and produce a “transaction” that can be used to commit. The second argument is true if child storage root equals default storage root.
Source§

fn register_overlay_stats(&self, _stats: &StateMachineStats)

Register stats from overlay of state machine. Read more
Source§

fn usage_info(&self) -> UsageInfo

Query backend usage statistics (i/o, memory) Read more
Source§

fn wipe(&self) -> Result<(), Self::Error>

Wipe the state database.
Source§

fn exists_storage(&self, key: &[u8]) -> Result<bool, Self::Error>

true if a key exists in storage.
Source§

fn exists_child_storage( &self, child_info: &ChildInfo, key: &[u8], ) -> Result<bool, Self::Error>

true if a key exists in child storage.
Source§

fn pairs<'a>( &'a self, args: IterArgs<'_>, ) -> Result<PairsIter<'a, H, Self::RawIter>, Self::Error>

Get an iterator over key/value pairs.
Source§

fn keys<'a>( &'a self, args: IterArgs<'_>, ) -> Result<KeysIter<'a, H, Self::RawIter>, Self::Error>

Get an iterator over keys.
Source§

fn full_storage_root<'a>( &self, delta: impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>, child_deltas: impl Iterator<Item = (&'a ChildInfo, impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>)>, state_version: StateVersion, ) -> (H::Out, BackendTransaction<H>)
where H::Out: Ord + Encode,

Calculate the storage root, with given delta over what is already stored in the backend, and produce a “transaction” that can be used to commit. Does include child storage updates.
Source§

fn commit( &self, _: H::Out, _: BackendTransaction<H>, _: StorageCollection, _: ChildStorageCollection, ) -> Result<(), Self::Error>

Commit given transaction to storage.
Source§

fn read_write_count(&self) -> (u32, u32, u32, u32)

Get the read/write count of the db
Source§

fn reset_read_write_count(&self)

Get the read/write count of the db
Source§

fn get_whitelist(&self) -> Vec<TrackedStorageKey>

Get the whitelist for tracking db reads/writes
Source§

fn set_whitelist(&self, _: Vec<TrackedStorageKey>)

Update the whitelist for tracking db reads/writes
Source§

fn proof_size(&self) -> Option<u32>

Estimate proof size
Source§

fn get_read_and_written_keys(&self) -> Vec<(Vec<u8>, u32, u32, bool)>

Extend storage info for benchmarking db
Source§

impl<H: Hasher> Clone for TrieBackend<PrefixedMemoryDB<H>, H>
where H::Out: Codec + Ord,

Source§

fn clone(&self) -> Self

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<S: TrieBackendStorage<H>, H: Hasher, C: TrieCacheProvider<H>, R: TrieRecorderProvider<H>> Debug for TrieBackend<S, H, C, R>

Source§

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

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

impl<H> Default for TrieBackend<PrefixedMemoryDB<H>, H>
where H: Hasher, H::Out: Codec + Ord,

Source§

fn default() -> Self

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

impl<H: Hasher> From<(BTreeMap<Vec<u8>, Vec<u8>>, StateVersion)> for TrieBackend<PrefixedMemoryDB<H>, H>
where H::Out: Codec + Ord,

Source§

fn from( (inner, state_version): (BTreeMap<StorageKey, StorageValue>, StateVersion), ) -> Self

Converts to this type from the input type.
Source§

impl<H: Hasher> From<(HashMap<Option<ChildInfo>, BTreeMap<Vec<u8>, Vec<u8>>>, StateVersion)> for TrieBackend<PrefixedMemoryDB<H>, H>
where H::Out: Codec + Ord,

Source§

fn from( (inner, state_version): (HashMap<Option<ChildInfo>, BTreeMap<StorageKey, StorageValue>>, StateVersion), ) -> Self

Converts to this type from the input type.
Source§

impl<H: Hasher> From<(Storage, StateVersion)> for TrieBackend<PrefixedMemoryDB<H>, H>
where H::Out: Codec + Ord,

Source§

fn from((inners, state_version): (Storage, StateVersion)) -> Self

Converts to this type from the input type.
Source§

impl<H: Hasher> From<(Vec<(Option<ChildInfo>, Vec<(Vec<u8>, Option<Vec<u8>>)>)>, StateVersion)> for TrieBackend<PrefixedMemoryDB<H>, H>
where H::Out: Codec + Ord,

Source§

fn from( (inner, state_version): (Vec<(Option<ChildInfo>, StorageCollection)>, StateVersion), ) -> Self

Converts to this type from the input type.