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
use std::pin::Pin;
use std::task::Poll;
use futures::Stream;
use super::{signal_into_result, FutureResult, Signal};
use crate::{Error, Observable};
use wasmrs_runtime::{ConditionallySafe, OptionalMut, UnboundedReceiver};
#[must_use]
#[allow(missing_debug_implementations)]
pub struct FluxReceiver<Item, Err>
where
Item: ConditionallySafe,
Err: ConditionallySafe,
{
rx: OptionalMut<UnboundedReceiver<Signal<Item, Err>>>,
}
impl<Item, Err> FluxReceiver<Item, Err>
where
Item: ConditionallySafe,
Err: ConditionallySafe,
{
pub fn new(rx: UnboundedReceiver<Signal<Item, Err>>) -> Self {
Self {
rx: OptionalMut::new(rx),
}
}
pub fn none() -> Self {
Self {
rx: OptionalMut::none(),
}
}
}
impl<Item, Err> Clone for FluxReceiver<Item, Err>
where
Item: ConditionallySafe,
Err: ConditionallySafe,
{
fn clone(&self) -> Self {
Self { rx: self.rx.clone() }
}
}
impl<Item, Err> Observable<Item, Err> for FluxReceiver<Item, Err>
where
Item: ConditionallySafe,
Err: ConditionallySafe,
{
}
impl<Item, Err> FluxReceiver<Item, Err>
where
Item: ConditionallySafe,
Err: ConditionallySafe,
{
#[must_use]
pub fn recv(&self) -> FutureResult<Item, Err>
where
Err: ConditionallySafe,
Item: ConditionallySafe,
{
let root_rx = self.rx.clone();
let opt = root_rx.take();
Box::pin(async move {
match opt {
Some(mut rx) => {
let signal = rx.recv().await;
root_rx.insert(rx);
Ok(signal_into_result(signal))
}
None => Err(Error::RecvFailed(0)),
}
})
}
pub fn poll_recv(&self, cx: &mut std::task::Context<'_>) -> Poll<Option<Result<Item, Err>>> {
let opt = self.rx.take();
opt.map_or(std::task::Poll::Ready(None), |mut rx| {
let poll = rx.poll_recv(cx);
self.rx.insert(rx);
match poll {
Poll::Ready(Some(Signal::Complete)) => Poll::Ready(None),
Poll::Ready(Some(Signal::Ok(v))) => Poll::Ready(Some(Ok(v))),
Poll::Ready(Some(Signal::Err(e))) => Poll::Ready(Some(Err(e))),
Poll::Ready(None) => Poll::Ready(None),
Poll::Pending => Poll::Pending,
}
})
}
#[must_use]
pub fn eject(&self) -> Option<Self> {
self.rx.take().map(|inner| Self {
rx: OptionalMut::new(inner),
})
}
}
impl<Item, Err> Stream for FluxReceiver<Item, Err>
where
Item: ConditionallySafe,
Err: ConditionallySafe,
{
type Item = Result<Item, Err>;
fn poll_next(self: Pin<&mut Self>, cx: &mut std::task::Context<'_>) -> Poll<Option<Self::Item>> {
self.poll_recv(cx)
}
}