mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 19:07:57 +00:00
002d9260f9
**Update:** Pushed additional changes based on the review comments. **This pull request fixes various spelling mistakes in this repository.** Most of the changes are contained in the first **3** commits: - `Fix spelling mistakes in comments and docs` - `Fix spelling mistakes in test names` - `Fix spelling mistakes in error messages, panic messages, logs and tracing` Other source code spelling mistakes are separated into individual commits for easier reviewing: - `Fix the spelling of 'authority'` - `Fix the spelling of 'REASONABLE_HEADERS_IN_JUSTIFICATION_ANCESTRY'` - `Fix the spelling of 'prev_enqueud_messages'` - `Fix the spelling of 'endpoint'` - `Fix the spelling of 'children'` - `Fix the spelling of 'PenpalSiblingSovereignAccount'` - `Fix the spelling of 'PenpalSudoAccount'` - `Fix the spelling of 'insufficient'` - `Fix the spelling of 'PalletXcmExtrinsicsBenchmark'` - `Fix the spelling of 'subtracted'` - `Fix the spelling of 'CandidatePendingAvailability'` - `Fix the spelling of 'exclusive'` - `Fix the spelling of 'until'` - `Fix the spelling of 'discriminator'` - `Fix the spelling of 'nonexistent'` - `Fix the spelling of 'subsystem'` - `Fix the spelling of 'indices'` - `Fix the spelling of 'committed'` - `Fix the spelling of 'topology'` - `Fix the spelling of 'response'` - `Fix the spelling of 'beneficiary'` - `Fix the spelling of 'formatted'` - `Fix the spelling of 'UNKNOWN_PROOF_REQUEST'` - `Fix the spelling of 'succeeded'` - `Fix the spelling of 'reopened'` - `Fix the spelling of 'proposer'` - `Fix the spelling of 'InstantiationNonce'` - `Fix the spelling of 'depositor'` - `Fix the spelling of 'expiration'` - `Fix the spelling of 'phantom'` - `Fix the spelling of 'AggregatedKeyValue'` - `Fix the spelling of 'randomness'` - `Fix the spelling of 'defendant'` - `Fix the spelling of 'AquaticMammal'` - `Fix the spelling of 'transactions'` - `Fix the spelling of 'PassingTracingSubscriber'` - `Fix the spelling of 'TxSignaturePayload'` - `Fix the spelling of 'versioning'` - `Fix the spelling of 'descendant'` - `Fix the spelling of 'overridden'` - `Fix the spelling of 'network'` Let me know if this structure is adequate. **Note:** The usage of the words `Merkle`, `Merkelize`, `Merklization`, `Merkelization`, `Merkleization`, is somewhat inconsistent but I left it as it is. ~~**Note:** In some places the term `Receival` is used to refer to message reception, IMO `Reception` is the correct word here, but I left it as it is.~~ ~~**Note:** In some places the term `Overlayed` is used instead of the more acceptable version `Overlaid` but I also left it as it is.~~ ~~**Note:** In some places the term `Applyable` is used instead of the correct version `Applicable` but I also left it as it is.~~ **Note:** Some usage of British vs American english e.g. `judgement` vs `judgment`, `initialise` vs `initialize`, `optimise` vs `optimize` etc. are both present in different places, but I suppose that's understandable given the number of contributors. ~~**Note:** There is a spelling mistake in `.github/CODEOWNERS` but it triggers errors in CI when I make changes to it, so I left it as it is.~~
943 lines
26 KiB
Rust
943 lines
26 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Trie-based state machine backend essence used to read values
|
|
//! from storage.
|
|
|
|
use crate::{
|
|
backend::{IterArgs, StorageIterator},
|
|
trie_backend::TrieCacheProvider,
|
|
warn, StorageKey, StorageValue,
|
|
};
|
|
#[cfg(feature = "std")]
|
|
use alloc::sync::Arc;
|
|
use alloc::{boxed::Box, vec::Vec};
|
|
use codec::Codec;
|
|
use core::marker::PhantomData;
|
|
use hash_db::{self, AsHashDB, HashDB, HashDBRef, Hasher, Prefix};
|
|
#[cfg(feature = "std")]
|
|
use parking_lot::RwLock;
|
|
use sp_core::storage::{ChildInfo, ChildType, StateVersion};
|
|
use sp_trie::{
|
|
child_delta_trie_root, delta_trie_root, empty_child_trie_root,
|
|
read_child_trie_first_descendant_value, read_child_trie_hash, read_child_trie_value,
|
|
read_trie_first_descendant_value, read_trie_value,
|
|
trie_types::{TrieDBBuilder, TrieError},
|
|
DBValue, KeySpacedDB, MerkleValue, NodeCodec, PrefixedMemoryDB, Trie, TrieCache,
|
|
TrieDBRawIterator, TrieRecorder, TrieRecorderProvider,
|
|
};
|
|
#[cfg(feature = "std")]
|
|
use std::collections::HashMap;
|
|
// In this module, we only use layout for read operation and empty root,
|
|
// where V1 and V0 are equivalent.
|
|
use sp_trie::LayoutV1 as Layout;
|
|
|
|
#[cfg(not(feature = "std"))]
|
|
macro_rules! format {
|
|
( $message:expr, $( $arg:expr )* ) => {
|
|
{
|
|
$( let _ = &$arg; )*
|
|
crate::DefaultError
|
|
}
|
|
};
|
|
}
|
|
|
|
type Result<V> = core::result::Result<V, crate::DefaultError>;
|
|
|
|
/// Patricia trie-based storage trait.
|
|
pub trait Storage<H: Hasher>: Send + Sync {
|
|
/// Get a trie node.
|
|
fn get(&self, key: &H::Out, prefix: Prefix) -> Result<Option<DBValue>>;
|
|
}
|
|
|
|
/// Local cache for child root.
|
|
#[cfg(feature = "std")]
|
|
pub(crate) struct Cache<H> {
|
|
pub child_root: HashMap<Vec<u8>, Option<H>>,
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
impl<H> Cache<H> {
|
|
fn new() -> Self {
|
|
Cache { child_root: HashMap::new() }
|
|
}
|
|
}
|
|
|
|
enum IterState {
|
|
Pending,
|
|
FinishedComplete,
|
|
FinishedIncomplete,
|
|
}
|
|
|
|
/// A raw iterator over the storage.
|
|
pub struct RawIter<S, H, C, R>
|
|
where
|
|
H: Hasher,
|
|
{
|
|
stop_on_incomplete_database: bool,
|
|
skip_if_first: Option<StorageKey>,
|
|
root: H::Out,
|
|
child_info: Option<ChildInfo>,
|
|
trie_iter: TrieDBRawIterator<Layout<H>>,
|
|
state: IterState,
|
|
_phantom: PhantomData<(S, C, R)>,
|
|
}
|
|
|
|
impl<S, H, C, R> RawIter<S, H, C, R>
|
|
where
|
|
H: Hasher,
|
|
S: TrieBackendStorage<H>,
|
|
H::Out: Codec + Ord,
|
|
C: TrieCacheProvider<H> + Send + Sync,
|
|
R: TrieRecorderProvider<H> + Send + Sync,
|
|
{
|
|
#[inline]
|
|
fn prepare<RE>(
|
|
&mut self,
|
|
backend: &TrieBackendEssence<S, H, C, R>,
|
|
callback: impl FnOnce(
|
|
&sp_trie::TrieDB<Layout<H>>,
|
|
&mut TrieDBRawIterator<Layout<H>>,
|
|
) -> Option<core::result::Result<RE, Box<TrieError<<H as Hasher>::Out>>>>,
|
|
) -> Option<Result<RE>> {
|
|
if !matches!(self.state, IterState::Pending) {
|
|
return None
|
|
}
|
|
|
|
let result = backend.with_trie_db(self.root, self.child_info.as_ref(), |db| {
|
|
callback(&db, &mut self.trie_iter)
|
|
});
|
|
match result {
|
|
Some(Ok(key_value)) => Some(Ok(key_value)),
|
|
None => {
|
|
self.state = IterState::FinishedComplete;
|
|
None
|
|
},
|
|
Some(Err(error)) => {
|
|
self.state = IterState::FinishedIncomplete;
|
|
if matches!(*error, TrieError::IncompleteDatabase(_)) &&
|
|
self.stop_on_incomplete_database
|
|
{
|
|
None
|
|
} else {
|
|
Some(Err(format!("TrieDB iteration error: {}", error)))
|
|
}
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<S, H, C, R> Default for RawIter<S, H, C, R>
|
|
where
|
|
H: Hasher,
|
|
{
|
|
fn default() -> Self {
|
|
Self {
|
|
stop_on_incomplete_database: false,
|
|
skip_if_first: None,
|
|
child_info: None,
|
|
root: Default::default(),
|
|
trie_iter: TrieDBRawIterator::empty(),
|
|
state: IterState::FinishedComplete,
|
|
_phantom: Default::default(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<S, H, C, R> StorageIterator<H> for RawIter<S, H, C, R>
|
|
where
|
|
H: Hasher,
|
|
S: TrieBackendStorage<H>,
|
|
H::Out: Codec + Ord,
|
|
C: TrieCacheProvider<H> + Send + Sync,
|
|
R: TrieRecorderProvider<H> + Send + Sync,
|
|
{
|
|
type Backend = crate::TrieBackend<S, H, C, R>;
|
|
type Error = crate::DefaultError;
|
|
|
|
#[inline]
|
|
fn next_key(&mut self, backend: &Self::Backend) -> Option<Result<StorageKey>> {
|
|
let skip_if_first = self.skip_if_first.take();
|
|
self.prepare(&backend.essence, |trie, trie_iter| {
|
|
let mut result = trie_iter.next_key(&trie);
|
|
if let Some(skipped_key) = skip_if_first {
|
|
if let Some(Ok(ref key)) = result {
|
|
if *key == skipped_key {
|
|
result = trie_iter.next_key(&trie);
|
|
}
|
|
}
|
|
}
|
|
result
|
|
})
|
|
}
|
|
|
|
#[inline]
|
|
fn next_pair(&mut self, backend: &Self::Backend) -> Option<Result<(StorageKey, StorageValue)>> {
|
|
let skip_if_first = self.skip_if_first.take();
|
|
self.prepare(&backend.essence, |trie, trie_iter| {
|
|
let mut result = trie_iter.next_item(&trie);
|
|
if let Some(skipped_key) = skip_if_first {
|
|
if let Some(Ok((ref key, _))) = result {
|
|
if *key == skipped_key {
|
|
result = trie_iter.next_item(&trie);
|
|
}
|
|
}
|
|
}
|
|
result
|
|
})
|
|
}
|
|
|
|
fn was_complete(&self) -> bool {
|
|
matches!(self.state, IterState::FinishedComplete)
|
|
}
|
|
}
|
|
|
|
/// Patricia trie-based pairs storage essence.
|
|
pub struct TrieBackendEssence<S: TrieBackendStorage<H>, H: Hasher, C, R> {
|
|
storage: S,
|
|
root: H::Out,
|
|
empty: H::Out,
|
|
#[cfg(feature = "std")]
|
|
pub(crate) cache: Arc<RwLock<Cache<H::Out>>>,
|
|
pub(crate) trie_node_cache: Option<C>,
|
|
pub(crate) recorder: Option<R>,
|
|
}
|
|
|
|
impl<S: TrieBackendStorage<H>, H: Hasher, C, R> TrieBackendEssence<S, H, C, R> {
|
|
/// Create new trie-based backend.
|
|
pub fn new(storage: S, root: H::Out) -> Self {
|
|
Self::new_with_cache(storage, root, None)
|
|
}
|
|
|
|
/// Create new trie-based backend.
|
|
pub fn new_with_cache(storage: S, root: H::Out, cache: Option<C>) -> Self {
|
|
TrieBackendEssence {
|
|
storage,
|
|
root,
|
|
empty: H::hash(&[0u8]),
|
|
#[cfg(feature = "std")]
|
|
cache: Arc::new(RwLock::new(Cache::new())),
|
|
trie_node_cache: cache,
|
|
recorder: None,
|
|
}
|
|
}
|
|
|
|
/// Create new trie-based backend.
|
|
pub fn new_with_cache_and_recorder(
|
|
storage: S,
|
|
root: H::Out,
|
|
cache: Option<C>,
|
|
recorder: Option<R>,
|
|
) -> Self {
|
|
TrieBackendEssence {
|
|
storage,
|
|
root,
|
|
empty: H::hash(&[0u8]),
|
|
#[cfg(feature = "std")]
|
|
cache: Arc::new(RwLock::new(Cache::new())),
|
|
trie_node_cache: cache,
|
|
recorder,
|
|
}
|
|
}
|
|
|
|
/// Get backend storage reference.
|
|
pub fn backend_storage(&self) -> &S {
|
|
&self.storage
|
|
}
|
|
|
|
/// Get backend storage mutable reference.
|
|
pub fn backend_storage_mut(&mut self) -> &mut S {
|
|
&mut self.storage
|
|
}
|
|
|
|
/// Get trie root.
|
|
pub fn root(&self) -> &H::Out {
|
|
&self.root
|
|
}
|
|
|
|
/// Set trie root. This is useful for testing.
|
|
pub fn set_root(&mut self, root: H::Out) {
|
|
// If root did change so can have cached content.
|
|
self.reset_cache();
|
|
self.root = root;
|
|
}
|
|
|
|
#[cfg(feature = "std")]
|
|
fn reset_cache(&mut self) {
|
|
self.cache = Arc::new(RwLock::new(Cache::new()));
|
|
}
|
|
|
|
#[cfg(not(feature = "std"))]
|
|
fn reset_cache(&mut self) {}
|
|
|
|
/// Consumes self and returns underlying storage.
|
|
pub fn into_storage(self) -> S {
|
|
self.storage
|
|
}
|
|
}
|
|
|
|
impl<S: TrieBackendStorage<H>, H: Hasher, C: TrieCacheProvider<H>, R: TrieRecorderProvider<H>>
|
|
TrieBackendEssence<S, H, C, R>
|
|
{
|
|
/// Call the given closure passing it the recorder and the cache.
|
|
///
|
|
/// If the given `storage_root` is `None`, `self.root` will be used.
|
|
#[inline]
|
|
fn with_recorder_and_cache<RE>(
|
|
&self,
|
|
storage_root: Option<H::Out>,
|
|
callback: impl FnOnce(
|
|
Option<&mut dyn TrieRecorder<H::Out>>,
|
|
Option<&mut dyn TrieCache<NodeCodec<H>>>,
|
|
) -> RE,
|
|
) -> RE {
|
|
let storage_root = storage_root.unwrap_or_else(|| self.root);
|
|
let mut cache = self.trie_node_cache.as_ref().map(|c| c.as_trie_db_cache(storage_root));
|
|
let cache = cache.as_mut().map(|c| c as _);
|
|
|
|
let mut recorder = self.recorder.as_ref().map(|r| r.as_trie_recorder(storage_root));
|
|
let recorder = match recorder.as_mut() {
|
|
Some(recorder) => Some(recorder as &mut dyn TrieRecorder<H::Out>),
|
|
None => None,
|
|
};
|
|
callback(recorder, cache)
|
|
}
|
|
|
|
/// Call the given closure passing it the recorder and the cache.
|
|
///
|
|
/// This function must only be used when the operation in `callback` is
|
|
/// calculating a `storage_root`. It is expected that `callback` returns
|
|
/// the new storage root. This is required to register the changes in the cache
|
|
/// for the correct storage root. The given `storage_root` corresponds to the root of the "old"
|
|
/// trie. If the value is not given, `self.root` is used.
|
|
fn with_recorder_and_cache_for_storage_root<RE>(
|
|
&self,
|
|
storage_root: Option<H::Out>,
|
|
callback: impl FnOnce(
|
|
Option<&mut dyn TrieRecorder<H::Out>>,
|
|
Option<&mut dyn TrieCache<NodeCodec<H>>>,
|
|
) -> (Option<H::Out>, RE),
|
|
) -> RE {
|
|
let storage_root = storage_root.unwrap_or_else(|| self.root);
|
|
let mut recorder = self.recorder.as_ref().map(|r| r.as_trie_recorder(storage_root));
|
|
let recorder = match recorder.as_mut() {
|
|
Some(recorder) => Some(recorder as &mut dyn TrieRecorder<H::Out>),
|
|
None => None,
|
|
};
|
|
|
|
let result = if let Some(local_cache) = self.trie_node_cache.as_ref() {
|
|
let mut cache = local_cache.as_trie_db_mut_cache();
|
|
|
|
let (new_root, r) = callback(recorder, Some(&mut cache));
|
|
|
|
if let Some(new_root) = new_root {
|
|
local_cache.merge(cache, new_root);
|
|
}
|
|
|
|
r
|
|
} else {
|
|
callback(recorder, None).1
|
|
};
|
|
|
|
result
|
|
}
|
|
}
|
|
|
|
impl<
|
|
S: TrieBackendStorage<H>,
|
|
H: Hasher,
|
|
C: TrieCacheProvider<H> + Send + Sync,
|
|
R: TrieRecorderProvider<H> + Send + Sync,
|
|
> TrieBackendEssence<S, H, C, R>
|
|
where
|
|
H::Out: Codec + Ord,
|
|
{
|
|
/// Calls the given closure with a [`TrieDb`] constructed for the given
|
|
/// storage root and (optionally) child trie.
|
|
#[inline]
|
|
fn with_trie_db<RE>(
|
|
&self,
|
|
root: H::Out,
|
|
child_info: Option<&ChildInfo>,
|
|
callback: impl FnOnce(&sp_trie::TrieDB<Layout<H>>) -> RE,
|
|
) -> RE {
|
|
let backend = self as &dyn HashDBRef<H, Vec<u8>>;
|
|
let db = child_info
|
|
.as_ref()
|
|
.map(|child_info| KeySpacedDB::new(backend, child_info.keyspace()));
|
|
let db = db.as_ref().map(|db| db as &dyn HashDBRef<H, Vec<u8>>).unwrap_or(backend);
|
|
|
|
self.with_recorder_and_cache(Some(root), |recorder, cache| {
|
|
let trie = TrieDBBuilder::<H>::new(db, &root)
|
|
.with_optional_recorder(recorder)
|
|
.with_optional_cache(cache)
|
|
.build();
|
|
|
|
callback(&trie)
|
|
})
|
|
}
|
|
|
|
/// Returns the next key in the trie i.e. the minimum key that is strictly superior to `key` in
|
|
/// lexicographic order.
|
|
///
|
|
/// Will always traverse the trie from scratch in search of the key, which is slow.
|
|
/// Used only when debug assertions are enabled to crosscheck the results of finding
|
|
/// the next key through an iterator.
|
|
#[cfg(debug_assertions)]
|
|
pub fn next_storage_key_slow(&self, key: &[u8]) -> Result<Option<StorageKey>> {
|
|
self.next_storage_key_from_root(&self.root, None, key)
|
|
}
|
|
|
|
/// Access the root of the child storage in its parent trie
|
|
fn child_root(&self, child_info: &ChildInfo) -> Result<Option<H::Out>> {
|
|
#[cfg(feature = "std")]
|
|
{
|
|
if let Some(result) = self.cache.read().child_root.get(child_info.storage_key()) {
|
|
return Ok(*result)
|
|
}
|
|
}
|
|
|
|
let result = self.storage(child_info.prefixed_storage_key().as_slice())?.map(|r| {
|
|
let mut hash = H::Out::default();
|
|
|
|
// root is fetched from DB, not writable by runtime, so it's always valid.
|
|
hash.as_mut().copy_from_slice(&r[..]);
|
|
|
|
hash
|
|
});
|
|
|
|
#[cfg(feature = "std")]
|
|
{
|
|
self.cache.write().child_root.insert(child_info.storage_key().to_vec(), result);
|
|
}
|
|
|
|
Ok(result)
|
|
}
|
|
|
|
/// Return the next key in the child trie i.e. the minimum key that is strictly superior to
|
|
/// `key` in lexicographic order.
|
|
pub fn next_child_storage_key(
|
|
&self,
|
|
child_info: &ChildInfo,
|
|
key: &[u8],
|
|
) -> Result<Option<StorageKey>> {
|
|
let child_root = match self.child_root(child_info)? {
|
|
Some(child_root) => child_root,
|
|
None => return Ok(None),
|
|
};
|
|
|
|
self.next_storage_key_from_root(&child_root, Some(child_info), key)
|
|
}
|
|
|
|
/// Return next key from main trie or child trie by providing corresponding root.
|
|
fn next_storage_key_from_root(
|
|
&self,
|
|
root: &H::Out,
|
|
child_info: Option<&ChildInfo>,
|
|
key: &[u8],
|
|
) -> Result<Option<StorageKey>> {
|
|
self.with_trie_db(*root, child_info, |trie| {
|
|
let mut iter = trie.key_iter().map_err(|e| format!("TrieDB iteration error: {}", e))?;
|
|
|
|
// The key just after the one given in input, basically `key++0`.
|
|
// Note: We are sure this is the next key if:
|
|
// * size of key has no limit (i.e. we can always add 0 to the path),
|
|
// * and no keys can be inserted between `key` and `key++0` (this is ensured by sp-io).
|
|
let mut potential_next_key = Vec::with_capacity(key.len() + 1);
|
|
potential_next_key.extend_from_slice(key);
|
|
potential_next_key.push(0);
|
|
|
|
iter.seek(&potential_next_key)
|
|
.map_err(|e| format!("TrieDB iterator seek error: {}", e))?;
|
|
|
|
let next_element = iter.next();
|
|
|
|
let next_key = if let Some(next_element) = next_element {
|
|
let next_key =
|
|
next_element.map_err(|e| format!("TrieDB iterator next error: {}", e))?;
|
|
Some(next_key)
|
|
} else {
|
|
None
|
|
};
|
|
|
|
Ok(next_key)
|
|
})
|
|
}
|
|
|
|
/// Returns the hash value
|
|
pub fn storage_hash(&self, key: &[u8]) -> Result<Option<H::Out>> {
|
|
let map_e = |e| format!("Trie lookup error: {}", e);
|
|
|
|
self.with_recorder_and_cache(None, |recorder, cache| {
|
|
TrieDBBuilder::new(self, &self.root)
|
|
.with_optional_cache(cache)
|
|
.with_optional_recorder(recorder)
|
|
.build()
|
|
.get_hash(key)
|
|
.map_err(map_e)
|
|
})
|
|
}
|
|
|
|
/// Get the value of storage at given key.
|
|
pub fn storage(&self, key: &[u8]) -> Result<Option<StorageValue>> {
|
|
let map_e = |e| format!("Trie lookup error: {}", e);
|
|
|
|
self.with_recorder_and_cache(None, |recorder, cache| {
|
|
read_trie_value::<Layout<H>, _>(self, &self.root, key, recorder, cache).map_err(map_e)
|
|
})
|
|
}
|
|
|
|
/// Returns the hash value
|
|
pub fn child_storage_hash(&self, child_info: &ChildInfo, key: &[u8]) -> Result<Option<H::Out>> {
|
|
let child_root = match self.child_root(child_info)? {
|
|
Some(root) => root,
|
|
None => return Ok(None),
|
|
};
|
|
|
|
let map_e = |e| format!("Trie lookup error: {}", e);
|
|
|
|
self.with_recorder_and_cache(Some(child_root), |recorder, cache| {
|
|
read_child_trie_hash::<Layout<H>, _>(
|
|
child_info.keyspace(),
|
|
self,
|
|
&child_root,
|
|
key,
|
|
recorder,
|
|
cache,
|
|
)
|
|
.map_err(map_e)
|
|
})
|
|
}
|
|
|
|
/// Get the value of child storage at given key.
|
|
pub fn child_storage(
|
|
&self,
|
|
child_info: &ChildInfo,
|
|
key: &[u8],
|
|
) -> Result<Option<StorageValue>> {
|
|
let child_root = match self.child_root(child_info)? {
|
|
Some(root) => root,
|
|
None => return Ok(None),
|
|
};
|
|
|
|
let map_e = |e| format!("Trie lookup error: {}", e);
|
|
|
|
self.with_recorder_and_cache(Some(child_root), |recorder, cache| {
|
|
read_child_trie_value::<Layout<H>, _>(
|
|
child_info.keyspace(),
|
|
self,
|
|
&child_root,
|
|
key,
|
|
recorder,
|
|
cache,
|
|
)
|
|
.map_err(map_e)
|
|
})
|
|
}
|
|
|
|
/// Get the closest merkle value at given key.
|
|
pub fn closest_merkle_value(&self, key: &[u8]) -> Result<Option<MerkleValue<H::Out>>> {
|
|
let map_e = |e| format!("Trie lookup error: {}", e);
|
|
|
|
self.with_recorder_and_cache(None, |recorder, cache| {
|
|
read_trie_first_descendant_value::<Layout<H>, _>(self, &self.root, key, recorder, cache)
|
|
.map_err(map_e)
|
|
})
|
|
}
|
|
|
|
/// Get the child closest merkle value at given key.
|
|
pub fn child_closest_merkle_value(
|
|
&self,
|
|
child_info: &ChildInfo,
|
|
key: &[u8],
|
|
) -> Result<Option<MerkleValue<H::Out>>> {
|
|
let Some(child_root) = self.child_root(child_info)? else { return Ok(None) };
|
|
|
|
let map_e = |e| format!("Trie lookup error: {}", e);
|
|
|
|
self.with_recorder_and_cache(Some(child_root), |recorder, cache| {
|
|
read_child_trie_first_descendant_value::<Layout<H>, _>(
|
|
child_info.keyspace(),
|
|
self,
|
|
&child_root,
|
|
key,
|
|
recorder,
|
|
cache,
|
|
)
|
|
.map_err(map_e)
|
|
})
|
|
}
|
|
|
|
/// Create a raw iterator over the storage.
|
|
pub fn raw_iter(&self, args: IterArgs) -> Result<RawIter<S, H, C, R>> {
|
|
let root = if let Some(child_info) = args.child_info.as_ref() {
|
|
let root = match self.child_root(&child_info)? {
|
|
Some(root) => root,
|
|
None => return Ok(Default::default()),
|
|
};
|
|
root
|
|
} else {
|
|
self.root
|
|
};
|
|
|
|
if self.root == Default::default() {
|
|
// A special-case for an empty storage root.
|
|
return Ok(Default::default())
|
|
}
|
|
|
|
let trie_iter = self
|
|
.with_trie_db(root, args.child_info.as_ref(), |db| {
|
|
let prefix = args.prefix.as_deref().unwrap_or(&[]);
|
|
if let Some(start_at) = args.start_at {
|
|
TrieDBRawIterator::new_prefixed_then_seek(db, prefix, &start_at)
|
|
} else {
|
|
TrieDBRawIterator::new_prefixed(db, prefix)
|
|
}
|
|
})
|
|
.map_err(|e| format!("TrieDB iteration error: {}", e))?;
|
|
|
|
Ok(RawIter {
|
|
stop_on_incomplete_database: args.stop_on_incomplete_database,
|
|
skip_if_first: if args.start_at_exclusive {
|
|
args.start_at.map(|key| key.to_vec())
|
|
} else {
|
|
None
|
|
},
|
|
child_info: args.child_info,
|
|
root,
|
|
trie_iter,
|
|
state: IterState::Pending,
|
|
_phantom: Default::default(),
|
|
})
|
|
}
|
|
|
|
/// Return the storage root after applying the given `delta`.
|
|
pub fn storage_root<'a>(
|
|
&self,
|
|
delta: impl Iterator<Item = (&'a [u8], Option<&'a [u8]>)>,
|
|
state_version: StateVersion,
|
|
) -> (H::Out, PrefixedMemoryDB<H>) {
|
|
let mut write_overlay = PrefixedMemoryDB::default();
|
|
|
|
let root = self.with_recorder_and_cache_for_storage_root(None, |recorder, cache| {
|
|
let mut eph = Ephemeral::new(self.backend_storage(), &mut write_overlay);
|
|
let res = match state_version {
|
|
StateVersion::V0 => delta_trie_root::<sp_trie::LayoutV0<H>, _, _, _, _, _>(
|
|
&mut eph, self.root, delta, recorder, cache,
|
|
),
|
|
StateVersion::V1 => delta_trie_root::<sp_trie::LayoutV1<H>, _, _, _, _, _>(
|
|
&mut eph, self.root, delta, recorder, cache,
|
|
),
|
|
};
|
|
|
|
match res {
|
|
Ok(ret) => (Some(ret), ret),
|
|
Err(e) => {
|
|
warn!(target: "trie", "Failed to write to trie: {}", e);
|
|
(None, self.root)
|
|
},
|
|
}
|
|
});
|
|
|
|
(root, write_overlay)
|
|
}
|
|
|
|
/// Returns the child storage root for the child trie `child_info` after applying the given
|
|
/// `delta`.
|
|
pub 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>) {
|
|
let default_root = match child_info.child_type() {
|
|
ChildType::ParentKeyId => empty_child_trie_root::<sp_trie::LayoutV1<H>>(),
|
|
};
|
|
let mut write_overlay = PrefixedMemoryDB::default();
|
|
let child_root = match self.child_root(child_info) {
|
|
Ok(Some(hash)) => hash,
|
|
Ok(None) => default_root,
|
|
Err(e) => {
|
|
warn!(target: "trie", "Failed to read child storage root: {}", e);
|
|
default_root
|
|
},
|
|
};
|
|
|
|
let new_child_root =
|
|
self.with_recorder_and_cache_for_storage_root(Some(child_root), |recorder, cache| {
|
|
let mut eph = Ephemeral::new(self.backend_storage(), &mut write_overlay);
|
|
match match state_version {
|
|
StateVersion::V0 =>
|
|
child_delta_trie_root::<sp_trie::LayoutV0<H>, _, _, _, _, _, _>(
|
|
child_info.keyspace(),
|
|
&mut eph,
|
|
child_root,
|
|
delta,
|
|
recorder,
|
|
cache,
|
|
),
|
|
StateVersion::V1 =>
|
|
child_delta_trie_root::<sp_trie::LayoutV1<H>, _, _, _, _, _, _>(
|
|
child_info.keyspace(),
|
|
&mut eph,
|
|
child_root,
|
|
delta,
|
|
recorder,
|
|
cache,
|
|
),
|
|
} {
|
|
Ok(ret) => (Some(ret), ret),
|
|
Err(e) => {
|
|
warn!(target: "trie", "Failed to write to trie: {}", e);
|
|
(None, child_root)
|
|
},
|
|
}
|
|
});
|
|
|
|
let is_default = new_child_root == default_root;
|
|
|
|
(new_child_root, is_default, write_overlay)
|
|
}
|
|
}
|
|
|
|
pub(crate) struct Ephemeral<'a, S: 'a + TrieBackendStorage<H>, H: 'a + Hasher> {
|
|
storage: &'a S,
|
|
overlay: &'a mut PrefixedMemoryDB<H>,
|
|
}
|
|
|
|
impl<'a, S: 'a + TrieBackendStorage<H>, H: 'a + Hasher> AsHashDB<H, DBValue>
|
|
for Ephemeral<'a, S, H>
|
|
{
|
|
fn as_hash_db<'b>(&'b self) -> &'b (dyn HashDB<H, DBValue> + 'b) {
|
|
self
|
|
}
|
|
fn as_hash_db_mut<'b>(&'b mut self) -> &'b mut (dyn HashDB<H, DBValue> + 'b) {
|
|
self
|
|
}
|
|
}
|
|
|
|
impl<'a, S: TrieBackendStorage<H>, H: Hasher> Ephemeral<'a, S, H> {
|
|
pub fn new(storage: &'a S, overlay: &'a mut PrefixedMemoryDB<H>) -> Self {
|
|
Ephemeral { storage, overlay }
|
|
}
|
|
}
|
|
|
|
impl<'a, S: 'a + TrieBackendStorage<H>, H: Hasher> hash_db::HashDB<H, DBValue>
|
|
for Ephemeral<'a, S, H>
|
|
{
|
|
fn get(&self, key: &H::Out, prefix: Prefix) -> Option<DBValue> {
|
|
HashDB::get(self.overlay, key, prefix).or_else(|| {
|
|
self.storage.get(key, prefix).unwrap_or_else(|e| {
|
|
warn!(target: "trie", "Failed to read from DB: {}", e);
|
|
None
|
|
})
|
|
})
|
|
}
|
|
|
|
fn contains(&self, key: &H::Out, prefix: Prefix) -> bool {
|
|
HashDB::get(self, key, prefix).is_some()
|
|
}
|
|
|
|
fn insert(&mut self, prefix: Prefix, value: &[u8]) -> H::Out {
|
|
HashDB::insert(self.overlay, prefix, value)
|
|
}
|
|
|
|
fn emplace(&mut self, key: H::Out, prefix: Prefix, value: DBValue) {
|
|
HashDB::emplace(self.overlay, key, prefix, value)
|
|
}
|
|
|
|
fn remove(&mut self, key: &H::Out, prefix: Prefix) {
|
|
HashDB::remove(self.overlay, key, prefix)
|
|
}
|
|
}
|
|
|
|
impl<'a, S: 'a + TrieBackendStorage<H>, H: Hasher> HashDBRef<H, DBValue> for Ephemeral<'a, S, H> {
|
|
fn get(&self, key: &H::Out, prefix: Prefix) -> Option<DBValue> {
|
|
HashDB::get(self, key, prefix)
|
|
}
|
|
|
|
fn contains(&self, key: &H::Out, prefix: Prefix) -> bool {
|
|
HashDB::contains(self, key, prefix)
|
|
}
|
|
}
|
|
|
|
/// Key-value pairs storage that is used by trie backend essence.
|
|
pub trait TrieBackendStorage<H: Hasher>: Send + Sync {
|
|
/// Get the value stored at key.
|
|
fn get(&self, key: &H::Out, prefix: Prefix) -> Result<Option<DBValue>>;
|
|
}
|
|
|
|
impl<T: TrieBackendStorage<H>, H: Hasher> TrieBackendStorage<H> for &T {
|
|
fn get(&self, key: &H::Out, prefix: Prefix) -> Result<Option<DBValue>> {
|
|
(*self).get(key, prefix)
|
|
}
|
|
}
|
|
|
|
// This implementation is used by normal storage trie clients.
|
|
#[cfg(feature = "std")]
|
|
impl<H: Hasher> TrieBackendStorage<H> for Arc<dyn Storage<H>> {
|
|
fn get(&self, key: &H::Out, prefix: Prefix) -> Result<Option<DBValue>> {
|
|
Storage::<H>::get(std::ops::Deref::deref(self), key, prefix)
|
|
}
|
|
}
|
|
|
|
impl<H, KF> TrieBackendStorage<H> for sp_trie::GenericMemoryDB<H, KF>
|
|
where
|
|
H: Hasher,
|
|
KF: sp_trie::KeyFunction<H> + Send + Sync,
|
|
{
|
|
fn get(&self, key: &H::Out, prefix: Prefix) -> Result<Option<DBValue>> {
|
|
Ok(hash_db::HashDB::get(self, key, prefix))
|
|
}
|
|
}
|
|
|
|
impl<
|
|
S: TrieBackendStorage<H>,
|
|
H: Hasher,
|
|
C: TrieCacheProvider<H> + Send + Sync,
|
|
R: TrieRecorderProvider<H> + Send + Sync,
|
|
> AsHashDB<H, DBValue> for TrieBackendEssence<S, H, C, R>
|
|
{
|
|
fn as_hash_db<'b>(&'b self) -> &'b (dyn HashDB<H, DBValue> + 'b) {
|
|
self
|
|
}
|
|
|
|
fn as_hash_db_mut<'b>(&'b mut self) -> &'b mut (dyn HashDB<H, DBValue> + 'b) {
|
|
self
|
|
}
|
|
}
|
|
|
|
impl<
|
|
S: TrieBackendStorage<H>,
|
|
H: Hasher,
|
|
C: TrieCacheProvider<H> + Send + Sync,
|
|
R: TrieRecorderProvider<H> + Send + Sync,
|
|
> HashDB<H, DBValue> for TrieBackendEssence<S, H, C, R>
|
|
{
|
|
fn get(&self, key: &H::Out, prefix: Prefix) -> Option<DBValue> {
|
|
if *key == self.empty {
|
|
return Some([0u8].to_vec())
|
|
}
|
|
match self.storage.get(key, prefix) {
|
|
Ok(x) => x,
|
|
Err(e) => {
|
|
warn!(target: "trie", "Failed to read from DB: {}", e);
|
|
None
|
|
},
|
|
}
|
|
}
|
|
|
|
fn contains(&self, key: &H::Out, prefix: Prefix) -> bool {
|
|
HashDB::get(self, key, prefix).is_some()
|
|
}
|
|
|
|
fn insert(&mut self, _prefix: Prefix, _value: &[u8]) -> H::Out {
|
|
unimplemented!();
|
|
}
|
|
|
|
fn emplace(&mut self, _key: H::Out, _prefix: Prefix, _value: DBValue) {
|
|
unimplemented!();
|
|
}
|
|
|
|
fn remove(&mut self, _key: &H::Out, _prefix: Prefix) {
|
|
unimplemented!();
|
|
}
|
|
}
|
|
|
|
impl<
|
|
S: TrieBackendStorage<H>,
|
|
H: Hasher,
|
|
C: TrieCacheProvider<H> + Send + Sync,
|
|
R: TrieRecorderProvider<H> + Send + Sync,
|
|
> HashDBRef<H, DBValue> for TrieBackendEssence<S, H, C, R>
|
|
{
|
|
fn get(&self, key: &H::Out, prefix: Prefix) -> Option<DBValue> {
|
|
HashDB::get(self, key, prefix)
|
|
}
|
|
|
|
fn contains(&self, key: &H::Out, prefix: Prefix) -> bool {
|
|
HashDB::contains(self, key, prefix)
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod test {
|
|
use super::*;
|
|
use crate::{Backend, TrieBackend};
|
|
use sp_core::{Blake2Hasher, H256};
|
|
use sp_trie::{
|
|
cache::LocalTrieCache, trie_types::TrieDBMutBuilderV1 as TrieDBMutBuilder, KeySpacedDBMut,
|
|
PrefixedMemoryDB, TrieMut,
|
|
};
|
|
|
|
#[test]
|
|
fn next_storage_key_and_next_child_storage_key_work() {
|
|
let child_info = ChildInfo::new_default(b"MyChild");
|
|
let child_info = &child_info;
|
|
// Contains values
|
|
let mut root_1 = H256::default();
|
|
// Contains child trie
|
|
let mut root_2 = H256::default();
|
|
|
|
let mut mdb = PrefixedMemoryDB::<Blake2Hasher>::default();
|
|
{
|
|
let mut trie = TrieDBMutBuilder::new(&mut mdb, &mut root_1).build();
|
|
trie.insert(b"3", &[1]).expect("insert failed");
|
|
trie.insert(b"4", &[1]).expect("insert failed");
|
|
trie.insert(b"6", &[1]).expect("insert failed");
|
|
}
|
|
{
|
|
let mut mdb = KeySpacedDBMut::new(&mut mdb, child_info.keyspace());
|
|
// reuse of root_1 implicitly assert child trie root is same
|
|
// as top trie (contents must remain the same).
|
|
let mut trie = TrieDBMutBuilder::new(&mut mdb, &mut root_1).build();
|
|
trie.insert(b"3", &[1]).expect("insert failed");
|
|
trie.insert(b"4", &[1]).expect("insert failed");
|
|
trie.insert(b"6", &[1]).expect("insert failed");
|
|
}
|
|
{
|
|
let mut trie = TrieDBMutBuilder::new(&mut mdb, &mut root_2).build();
|
|
trie.insert(child_info.prefixed_storage_key().as_slice(), root_1.as_ref())
|
|
.expect("insert failed");
|
|
};
|
|
|
|
let essence_1 =
|
|
TrieBackendEssence::<_, _, LocalTrieCache<_>, sp_trie::recorder::Recorder<_>>::new(
|
|
mdb, root_1,
|
|
);
|
|
let mdb = essence_1.backend_storage().clone();
|
|
let essence_1 = TrieBackend::from_essence(essence_1);
|
|
|
|
assert_eq!(essence_1.next_storage_key(b"2"), Ok(Some(b"3".to_vec())));
|
|
assert_eq!(essence_1.next_storage_key(b"3"), Ok(Some(b"4".to_vec())));
|
|
assert_eq!(essence_1.next_storage_key(b"4"), Ok(Some(b"6".to_vec())));
|
|
assert_eq!(essence_1.next_storage_key(b"5"), Ok(Some(b"6".to_vec())));
|
|
assert_eq!(essence_1.next_storage_key(b"6"), Ok(None));
|
|
|
|
let essence_2 =
|
|
TrieBackendEssence::<_, _, LocalTrieCache<_>, sp_trie::recorder::Recorder<_>>::new(
|
|
mdb, root_2,
|
|
);
|
|
|
|
assert_eq!(essence_2.next_child_storage_key(child_info, b"2"), Ok(Some(b"3".to_vec())));
|
|
assert_eq!(essence_2.next_child_storage_key(child_info, b"3"), Ok(Some(b"4".to_vec())));
|
|
assert_eq!(essence_2.next_child_storage_key(child_info, b"4"), Ok(Some(b"6".to_vec())));
|
|
assert_eq!(essence_2.next_child_storage_key(child_info, b"5"), Ok(Some(b"6".to_vec())));
|
|
assert_eq!(essence_2.next_child_storage_key(child_info, b"6"), Ok(None));
|
|
}
|
|
}
|