forked from rust-lang/rfcs
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
992b7f7
commit b7b728c
Showing
3 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,70 @@ | ||
use {Task, Poll}; | ||
use stream::{Stream, Fuse}; | ||
|
||
/// An adapter for merging the output of two streams. | ||
/// | ||
/// The merged stream produces items from one or both of the underlying | ||
/// streams as they become available. Errors, however, are not merged: you | ||
/// get at most one error at a time. | ||
pub struct Zip<S1: Stream, S2: Stream> { | ||
stream1: Fuse<S1>, | ||
stream2: Fuse<S2>, | ||
queued1: Option<S1::Item>, | ||
queued2: Option<S2::Item>, | ||
} | ||
|
||
pub fn new<S1, S2>(stream1: S1, stream2: S2) -> Zip<S1, S2> | ||
where S1: Stream, S2: Stream<Error = S1::Error> | ||
{ | ||
Zip { | ||
stream1: stream1.fuse(), | ||
stream2: stream2.fuse(), | ||
queued1: None, | ||
queued2: None, | ||
} | ||
} | ||
|
||
impl<S1, S2> Stream for Zip<S1, S2> | ||
where S1: Stream, S2: Stream<Error = S1::Error> | ||
{ | ||
type Item = (S1::Item, S2::Item); | ||
type Error = S1::Error; | ||
|
||
fn poll(&mut self, task: &mut Task) -> Poll<Option<Self::Item>, Self::Error> { | ||
if self.queued1.is_none() { | ||
match self.stream1.poll(task) { | ||
Poll::Err(e) => return Poll::Err(e), | ||
Poll::NotReady => {} | ||
Poll::Ok(Some(item1)) => self.queued1 = Some(item1), | ||
Poll::Ok(None) => {} | ||
} | ||
} | ||
if self.queued2.is_none() { | ||
match self.stream2.poll(task) { | ||
Poll::Err(e) => return Poll::Err(e), | ||
Poll::NotReady => {} | ||
Poll::Ok(Some(item2)) => self.queued2 = Some(item2), | ||
Poll::Ok(None) => {} | ||
} | ||
} | ||
|
||
if self.queued1.is_some() && self.queued2.is_some() { | ||
let pair = (self.queued1.take().unwrap(), | ||
self.queued2.take().unwrap()); | ||
Poll::Ok(Some(pair)) | ||
} else if self.stream1.is_done() || self.stream2.is_done() { | ||
Poll::Ok(None) | ||
} else { | ||
Poll::NotReady | ||
} | ||
} | ||
|
||
fn schedule(&mut self, task: &mut Task) { | ||
if self.queued1.is_none() { | ||
self.stream1.schedule(task); | ||
} | ||
if self.queued2.is_none() { | ||
self.stream2.schedule(task); | ||
} | ||
} | ||
} |
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