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
use std::marker::Unpin;
use std::pin::Pin;
use std::task::{Context, Poll};
use futures::Stream;
#[allow(unreachable_pub)]
pub use self::queue_stream::QueueStream;
#[allow(unreachable_pub)]
pub use self::sender::{Action, Reply, Sender, SendError, TrySendError};
mod queue_stream;
mod sender;
pub trait Waker {
fn rx_wake(&self);
fn tx_park(&self, w: std::task::Waker);
}
impl<T: ?Sized> QueueExt for T {}
pub trait QueueExt {
#[inline]
fn queue_stream<Item, F>(self, f: F) -> QueueStream<Self, Item, F>
where
Self: Sized + Unpin,
F: Fn(Pin<&mut Self>, &mut Context<'_>) -> Poll<Option<Item>>,
{
assert_stream::<Item, _>(QueueStream::new(self, f))
}
#[inline]
fn sender<Item, F, R>(self, f: F) -> Sender<Self, Item, F, R>
where
Self: Sized + Waker,
F: Fn(&mut Self, Action<Item>) -> Reply<R>,
{
Sender::new(self, f)
}
}
#[inline]
pub(crate) fn assert_stream<T, S>(stream: S) -> S
where
S: Stream<Item=T>,
{
stream
}