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
use core::marker::Unpin;
use core::mem::PinMut;
use futures_core::future::Future;
use futures_core::task::{self, Poll};
use futures_sink::Sink;

/// Future for the `Sink::send` combinator, which sends a value to a sink and
/// then waits until the sink has fully flushed.
#[derive(Debug)]
#[must_use = "futures do nothing unless polled"]
pub struct Send<'a, Si: Sink + Unpin + 'a + ?Sized> {
    sink: &'a mut Si,
    item: Option<Si::SinkItem>,
}

// Pinning is never projected to children
impl<Si: Sink + Unpin + ?Sized> Unpin for Send<'_, Si> {}

impl<'a, Si: Sink + Unpin + ?Sized> Send<'a, Si> {
    pub(super) fn new(sink: &'a mut Si, item: Si::SinkItem) -> Self {
        Send {
            sink,
            item: Some(item),
        }
    }
}

impl<Si: Sink + Unpin + ?Sized> Future for Send<'_, Si> {
    type Output = Result<(), Si::SinkError>;

    fn poll(
        mut self: PinMut<Self>,
        cx: &mut task::Context,
    ) -> Poll<Self::Output> {
        let this = &mut *self;
        if let Some(item) = this.item.take() {
            let mut sink = PinMut::new(this.sink);
            match sink.reborrow().poll_ready(cx) {
                Poll::Ready(Ok(())) => {
                    if let Err(e) = sink.reborrow().start_send(item) {
                        return Poll::Ready(Err(e));
                    }
                }
                Poll::Ready(Err(e)) => return Poll::Ready(Err(e)),
                Poll::Pending => {
                    this.item = Some(item);
                    return Poll::Pending;
                }
            }
        }

        // we're done sending the item, but want to block on flushing the
        // sink
        try_ready!(PinMut::new(this.sink).poll_flush(cx));

        Poll::Ready(Ok(()))
    }
}