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
use bytes::Bytes;
use core::cmp::Ordering;
use core::fmt;
use core::ops::{Add, AddAssign, Sub};
use crate::prelude::*;
pub struct SendableRaftMessage<NodeId> {
pub message: RaftMessage,
pub dest: RaftMessageDestination<NodeId>,
}
pub enum RaftMessageDestination<NodeId> {
Broadcast,
To(NodeId),
}
#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "prost", derive(prost::Message))]
#[cfg_attr(not(feature = "prost"), derive(Debug, Default))]
pub struct RaftMessage {
#[cfg_attr(feature = "prost", prost(message, required, tag="2"))]
pub term: TermId,
#[cfg_attr(feature = "prost", prost(oneof="Rpc", tags="3, 4, 5, 6"))]
pub rpc: Option<Rpc>,
}
#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "prost", derive(prost::Oneof))]
#[cfg_attr(not(feature = "prost"), derive(Debug))]
pub enum Rpc {
#[cfg_attr(feature = "prost", prost(message, tag="3"))]
VoteRequest(VoteRequest),
#[cfg_attr(feature = "prost", prost(message, tag="4"))]
VoteResponse(VoteResponse),
#[cfg_attr(feature = "prost", prost(message, tag="5"))]
AppendRequest(AppendRequest),
#[cfg_attr(feature = "prost", prost(message, tag="6"))]
AppendResponse(AppendResponse),
}
#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "prost", derive(prost::Message))]
#[cfg_attr(not(feature = "prost"), derive(Debug, Default))]
pub struct VoteRequest {
#[cfg_attr(feature = "prost", prost(message, required, tag="2"))]
pub last_log_idx: LogIndex,
#[cfg_attr(feature = "prost", prost(message, required, tag="3"))]
pub last_log_term: TermId,
}
#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "prost", derive(prost::Message))]
#[cfg_attr(not(feature = "prost"), derive(Debug, Default))]
pub struct VoteResponse {
#[cfg_attr(feature = "prost", prost(bool, required, tag="2"))]
pub vote_granted: bool,
}
#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "prost", derive(prost::Message))]
#[cfg_attr(not(feature = "prost"), derive(Debug, Default))]
pub struct AppendRequest {
#[cfg_attr(feature = "prost", prost(message, required, tag="1"))]
pub prev_log_idx: LogIndex,
#[cfg_attr(feature = "prost", prost(message, required, tag="2"))]
pub prev_log_term: TermId,
#[cfg_attr(feature = "prost", prost(message, required, tag="3"))]
pub leader_commit: LogIndex,
#[cfg_attr(feature = "prost", prost(message, repeated, tag="4"))]
pub entries: Vec<LogEntry>,
}
#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "prost", derive(prost::Message))]
#[cfg_attr(not(feature = "prost"), derive(Debug, Default))]
pub struct AppendResponse {
#[cfg_attr(feature = "prost", prost(bool, required, tag="1"))]
pub success: bool,
#[cfg_attr(feature = "prost", prost(message, required, tag="2"))]
pub match_idx: LogIndex,
#[cfg_attr(feature = "prost", prost(message, required, tag="3"))]
pub last_log_idx: LogIndex,
}
#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "prost", derive(prost::Message))]
#[cfg_attr(not(feature = "prost"), derive(Debug, Default))]
pub struct LogEntry {
#[cfg_attr(feature = "prost", prost(message, required, tag="1"))]
pub term: TermId,
#[cfg_attr(feature = "prost", prost(bytes="vec", required, tag="2"))]
pub data: Bytes,
}
#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "prost", derive(prost::Message))]
#[cfg_attr(not(feature = "prost"), derive(Debug, Default))]
pub struct TermId {
#[cfg_attr(feature = "prost", prost(uint64, required, tag="1"))]
pub id: u64,
}
#[derive(Clone, PartialEq)]
#[cfg_attr(feature = "prost", derive(prost::Message))]
#[cfg_attr(not(feature = "prost"), derive(Debug, Default))]
pub struct LogIndex {
#[cfg_attr(feature = "prost", prost(uint64, required, tag="1"))]
pub id: u64,
}
impl fmt::Display for RaftMessage {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
let Self { term, rpc } = self;
let mut debug = fmt.debug_tuple("");
debug.field(&format_args!("{}", term));
if let Some(rpc) = rpc {
debug.field(&format_args!("{}", rpc));
} else {
debug.field(&"None");
}
debug.finish()
}
}
impl fmt::Display for Rpc {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
match &self {
Rpc::VoteRequest(msg) => fmt::Display::fmt(msg, fmt),
Rpc::VoteResponse(msg) => fmt::Display::fmt(msg, fmt),
Rpc::AppendRequest(msg) => fmt::Display::fmt(msg, fmt),
Rpc::AppendResponse(msg) => fmt::Display::fmt(msg, fmt),
}
}
}
impl fmt::Display for VoteRequest {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
let Self { last_log_idx, last_log_term } = self;
fmt.debug_struct("VoteRequest")
.field("last_log_idx", &format_args!("{}", last_log_idx))
.field("last_log_term", &format_args!("{}", last_log_term))
.finish()
}
}
impl fmt::Display for VoteResponse {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
let Self { vote_granted } = self;
fmt.debug_struct("VoteResponse")
.field("vote_granted", vote_granted)
.finish()
}
}
impl fmt::Display for AppendRequest {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
let Self { prev_log_idx, prev_log_term, leader_commit, entries } = self;
fmt.debug_struct("AppendRequest")
.field("prev_log_idx", &format_args!("{}", prev_log_idx))
.field("prev_log_term", &format_args!("{}", prev_log_term))
.field("leader_commit", &format_args!("{}", leader_commit))
.field("entries", &entries.len())
.finish()
}
}
impl fmt::Display for AppendResponse {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
let Self { success, match_idx, last_log_idx } = self;
fmt.debug_struct("AppendResponse")
.field("success", &success)
.field("match_idx", &format_args!("{}", match_idx))
.field("last_log_idx", &format_args!("{}", last_log_idx))
.finish()
}
}
impl fmt::Display for TermId {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
let Self { id } = self;
fmt.debug_tuple("TermId")
.field(id)
.finish()
}
}
impl Copy for TermId {}
impl Eq for TermId {}
impl PartialOrd for TermId {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> { Some(self.cmp(other)) }
}
impl Ord for TermId {
fn cmp(&self, other: &Self) -> Ordering { self.id.cmp(&other.id) }
}
impl AddAssign<u64> for TermId {
fn add_assign(&mut self, rhs: u64) {
self.id = self.id.checked_add(rhs).unwrap_or_else(|| panic!("overflow"));
}
}
impl LogIndex {
pub fn checked_sub(self, dec: u64) -> Option<Self> {
if let Some(id) = self.id.checked_sub(dec) {
Some(Self { id })
} else {
None
}
}
}
impl fmt::Display for LogIndex {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
let Self { id } = self;
fmt.debug_tuple("LogIdx")
.field(id)
.finish()
}
}
impl Copy for LogIndex {}
impl Eq for LogIndex {}
impl PartialOrd for LogIndex {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> { Some(self.cmp(other)) }
}
impl Ord for LogIndex {
fn cmp(&self, other: &Self) -> Ordering { self.id.cmp(&other.id) }
}
impl Add<u64> for LogIndex {
type Output = Self;
fn add(self, inc: u64) -> Self {
Self { id: self.id.checked_add(inc).unwrap_or_else(|| panic!("overflow")) }
}
}
impl Sub<u64> for LogIndex {
type Output = Self;
fn sub(self, dec: u64) -> Self {
Self { id: self.id.saturating_sub(dec) }
}
}