mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 21:01:05 +00:00
8c7d217091
* chore/error: remove from str conversion and add deprecation notifications * fixup changes * fix test looking for gone ::Msg variant * another test fix * one is duplicate, the other is not, so duplicates reported are n-1 * darn spaces Co-authored-by: Andronik Ordian <write@reusable.software> * remove pointless doc comments of error variants without any value * low hanging fruits (for a tall person) * moar error type variants * avoid the storage modules for now They are in need of a refactor, and the pain is rather large removing all String error and DefaultError occurences. * chore remove pointless error generic * fix test for mocks, add a bunch of non_exhaustive * max line width * test fixes due to error changes * fin * error outputs... again * undo stderr adjustments * Update client/consensus/slots/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * remove closure clutter Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * more error types * introduce ApiError * extract Mock error * ApiError refactor * even more error types * the last for now * chore unused deps * another extraction * reduce should panic, due to extended error messages * error test happiness * shift error lines by one * doc tests * white space Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * Into -> From Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * remove pointless codec Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * avoid pointless self import Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Bernhard Schuster <bernhard@parity.io> Co-authored-by: Andronik Ordian <write@reusable.software> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
646 lines
20 KiB
Rust
646 lines
20 KiB
Rust
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Substrate.
|
|
|
|
// Substrate is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Substrate is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! State API backend for full nodes.
|
|
|
|
use std::collections::{BTreeMap, HashMap};
|
|
use std::sync::Arc;
|
|
use std::ops::Range;
|
|
use futures::{future, StreamExt as _, TryStreamExt as _};
|
|
use log::warn;
|
|
use jsonrpc_pubsub::{typed::Subscriber, SubscriptionId, manager::SubscriptionManager};
|
|
use rpc::{Result as RpcResult, futures::{stream, Future, Sink, Stream, future::result}};
|
|
|
|
use sc_rpc_api::state::ReadProof;
|
|
use sc_client_api::backend::Backend;
|
|
use sp_blockchain::{Result as ClientResult, Error as ClientError, HeaderMetadata, CachedHeaderMetadata, HeaderBackend};
|
|
use sc_client_api::BlockchainEvents;
|
|
use sp_core::{
|
|
Bytes, storage::{well_known_keys, StorageKey, StorageData, StorageChangeSet,
|
|
ChildInfo, ChildType, PrefixedStorageKey},
|
|
};
|
|
use sp_version::RuntimeVersion;
|
|
use sp_runtime::{
|
|
generic::BlockId, traits::{Block as BlockT, NumberFor, SaturatedConversion, CheckedSub},
|
|
};
|
|
|
|
use sp_api::{Metadata, ProvideRuntimeApi, CallApiAt};
|
|
|
|
use super::{StateBackend, ChildStateBackend, error::{FutureResult, Error, Result}, client_err};
|
|
use std::marker::PhantomData;
|
|
use sc_client_api::{CallExecutor, StorageProvider, ExecutorProvider, ProofProvider};
|
|
|
|
/// Ranges to query in state_queryStorage.
|
|
struct QueryStorageRange<Block: BlockT> {
|
|
/// Hashes of all the blocks in the range.
|
|
pub hashes: Vec<Block::Hash>,
|
|
/// Number of the first block in the range.
|
|
pub first_number: NumberFor<Block>,
|
|
/// Blocks subrange ([begin; end) indices within `hashes`) where we should read keys at
|
|
/// each state to get changes.
|
|
pub unfiltered_range: Range<usize>,
|
|
/// Blocks subrange ([begin; end) indices within `hashes`) where we could pre-filter
|
|
/// blocks-with-changes by using changes tries.
|
|
pub filtered_range: Option<Range<usize>>,
|
|
}
|
|
|
|
/// State API backend for full nodes.
|
|
pub struct FullState<BE, Block: BlockT, Client> {
|
|
client: Arc<Client>,
|
|
subscriptions: SubscriptionManager,
|
|
_phantom: PhantomData<(BE, Block)>
|
|
}
|
|
|
|
impl<BE, Block: BlockT, Client> FullState<BE, Block, Client>
|
|
where
|
|
BE: Backend<Block>,
|
|
Client: StorageProvider<Block, BE> + HeaderBackend<Block>
|
|
+ HeaderMetadata<Block, Error = sp_blockchain::Error>,
|
|
Block: BlockT + 'static,
|
|
{
|
|
/// Create new state API backend for full nodes.
|
|
pub fn new(client: Arc<Client>, subscriptions: SubscriptionManager) -> Self {
|
|
Self { client, subscriptions, _phantom: PhantomData }
|
|
}
|
|
|
|
/// Returns given block hash or best block hash if None is passed.
|
|
fn block_or_best(&self, hash: Option<Block::Hash>) -> ClientResult<Block::Hash> {
|
|
Ok(hash.unwrap_or_else(|| self.client.info().best_hash))
|
|
}
|
|
|
|
/// Splits the `query_storage` block range into 'filtered' and 'unfiltered' subranges.
|
|
/// Blocks that contain changes within filtered subrange could be filtered using changes tries.
|
|
/// Blocks that contain changes within unfiltered subrange must be filtered manually.
|
|
fn split_query_storage_range(
|
|
&self,
|
|
from: Block::Hash,
|
|
to: Option<Block::Hash>
|
|
) -> Result<QueryStorageRange<Block>> {
|
|
let to = self.block_or_best(to).map_err(|e| invalid_block::<Block>(from, to, e.to_string()))?;
|
|
|
|
let invalid_block_err = |e: ClientError| invalid_block::<Block>(from, Some(to), e.to_string());
|
|
let from_meta = self.client.header_metadata(from).map_err(invalid_block_err)?;
|
|
let to_meta = self.client.header_metadata(to).map_err(invalid_block_err)?;
|
|
|
|
if from_meta.number > to_meta.number {
|
|
return Err(invalid_block_range(&from_meta, &to_meta, "from number > to number".to_owned()))
|
|
}
|
|
|
|
// check if we can get from `to` to `from` by going through parent_hashes.
|
|
let from_number = from_meta.number;
|
|
let hashes = {
|
|
let mut hashes = vec![to_meta.hash];
|
|
let mut last = to_meta.clone();
|
|
while last.number > from_number {
|
|
let header_metadata = self.client
|
|
.header_metadata(last.parent)
|
|
.map_err(|e| invalid_block_range::<Block>(&last, &to_meta, e.to_string()))?;
|
|
hashes.push(header_metadata.hash);
|
|
last = header_metadata;
|
|
}
|
|
if last.hash != from_meta.hash {
|
|
return Err(invalid_block_range(&from_meta, &to_meta, "from and to are on different forks".to_owned()))
|
|
}
|
|
hashes.reverse();
|
|
hashes
|
|
};
|
|
|
|
// check if we can filter blocks-with-changes from some (sub)range using changes tries
|
|
let changes_trie_range = self.client
|
|
.max_key_changes_range(from_number, BlockId::Hash(to_meta.hash))
|
|
.map_err(client_err)?;
|
|
let filtered_range_begin = changes_trie_range
|
|
.and_then(|(begin, _)| {
|
|
// avoids a corner case where begin < from_number (happens when querying genesis)
|
|
begin.checked_sub(&from_number).map(|x| x.saturated_into::<usize>())
|
|
});
|
|
let (unfiltered_range, filtered_range) = split_range(hashes.len(), filtered_range_begin);
|
|
|
|
Ok(QueryStorageRange {
|
|
hashes,
|
|
first_number: from_number,
|
|
unfiltered_range,
|
|
filtered_range,
|
|
})
|
|
}
|
|
|
|
/// Iterates through range.unfiltered_range and check each block for changes of keys' values.
|
|
fn query_storage_unfiltered(
|
|
&self,
|
|
range: &QueryStorageRange<Block>,
|
|
keys: &[StorageKey],
|
|
last_values: &mut HashMap<StorageKey, Option<StorageData>>,
|
|
changes: &mut Vec<StorageChangeSet<Block::Hash>>,
|
|
) -> Result<()> {
|
|
for block in range.unfiltered_range.start..range.unfiltered_range.end {
|
|
let block_hash = range.hashes[block].clone();
|
|
let mut block_changes = StorageChangeSet { block: block_hash.clone(), changes: Vec::new() };
|
|
let id = BlockId::hash(block_hash);
|
|
for key in keys {
|
|
let (has_changed, data) = {
|
|
let curr_data = self.client.storage(&id, key).map_err(client_err)?;
|
|
match last_values.get(key) {
|
|
Some(prev_data) => (curr_data != *prev_data, curr_data),
|
|
None => (true, curr_data),
|
|
}
|
|
};
|
|
if has_changed {
|
|
block_changes.changes.push((key.clone(), data.clone()));
|
|
}
|
|
last_values.insert(key.clone(), data);
|
|
}
|
|
if !block_changes.changes.is_empty() {
|
|
changes.push(block_changes);
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
/// Iterates through all blocks that are changing keys within range.filtered_range and collects these changes.
|
|
fn query_storage_filtered(
|
|
&self,
|
|
range: &QueryStorageRange<Block>,
|
|
keys: &[StorageKey],
|
|
last_values: &HashMap<StorageKey, Option<StorageData>>,
|
|
changes: &mut Vec<StorageChangeSet<Block::Hash>>,
|
|
) -> Result<()> {
|
|
let (begin, end) = match range.filtered_range {
|
|
Some(ref filtered_range) => (
|
|
range.first_number + filtered_range.start.saturated_into(),
|
|
BlockId::Hash(range.hashes[filtered_range.end - 1].clone())
|
|
),
|
|
None => return Ok(()),
|
|
};
|
|
let mut changes_map: BTreeMap<NumberFor<Block>, StorageChangeSet<Block::Hash>> = BTreeMap::new();
|
|
for key in keys {
|
|
let mut last_block = None;
|
|
let mut last_value = last_values.get(key).cloned().unwrap_or_default();
|
|
let key_changes = self.client.key_changes(begin, end, None, key).map_err(client_err)?;
|
|
for (block, _) in key_changes.into_iter().rev() {
|
|
if last_block == Some(block) {
|
|
continue;
|
|
}
|
|
|
|
let block_hash = range.hashes[(block - range.first_number).saturated_into::<usize>()].clone();
|
|
let id = BlockId::Hash(block_hash);
|
|
let value_at_block = self.client.storage(&id, key).map_err(client_err)?;
|
|
if last_value == value_at_block {
|
|
continue;
|
|
}
|
|
|
|
changes_map.entry(block)
|
|
.or_insert_with(|| StorageChangeSet { block: block_hash, changes: Vec::new() })
|
|
.changes.push((key.clone(), value_at_block.clone()));
|
|
last_block = Some(block);
|
|
last_value = value_at_block;
|
|
}
|
|
}
|
|
if let Some(additional_capacity) = changes_map.len().checked_sub(changes.len()) {
|
|
changes.reserve(additional_capacity);
|
|
}
|
|
changes.extend(changes_map.into_iter().map(|(_, cs)| cs));
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl<BE, Block, Client> StateBackend<Block, Client> for FullState<BE, Block, Client> where
|
|
Block: BlockT + 'static,
|
|
BE: Backend<Block> + 'static,
|
|
Client: ExecutorProvider<Block> + StorageProvider<Block, BE> + ProofProvider<Block> + HeaderBackend<Block>
|
|
+ HeaderMetadata<Block, Error = sp_blockchain::Error> + BlockchainEvents<Block>
|
|
+ CallApiAt<Block, Error = sp_blockchain::Error> + ProvideRuntimeApi<Block>
|
|
+ Send + Sync + 'static,
|
|
Client::Api: Metadata<Block, Error = sp_blockchain::Error>,
|
|
{
|
|
fn call(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
method: String,
|
|
call_data: Bytes,
|
|
) -> FutureResult<Bytes> {
|
|
let r = self.block_or_best(block)
|
|
.and_then(|block| self
|
|
.client
|
|
.executor()
|
|
.call(
|
|
&BlockId::Hash(block),
|
|
&method,
|
|
&*call_data,
|
|
self.client.execution_extensions().strategies().other,
|
|
None,
|
|
)
|
|
.map(Into::into)
|
|
).map_err(client_err);
|
|
Box::new(result(r))
|
|
}
|
|
|
|
fn storage_keys(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
prefix: StorageKey,
|
|
) -> FutureResult<Vec<StorageKey>> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block| self.client.storage_keys(&BlockId::Hash(block), &prefix))
|
|
.map_err(client_err)))
|
|
}
|
|
|
|
fn storage_pairs(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
prefix: StorageKey,
|
|
) -> FutureResult<Vec<(StorageKey, StorageData)>> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block| self.client.storage_pairs(&BlockId::Hash(block), &prefix))
|
|
.map_err(client_err)))
|
|
}
|
|
|
|
fn storage_keys_paged(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
prefix: Option<StorageKey>,
|
|
count: u32,
|
|
start_key: Option<StorageKey>,
|
|
) -> FutureResult<Vec<StorageKey>> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block|
|
|
self.client.storage_keys_iter(
|
|
&BlockId::Hash(block), prefix.as_ref(), start_key.as_ref()
|
|
)
|
|
)
|
|
.map(|v| v.take(count as usize).collect())
|
|
.map_err(client_err)))
|
|
}
|
|
|
|
fn storage(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
key: StorageKey,
|
|
) -> FutureResult<Option<StorageData>> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block| self.client.storage(&BlockId::Hash(block), &key))
|
|
.map_err(client_err)))
|
|
}
|
|
|
|
fn storage_size(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
key: StorageKey,
|
|
) -> FutureResult<Option<u64>> {
|
|
let block = match self.block_or_best(block) {
|
|
Ok(b) => b,
|
|
Err(e) => return Box::new(result(Err(client_err(e)))),
|
|
};
|
|
|
|
match self.client.storage(&BlockId::Hash(block), &key) {
|
|
Ok(Some(d)) => return Box::new(result(Ok(Some(d.0.len() as u64)))),
|
|
Err(e) => return Box::new(result(Err(client_err(e)))),
|
|
Ok(None) => {},
|
|
}
|
|
|
|
Box::new(result(
|
|
self.client.storage_pairs(&BlockId::Hash(block), &key)
|
|
.map(|kv| {
|
|
let item_sum = kv.iter().map(|(_, v)| v.0.len() as u64).sum::<u64>();
|
|
if item_sum > 0 {
|
|
Some(item_sum)
|
|
} else {
|
|
None
|
|
}
|
|
})
|
|
.map_err(client_err)
|
|
))
|
|
}
|
|
|
|
fn storage_hash(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
key: StorageKey,
|
|
) -> FutureResult<Option<Block::Hash>> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block| self.client.storage_hash(&BlockId::Hash(block), &key))
|
|
.map_err(client_err)))
|
|
}
|
|
|
|
fn metadata(&self, block: Option<Block::Hash>) -> FutureResult<Bytes> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block|
|
|
self.client.runtime_api().metadata(&BlockId::Hash(block)).map(Into::into)
|
|
)
|
|
.map_err(client_err)))
|
|
}
|
|
|
|
fn runtime_version(&self, block: Option<Block::Hash>) -> FutureResult<RuntimeVersion> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block| self.client.runtime_version_at(&BlockId::Hash(block)))
|
|
.map_err(client_err)))
|
|
}
|
|
|
|
fn query_storage(
|
|
&self,
|
|
from: Block::Hash,
|
|
to: Option<Block::Hash>,
|
|
keys: Vec<StorageKey>,
|
|
) -> FutureResult<Vec<StorageChangeSet<Block::Hash>>> {
|
|
let call_fn = move || {
|
|
let range = self.split_query_storage_range(from, to)?;
|
|
let mut changes = Vec::new();
|
|
let mut last_values = HashMap::new();
|
|
self.query_storage_unfiltered(&range, &keys, &mut last_values, &mut changes)?;
|
|
self.query_storage_filtered(&range, &keys, &last_values, &mut changes)?;
|
|
Ok(changes)
|
|
};
|
|
Box::new(result(call_fn()))
|
|
}
|
|
|
|
fn query_storage_at(
|
|
&self,
|
|
keys: Vec<StorageKey>,
|
|
at: Option<Block::Hash>
|
|
) -> FutureResult<Vec<StorageChangeSet<Block::Hash>>> {
|
|
let at = at.unwrap_or_else(|| self.client.info().best_hash);
|
|
self.query_storage(at, Some(at), keys)
|
|
}
|
|
|
|
fn read_proof(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
keys: Vec<StorageKey>,
|
|
) -> FutureResult<ReadProof<Block::Hash>> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block| {
|
|
self.client
|
|
.read_proof(
|
|
&BlockId::Hash(block),
|
|
&mut keys.iter().map(|key| key.0.as_ref()),
|
|
)
|
|
.map(|proof| proof.iter_nodes().map(|node| node.into()).collect())
|
|
.map(|proof| ReadProof { at: block, proof })
|
|
})
|
|
.map_err(client_err),
|
|
))
|
|
}
|
|
|
|
fn subscribe_runtime_version(
|
|
&self,
|
|
_meta: crate::Metadata,
|
|
subscriber: Subscriber<RuntimeVersion>,
|
|
) {
|
|
let stream = match self.client.storage_changes_notification_stream(
|
|
Some(&[StorageKey(well_known_keys::CODE.to_vec())]),
|
|
None,
|
|
) {
|
|
Ok(stream) => stream,
|
|
Err(err) => {
|
|
let _ = subscriber.reject(Error::from(client_err(err)).into());
|
|
return;
|
|
}
|
|
};
|
|
|
|
self.subscriptions.add(subscriber, |sink| {
|
|
let version = self.runtime_version(None.into())
|
|
.map_err(Into::into)
|
|
.wait();
|
|
|
|
let client = self.client.clone();
|
|
let mut previous_version = version.clone();
|
|
|
|
let stream = stream
|
|
.filter_map(move |_| {
|
|
let info = client.info();
|
|
let version = client
|
|
.runtime_version_at(&BlockId::hash(info.best_hash))
|
|
.map_err(client_err)
|
|
.map_err(Into::into);
|
|
if previous_version != version {
|
|
previous_version = version.clone();
|
|
future::ready(Some(Ok::<_, ()>(version)))
|
|
} else {
|
|
future::ready(None)
|
|
}
|
|
})
|
|
.compat();
|
|
|
|
sink
|
|
.sink_map_err(|e| warn!("Error sending notifications: {:?}", e))
|
|
.send_all(
|
|
stream::iter_result(vec![Ok(version)])
|
|
.chain(stream)
|
|
)
|
|
// we ignore the resulting Stream (if the first stream is over we are unsubscribed)
|
|
.map(|_| ())
|
|
});
|
|
}
|
|
|
|
fn unsubscribe_runtime_version(
|
|
&self,
|
|
_meta: Option<crate::Metadata>,
|
|
id: SubscriptionId,
|
|
) -> RpcResult<bool> {
|
|
Ok(self.subscriptions.cancel(id))
|
|
}
|
|
|
|
fn subscribe_storage(
|
|
&self,
|
|
_meta: crate::Metadata,
|
|
subscriber: Subscriber<StorageChangeSet<Block::Hash>>,
|
|
keys: Option<Vec<StorageKey>>,
|
|
) {
|
|
let keys = Into::<Option<Vec<_>>>::into(keys);
|
|
let stream = match self.client.storage_changes_notification_stream(
|
|
keys.as_ref().map(|x| &**x),
|
|
None
|
|
) {
|
|
Ok(stream) => stream,
|
|
Err(err) => {
|
|
let _ = subscriber.reject(client_err(err).into());
|
|
return;
|
|
},
|
|
};
|
|
|
|
// initial values
|
|
let initial = stream::iter_result(keys
|
|
.map(|keys| {
|
|
let block = self.client.info().best_hash;
|
|
let changes = keys
|
|
.into_iter()
|
|
.map(|key| StateBackend::storage(self, Some(block.clone()).into(), key.clone())
|
|
.map(|val| (key.clone(), val))
|
|
.wait()
|
|
.unwrap_or_else(|_| (key, None))
|
|
)
|
|
.collect();
|
|
vec![Ok(Ok(StorageChangeSet { block, changes }))]
|
|
}).unwrap_or_default());
|
|
|
|
self.subscriptions.add(subscriber, |sink| {
|
|
let stream = stream
|
|
.map(|(block, changes)| Ok::<_, ()>(Ok(StorageChangeSet {
|
|
block,
|
|
changes: changes.iter()
|
|
.filter_map(|(o_sk, k, v)| if o_sk.is_none() {
|
|
Some((k.clone(),v.cloned()))
|
|
} else { None }).collect(),
|
|
})))
|
|
.compat();
|
|
|
|
sink
|
|
.sink_map_err(|e| warn!("Error sending notifications: {:?}", e))
|
|
.send_all(initial.chain(stream))
|
|
// we ignore the resulting Stream (if the first stream is over we are unsubscribed)
|
|
.map(|_| ())
|
|
});
|
|
}
|
|
|
|
fn unsubscribe_storage(
|
|
&self,
|
|
_meta: Option<crate::Metadata>,
|
|
id: SubscriptionId,
|
|
) -> RpcResult<bool> {
|
|
Ok(self.subscriptions.cancel(id))
|
|
}
|
|
}
|
|
|
|
impl<BE, Block, Client> ChildStateBackend<Block, Client> for FullState<BE, Block, Client> where
|
|
Block: BlockT + 'static,
|
|
BE: Backend<Block> + 'static,
|
|
Client: ExecutorProvider<Block> + StorageProvider<Block, BE> + HeaderBackend<Block>
|
|
+ HeaderMetadata<Block, Error = sp_blockchain::Error> + BlockchainEvents<Block>
|
|
+ CallApiAt<Block, Error = sp_blockchain::Error> + ProvideRuntimeApi<Block>
|
|
+ Send + Sync + 'static,
|
|
Client::Api: Metadata<Block, Error = sp_blockchain::Error>,
|
|
{
|
|
fn storage_keys(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
storage_key: PrefixedStorageKey,
|
|
prefix: StorageKey,
|
|
) -> FutureResult<Vec<StorageKey>> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block| {
|
|
let child_info = match ChildType::from_prefixed_key(&storage_key) {
|
|
Some((ChildType::ParentKeyId, storage_key)) => ChildInfo::new_default(storage_key),
|
|
None => return Err(sp_blockchain::Error::InvalidChildStorageKey),
|
|
};
|
|
self.client.child_storage_keys(
|
|
&BlockId::Hash(block),
|
|
&child_info,
|
|
&prefix,
|
|
)
|
|
})
|
|
.map_err(client_err)))
|
|
}
|
|
|
|
fn storage(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
storage_key: PrefixedStorageKey,
|
|
key: StorageKey,
|
|
) -> FutureResult<Option<StorageData>> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block| {
|
|
let child_info = match ChildType::from_prefixed_key(&storage_key) {
|
|
Some((ChildType::ParentKeyId, storage_key)) => ChildInfo::new_default(storage_key),
|
|
None => return Err(sp_blockchain::Error::InvalidChildStorageKey),
|
|
};
|
|
self.client.child_storage(
|
|
&BlockId::Hash(block),
|
|
&child_info,
|
|
&key,
|
|
)
|
|
})
|
|
.map_err(client_err)))
|
|
}
|
|
|
|
fn storage_hash(
|
|
&self,
|
|
block: Option<Block::Hash>,
|
|
storage_key: PrefixedStorageKey,
|
|
key: StorageKey,
|
|
) -> FutureResult<Option<Block::Hash>> {
|
|
Box::new(result(
|
|
self.block_or_best(block)
|
|
.and_then(|block| {
|
|
let child_info = match ChildType::from_prefixed_key(&storage_key) {
|
|
Some((ChildType::ParentKeyId, storage_key)) => ChildInfo::new_default(storage_key),
|
|
None => return Err(sp_blockchain::Error::InvalidChildStorageKey),
|
|
};
|
|
self.client.child_storage_hash(
|
|
&BlockId::Hash(block),
|
|
&child_info,
|
|
&key,
|
|
)
|
|
})
|
|
.map_err(client_err)))
|
|
}
|
|
}
|
|
|
|
/// Splits passed range into two subranges where:
|
|
/// - first range has at least one element in it;
|
|
/// - second range (optionally) starts at given `middle` element.
|
|
pub(crate) fn split_range(size: usize, middle: Option<usize>) -> (Range<usize>, Option<Range<usize>>) {
|
|
// check if we can filter blocks-with-changes from some (sub)range using changes tries
|
|
let range2_begin = match middle {
|
|
// some of required changes tries are pruned => use available tries
|
|
Some(middle) if middle != 0 => Some(middle),
|
|
// all required changes tries are available, but we still want values at first block
|
|
// => do 'unfiltered' read for the first block and 'filtered' for the rest
|
|
Some(_) if size > 1 => Some(1),
|
|
// range contains single element => do not use changes tries
|
|
Some(_) => None,
|
|
// changes tries are not available => do 'unfiltered' read for the whole range
|
|
None => None,
|
|
};
|
|
let range1 = 0..range2_begin.unwrap_or(size);
|
|
let range2 = range2_begin.map(|begin| begin..size);
|
|
(range1, range2)
|
|
}
|
|
|
|
fn invalid_block_range<B: BlockT>(
|
|
from: &CachedHeaderMetadata<B>,
|
|
to: &CachedHeaderMetadata<B>,
|
|
details: String,
|
|
) -> Error {
|
|
let to_string = |h: &CachedHeaderMetadata<B>| format!("{} ({:?})", h.number, h.hash);
|
|
|
|
Error::InvalidBlockRange {
|
|
from: to_string(from),
|
|
to: to_string(to),
|
|
details,
|
|
}
|
|
}
|
|
|
|
fn invalid_block<B: BlockT>(
|
|
from: B::Hash,
|
|
to: Option<B::Hash>,
|
|
details: String,
|
|
) -> Error {
|
|
Error::InvalidBlockRange {
|
|
from: format!("{:?}", from),
|
|
to: format!("{:?}", to),
|
|
details,
|
|
}
|
|
}
|