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
use core::fmt;
use core::pin::Pin;
use futures_core::future::Future;
use futures_core::stream::{FusedStream, Stream};
use futures_core::task::{Context, Poll};
/// Stream for the [`flatten_stream`](super::FutureExt::flatten_stream) method.
#[must_use = "streams do nothing unless polled"]
pub struct FlattenStream<Fut: Future> {
state: State<Fut>
}
impl<Fut: Future> FlattenStream<Fut> {
pub(super) fn new(future: Fut) -> FlattenStream<Fut> {
FlattenStream {
state: State::Future(future)
}
}
}
impl<Fut> fmt::Debug for FlattenStream<Fut>
where Fut: Future + fmt::Debug,
Fut::Output: fmt::Debug,
{
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_struct("FlattenStream")
.field("state", &self.state)
.finish()
}
}
#[derive(Debug)]
enum State<Fut: Future> {
// future is not yet called or called and not ready
Future(Fut),
// future resolved to Stream
Stream(Fut::Output),
}
impl<Fut> FusedStream for FlattenStream<Fut>
where Fut: Future,
Fut::Output: Stream + FusedStream,
{
fn is_terminated(&self) -> bool {
match &self.state {
State::Future(_) => false,
State::Stream(stream) => stream.is_terminated(),
}
}
}
impl<Fut> Stream for FlattenStream<Fut>
where Fut: Future,
Fut::Output: Stream,
{
type Item = <Fut::Output as Stream>::Item;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
loop {
// safety: data is never moved via the resulting &mut reference
let stream = match &mut unsafe { Pin::get_unchecked_mut(self.as_mut()) }.state {
State::Future(f) => {
// safety: the future we're re-pinning here will never be moved;
// it will just be polled, then dropped in place
match unsafe { Pin::new_unchecked(f) }.poll(cx) {
Poll::Pending => {
// State is not changed, early return.
return Poll::Pending
},
Poll::Ready(stream) => {
// Future resolved to stream.
// We do not return, but poll that
// stream in the next loop iteration.
stream
}
}
}
State::Stream(s) => {
// safety: the stream we're repinning here will never be moved;
// it will just be polled, then dropped in place
return unsafe { Pin::new_unchecked(s) }.poll_next(cx);
}
};
unsafe {
// safety: we use the &mut only for an assignment, which causes
// only an in-place drop
Pin::get_unchecked_mut(self.as_mut()).state = State::Stream(stream);
}
}
}
}