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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
use crate::{Config, TxPool};
use anyhow::anyhow;
use fuel_core_interfaces::block_importer::ImportBlockBroadcast;
use fuel_core_interfaces::txpool::{self, TxPoolDb, TxPoolMpsc, TxStatusBroadcast};
use std::sync::Arc;
use tokio::sync::{broadcast, mpsc, Mutex, RwLock};
use tokio::task::JoinHandle;
pub struct ServiceBuilder {
sender: txpool::Sender,
receiver: mpsc::Receiver<TxPoolMpsc>,
config: Config,
broadcast: broadcast::Sender<TxStatusBroadcast>,
db: Option<Box<dyn TxPoolDb>>,
import_block_events: Option<broadcast::Receiver<ImportBlockBroadcast>>,
}
impl Default for ServiceBuilder {
fn default() -> Self {
Self::new()
}
}
impl ServiceBuilder {
pub fn new() -> Self {
let (sender, receiver) = mpsc::channel(100);
let (broadcast, _receiver) = broadcast::channel(100);
Self {
sender: txpool::Sender::new(sender),
receiver,
db: None,
broadcast,
config: Default::default(),
import_block_events: None,
}
}
pub fn sender(&self) -> &txpool::Sender {
&self.sender
}
pub fn subscribe(&self) -> broadcast::Receiver<TxStatusBroadcast> {
self.broadcast.subscribe()
}
pub fn db(&mut self, db: Box<dyn TxPoolDb>) -> &mut Self {
self.db = Some(db);
self
}
pub fn import_block_event(
&mut self,
import_block_event: broadcast::Receiver<ImportBlockBroadcast>,
) -> &mut Self {
self.import_block_events = Some(import_block_event);
self
}
pub fn config(&mut self, config: Config) -> &mut Self {
self.config = config;
self
}
pub fn build(self) -> anyhow::Result<Service> {
if self.db.is_none() || self.import_block_events.is_none() {
return Err(anyhow!("One of context items are not set"));
}
let service = Service::new(
self.sender,
self.broadcast.clone(),
Context {
receiver: self.receiver,
broadcast: self.broadcast,
db: Arc::new(self.db.unwrap()),
import_block_events: self.import_block_events.unwrap(),
config: self.config,
},
)?;
Ok(service)
}
}
pub struct Context {
pub config: Config,
pub broadcast: broadcast::Sender<TxStatusBroadcast>,
pub db: Arc<Box<dyn TxPoolDb>>,
pub receiver: mpsc::Receiver<TxPoolMpsc>,
pub import_block_events: broadcast::Receiver<ImportBlockBroadcast>,
}
impl Context {
pub async fn run(mut self) -> Self {
let txpool = Arc::new(RwLock::new(TxPool::new(self.config.clone())));
loop {
tokio::select! {
event = self.receiver.recv() => {
if matches!(event,Some(TxPoolMpsc::Stop) | None) {
break;
}
let broadcast = self.broadcast.clone();
let db = self.db.clone();
let txpool = txpool.clone();
tokio::spawn( async move {
let txpool = txpool.as_ref();
match event.unwrap() {
TxPoolMpsc::Includable { response } => {
let _ = response.send(TxPool::includable(txpool).await);
}
TxPoolMpsc::Insert { txs, response } => {
let _ = response.send(TxPool::insert(txpool,db.as_ref().as_ref(),broadcast, txs).await);
}
TxPoolMpsc::Find { ids, response } => {
let _ = response.send(TxPool::find(txpool,&ids).await);
}
TxPoolMpsc::FindOne { id, response } => {
let _ = response.send(TxPool::find_one(txpool,&id).await);
}
TxPoolMpsc::FindDependent { ids, response } => {
let _ = response.send(TxPool::find_dependent(txpool,&ids).await);
}
TxPoolMpsc::FilterByNegative { ids, response } => {
let _ = response.send(TxPool::filter_by_negative(txpool,&ids).await);
}
TxPoolMpsc::Remove { ids, response } => {
let _ = response.send(TxPool::remove(txpool,broadcast,&ids).await);
}
TxPoolMpsc::Stop => {}
}});
}
_block_updated = self.import_block_events.recv() => {
let txpool = txpool.clone();
tokio::spawn( async move {
TxPool::block_update(txpool.as_ref()).await
});
}
}
}
self
}
}
pub struct Service {
sender: txpool::Sender,
broadcast: broadcast::Sender<TxStatusBroadcast>,
join: Mutex<Option<JoinHandle<Context>>>,
context: Arc<Mutex<Option<Context>>>,
}
impl Service {
pub fn new(
sender: txpool::Sender,
broadcast: broadcast::Sender<TxStatusBroadcast>,
context: Context,
) -> anyhow::Result<Self> {
Ok(Self {
sender,
broadcast,
join: Mutex::new(None),
context: Arc::new(Mutex::new(Some(context))),
})
}
pub async fn start(&self) -> anyhow::Result<()> {
let mut join = self.join.lock().await;
if join.is_none() {
if let Some(context) = self.context.lock().await.take() {
*join = Some(tokio::spawn(async { context.run().await }));
Ok(())
} else {
Err(anyhow!("Starting TxPool service that is stopping"))
}
} else {
Err(anyhow!("Service TxPool is already started"))
}
}
pub async fn stop(&self) -> Option<JoinHandle<()>> {
let mut join = self.join.lock().await;
let join_handle = join.take();
if let Some(join_handle) = join_handle {
let _ = self.sender.send(TxPoolMpsc::Stop).await;
let context = self.context.clone();
Some(tokio::spawn(async move {
let ret = join_handle.await;
*context.lock().await = ret.ok();
}))
} else {
None
}
}
pub fn subscribe_ch(&self) -> broadcast::Receiver<TxStatusBroadcast> {
self.broadcast.subscribe()
}
pub fn sender(&self) -> &txpool::Sender {
&self.sender
}
}
#[cfg(any(test))]
pub mod tests {
use super::*;
use fuel_core_interfaces::{
db::helpers::*,
txpool::{Error as TxpoolError, TxStatus},
};
use tokio::sync::oneshot;
#[tokio::test]
async fn test_start_stop() {
let config = Config::default();
let db = Box::new(DummyDb::filled());
let (bs, _br) = broadcast::channel(10);
let mut builder = ServiceBuilder::new();
builder
.config(config)
.db(db)
.import_block_event(bs.subscribe());
let service = builder.build().unwrap();
assert!(service.start().await.is_ok(), "start service");
assert!(service.start().await.is_err(), "double start should fail");
let stop_handle = service.stop().await;
assert!(stop_handle.is_some());
let _ = stop_handle.unwrap().await;
assert!(service.start().await.is_ok(), "Should start again");
}
#[tokio::test]
async fn test_filter_by_negative() {
let config = Config::default();
let db = Box::new(DummyDb::filled());
let (_bs, br) = broadcast::channel(10);
let tx1_hash = *TX_ID1;
let tx2_hash = *TX_ID2;
let tx3_hash = *TX_ID3;
let tx1 = Arc::new(DummyDb::dummy_tx(tx1_hash));
let tx2 = Arc::new(DummyDb::dummy_tx(tx2_hash));
let mut builder = ServiceBuilder::new();
builder.config(config).db(db).import_block_event(br);
let service = builder.build().unwrap();
service.start().await.ok();
let (response, receiver) = oneshot::channel();
let _ = service
.sender()
.send(TxPoolMpsc::Insert {
txs: vec![tx1, tx2],
response,
})
.await;
let out = receiver.await.unwrap();
assert_eq!(out.len(), 2, "Should be len 2:{:?}", out);
assert!(out[0].is_ok(), "Tx1 should be OK, got err:{:?}", out);
assert!(out[1].is_ok(), "Tx2 should be OK, got err:{:?}", out);
let (response, receiver) = oneshot::channel();
let _ = service
.sender()
.send(TxPoolMpsc::FilterByNegative {
ids: vec![tx1_hash, tx3_hash],
response,
})
.await;
let out = receiver.await.unwrap();
assert_eq!(out.len(), 1, "Should be len 1:{:?}", out);
assert_eq!(out[0], tx3_hash, "Found tx id match{:?}", out);
service.stop().await.unwrap().await.unwrap();
}
#[tokio::test]
async fn test_find() {
let config = Config::default();
let db = Box::new(DummyDb::filled());
let (_bs, br) = broadcast::channel(10);
let tx1_hash = *TX_ID1;
let tx2_hash = *TX_ID2;
let tx3_hash = *TX_ID3;
let tx1 = Arc::new(DummyDb::dummy_tx(tx1_hash));
let tx2 = Arc::new(DummyDb::dummy_tx(tx2_hash));
let mut builder = ServiceBuilder::new();
builder.config(config).db(db).import_block_event(br);
let service = builder.build().unwrap();
service.start().await.ok();
let (response, receiver) = oneshot::channel();
let _ = service
.sender()
.send(TxPoolMpsc::Insert {
txs: vec![tx1, tx2],
response,
})
.await;
let out = receiver.await.unwrap();
assert_eq!(out.len(), 2, "Should be len 2:{:?}", out);
assert!(out[0].is_ok(), "Tx1 should be OK, got err:{:?}", out);
assert!(out[1].is_ok(), "Tx2 should be OK, got err:{:?}", out);
let (response, receiver) = oneshot::channel();
let _ = service
.sender()
.send(TxPoolMpsc::Find {
ids: vec![tx1_hash, tx3_hash],
response,
})
.await;
let out = receiver.await.unwrap();
assert_eq!(out.len(), 2, "Should be len 2:{:?}", out);
assert!(out[0].is_some(), "Tx1 should be some:{:?}", out);
let id = out[0].as_ref().unwrap().id();
assert_eq!(id, tx1_hash, "Found tx id match{:?}", out);
assert!(out[1].is_none(), "Tx3 should not be found:{:?}", out);
service.stop().await.unwrap().await.unwrap();
}
#[tokio::test]
async fn simple_insert_removal_subscription() {
let config = Config::default();
let db = Box::new(DummyDb::filled());
let (_bs, br) = broadcast::channel(10);
let tx1_hash = *TX_ID1;
let tx2_hash = *TX_ID2;
let tx1 = Arc::new(DummyDb::dummy_tx(tx1_hash));
let tx2 = Arc::new(DummyDb::dummy_tx(tx2_hash));
let mut builder = ServiceBuilder::new();
builder.config(config).db(db).import_block_event(br);
let service = builder.build().unwrap();
service.start().await.ok();
let mut subscribe = service.subscribe_ch();
let (response, receiver) = oneshot::channel();
let _ = service
.sender()
.send(TxPoolMpsc::Insert {
txs: vec![tx1.clone(), tx2.clone()],
response,
})
.await;
let out = receiver.await.unwrap();
assert!(out[0].is_ok(), "Tx1 should be OK, got err:{:?}", out);
assert!(out[1].is_ok(), "Tx2 should be OK, got err:{:?}", out);
assert_eq!(
subscribe.try_recv(),
Ok(TxStatusBroadcast {
tx: tx1.clone(),
status: TxStatus::Submitted,
}),
"First added should be tx1"
);
assert_eq!(
subscribe.try_recv(),
Ok(TxStatusBroadcast {
tx: tx2.clone(),
status: TxStatus::Submitted,
}),
"Second added should be tx2"
);
let (response, receiver) = oneshot::channel();
let _ = service
.sender()
.send(TxPoolMpsc::Remove {
ids: vec![tx1_hash, tx2_hash],
response,
})
.await;
let _rem = receiver.await.unwrap();
assert_eq!(
tokio::time::timeout(std::time::Duration::from_secs(2), subscribe.recv()).await,
Ok(Ok(TxStatusBroadcast {
tx: tx1,
status: TxStatus::SqueezedOut {
reason: TxpoolError::Removed
}
})),
"First removed should be tx1"
);
assert_eq!(
tokio::time::timeout(std::time::Duration::from_secs(2), subscribe.recv()).await,
Ok(Ok(TxStatusBroadcast {
tx: tx2,
status: TxStatus::SqueezedOut {
reason: TxpoolError::Removed
}
})),
"Second removed should be tx2"
);
}
}