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
418
419
420
421
422
423
#![forbid(unsafe_code)]
use std::{fmt, time::Duration};
use async_trait::async_trait;
use diem_types::{account_address::AccountAddress, transaction::Transaction};
use futures::{
channel::{mpsc, oneshot},
stream::FusedStream,
Stream,
};
use serde::{Deserialize, Serialize};
use std::{
pin::Pin,
task::{Context, Poll},
};
use thiserror::Error;
use tokio::time::timeout;
const MEMPOOL_NOTIFICATION_CHANNEL_SIZE: usize = 1;
#[derive(Clone, Debug, Deserialize, Error, PartialEq, Serialize)]
pub enum Error {
#[error("Commit notification failed: {0}")]
CommitNotificationError(String),
#[error("Hit the timeout waiting for mempool to respond to the notification!")]
TimeoutWaitingForMempool,
#[error("Unexpected error encountered: {0}")]
UnexpectedErrorEncountered(String),
}
#[async_trait]
pub trait MempoolNotificationSender: Send {
async fn notify_new_commit(
&self,
committed_transactions: Vec<Transaction>,
block_timestamp_usecs: u64,
notification_timeout_ms: u64,
) -> Result<(), Error>;
}
pub fn new_mempool_notifier_listener_pair() -> (MempoolNotifier, MempoolNotificationListener) {
let (notification_sender, notification_receiver) =
mpsc::channel(MEMPOOL_NOTIFICATION_CHANNEL_SIZE);
let mempool_notifier = MempoolNotifier::new(notification_sender);
let mempool_listener = MempoolNotificationListener::new(notification_receiver);
(mempool_notifier, mempool_listener)
}
#[derive(Debug)]
pub struct MempoolNotifier {
notification_sender: mpsc::Sender<MempoolCommitNotification>,
}
impl MempoolNotifier {
fn new(notification_sender: mpsc::Sender<MempoolCommitNotification>) -> Self {
Self {
notification_sender,
}
}
}
#[async_trait]
impl MempoolNotificationSender for MempoolNotifier {
async fn notify_new_commit(
&self,
transactions: Vec<Transaction>,
block_timestamp_usecs: u64,
notification_timeout_ms: u64,
) -> Result<(), Error> {
let user_transactions: Vec<CommittedTransaction> = transactions
.iter()
.filter_map(|transaction| match transaction {
Transaction::UserTransaction(signed_txn) => Some(CommittedTransaction {
sender: signed_txn.sender(),
sequence_number: signed_txn.sequence_number(),
}),
_ => None,
})
.collect();
if user_transactions.is_empty() {
return Ok(());
}
let (callback, callback_receiver) = oneshot::channel();
let commit_notification = MempoolCommitNotification {
transactions: user_transactions,
block_timestamp_usecs,
callback,
};
if let Err(error) = self
.notification_sender
.clone()
.try_send(commit_notification)
{
return Err(Error::CommitNotificationError(format!(
"Failed to notify mempool of committed transactions! Error: {:?}",
error
)));
}
if let Ok(response) = timeout(
Duration::from_millis(notification_timeout_ms),
callback_receiver,
)
.await
{
match response {
Ok(MempoolNotificationResponse::Success) => Ok(()),
Err(error) => Err(Error::UnexpectedErrorEncountered(format!("{:?}", error))),
}
} else {
Err(Error::TimeoutWaitingForMempool)
}
}
}
#[derive(Debug)]
pub struct MempoolNotificationListener {
notification_receiver: mpsc::Receiver<MempoolCommitNotification>,
}
impl MempoolNotificationListener {
fn new(notification_receiver: mpsc::Receiver<MempoolCommitNotification>) -> Self {
MempoolNotificationListener {
notification_receiver,
}
}
pub async fn ack_commit_notification(
&self,
mempool_commit_notification: MempoolCommitNotification,
) -> Result<(), Error> {
mempool_commit_notification
.callback
.send(MempoolNotificationResponse::Success)
.map_err(|error| Error::UnexpectedErrorEncountered(format!("{:?}", error)))
}
}
impl Stream for MempoolNotificationListener {
type Item = MempoolCommitNotification;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
Pin::new(&mut self.get_mut().notification_receiver).poll_next(cx)
}
}
impl FusedStream for MempoolNotificationListener {
fn is_terminated(&self) -> bool {
self.notification_receiver.is_terminated()
}
}
#[derive(Debug)]
pub struct MempoolCommitNotification {
pub transactions: Vec<CommittedTransaction>,
pub block_timestamp_usecs: u64, pub(crate) callback: oneshot::Sender<MempoolNotificationResponse>,
}
impl fmt::Display for MempoolCommitNotification {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"MempoolCommitNotification [block_timestamp_usecs: {}, txns: {:?}]",
self.block_timestamp_usecs, self.transactions
)
}
}
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct CommittedTransaction {
pub sender: AccountAddress,
pub sequence_number: u64,
}
impl fmt::Display for CommittedTransaction {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}:{}", self.sender, self.sequence_number,)
}
}
#[derive(Debug)]
enum MempoolNotificationResponse {
Success,
}
#[cfg(test)]
mod tests {
use crate::{CommittedTransaction, Error, MempoolNotificationSender};
use diem_crypto::{ed25519::Ed25519PrivateKey, HashValue, PrivateKey, SigningKey, Uniform};
use diem_types::{
account_address::AccountAddress,
block_metadata::BlockMetadata,
chain_id::ChainId,
transaction::{
ChangeSet, RawTransaction, Script, SignedTransaction, Transaction, TransactionPayload,
WriteSetPayload,
},
write_set::WriteSetMut,
};
use futures::{executor::block_on, FutureExt, StreamExt};
use tokio::runtime::{Builder, Runtime};
#[test]
fn test_mempool_not_listening() {
let runtime = create_runtime();
let _enter = runtime.enter();
let (mempool_notifier, mut mempool_listener) = crate::new_mempool_notifier_listener_pair();
let notify_result =
block_on(mempool_notifier.notify_new_commit(vec![create_user_transaction()], 0, 1000));
assert!(matches!(
notify_result,
Err(Error::TimeoutWaitingForMempool)
));
mempool_listener.notification_receiver.close();
let notify_result =
block_on(mempool_notifier.notify_new_commit(vec![create_user_transaction()], 0, 1000));
assert!(matches!(
notify_result,
Err(Error::CommitNotificationError(_))
));
}
#[test]
fn test_zero_timeout() {
let runtime = create_runtime();
let _enter = runtime.enter();
let (mempool_notifier, _mempool_listener) = crate::new_mempool_notifier_listener_pair();
let notify_result =
block_on(mempool_notifier.notify_new_commit(vec![create_user_transaction()], 0, 0));
assert!(matches!(
notify_result,
Err(Error::TimeoutWaitingForMempool)
));
}
#[test]
fn test_no_transactions() {
let runtime = create_runtime();
let _enter = runtime.enter();
let (mempool_notifier, _mempool_listener) = crate::new_mempool_notifier_listener_pair();
let notify_result = block_on(mempool_notifier.notify_new_commit(vec![], 0, 1000));
notify_result.unwrap();
}
#[test]
fn test_transaction_filtering() {
let runtime = create_runtime();
let _enter = runtime.enter();
let (mempool_notifier, _mempool_listener) = crate::new_mempool_notifier_listener_pair();
let mut transactions = vec![];
for _ in 0..5 {
transactions.push(create_block_metadata_transaction())
}
for _ in 0..5 {
transactions.push(create_genesis_transaction())
}
let notify_result =
block_on(mempool_notifier.notify_new_commit(transactions.clone(), 0, 1000));
notify_result.unwrap();
transactions.push(create_user_transaction());
let notify_result = block_on(mempool_notifier.notify_new_commit(transactions, 0, 1000));
assert!(matches!(
notify_result,
Err(Error::TimeoutWaitingForMempool)
));
}
#[test]
fn test_commit_notification_arrives() {
let runtime = create_runtime();
let _enter = runtime.enter();
let (mempool_notifier, mut mempool_listener) = crate::new_mempool_notifier_listener_pair();
let user_transaction = create_user_transaction();
let transactions = vec![user_transaction.clone()];
let block_timestamp_usecs = 101;
let _ =
block_on(mempool_notifier.notify_new_commit(transactions, block_timestamp_usecs, 1000));
match mempool_listener.select_next_some().now_or_never() {
Some(mempool_commit_notification) => match user_transaction {
Transaction::UserTransaction(signed_transaction) => {
assert_eq!(
mempool_commit_notification.transactions,
vec![CommittedTransaction {
sender: signed_transaction.sender(),
sequence_number: signed_transaction.sequence_number(),
}]
);
assert_eq!(
mempool_commit_notification.block_timestamp_usecs,
block_timestamp_usecs
);
}
result => panic!("Expected user transaction but got: {:?}", result),
},
result => panic!("Expected mempool commit notification but got: {:?}", result),
};
}
#[test]
fn test_mempool_success_response() {
let runtime = create_runtime();
let _enter = runtime.enter();
let (mempool_notifier, mut mempool_listener) = crate::new_mempool_notifier_listener_pair();
let _handler = std::thread::spawn(move || loop {
if let Some(mempool_commit_notification) =
mempool_listener.select_next_some().now_or_never()
{
let _result =
block_on(mempool_listener.ack_commit_notification(mempool_commit_notification));
}
});
let notify_result = block_on(mempool_notifier.notify_new_commit(
vec![create_user_transaction()],
101,
1000,
));
notify_result.unwrap();
}
fn create_user_transaction() -> Transaction {
let private_key = Ed25519PrivateKey::generate_for_testing();
let public_key = private_key.public_key();
let transaction_payload = TransactionPayload::Script(Script::new(vec![], vec![], vec![]));
let raw_transaction = RawTransaction::new(
AccountAddress::random(),
0,
transaction_payload,
0,
0,
"".into(),
0,
ChainId::new(10),
);
let signed_transaction = SignedTransaction::new(
raw_transaction.clone(),
public_key,
private_key.sign(&raw_transaction),
);
Transaction::UserTransaction(signed_transaction)
}
fn create_block_metadata_transaction() -> Transaction {
Transaction::BlockMetadata(BlockMetadata::new(
HashValue::new([0; HashValue::LENGTH]),
1,
300000001,
vec![],
AccountAddress::random(),
))
}
fn create_genesis_transaction() -> Transaction {
Transaction::GenesisTransaction(WriteSetPayload::Direct(ChangeSet::new(
WriteSetMut::new(vec![])
.freeze()
.expect("freeze cannot fail"),
vec![],
)))
}
fn create_runtime() -> Runtime {
Builder::new_multi_thread().enable_all().build().unwrap()
}
}