futures_util/stream/
take_while.rsuse futures_core::{Async, Poll, IntoFuture, Future, Stream};
use futures_core::task;
use futures_sink::{ Sink};
#[derive(Debug)]
#[must_use = "streams do nothing unless polled"]
pub struct TakeWhile<S, R, P> where S: Stream, R: IntoFuture {
stream: S,
pred: P,
pending: Option<(R::Future, S::Item)>,
done_taking: bool,
}
pub fn new<S, R, P>(s: S, p: P) -> TakeWhile<S, R, P>
where S: Stream,
P: FnMut(&S::Item) -> R,
R: IntoFuture<Item=bool, Error=S::Error>,
{
TakeWhile {
stream: s,
pred: p,
pending: None,
done_taking: false,
}
}
impl<S, R, P> TakeWhile<S, R, P> where S: Stream, R: IntoFuture {
pub fn get_ref(&self) -> &S {
&self.stream
}
pub fn get_mut(&mut self) -> &mut S {
&mut self.stream
}
pub fn into_inner(self) -> S {
self.stream
}
}
impl<S, R, P> Sink for TakeWhile<S, R, P>
where S: Sink + Stream, R: IntoFuture
{
type SinkItem = S::SinkItem;
type SinkError = S::SinkError;
delegate_sink!(stream);
}
impl<S, R, P> Stream for TakeWhile<S, R, P>
where S: Stream,
P: FnMut(&S::Item) -> R,
R: IntoFuture<Item=bool, Error=S::Error>,
{
type Item = S::Item;
type Error = S::Error;
fn poll_next(&mut self, cx: &mut task::Context) -> Poll<Option<S::Item>, S::Error> {
if self.done_taking {
return Ok(Async::Ready(None));
}
if self.pending.is_none() {
let item = match try_ready!(self.stream.poll_next(cx)) {
Some(e) => e,
None => return Ok(Async::Ready(None)),
};
self.pending = Some(((self.pred)(&item).into_future(), item));
}
assert!(self.pending.is_some());
match self.pending.as_mut().unwrap().0.poll(cx) {
Ok(Async::Ready(true)) => {
let (_, item) = self.pending.take().unwrap();
Ok(Async::Ready(Some(item)))
},
Ok(Async::Ready(false)) => {
self.done_taking = true;
self.pending = None;
Ok(Async::Ready(None))
}
Ok(Async::Pending) => Ok(Async::Pending),
Err(e) => {
self.pending = None;
Err(e)
}
}
}
}