-
Notifications
You must be signed in to change notification settings - Fork 2
/
lib.rs
693 lines (617 loc) · 19.3 KB
/
lib.rs
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
//! An async channel where pending messages are delivered in order of priority.
//!
//! There are two kinds of channels:
//!
//! 1. [Bounded][`bounded()`] channel with limited capacity.
//! 2. [Unbounded][`unbounded()`] channel with unlimited capacity.
//!
//! A channel has the [`Sender`] and [`Receiver`] side. Both sides are cloneable and can be shared
//! among multiple threads. When [sending][`Sender::send()`], you pass in a message and its
//! priority. When [receiving][`Receiver::recv()`], you'll get back the pending message with the
//! highest priotiy.
//!
//! When all [`Sender`]s or all [`Receiver`]s are dropped, the channel becomes closed. When a
//! channel is closed, no more messages can be sent, but remaining messages can still be received.
//!
//! The channel can also be closed manually by calling [`Sender::close()`] or
//! [`Receiver::close()`]. The API and much of the documentation is based on [async_channel](https://docs.rs/async-channel/1.6.1/async_channel/).
//!
//! # Examples
//!
//! ```
//! # futures_lite::future::block_on(async {
//! let (s, r) = async_priority_channel::unbounded();
//!
//! assert_eq!(s.send("Foo", 0).await, Ok(()));
//! assert_eq!(s.send("Bar", 2).await, Ok(()));
//! assert_eq!(s.send("Baz", 1).await, Ok(()));
//! assert_eq!(r.recv().await, Ok(("Bar", 2)));
//! # });
//! ```
#![forbid(unsafe_code)]
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]
mod awaitable_atomics;
use awaitable_atomics::AwaitableAtomicCounterAndBit;
use std::{
collections::BinaryHeap,
convert::TryInto,
error, fmt,
iter::Peekable,
sync::{
atomic::{AtomicUsize, Ordering},
Arc, Mutex,
},
};
/// Creates a bounded channel.
///
/// The created channel has space to hold at most `cap` messages at a time.
///
/// # Panics
///
/// Capacity must be a positive number. If `cap` is zero, this function will panic.
///
/// # Examples
///
/// ```
/// # futures_lite::future::block_on(async {
/// let (s, r) = async_priority_channel::bounded(1);
///
/// assert_eq!(s.send("Foo", 0).await, Ok(()));
/// assert_eq!(r.recv().await, Ok(("Foo", 0)));
/// # });
/// ```
pub fn bounded<I, P>(cap: u64) -> (Sender<I, P>, Receiver<I, P>)
where
P: Ord,
{
if cap == 0 {
panic!("cap must be positive");
}
let channel = Arc::new(PriorityQueueChannel {
heap: Mutex::new(BinaryHeap::new()),
len_and_closed: AwaitableAtomicCounterAndBit::new(0),
cap,
sender_count: AtomicUsize::new(1),
receiver_count: AtomicUsize::new(1),
});
let s = Sender {
channel: channel.clone(),
};
let r = Receiver { channel };
(s, r)
}
/// Creates an unbounded channel.
///
/// The created channel can hold an unlimited number of messages.
///
/// # Examples
///
/// ```
/// # futures_lite::future::block_on(async {
/// let (s, r) = async_priority_channel::unbounded();
///
/// assert_eq!(s.send("Foo", 0).await, Ok(()));
/// assert_eq!(s.send("Bar", 2).await, Ok(()));
/// assert_eq!(s.send("Baz", 1).await, Ok(()));
/// assert_eq!(r.recv().await, Ok(("Bar", 2)));
/// # });
/// ```
pub fn unbounded<I, P>() -> (Sender<I, P>, Receiver<I, P>)
where
P: Ord,
{
bounded(u64::MAX)
}
#[derive(Debug)]
struct PriorityQueueChannel<I, P>
where
P: Ord,
{
// the data that needs to be maintained under a mutex
heap: Mutex<BinaryHeap<Item<I, P>>>,
// number of items in the channel, and is the channel closed,
// all accessible without holding the mutex?
len_and_closed: AwaitableAtomicCounterAndBit,
// capacity = 0 means unbounded, otherwise the bound.
cap: u64,
sender_count: AtomicUsize,
receiver_count: AtomicUsize,
}
#[derive(Debug)]
/// Send side of the channel. Can be cloned.
pub struct Sender<I, P>
where
P: Ord,
{
channel: Arc<PriorityQueueChannel<I, P>>,
}
#[derive(Debug)]
/// Receive side of the channel. Can be cloned.
pub struct Receiver<I, P>
where
P: Ord,
{
channel: Arc<PriorityQueueChannel<I, P>>,
}
impl<I, P> Drop for Sender<I, P>
where
P: Ord,
{
fn drop(&mut self) {
// Decrement the sender count and close the channel if it drops down to zero.
if self.channel.sender_count.fetch_sub(1, Ordering::AcqRel) == 1 {
self.channel.close();
}
}
}
impl<I, P> Drop for Receiver<I, P>
where
P: Ord,
{
fn drop(&mut self) {
// Decrement the receiver count and close the channel if it drops down to zero.
if self.channel.receiver_count.fetch_sub(1, Ordering::AcqRel) == 1 {
self.channel.close();
}
}
}
impl<I, P> Clone for Sender<I, P>
where
P: Ord,
{
fn clone(&self) -> Sender<I, P> {
let count = self.channel.sender_count.fetch_add(1, Ordering::Relaxed);
// Make sure the count never overflows, even if lots of sender clones are leaked.
if count > usize::MAX / 2 {
panic!("bailing due to possible overflow");
}
Sender {
channel: self.channel.clone(),
}
}
}
impl<I, P> Clone for Receiver<I, P>
where
P: Ord,
{
fn clone(&self) -> Receiver<I, P> {
let count = self.channel.receiver_count.fetch_add(1, Ordering::Relaxed);
// Make sure the count never overflows, even if lots of sender clones are leaked.
if count > usize::MAX / 2 {
panic!("bailing due to possible overflow");
}
Receiver {
channel: self.channel.clone(),
}
}
}
impl<I, P> PriorityQueueChannel<I, P>
where
P: Ord,
{
/// Closes the channel and notifies all blocked operations.
///
/// Returns `true` if this call has closed the channel and it was not closed already.
///
fn close(&self) -> bool {
let was_closed = self.len_and_closed.set_bit();
!was_closed
}
// Return `true` if the channel is closed
fn is_closed(&self) -> bool {
self.len_and_closed.load().0
}
/// Return `true` if the channel is empty
fn is_empty(&self) -> bool {
self.len() == 0
}
/// Return `true` if the channel is full
fn is_full(&self) -> bool {
self.cap > 0 && self.len() == self.cap
}
/// Returns the number of messages in the channel.
fn len(&self) -> u64 {
self.len_and_closed.load().1
}
fn len_and_closed(&self) -> (bool, u64) {
self.len_and_closed.load()
}
}
impl<T, P> Sender<T, P>
where
P: Ord,
{
/// Attempts to send a message into the channel.
///
/// If the channel is full or closed, this method returns an error.
///
pub fn try_send(&self, msg: T, priority: P) -> Result<(), TrySendError<(T, P)>> {
self.try_sendv(std::iter::once((msg, priority)).peekable())
.map_err(|e| match e {
TrySendError::Closed(mut value) => TrySendError::Closed(value.next().expect("foo")),
TrySendError::Full(mut value) => TrySendError::Full(value.next().expect("foo")),
})
}
/// Attempts to send multiple messages into the channel.
///
/// If the channel is closed, this method returns an error.
///
/// If the channel is full or nearly full, this method inserts as many messages
/// as it can into the channel and then returns an error containing the
/// remaining unsent messages.
pub fn try_sendv<I>(&self, msgs: Peekable<I>) -> Result<(), TrySendError<Peekable<I>>>
where
I: Iterator<Item = (T, P)>,
{
let mut msgs = msgs;
let (is_closed, len) = self.channel.len_and_closed();
if is_closed {
return Err(TrySendError::Closed(msgs));
}
if len > self.channel.cap {
panic!("size of channel is larger than capacity. this must indicate a bug");
}
match len == self.channel.cap {
true => Err(TrySendError::Full(msgs)),
false => {
// we're below capacity according to the atomic len() field.
// but it's possible that two threads will get here at the same time
// because we haven't acquired the lock yet, so lets acquire the lock
// and only let one through
let mut heap = self
.channel
.heap
.lock()
.expect("task panicked while holding lock");
let mut n = 0;
loop {
if heap.len().try_into().unwrap_or(u64::MAX) < self.channel.cap {
if let Some((msg, priority)) = msgs.next() {
heap.push(Item { msg, priority });
n += 1;
} else {
break;
}
} else {
self.channel.len_and_closed.incr(n);
return match msgs.peek() {
Some(_) => Err(TrySendError::Full(msgs)),
None => Ok(()),
};
}
}
self.channel.len_and_closed.incr(n);
Ok(())
}
}
}
/// Sends a message into the channel.
///
/// If the channel is full, this method waits until there is space for a message.
///
/// If the channel is closed, this method returns an error.
///
pub async fn send(&self, msg: T, priority: P) -> Result<(), SendError<(T, P)>> {
let mut msg2 = msg;
let mut priority2 = priority;
loop {
let decr_listener = self.channel.len_and_closed.listen_decr();
match self.try_send(msg2, priority2) {
Ok(_) => {
return Ok(());
}
Err(TrySendError::Full((msg, priority))) => {
msg2 = msg;
priority2 = priority;
decr_listener.await;
}
Err(TrySendError::Closed((msg, priority))) => {
return Err(SendError((msg, priority)));
}
}
}
}
/// Send multiple messages into the channel
///
/// If the channel is full, this method waits until there is space.
///
/// If the channel is closed, this method returns an error.
pub async fn sendv<I>(&self, msgs: Peekable<I>) -> Result<(), SendError<Peekable<I>>>
where
I: Iterator<Item = (T, P)>,
{
let mut msgs2 = msgs;
loop {
let decr_listener = self.channel.len_and_closed.listen_decr();
match self.try_sendv(msgs2) {
Ok(_) => {
return Ok(());
}
Err(TrySendError::Full(msgs)) => {
msgs2 = msgs;
decr_listener.await;
}
Err(TrySendError::Closed(msgs)) => {
return Err(SendError(msgs));
}
}
}
}
/// Closes the channel and notifies all blocked operations.
///
/// Returns `true` if this call has closed the channel and it was not closed already.
///
pub fn close(&self) -> bool {
self.channel.close()
}
/// Returns `true` if the channel is closed
pub fn is_closed(&self) -> bool {
self.channel.is_closed()
}
/// Return `true` if the channel is empty
pub fn is_empty(&self) -> bool {
self.channel.is_empty()
}
/// Return `true` if the channel is full
pub fn is_full(&self) -> bool {
self.channel.is_full()
}
/// Returns the number of messages in the channel.
pub fn len(&self) -> u64 {
self.channel.len()
}
/// Returns the channel capacity if it's bounded.
pub fn capacity(&self) -> Option<u64> {
match self.channel.cap {
u64::MAX => None,
c => Some(c),
}
}
/// Returns the number of receivers for the channel.
pub fn receiver_count(&self) -> usize {
self.channel.receiver_count.load(Ordering::SeqCst)
}
/// Returns the number of senders for the channel.
pub fn sender_count(&self) -> usize {
self.channel.sender_count.load(Ordering::SeqCst)
}
}
impl<I, P> Receiver<I, P>
where
P: Ord,
{
/// Attempts to receive a message from the channel.
///
/// If the channel is empty or closed, this method returns an error.
///
pub fn try_recv(&self) -> Result<(I, P), TryRecvError> {
match (self.channel.is_empty(), self.channel.is_closed()) {
(true, true) => Err(TryRecvError::Closed),
(true, false) => Err(TryRecvError::Empty),
(false, _) => {
// channel contains items and is either open or closed
let mut heap = self
.channel
.heap
.lock()
.expect("task panicked while holding lock");
let item = heap.pop();
match item {
Some(item) => {
self.channel.len_and_closed.decr();
Ok((item.msg, item.priority))
}
None => Err(TryRecvError::Empty),
}
}
}
}
/// Receives a message from the channel.
///
/// If the channel is empty, this method waits until there is a message.
///
/// If the channel is closed, this method receives a message or returns an error if there are
/// no more messages.
pub async fn recv(&self) -> Result<(I, P), RecvError> {
loop {
let incr_listener = self.channel.len_and_closed.listen_incr();
match self.try_recv() {
Ok(item) => {
return Ok(item);
}
Err(TryRecvError::Closed) => {
return Err(RecvError);
}
Err(TryRecvError::Empty) => {
incr_listener.await;
}
}
}
}
/// Closes the channel and notifies all blocked operations.
///
/// Returns `true` if this call has closed the channel and it was not closed already.
///
pub fn close(&self) -> bool {
self.channel.close()
}
/// Returns whether the channel is closed
pub fn is_closed(&self) -> bool {
self.channel.is_closed()
}
/// Return `true` if the channel is empty
pub fn is_empty(&self) -> bool {
self.channel.is_empty()
}
/// Return `true` if the channel is full
pub fn is_full(&self) -> bool {
self.channel.is_full()
}
/// Returns the number of messages in the channel.
pub fn len(&self) -> u64 {
self.channel.len()
}
/// Returns the channel capacity if it's bounded.
pub fn capacity(&self) -> Option<u64> {
match self.channel.cap {
u64::MAX => None,
c => Some(c),
}
}
/// Returns the number of receivers for the channel.
pub fn receiver_count(&self) -> usize {
self.channel.receiver_count.load(Ordering::SeqCst)
}
/// Returns the number of senders for the channel.
pub fn sender_count(&self) -> usize {
self.channel.sender_count.load(Ordering::SeqCst)
}
}
/// Private 2-tuple that sorts only by the `[priority]`
#[derive(Debug)]
struct Item<I, P>
where
P: Eq + Ord,
{
msg: I,
priority: P,
}
impl<I, P> Ord for Item<I, P>
where
P: Eq + Ord,
{
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
self.priority.cmp(&other.priority)
}
}
impl<I, P> PartialOrd for Item<I, P>
where
P: Eq + Ord,
{
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
Some(self.cmp(other))
}
}
impl<I, P: std::cmp::Eq> PartialEq for Item<I, P>
where
P: Eq + Ord,
{
fn eq(&self, other: &Self) -> bool {
self.priority == other.priority
}
}
impl<I, P> Eq for Item<I, P> where P: Eq + Ord {}
/// An error returned from [`Sender::send()`].
///
/// Received because the channel is closed.
#[derive(PartialEq, Eq, Clone, Copy)]
pub struct SendError<T>(pub T);
impl<T> SendError<T> {
/// Unwraps the message that couldn't be sent.
pub fn into_inner(self) -> T {
self.0
}
}
impl<T> error::Error for SendError<T> {}
impl<T> fmt::Debug for SendError<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "SendError(..)")
}
}
impl<T> fmt::Display for SendError<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "sending into a closed channel")
}
}
/// An error returned from [`Receiver::recv()`].
///
/// Received because the channel is empty and closed.
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub struct RecvError;
impl error::Error for RecvError {}
impl fmt::Display for RecvError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "receiving from an empty and closed channel")
}
}
/// An error returned from [`Sender::try_send()`].
#[derive(PartialEq, Eq, Clone, Copy)]
pub enum TrySendError<T> {
/// The channel is full but not closed.
Full(T),
/// The channel is closed.
Closed(T),
}
impl<T> TrySendError<T> {
/// Unwraps the message that couldn't be sent.
pub fn into_inner(self) -> T {
match self {
TrySendError::Full(t) => t,
TrySendError::Closed(t) => t,
}
}
/// Returns `true` if the channel is full but not closed.
pub fn is_full(&self) -> bool {
match self {
TrySendError::Full(_) => true,
TrySendError::Closed(_) => false,
}
}
/// Returns `true` if the channel is closed.
pub fn is_closed(&self) -> bool {
match self {
TrySendError::Full(_) => false,
TrySendError::Closed(_) => true,
}
}
}
impl<T> error::Error for TrySendError<T> {}
impl<T> fmt::Debug for TrySendError<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
TrySendError::Full(..) => write!(f, "Full(..)"),
TrySendError::Closed(..) => write!(f, "Closed(..)"),
}
}
}
impl<T> fmt::Display for TrySendError<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
TrySendError::Full(..) => write!(f, "sending into a full channel"),
TrySendError::Closed(..) => write!(f, "sending into a closed channel"),
}
}
}
/// An error returned from [`Receiver::try_recv()`].
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
pub enum TryRecvError {
/// The channel is empty but not closed.
Empty,
/// The channel is empty and closed.
Closed,
}
impl TryRecvError {
/// Returns `true` if the channel is empty but not closed.
pub fn is_empty(&self) -> bool {
match self {
TryRecvError::Empty => true,
TryRecvError::Closed => false,
}
}
/// Returns `true` if the channel is empty and closed.
pub fn is_closed(&self) -> bool {
match self {
TryRecvError::Empty => false,
TryRecvError::Closed => true,
}
}
}
impl error::Error for TryRecvError {}
impl fmt::Display for TryRecvError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
TryRecvError::Empty => write!(f, "receiving from an empty channel"),
TryRecvError::Closed => write!(f, "receiving from an empty and closed channel"),
}
}
}