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
use config::WorkerId;
use std::fmt::Debug;
use store::StoreError;
use thiserror::Error;
use types::CertificateDigest;
#[macro_export]
macro_rules! bail {
($e:expr) => {
return Err($e)
};
}
#[macro_export(local_inner_macros)]
macro_rules! ensure {
($cond:expr, $e:expr) => {
if !($cond) {
bail!($e);
}
};
}
#[macro_export]
macro_rules! try_fut_and_permit {
($fut:expr, $sender:expr) => {
futures::future::TryFutureExt::unwrap_or_else(
futures::future::try_join(
$fut,
futures::TryFutureExt::map_err($sender.reserve(), |_e| {
SubscriberError::ClosedChannel(stringify!(sender).to_owned())
}),
),
|e| {
tracing::error!("{e}");
panic!("I/O failure, killing the node.");
},
)
};
}
pub type SubscriberResult<T> = Result<T, SubscriberError>;
#[derive(Debug, Error, Clone)]
pub enum SubscriberError {
#[error("channel {0} closed unexpectedly")]
ClosedChannel(String),
#[error("Storage failure: {0}")]
StoreError(#[from] StoreError),
#[error("Error occurred while retrieving certificate {0} payload: {1}")]
PayloadRetrieveError(CertificateDigest, String),
#[error("Consensus referenced unexpected worker id {0}")]
UnexpectedWorkerId(WorkerId),
#[error("Connection with the transaction executor dropped")]
ExecutorConnectionDropped,
#[error("Deserialization of consensus message failed: {0}")]
SerializationError(String),
#[error("Received unexpected protocol message from consensus")]
UnexpectedProtocolMessage,
#[error("There can only be a single consensus client at the time")]
OnlyOneConsensusClientPermitted,
#[error("Execution engine failed: {0}")]
NodeExecutionError(String),
#[error("Client transaction invalid: {0}")]
ClientExecutionError(String),
}
impl From<Box<bincode::ErrorKind>> for SubscriberError {
fn from(e: Box<bincode::ErrorKind>) -> Self {
Self::SerializationError(e.to_string())
}
}