Files
tokio/tokio-stream/src/iter.rs
T

68 lines
1.4 KiB
Rust
Raw Normal View History

2020-12-15 23:24:38 -05:00
use crate::Stream;
2019-12-18 22:57:22 +03:00
use core::pin::Pin;
use core::task::{Context, Poll};
/// Stream for the [`iter`](fn@iter) function.
2019-12-18 22:57:22 +03:00
#[derive(Debug)]
#[must_use = "streams do nothing unless polled"]
pub struct Iter<I> {
iter: I,
2020-12-15 23:24:38 -05:00
yield_amt: usize,
2019-12-18 22:57:22 +03:00
}
impl<I> Unpin for Iter<I> {}
/// Converts an `Iterator` into a `Stream` which is always ready
/// to yield the next value.
///
/// Iterators in Rust don't express the ability to block, so this adapter
/// simply always calls `iter.next()` and returns that.
///
/// ```
/// # async fn dox() {
2020-12-15 23:24:38 -05:00
/// use tokio_stream::{self as stream, StreamExt};
2019-12-18 22:57:22 +03:00
///
/// let mut stream = stream::iter(vec![17, 19]);
///
/// assert_eq!(stream.next().await, Some(17));
/// assert_eq!(stream.next().await, Some(19));
/// assert_eq!(stream.next().await, None);
/// # }
/// ```
pub fn iter<I>(i: I) -> Iter<I::IntoIter>
2019-12-21 00:54:43 +03:00
where
I: IntoIterator,
2019-12-18 22:57:22 +03:00
{
Iter {
iter: i.into_iter(),
2020-12-15 23:24:38 -05:00
yield_amt: 0,
2019-12-18 22:57:22 +03:00
}
}
impl<I> Stream for Iter<I>
2019-12-21 00:54:43 +03:00
where
I: Iterator,
2019-12-18 22:57:22 +03:00
{
type Item = I::Item;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<I::Item>> {
2020-12-15 23:24:38 -05:00
// TODO: add coop back
if self.yield_amt >= 32 {
self.yield_amt = 0;
cx.waker().wake_by_ref();
Poll::Pending
} else {
self.yield_amt += 1;
Poll::Ready(self.iter.next())
}
2019-12-18 22:57:22 +03:00
}
fn size_hint(&self) -> (usize, Option<usize>) {
self.iter.size_hint()
}
}