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
use std::time::Duration;
use flume::TryRecvError;
use thiserror::Error;
#[derive(Debug, Error)]
pub enum SendError {
#[error("The channel is closed.")]
Disconnected,
#[error("The channel is full.")]
Full,
}
#[derive(Debug, Error, Copy, Clone, PartialEq, Eq)]
pub enum RecvError {
#[error("A timeout occured when attempting to receive a message.")]
Timeout,
#[error("All sender were dropped an no message are pending in the channel.")]
Disconnected,
}
impl From<flume::RecvTimeoutError> for RecvError {
fn from(flume_err: flume::RecvTimeoutError) -> Self {
match flume_err {
flume::RecvTimeoutError::Timeout => Self::Timeout,
flume::RecvTimeoutError::Disconnected => Self::Disconnected,
}
}
}
impl<T> From<flume::SendError<T>> for SendError {
fn from(_send_error: flume::SendError<T>) -> Self {
SendError::Disconnected
}
}
impl<T> From<flume::TrySendError<T>> for SendError {
fn from(try_send_error: flume::TrySendError<T>) -> Self {
match try_send_error {
flume::TrySendError::Full(_) => SendError::Full,
flume::TrySendError::Disconnected(_) => SendError::Disconnected,
}
}
}
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
pub enum Priority {
High,
Low,
}
#[derive(Clone, Copy, Debug)]
pub enum QueueCapacity {
Bounded(usize),
Unbounded,
}
impl QueueCapacity {
pub(crate) fn create_channel<M>(&self) -> (flume::Sender<M>, flume::Receiver<M>) {
match *self {
QueueCapacity::Bounded(cap) => flume::bounded(cap),
QueueCapacity::Unbounded => flume::unbounded(),
}
}
}
pub fn channel<T>(queue_capacity: QueueCapacity) -> (Sender<T>, Receiver<T>) {
let (high_priority_tx, high_priority_rx) = flume::unbounded();
let (low_priority_tx, low_priority_rx) = queue_capacity.create_channel();
let receiver = Receiver {
low_priority_rx,
high_priority_rx,
_high_priority_tx: high_priority_tx.clone(),
pending: None,
};
let sender = Sender {
low_priority_tx,
high_priority_tx,
};
(sender, receiver)
}
pub struct Sender<T> {
low_priority_tx: flume::Sender<T>,
high_priority_tx: flume::Sender<T>,
}
impl<T> Sender<T> {
fn channel(&self, priority: Priority) -> &flume::Sender<T> {
match priority {
Priority::High => &self.high_priority_tx,
Priority::Low => &self.low_priority_tx,
}
}
pub async fn send(&self, msg: T, priority: Priority) -> Result<(), SendError> {
self.channel(priority).send_async(msg).await?;
Ok(())
}
}
pub struct Receiver<T> {
low_priority_rx: flume::Receiver<T>,
high_priority_rx: flume::Receiver<T>,
_high_priority_tx: flume::Sender<T>,
pending: Option<T>,
}
impl<T> Receiver<T> {
fn try_recv_high_priority_message(&self) -> Option<T> {
match self.high_priority_rx.try_recv() {
Ok(msg) => Some(msg),
Err(TryRecvError::Disconnected) => {
unreachable!(
"This can never happen, as the high priority Sender is owned by the Receiver."
);
}
Err(TryRecvError::Empty) => None,
}
}
pub async fn recv_high_priority_timeout(&mut self, duration: Duration) -> Result<T, RecvError> {
tokio::select! {
high_priority_msg_res = self.high_priority_rx.recv_async() => {
match high_priority_msg_res {
Ok(high_priority_msg) => { Ok(high_priority_msg) },
Err(_) => { unreachable!("The Receiver owns the high priority Sender to avoid any disconnection.") }, }
}
_ = tokio::time::sleep(duration) => {
Err(RecvError::Timeout)
}
}
}
pub async fn recv_timeout(&mut self, duration: Duration) -> Result<T, RecvError> {
if let Some(msg) = self.try_recv_high_priority_message() {
return Ok(msg);
}
if let Some(pending_msg) = self.pending.take() {
return Ok(pending_msg);
}
tokio::select! {
high_priority_msg_res = self.high_priority_rx.recv_async() => {
match high_priority_msg_res {
Ok(high_priority_msg) => {
Ok(high_priority_msg)
},
Err(_) => {
unreachable!("The Receiver owns the high priority Sender to avoid any disconnection.")
},
}
}
low_priority_msg_res = self.low_priority_rx.recv_async() => {
match low_priority_msg_res {
Ok(low_priority_msg) => {
if let Some(high_priority_msg) = self.try_recv_high_priority_message() {
self.pending = Some(low_priority_msg);
Ok(high_priority_msg)
} else {
Ok(low_priority_msg)
}
},
Err(flume::RecvError::Disconnected) => {
if let Some(high_priority_msg) = self.try_recv_high_priority_message() {
Ok(high_priority_msg)
} else {
Err(RecvError::Disconnected)
}
}
}
}
_ = tokio::time::sleep(duration) => {
Err(RecvError::Timeout)
}
}
}
pub fn drain_low_priority(&self) -> Vec<T> {
let mut messages = Vec::new();
while let Ok(msg) = self.low_priority_rx.try_recv() {
messages.push(msg);
}
messages
}
}
#[cfg(test)]
mod tests {
use std::time::{Duration, Instant};
use super::*;
const TEST_TIMEOUT: Duration = Duration::from_millis(100);
#[tokio::test]
async fn test_recv_timeout_prority() -> anyhow::Result<()> {
let (sender, mut receiver) = super::channel::<usize>(QueueCapacity::Unbounded);
sender.send(1, Priority::Low).await?;
sender.send(2, Priority::High).await?;
assert_eq!(receiver.recv_timeout(TEST_TIMEOUT).await, Ok(2));
assert_eq!(receiver.recv_timeout(TEST_TIMEOUT).await, Ok(1));
assert_eq!(
receiver.recv_timeout(TEST_TIMEOUT).await,
Err(RecvError::Timeout)
);
Ok(())
}
#[tokio::test]
async fn test_recv_high_priority_timeout() -> anyhow::Result<()> {
let (sender, mut receiver) = super::channel::<usize>(QueueCapacity::Unbounded);
sender.send(1, Priority::Low).await?;
assert_eq!(
receiver.recv_high_priority_timeout(TEST_TIMEOUT).await,
Err(RecvError::Timeout)
);
Ok(())
}
#[tokio::test]
async fn test_recv_high_priority_ignore_disconnection() -> anyhow::Result<()> {
let (sender, mut receiver) = super::channel::<usize>(QueueCapacity::Unbounded);
std::mem::drop(sender);
assert_eq!(
receiver.recv_high_priority_timeout(TEST_TIMEOUT).await,
Err(RecvError::Timeout)
);
Ok(())
}
#[tokio::test]
async fn test_recv_disconnect() -> anyhow::Result<()> {
let (sender, mut receiver) = super::channel::<usize>(QueueCapacity::Unbounded);
std::mem::drop(sender);
assert_eq!(
receiver.recv_timeout(TEST_TIMEOUT).await,
Err(RecvError::Disconnected)
);
Ok(())
}
#[tokio::test]
async fn test_recv_timeout_simple() -> anyhow::Result<()> {
let (_sender, mut receiver) = super::channel::<usize>(QueueCapacity::Unbounded);
let start_time = Instant::now();
assert_eq!(
receiver.recv_timeout(TEST_TIMEOUT).await,
Err(RecvError::Timeout)
);
let elapsed = start_time.elapsed();
assert!(elapsed < crate::HEARTBEAT);
Ok(())
}
#[tokio::test]
async fn test_try_recv_prority_corner_case() -> anyhow::Result<()> {
let (sender, mut receiver) = super::channel::<usize>(QueueCapacity::Unbounded);
tokio::task::spawn(async move {
tokio::time::sleep(Duration::from_millis(10)).await;
sender.send(1, Priority::High).await?;
sender.send(2, Priority::Low).await?;
Result::<(), SendError>::Ok(())
});
assert_eq!(receiver.recv_timeout(TEST_TIMEOUT).await, Ok(1));
assert_eq!(receiver.recv_timeout(TEST_TIMEOUT).await, Ok(2));
assert_eq!(
receiver.recv_timeout(TEST_TIMEOUT).await,
Err(RecvError::Disconnected)
);
Ok(())
}
}