-
Notifications
You must be signed in to change notification settings - Fork 628
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
TryStreamExt::try_forward
, remove TryStream
bound from `Strea…
…mExt::forward` (#2469) Co-authored-by: mukund <yaymukund@gmail.com>
- Loading branch information
1 parent
37dfb05
commit c0e9368
Showing
10 changed files
with
165 additions
and
34 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
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
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
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,74 @@ | ||
use crate::stream::{Fuse, IntoStream, Stream, TryStream}; | ||
use core::pin::Pin; | ||
use futures_core::future::{FusedFuture, Future}; | ||
use futures_core::ready; | ||
use futures_core::task::{Context, Poll}; | ||
use futures_sink::Sink; | ||
use pin_project_lite::pin_project; | ||
|
||
pin_project! { | ||
/// Future for the [`try_forward`](super::TryStreamExt::try_forward) method. | ||
#[project = TryForwardProj] | ||
#[derive(Debug)] | ||
#[must_use = "futures do nothing unless you `.await` or poll them"] | ||
pub struct TryForward<St, Si, Item> { | ||
#[pin] | ||
sink: Option<Si>, | ||
#[pin] | ||
stream: Fuse<IntoStream<St>>, | ||
buffered_item: Option<Item>, | ||
} | ||
} | ||
|
||
impl<St, Si, Item> TryForward<St, Si, Item> { | ||
pub(crate) fn new(stream: St, sink: Si) -> Self { | ||
Self { sink: Some(sink), stream: Fuse::new(IntoStream::new(stream)), buffered_item: None } | ||
} | ||
} | ||
|
||
impl<St, Si, Item, E> FusedFuture for TryForward<St, Si, Item> | ||
where | ||
Si: Sink<Item, Error = E>, | ||
St: TryStream<Ok = Item, Error = E>, | ||
{ | ||
fn is_terminated(&self) -> bool { | ||
self.sink.is_none() | ||
} | ||
} | ||
|
||
impl<St, Si, Item, E> Future for TryForward<St, Si, Item> | ||
where | ||
Si: Sink<Item, Error = E>, | ||
St: TryStream<Ok = Item, Error = E>, | ||
{ | ||
type Output = Result<(), E>; | ||
|
||
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> { | ||
let TryForwardProj { mut sink, mut stream, buffered_item } = self.project(); | ||
let mut si = sink.as_mut().as_pin_mut().expect("polled `TryForward` after completion"); | ||
|
||
loop { | ||
// If we've got an item buffered already, we need to write it to the | ||
// sink before we can do anything else | ||
if buffered_item.is_some() { | ||
ready!(si.as_mut().poll_ready(cx))?; | ||
si.as_mut().start_send(buffered_item.take().unwrap())?; | ||
} | ||
|
||
match stream.as_mut().poll_next(cx)? { | ||
Poll::Ready(Some(item)) => { | ||
*buffered_item = Some(item); | ||
} | ||
Poll::Ready(None) => { | ||
ready!(si.poll_close(cx))?; | ||
sink.set(None); | ||
return Poll::Ready(Ok(())); | ||
} | ||
Poll::Pending => { | ||
ready!(si.poll_flush(cx))?; | ||
return Poll::Pending; | ||
} | ||
} | ||
} | ||
} | ||
} |
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
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