use crate::executor::{RuntimeVersion, RuntimeVersionOf};
use std::cell::RefCell;
use subsoil::core::traits::CallContext;
use subsoil::externalities::Extensions;
use subsoil::runtime::traits::{Block as BlockT, HashingFor};
use subsoil::state_machine::{OverlayedChanges, StorageProof};
use super::execution_extensions::ExecutionExtensions;
use subsoil::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: subsoil::state_machine::Error;
type Backend: super::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>, crate::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>,
) -> crate::blockchain::Result<Vec<u8>>;
fn runtime_version(&self, at_hash: B::Hash)
-> Result<RuntimeVersion, crate::blockchain::Error>;
fn prove_execution(
&self,
at_hash: B::Hash,
method: &str,
call_data: &[u8],
) -> Result<(Vec<u8>, StorageProof), crate::blockchain::Error>;
}