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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#![forbid(unsafe_code)]
use diem_crypto::{hash::EventAccumulatorHasher, HashValue};
use diem_types::{
account_address::AccountAddress,
account_state_blob::AccountStateBlob,
contract_event::ContractEvent,
epoch_state::EpochState,
nibble::nibble_path::NibblePath,
on_chain_config,
proof::accumulator::InMemoryAccumulator,
transaction::{TransactionStatus, Version},
};
use executor_types::{ExecutedTrees, StateComputeResult};
use std::{collections::HashMap, sync::Arc};
#[derive(Clone, Debug)]
pub struct TransactionData {
account_blobs: HashMap<AccountAddress, AccountStateBlob>,
jf_node_hashes: HashMap<NibblePath, HashValue>,
events: Vec<ContractEvent>,
status: TransactionStatus,
state_root_hash: HashValue,
event_tree: Arc<InMemoryAccumulator<EventAccumulatorHasher>>,
gas_used: u64,
txn_info_hash: Option<HashValue>,
}
impl TransactionData {
pub fn new(
account_blobs: HashMap<AccountAddress, AccountStateBlob>,
jf_node_hashes: HashMap<NibblePath, HashValue>,
events: Vec<ContractEvent>,
status: TransactionStatus,
state_root_hash: HashValue,
event_tree: Arc<InMemoryAccumulator<EventAccumulatorHasher>>,
gas_used: u64,
txn_info_hash: Option<HashValue>,
) -> Self {
TransactionData {
account_blobs,
jf_node_hashes,
events,
status,
state_root_hash,
event_tree,
gas_used,
txn_info_hash,
}
}
pub fn account_blobs(&self) -> &HashMap<AccountAddress, AccountStateBlob> {
&self.account_blobs
}
pub fn jf_node_hashes(&self) -> &HashMap<NibblePath, HashValue> {
&self.jf_node_hashes
}
pub fn events(&self) -> &[ContractEvent] {
&self.events
}
pub fn status(&self) -> &TransactionStatus {
&self.status
}
pub fn state_root_hash(&self) -> HashValue {
self.state_root_hash
}
pub fn event_root_hash(&self) -> HashValue {
self.event_tree.root_hash()
}
pub fn gas_used(&self) -> u64 {
self.gas_used
}
pub fn txn_info_hash(&self) -> Option<HashValue> {
self.txn_info_hash
}
}
#[derive(Debug, Clone)]
pub struct ProcessedVMOutput {
transaction_data: Vec<TransactionData>,
executed_trees: ExecutedTrees,
epoch_state: Option<EpochState>,
}
impl ProcessedVMOutput {
pub fn new(
transaction_data: Vec<TransactionData>,
executed_trees: ExecutedTrees,
epoch_state: Option<EpochState>,
) -> Self {
ProcessedVMOutput {
transaction_data,
executed_trees,
epoch_state,
}
}
pub fn transaction_data(&self) -> &[TransactionData] {
&self.transaction_data
}
pub fn executed_trees(&self) -> &ExecutedTrees {
&self.executed_trees
}
pub fn accu_root(&self) -> HashValue {
self.executed_trees().state_id()
}
pub fn version(&self) -> Option<Version> {
self.executed_trees().version()
}
pub fn epoch_state(&self) -> &Option<EpochState> {
&self.epoch_state
}
pub fn has_reconfiguration(&self) -> bool {
self.epoch_state.is_some()
}
pub fn compute_result(
&self,
parent_frozen_subtree_roots: Vec<HashValue>,
parent_num_leaves: u64,
) -> StateComputeResult {
let new_epoch_event_key = on_chain_config::new_epoch_event_key();
let txn_accu = self.executed_trees().txn_accumulator();
let mut compute_status = Vec::new();
let mut transaction_info_hashes = Vec::new();
let mut reconfig_events = Vec::new();
for txn_data in self.transaction_data() {
let status = txn_data.status();
compute_status.push(status.clone());
if matches!(status, TransactionStatus::Keep(_)) {
transaction_info_hashes.push(txn_data.txn_info_hash().expect("Txn to be kept."));
reconfig_events.extend(
txn_data
.events()
.iter()
.filter(|e| *e.key() == new_epoch_event_key)
.cloned(),
)
}
}
StateComputeResult::new(
self.accu_root(),
txn_accu.frozen_subtree_roots().clone(),
txn_accu.num_leaves(),
parent_frozen_subtree_roots,
parent_num_leaves,
self.epoch_state.clone(),
compute_status,
transaction_info_hashes,
reconfig_events,
)
}
}