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
use std::pin::Pin;
use std::task::{Context, Poll};

use futures_core::stream::Stream;

/// A `Stream` adapter that yields after every `Poll::Ready(Some(_))` result
/// from its source.
///
/// The wrapper may be useful to ensure that a `Future` that polls a `Stream`
/// (directly or indirectly) yields (return `Poll::Pending`) between items. If
/// the source stream already returns `Poll::Pending` then this will not add
/// further `Poll::Pending` returns.
///
/// The type is enabled via the *yield-stream* feature.
#[derive(Debug)]
#[must_use = "streams do nothing unless polled"]
pub struct YieldStream<St, I>
    where St: Stream<Item=I>
{
    source: St,
    yielded: bool,
}

impl<St, I> YieldStream<St, I>
    where St: Stream<Item=I>
{
    /// Construct with source to wrap.
    pub fn new(source: St) -> Self {
        YieldStream { source, yielded: true }
    }
}

impl<St, I> Stream for YieldStream<St, I>
    where St: Stream<Item=I>
{
    type Item = I;

    fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>)
        -> Poll<Option<Self::Item>>
    {
        // Safety: This is for projection to source below, which is exclusively
        // owned by this wrapper and never moved. The `unsafe` could be
        // avoided, but at the cost of requiring the source stream be `Unpin`.
        let this = unsafe { self.get_unchecked_mut() };

        if this.yielded {
            let src = unsafe { Pin::new_unchecked(&mut this.source) };
            let next = src.poll_next(cx);
            if let Poll::Ready(Some(_)) = next {
                this.yielded = false;
            }
            next
        } else {
            this.yielded = true;
            cx.waker().wake_by_ref();
            Poll::Pending
        }
    }
}