1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
use sc_executor::{RuntimeVersion, RuntimeVersionOf};
use sp_runtime::traits::Block as BlockT;
use sp_state_machine::{ExecutionStrategy, OverlayedChanges, StorageProof};
use std::cell::RefCell;
use crate::execution_extensions::ExecutionExtensions;
use sp_api::{ExecutionContext, ProofRecorder, StorageTransactionCache};
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],
strategy: ExecutionStrategy,
) -> Result<Vec<u8>, sp_blockchain::Error>;
fn contextual_call(
&self,
at_hash: B::Hash,
method: &str,
call_data: &[u8],
changes: &RefCell<OverlayedChanges>,
storage_transaction_cache: Option<
&RefCell<
StorageTransactionCache<B, <Self::Backend as crate::backend::Backend<B>>::State>,
>,
>,
proof_recorder: &Option<ProofRecorder<B>>,
context: ExecutionContext,
) -> sp_blockchain::Result<Vec<u8>>;
fn runtime_version(&self, at_hash: B::Hash) -> 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>;
}