mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
d489bd70b5
* Do not call `initialize_block` before any runtime api Before this change we always called `initialize_block` before calling into the runtime. There was already support with `skip_initialize` to skip the initialization. Almost no runtime_api requires that `initialize_block` is called before. Actually this only leads to higher execution times most of the time, because all runtime modules are initialized and this is especially expensive when the block contained a runtime upgrade. TLDR: Do not call `initialize_block` before calling a runtime api. * Change `validate_transaction` interface * Fix rpc test * Fixes and comments * Some docs
131 lines
4.3 KiB
Rust
131 lines
4.3 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// Copyright (C) 2017-2021 Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
|
|
|
|
// This program 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.
|
|
|
|
// This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
//! A method call executor interface.
|
|
|
|
use std::{panic::UnwindSafe, result, cell::RefCell};
|
|
use codec::{Encode, Decode};
|
|
use sp_runtime::{
|
|
generic::BlockId, traits::{Block as BlockT, HashFor},
|
|
};
|
|
use sp_state_machine::{
|
|
OverlayedChanges, ExecutionManager, ExecutionStrategy, StorageProof,
|
|
};
|
|
use sc_executor::{RuntimeVersion, NativeVersion};
|
|
use sp_externalities::Extensions;
|
|
use sp_core::NativeOrEncoded;
|
|
|
|
use sp_api::{ProofRecorder, StorageTransactionCache};
|
|
use crate::execution_extensions::ExecutionExtensions;
|
|
|
|
/// Executor Provider
|
|
pub trait ExecutorProvider<Block: BlockT> {
|
|
/// executor instance
|
|
type Executor: CallExecutor<Block>;
|
|
|
|
/// Get call executor reference.
|
|
fn executor(&self) -> &Self::Executor;
|
|
|
|
/// Get a reference to the execution extensions.
|
|
fn execution_extensions(&self) -> &ExecutionExtensions<Block>;
|
|
}
|
|
|
|
/// Method call executor.
|
|
pub trait CallExecutor<B: BlockT> {
|
|
/// Externalities error type.
|
|
type Error: sp_state_machine::Error;
|
|
|
|
/// The backend used by the node.
|
|
type Backend: crate::backend::Backend<B>;
|
|
|
|
/// Execute a call to a contract on top of state in a block of given hash.
|
|
///
|
|
/// No changes are made.
|
|
fn call(
|
|
&self,
|
|
id: &BlockId<B>,
|
|
method: &str,
|
|
call_data: &[u8],
|
|
strategy: ExecutionStrategy,
|
|
extensions: Option<Extensions>,
|
|
) -> Result<Vec<u8>, sp_blockchain::Error>;
|
|
|
|
/// Execute a contextual call on top of state in a block of a given hash.
|
|
///
|
|
/// No changes are made.
|
|
/// Before executing the method, passed header is installed as the current header
|
|
/// of the execution context.
|
|
fn contextual_call<
|
|
EM: Fn(
|
|
Result<NativeOrEncoded<R>, Self::Error>,
|
|
Result<NativeOrEncoded<R>, Self::Error>
|
|
) -> Result<NativeOrEncoded<R>, Self::Error>,
|
|
R: Encode + Decode + PartialEq,
|
|
NC: FnOnce() -> result::Result<R, sp_api::ApiError> + UnwindSafe,
|
|
>(
|
|
&self,
|
|
at: &BlockId<B>,
|
|
method: &str,
|
|
call_data: &[u8],
|
|
changes: &RefCell<OverlayedChanges>,
|
|
storage_transaction_cache: Option<&RefCell<
|
|
StorageTransactionCache<B, <Self::Backend as crate::backend::Backend<B>>::State>,
|
|
>>,
|
|
execution_manager: ExecutionManager<EM>,
|
|
native_call: Option<NC>,
|
|
proof_recorder: &Option<ProofRecorder<B>>,
|
|
extensions: Option<Extensions>,
|
|
) -> sp_blockchain::Result<NativeOrEncoded<R>> where ExecutionManager<EM>: Clone;
|
|
|
|
/// Extract RuntimeVersion of given block
|
|
///
|
|
/// No changes are made.
|
|
fn runtime_version(&self, id: &BlockId<B>) -> Result<RuntimeVersion, sp_blockchain::Error>;
|
|
|
|
/// Execute a call to a contract on top of given state, gathering execution proof.
|
|
///
|
|
/// No changes are made.
|
|
fn prove_at_state<S: sp_state_machine::Backend<HashFor<B>>>(
|
|
&self,
|
|
mut state: S,
|
|
overlay: &mut OverlayedChanges,
|
|
method: &str,
|
|
call_data: &[u8]
|
|
) -> Result<(Vec<u8>, StorageProof), sp_blockchain::Error> {
|
|
let trie_state = state.as_trie_backend()
|
|
.ok_or_else(||
|
|
sp_blockchain::Error::from_state(Box::new(sp_state_machine::ExecutionError::UnableToGenerateProof) as Box<_>)
|
|
)?;
|
|
self.prove_at_trie_state(trie_state, overlay, method, call_data)
|
|
}
|
|
|
|
/// Execute a call to a contract on top of given trie state, gathering execution proof.
|
|
///
|
|
/// No changes are made.
|
|
fn prove_at_trie_state<S: sp_state_machine::TrieBackendStorage<HashFor<B>>>(
|
|
&self,
|
|
trie_state: &sp_state_machine::TrieBackend<S, HashFor<B>>,
|
|
overlay: &mut OverlayedChanges,
|
|
method: &str,
|
|
call_data: &[u8]
|
|
) -> Result<(Vec<u8>, StorageProof), sp_blockchain::Error>;
|
|
|
|
/// Get runtime version if supported.
|
|
fn native_runtime_version(&self) -> Option<&NativeVersion>;
|
|
}
|