futures_util/sink/flush.rs
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
use futures_core::{Poll, Async, Future};
use futures_core::task;
use futures_sink::Sink;
/// Future for the `flush` combinator, which polls the sink until all data
/// has been flushed.
#[derive(Debug)]
#[must_use = "futures do nothing unless polled"]
pub struct Flush<S> {
sink: Option<S>,
}
/// A future that completes when the sink has finished processing all
/// pending requests.
///
/// The sink itself is returned after flushing is complete; this adapter is
/// intended to be used when you want to stop sending to the sink until
/// all current requests are processed.
pub fn new<S: Sink>(sink: S) -> Flush<S> {
Flush { sink: Some(sink) }
}
impl<S: Sink> Flush<S> {
/// Get a shared reference to the inner sink.
/// Returns `None` if the sink has already been flushed.
pub fn get_ref(&self) -> Option<&S> {
self.sink.as_ref()
}
/// Get a mutable reference to the inner sink.
/// Returns `None` if the sink has already been flushed.
pub fn get_mut(&mut self) -> Option<&mut S> {
self.sink.as_mut()
}
/// Consume the `Flush` and return the inner sink.
/// Returns `None` if the sink has already been flushed.
pub fn into_inner(self) -> Option<S> {
self.sink
}
}
impl<S: Sink> Future for Flush<S> {
type Item = S;
type Error = S::SinkError;
fn poll(&mut self, cx: &mut task::Context) -> Poll<S, S::SinkError> {
let mut sink = self.sink.take().expect("Attempted to poll Flush after it completed");
if sink.poll_flush(cx)?.is_ready() {
Ok(Async::Ready(sink))
} else {
self.sink = Some(sink);
Ok(Async::Pending)
}
}
}