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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
#![forbid(unsafe_code)]
use std::time::Duration;
use async_trait::async_trait;
use diem_types::{
contract_event::ContractEvent, ledger_info::LedgerInfoWithSignatures, transaction::Transaction,
};
use futures::{
channel::{mpsc, oneshot},
stream::FusedStream,
SinkExt, Stream,
};
use serde::{Deserialize, Serialize};
use std::{
pin::Pin,
task::{Context, Poll},
};
use thiserror::Error;
use tokio::time::timeout;
#[derive(Clone, Debug, Deserialize, Error, PartialEq, Serialize)]
pub enum Error {
#[error("Notification failed: {0}")]
NotificationError(String),
#[error("Hit the timeout waiting for state sync to respond to the notification!")]
TimeoutWaitingForStateSync,
#[error("Unexpected error encountered: {0}")]
UnexpectedErrorEncountered(String),
}
#[async_trait]
pub trait ConsensusNotificationSender: Send + Sync {
async fn notify_new_commit(
&self,
transactions: Vec<Transaction>,
reconfiguration_events: Vec<ContractEvent>,
) -> Result<(), Error>;
async fn sync_to_target(&self, target: LedgerInfoWithSignatures) -> Result<(), Error>;
}
pub fn new_consensus_notifier_listener_pair(
timeout_ms: u64,
) -> (ConsensusNotifier, ConsensusNotificationListener) {
let (notification_sender, notification_receiver) = mpsc::unbounded();
let consensus_notifier = ConsensusNotifier::new(notification_sender, timeout_ms);
let consensus_listener = ConsensusNotificationListener::new(notification_receiver);
(consensus_notifier, consensus_listener)
}
#[derive(Debug)]
pub struct ConsensusNotifier {
notification_sender: mpsc::UnboundedSender<ConsensusNotification>,
timeout_ms: u64,
}
impl ConsensusNotifier {
fn new(
notification_sender: mpsc::UnboundedSender<ConsensusNotification>,
timeout_ms: u64,
) -> Self {
ConsensusNotifier {
notification_sender,
timeout_ms,
}
}
}
#[async_trait]
impl ConsensusNotificationSender for ConsensusNotifier {
async fn notify_new_commit(
&self,
transactions: Vec<Transaction>,
reconfiguration_events: Vec<ContractEvent>,
) -> Result<(), Error> {
if transactions.is_empty() {
return Ok(());
}
let (callback, callback_receiver) = oneshot::channel();
let commit_notification =
ConsensusNotification::NotifyCommit(ConsensusCommitNotification {
transactions,
reconfiguration_events,
callback,
});
if let Err(error) = self
.notification_sender
.clone()
.send(commit_notification)
.await
{
return Err(Error::NotificationError(format!(
"Failed to notify state sync of committed transactions! Error: {:?}",
error
)));
}
if let Ok(response) =
timeout(Duration::from_millis(self.timeout_ms), callback_receiver).await
{
match response {
Ok(consensus_notification_response) => consensus_notification_response.result,
Err(error) => Err(Error::UnexpectedErrorEncountered(format!("{:?}", error))),
}
} else {
Err(Error::TimeoutWaitingForStateSync)
}
}
async fn sync_to_target(&self, target: LedgerInfoWithSignatures) -> Result<(), Error> {
let (callback, callback_receiver) = oneshot::channel();
let sync_notification =
ConsensusNotification::SyncToTarget(ConsensusSyncNotification { target, callback });
if let Err(error) = self
.notification_sender
.clone()
.send(sync_notification)
.await
{
return Err(Error::NotificationError(format!(
"Failed to notify state sync of sync target! Error: {:?}",
error
)));
}
match callback_receiver.await {
Ok(response) => response.result,
Err(error) => Err(Error::UnexpectedErrorEncountered(format!("{:?}", error))),
}
}
}
#[derive(Debug)]
pub struct ConsensusNotificationListener {
notification_receiver: mpsc::UnboundedReceiver<ConsensusNotification>,
}
impl ConsensusNotificationListener {
fn new(notification_receiver: mpsc::UnboundedReceiver<ConsensusNotification>) -> Self {
ConsensusNotificationListener {
notification_receiver,
}
}
pub async fn respond_to_commit_notification(
&mut self,
consensus_commit_notification: ConsensusCommitNotification,
result: Result<(), Error>,
) -> Result<(), Error> {
consensus_commit_notification
.callback
.send(ConsensusNotificationResponse { result })
.map_err(|error| Error::UnexpectedErrorEncountered(format!("{:?}", error)))
}
pub async fn respond_to_sync_notification(
&mut self,
consensus_sync_notification: ConsensusSyncNotification,
result: Result<(), Error>,
) -> Result<(), Error> {
consensus_sync_notification
.callback
.send(ConsensusNotificationResponse { result })
.map_err(|error| Error::UnexpectedErrorEncountered(format!("{:?}", error)))
}
}
impl Stream for ConsensusNotificationListener {
type Item = ConsensusNotification;
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 ConsensusNotificationListener {
fn is_terminated(&self) -> bool {
self.notification_receiver.is_terminated()
}
}
#[derive(Debug)]
pub enum ConsensusNotification {
NotifyCommit(ConsensusCommitNotification),
SyncToTarget(ConsensusSyncNotification),
}
#[derive(Debug)]
pub struct ConsensusCommitNotification {
pub transactions: Vec<Transaction>,
pub reconfiguration_events: Vec<ContractEvent>,
pub(crate) callback: oneshot::Sender<ConsensusNotificationResponse>,
}
impl ConsensusCommitNotification {
pub fn new(
transactions: Vec<Transaction>,
reconfiguration_events: Vec<ContractEvent>,
) -> (Self, oneshot::Receiver<ConsensusNotificationResponse>) {
let (callback, callback_receiver) = oneshot::channel();
let commit_notification = ConsensusCommitNotification {
transactions,
reconfiguration_events,
callback,
};
(commit_notification, callback_receiver)
}
}
#[derive(Debug)]
pub struct ConsensusNotificationResponse {
pub result: Result<(), Error>,
}
#[derive(Debug)]
pub struct ConsensusSyncNotification {
pub target: LedgerInfoWithSignatures,
pub(crate) callback: oneshot::Sender<ConsensusNotificationResponse>,
}
impl ConsensusSyncNotification {
pub fn new(
target: LedgerInfoWithSignatures,
) -> (Self, oneshot::Receiver<ConsensusNotificationResponse>) {
let (callback, callback_receiver) = oneshot::channel();
let sync_notification = ConsensusSyncNotification { target, callback };
(sync_notification, callback_receiver)
}
}
#[cfg(test)]
mod tests {
use crate::{ConsensusNotification, ConsensusNotificationSender, Error};
use diem_crypto::{ed25519::Ed25519PrivateKey, HashValue, PrivateKey, SigningKey, Uniform};
use diem_types::{
account_address::AccountAddress,
block_info::BlockInfo,
chain_id::ChainId,
contract_event::ContractEvent,
event::EventKey,
ledger_info::{LedgerInfo, LedgerInfoWithSignatures},
transaction::{RawTransaction, Script, SignedTransaction, Transaction, TransactionPayload},
};
use futures::{executor::block_on, FutureExt, StreamExt};
use move_core_types::language_storage::TypeTag;
use std::{collections::BTreeMap, time::Duration};
use tokio::runtime::{Builder, Runtime};
const CONSENSUS_NOTIFICATION_TIMEOUT: u64 = 1000;
#[test]
fn test_commit_state_sync_not_listening() {
let runtime = create_runtime();
let _enter = runtime.enter();
let (consensus_notifier, mut consensus_listener) =
crate::new_consensus_notifier_listener_pair(CONSENSUS_NOTIFICATION_TIMEOUT);
let notify_result =
block_on(consensus_notifier.notify_new_commit(vec![create_user_transaction()], vec![]));
assert!(matches!(
notify_result,
Err(Error::TimeoutWaitingForStateSync)
));
consensus_listener.notification_receiver.close();
let notify_result =
block_on(consensus_notifier.notify_new_commit(vec![create_user_transaction()], vec![]));
assert!(matches!(notify_result, Err(Error::NotificationError(_))));
}
#[test]
fn test_commit_no_transactions() {
let runtime = create_runtime();
let _enter = runtime.enter();
let (consensus_notifier, _consensus_listener) =
crate::new_consensus_notifier_listener_pair(CONSENSUS_NOTIFICATION_TIMEOUT);
let notify_result = block_on(consensus_notifier.notify_new_commit(vec![], vec![]));
notify_result.unwrap();
}
#[test]
fn test_consensus_notification_arrives() {
let runtime = create_runtime();
let _enter = runtime.enter();
let (consensus_notifier, mut consensus_listener) =
crate::new_consensus_notifier_listener_pair(CONSENSUS_NOTIFICATION_TIMEOUT);
let transactions = vec![create_user_transaction()];
let reconfiguration_events = vec![create_contract_event()];
let _ = block_on(
consensus_notifier
.notify_new_commit(transactions.clone(), reconfiguration_events.clone()),
);
match consensus_listener.select_next_some().now_or_never() {
Some(consensus_notification) => match consensus_notification {
ConsensusNotification::NotifyCommit(commit_notification) => {
assert_eq!(transactions, commit_notification.transactions);
assert_eq!(
reconfiguration_events,
commit_notification.reconfiguration_events
);
}
result => panic!(
"Expected consensus commit notification but got: {:?}",
result
),
},
result => panic!("Expected consensus notification but got: {:?}", result),
};
let _thread = std::thread::spawn(move || {
let _result = block_on(consensus_notifier.sync_to_target(create_ledger_info()));
});
std::thread::sleep(Duration::from_millis(1000));
match consensus_listener.select_next_some().now_or_never() {
Some(consensus_notification) => match consensus_notification {
ConsensusNotification::SyncToTarget(sync_notification) => {
assert_eq!(create_ledger_info(), sync_notification.target);
}
result => panic!("Expected consensus sync notification but got: {:?}", result),
},
result => panic!("Expected consensus notification but got: {:?}", result),
};
}
#[test]
fn test_consensus_notification_responses() {
let runtime = create_runtime();
let _enter = runtime.enter();
let (consensus_notifier, mut consensus_listener) =
crate::new_consensus_notifier_listener_pair(CONSENSUS_NOTIFICATION_TIMEOUT);
let _handler = std::thread::spawn(move || loop {
match consensus_listener.select_next_some().now_or_never() {
Some(ConsensusNotification::NotifyCommit(commit_notification)) => {
let _result = block_on(
consensus_listener
.respond_to_commit_notification(commit_notification, Ok(())),
);
}
Some(ConsensusNotification::SyncToTarget(sync_notification)) => {
let _result = block_on(consensus_listener.respond_to_sync_notification(
sync_notification,
Err(Error::UnexpectedErrorEncountered("Oops?".into())),
));
}
_ => { }
}
});
let notify_result =
block_on(consensus_notifier.notify_new_commit(vec![create_user_transaction()], vec![]));
notify_result.unwrap();
let notify_result = block_on(consensus_notifier.sync_to_target(create_ledger_info()));
assert!(notify_result.is_err());
}
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_contract_event() -> ContractEvent {
ContractEvent::new(
EventKey::new_from_address(&AccountAddress::random(), 0),
0,
TypeTag::Bool,
b"some event bytes".to_vec(),
)
}
fn create_ledger_info() -> LedgerInfoWithSignatures {
LedgerInfoWithSignatures::new(
LedgerInfo::new(BlockInfo::empty(), HashValue::zero()),
BTreeMap::new(),
)
}
fn create_runtime() -> Runtime {
Builder::new_multi_thread().enable_all().build().unwrap()
}
}