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
use crate::{HeaderDigest, Round};
use config::Epoch;
use fastcrypto::Digest;
use store::StoreError;
use thiserror::Error;
#[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| {
DagError::ClosedChannel(stringify!(sender).to_owned())
}),
),
|e| {
tracing::error!("{e}");
panic!("I/O failure, killing the node.");
},
)
};
}
pub type DagResult<T> = Result<T, DagError>;
#[derive(Debug, Error)]
pub enum DagError {
#[error("Channel {0} has closed unexpectedly")]
ClosedChannel(String),
#[error("Invalid Authorities Bitmap: {0}")]
InvalidBitmap(String),
#[error("Invalid signature")]
InvalidSignature(#[from] signature::Error),
#[error("Storage failure: {0}")]
StoreError(#[from] StoreError),
#[error("Serialization error: {0}")]
SerializationError(#[from] Box<bincode::ErrorKind>),
#[error("Invalid header id")]
InvalidHeaderId,
#[error("Malformed header {0}")]
MalformedHeader(HeaderDigest),
#[error("Received message from unknown authority {0}")]
UnknownAuthority(String),
#[error("Authority {0} appears in quorum more than once")]
AuthorityReuse(String),
#[error("Received unexpected vote fo header {0}")]
UnexpectedVote(HeaderDigest),
#[error("Received certificate without a quorum")]
CertificateRequiresQuorum,
#[error("Parents of header {0} are not a quorum")]
HeaderRequiresQuorum(HeaderDigest),
#[error("Message {0} (round {1}) too old for GC round {2}")]
TooOld(Digest, Round, Round),
#[error("Vote {0} (round {1}) too old for round {2}")]
VoteTooOld(Digest, Round, Round),
#[error("Invalid epoch (expected {expected}, received {received})")]
InvalidEpoch { expected: Epoch, received: Epoch },
#[error("System shutting down")]
ShuttingDown,
}