forked from polkadot-evm/frontier
-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathworker.rs
More file actions
351 lines (312 loc) · 9.39 KB
/
Copy pathworker.rs
File metadata and controls
351 lines (312 loc) · 9.39 KB
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
// This file is part of Frontier.
//
// Copyright (c) 2020-2022 Parity Technologies (UK) Ltd.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use std::{pin::Pin, sync::Arc, time::Duration};
use futures::{
prelude::*,
task::{Context, Poll},
};
use futures_timer::Delay;
use log::debug;
// Substrate
use sc_client_api::{
backend::{Backend, StorageProvider},
client::ImportNotifications,
};
use sp_api::ProvideRuntimeApi;
use sp_blockchain::HeaderBackend;
use sp_runtime::traits::{Block as BlockT, Header as HeaderT};
// Frontier
use fc_storage::OverrideHandle;
use fp_rpc::EthereumRuntimeRPCApi;
#[derive(Copy, Clone, Eq, PartialEq)]
pub enum SyncStrategy {
Normal,
Parachain,
}
pub struct MappingSyncWorker<Block: BlockT, C, BE> {
import_notifications: ImportNotifications<Block>,
timeout: Duration,
inner_delay: Option<Delay>,
client: Arc<C>,
substrate_backend: Arc<BE>,
overrides: Arc<OverrideHandle<Block>>,
frontier_backend: Arc<fc_db::Backend<Block>>,
have_next: bool,
retry_times: usize,
sync_from: <Block::Header as HeaderT>::Number,
strategy: SyncStrategy,
pubsub_notification_sinks:
Arc<crate::EthereumBlockNotificationSinks<crate::EthereumBlockNotification<Block>>>,
}
impl<Block: BlockT, C, BE> Unpin for MappingSyncWorker<Block, C, BE> {}
impl<Block: BlockT, C, BE> MappingSyncWorker<Block, C, BE> {
pub fn new(
import_notifications: ImportNotifications<Block>,
timeout: Duration,
client: Arc<C>,
substrate_backend: Arc<BE>,
overrides: Arc<OverrideHandle<Block>>,
frontier_backend: Arc<fc_db::Backend<Block>>,
retry_times: usize,
sync_from: <Block::Header as HeaderT>::Number,
strategy: SyncStrategy,
pubsub_notification_sinks: Arc<
crate::EthereumBlockNotificationSinks<crate::EthereumBlockNotification<Block>>,
>,
) -> Self {
Self {
import_notifications,
timeout,
inner_delay: None,
client,
substrate_backend,
overrides,
frontier_backend,
have_next: true,
retry_times,
sync_from,
strategy,
pubsub_notification_sinks,
}
}
}
impl<Block: BlockT, C, BE> Stream for MappingSyncWorker<Block, C, BE>
where
C: ProvideRuntimeApi<Block>,
C::Api: EthereumRuntimeRPCApi<Block>,
C: HeaderBackend<Block> + StorageProvider<Block, BE>,
BE: Backend<Block>,
{
type Item = ();
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<()>> {
let mut fire = false;
loop {
match Stream::poll_next(Pin::new(&mut self.import_notifications), cx) {
Poll::Pending => break,
Poll::Ready(Some(_)) => {
fire = true;
}
Poll::Ready(None) => return Poll::Ready(None),
}
}
let timeout = self.timeout;
let inner_delay = self.inner_delay.get_or_insert_with(|| Delay::new(timeout));
match Future::poll(Pin::new(inner_delay), cx) {
Poll::Pending => (),
Poll::Ready(()) => {
fire = true;
}
}
if self.have_next {
fire = true;
}
if fire {
self.inner_delay = None;
match crate::sync_blocks(
self.client.as_ref(),
self.substrate_backend.as_ref(),
self.overrides.clone(),
self.frontier_backend.as_ref(),
self.retry_times,
self.sync_from,
self.strategy,
self.pubsub_notification_sinks.clone(),
) {
Ok(have_next) => {
self.have_next = have_next;
Poll::Ready(Some(()))
}
Err(e) => {
self.have_next = false;
debug!(target: "mapping-sync", "Syncing failed with error {:?}, retrying.", e);
Poll::Ready(Some(()))
}
}
} else {
Poll::Pending
}
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::{EthereumBlockNotification, EthereumBlockNotificationSinks};
use fc_storage::{OverrideHandle, SchemaV3Override, StorageOverride};
use fp_storage::{EthereumStorageSchema, PALLET_ETHEREUM_SCHEMA};
use futures::executor;
use sc_block_builder::BlockBuilderProvider;
use sc_client_api::BlockchainEvents;
use sp_api::Encode;
use sp_consensus::BlockOrigin;
use sp_core::{H160, H256, U256};
use sp_runtime::{generic::Header, traits::BlakeTwo256, Digest};
use std::collections::BTreeMap;
use substrate_test_runtime_client::{
ClientBlockImportExt, DefaultTestClientBuilderExt, TestClientBuilder, TestClientBuilderExt,
};
use tempfile::tempdir;
type OpaqueBlock = sp_runtime::generic::Block<
Header<u64, BlakeTwo256>,
substrate_test_runtime_client::runtime::Extrinsic,
>;
fn ethereum_digest() -> Digest {
let partial_header = ethereum::PartialHeader {
parent_hash: H256::random(),
beneficiary: H160::default(),
state_root: H256::default(),
receipts_root: H256::default(),
logs_bloom: ethereum_types::Bloom::default(),
difficulty: U256::zero(),
number: U256::zero(),
gas_limit: U256::zero(),
gas_used: U256::zero(),
timestamp: 0u64,
extra_data: Vec::new(),
mix_hash: H256::default(),
nonce: ethereum_types::H64::default(),
};
let ethereum_block = ethereum::Block::new(partial_header, vec![], vec![]);
Digest {
logs: vec![sp_runtime::generic::DigestItem::Consensus(
fp_consensus::FRONTIER_ENGINE_ID,
fp_consensus::PostLog::Hashes(fp_consensus::Hashes::from_block(ethereum_block))
.encode(),
)],
}
}
#[tokio::test]
async fn block_import_notification_works() {
let tmp = tempdir().expect("create a temporary directory");
let builder = TestClientBuilder::new().add_extra_storage(
PALLET_ETHEREUM_SCHEMA.to_vec(),
Encode::encode(&EthereumStorageSchema::V3),
);
// Backend
let backend = builder.backend();
// Client
let (client, _) =
builder.build_with_native_executor::<frontier_template_runtime::RuntimeApi, _>(None);
let mut client = Arc::new(client);
// Overrides
let mut overrides_map = BTreeMap::new();
overrides_map.insert(
EthereumStorageSchema::V3,
Box::new(SchemaV3Override::new(client.clone())) as Box<dyn StorageOverride<_>>,
);
let overrides = Arc::new(OverrideHandle {
schemas: overrides_map,
fallback: Box::new(SchemaV3Override::new(client.clone())),
});
let frontier_backend = Arc::new(
fc_db::Backend::<OpaqueBlock>::new(
client.clone(),
&fc_db::DatabaseSettings {
source: sc_client_db::DatabaseSource::RocksDb {
path: tmp.path().to_path_buf(),
cache_size: 0,
},
},
)
.expect("frontier backend"),
);
let notification_stream = client.clone().import_notification_stream();
let client_inner = client.clone();
let pubsub_notification_sinks: EthereumBlockNotificationSinks<
EthereumBlockNotification<OpaqueBlock>,
> = Default::default();
let pubsub_notification_sinks = Arc::new(pubsub_notification_sinks);
let pubsub_notification_sinks_inner = pubsub_notification_sinks.clone();
tokio::task::spawn(async move {
MappingSyncWorker::new(
notification_stream,
Duration::new(6, 0),
client_inner,
backend,
overrides.clone(),
frontier_backend,
3,
0,
SyncStrategy::Normal,
pubsub_notification_sinks_inner,
)
.for_each(|()| future::ready(()))
.await
});
{
// A new mpsc channel
let (inner_sink, mut block_notification_stream) =
sc_utils::mpsc::tracing_unbounded("pubsub_notification_stream", 100_000);
{
// This scope represents a call to eth_subscribe, where it briefly locks the pool
// to push the new sink.
let sinks = &mut pubsub_notification_sinks.lock();
// Push to sink pool
sinks.push(inner_sink);
}
// Let's produce a block, which we expect to trigger a channel message
let mut builder = client.new_block(ethereum_digest()).unwrap();
let block = builder.build().unwrap().block;
let block_hash = block.header.hash();
client.import(BlockOrigin::Own, block).await;
// Receive
assert_eq!(
block_notification_stream
.next()
.await
.expect("a message")
.hash,
block_hash
);
}
{
// Assert we still hold a sink in the pool after switching scopes
let sinks = pubsub_notification_sinks.lock();
assert_eq!(sinks.len(), 1);
}
{
// Create yet another mpsc channel
let (inner_sink, mut block_notification_stream) =
sc_utils::mpsc::tracing_unbounded("pubsub_notification_stream", 100_000);
{
let sinks = &mut pubsub_notification_sinks.lock();
// Push it
sinks.push(inner_sink);
// Now we expect two sinks in the pool
assert_eq!(sinks.len(), 2);
}
// Let's produce another block, this not only triggers a message in the new channel
// but also removes the closed channels from the pool.
let mut builder = client.new_block(ethereum_digest()).unwrap();
let block = builder.build().unwrap().block;
let block_hash = block.header.hash();
client.import(BlockOrigin::Own, block).await;
// Receive
assert_eq!(
block_notification_stream
.next()
.await
.expect("a message")
.hash,
block_hash
);
// So we expect the pool to hold one sink only after cleanup
let sinks = &mut pubsub_notification_sinks.lock();
assert_eq!(sinks.len(), 1);
}
}
}