use sc_executor::{RuntimeVersion, RuntimeVersionOf};
use sp_core::traits::CallContext;
use sp_externalities::Extensions;
use sp_runtime::traits::{Block as BlockT, HashingFor};
use sp_state_machine::{OverlayedChanges, StorageProof};
use std::cell::RefCell;
use crate::execution_extensions::ExecutionExtensions;
use sp_api::ProofRecorder;
pub trait ExecutorProvider<Block: BlockT> {
type Executor: CallExecutor<Block>;
fn executor(&self) -> &Self::Executor;
fn execution_extensions(&self) -> &ExecutionExtensions<Block>;
}
pub trait CallExecutor<B: BlockT>: RuntimeVersionOf {
type Error: sp_state_machine::Error;
type Backend: crate::backend::Backend<B>;
fn execution_extensions(&self) -> &ExecutionExtensions<B>;
fn call(
&self,
at_hash: B::Hash,
method: &str,
call_data: &[u8],
context: CallContext,
) -> Result<Vec<u8>, sp_blockchain::Error>;
fn contextual_call(
&self,
at_hash: B::Hash,
method: &str,
call_data: &[u8],
changes: &RefCell<OverlayedChanges<HashingFor<B>>>,
proof_recorder: &Option<ProofRecorder<B>>,
call_context: CallContext,
extensions: &RefCell<Extensions>,
) -> sp_blockchain::Result<Vec<u8>>;
fn runtime_version(
&self,
at_hash: B::Hash,
call_context: CallContext,
) -> Result<RuntimeVersion, sp_blockchain::Error>;
fn prove_execution(
&self,
at_hash: B::Hash,
method: &str,
call_data: &[u8],
) -> Result<(Vec<u8>, StorageProof), sp_blockchain::Error>;
}