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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
mod config;
mod db;
mod executive_tracer;
mod import;
mod noop_tracer;
mod types;
pub use self::config::Config;
pub use self::db::TraceDB;
pub use self::noop_tracer::{NoopTracer, NoopVMTracer};
pub use self::executive_tracer::{ExecutiveTracer, ExecutiveVMTracer};
pub use self::import::ImportRequest;
pub use self::localized::LocalizedTrace;
pub use self::types::{filter, flat, localized, trace, Tracing};
pub use self::types::error::Error as TraceError;
pub use self::types::trace::{VMTrace, VMOperation, VMExecutedOperation, MemoryDiff, StorageDiff, RewardType};
pub use self::types::flat::{FlatTrace, FlatTransactionTraces, FlatBlockTraces};
pub use self::types::filter::{Filter, AddressesFilter};
use ethereum_types::{H256, U256, Address};
use kvdb::DBTransaction;
use bytes::Bytes;
use self::trace::{Call, Create};
use vm::ActionParams;
use header::BlockNumber;
pub trait Tracer: Send {
type Output;
fn prepare_trace_call(&self, params: &ActionParams) -> Option<Call>;
fn prepare_trace_create(&self, params: &ActionParams) -> Option<Create>;
fn prepare_trace_output(&self) -> Option<Bytes>;
fn trace_call(
&mut self,
call: Option<Call>,
gas_used: U256,
output: Option<Bytes>,
subs: Vec<Self::Output>,
);
fn trace_create(
&mut self,
create: Option<Create>,
gas_used: U256,
code: Option<Bytes>,
address: Address,
subs: Vec<Self::Output>
);
fn trace_failed_call(&mut self, call: Option<Call>, subs: Vec<Self::Output>, error: TraceError);
fn trace_failed_create(&mut self, create: Option<Create>, subs: Vec<Self::Output>, error: TraceError);
fn trace_suicide(&mut self, address: Address, balance: U256, refund_address: Address);
fn trace_reward(&mut self, author: Address, value: U256, reward_type: RewardType);
fn subtracer(&self) -> Self where Self: Sized;
fn drain(self) -> Vec<Self::Output>;
}
pub trait VMTracer: Send {
type Output;
fn trace_next_instruction(&mut self, _pc: usize, _instruction: u8, _current_gas: U256) -> bool { false }
fn trace_prepare_execute(&mut self, _pc: usize, _instruction: u8, _gas_cost: U256) {}
fn trace_executed(&mut self, _gas_used: U256, _stack_push: &[U256], _mem_diff: Option<(usize, &[u8])>, _store_diff: Option<(U256, U256)>) {}
fn prepare_subtrace(&self, code: &[u8]) -> Self where Self: Sized;
fn done_subtrace(&mut self, sub: Self) where Self: Sized;
fn drain(self) -> Option<Self::Output>;
}
pub trait DatabaseExtras {
fn block_hash(&self, block_number: BlockNumber) -> Option<H256>;
fn transaction_hash(&self, block_number: BlockNumber, tx_position: usize) -> Option<H256>;
}
pub trait Database {
fn tracing_enabled(&self) -> bool;
fn import(&self, batch: &mut DBTransaction, request: ImportRequest);
fn trace(&self, block_number: BlockNumber, tx_position: usize, trace_position: Vec<usize>) -> Option<LocalizedTrace>;
fn transaction_traces(&self, block_number: BlockNumber, tx_position: usize) -> Option<Vec<LocalizedTrace>>;
fn block_traces(&self, block_number: BlockNumber) -> Option<Vec<LocalizedTrace>>;
fn filter(&self, filter: &Filter) -> Vec<LocalizedTrace>;
}