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::pin::Pin;
use futures_core::future::Future;
use futures_core::task::{LocalWaker, Poll};
use futures_sink::Sink;
#[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>,
}
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: Pin<&mut Self>,
lw: &LocalWaker,
) -> Poll<Self::Output> {
let this = &mut *self;
if let Some(item) = this.item.take() {
let mut sink = Pin::new(&mut this.sink);
match sink.as_mut().poll_ready(lw) {
Poll::Ready(Ok(())) => {
if let Err(e) = sink.as_mut().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;
}
}
}
try_ready!(Pin::new(&mut this.sink).poll_flush(lw));
Poll::Ready(Ok(()))
}
}