-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tokio-stream: add
StreamExt::map_while
(#4351)
Fixes #4337 Rust 1.57 stabilized the `Iterator::map_while` API. This PR adds the same functionality to the `StreamExt` trait, to keep parity.
- Loading branch information
Showing
2 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
use crate::Stream; | ||
|
||
use core::fmt; | ||
use core::pin::Pin; | ||
use core::task::{Context, Poll}; | ||
use pin_project_lite::pin_project; | ||
|
||
pin_project! { | ||
/// Stream for the [`map_while`](super::StreamExt::map_while) method. | ||
#[must_use = "streams do nothing unless polled"] | ||
pub struct MapWhile<St, F> { | ||
#[pin] | ||
stream: St, | ||
f: F, | ||
} | ||
} | ||
|
||
impl<St, F> fmt::Debug for MapWhile<St, F> | ||
where | ||
St: fmt::Debug, | ||
{ | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
f.debug_struct("MapWhile") | ||
.field("stream", &self.stream) | ||
.finish() | ||
} | ||
} | ||
|
||
impl<St, F> MapWhile<St, F> { | ||
pub(super) fn new(stream: St, f: F) -> Self { | ||
MapWhile { stream, f } | ||
} | ||
} | ||
|
||
impl<St, F, T> Stream for MapWhile<St, F> | ||
where | ||
St: Stream, | ||
F: FnMut(St::Item) -> Option<T>, | ||
{ | ||
type Item = T; | ||
|
||
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<T>> { | ||
let me = self.project(); | ||
let f = me.f; | ||
me.stream.poll_next(cx).map(|opt| opt.and_then(f)) | ||
} | ||
|
||
fn size_hint(&self) -> (usize, Option<usize>) { | ||
let (_, upper) = self.stream.size_hint(); | ||
(0, upper) | ||
} | ||
} |