|
|
|
@ -5,6 +5,7 @@ use pin_project_lite::pin_project;
|
|
|
|
|
|
|
|
|
|
use crate::prelude::*;
|
|
|
|
|
use crate::stream::Fuse;
|
|
|
|
|
use crate::utils;
|
|
|
|
|
|
|
|
|
|
pin_project! {
|
|
|
|
|
/// A stream that merges two other streams into a single stream.
|
|
|
|
@ -27,7 +28,10 @@ pin_project! {
|
|
|
|
|
|
|
|
|
|
impl<L: Stream, R: Stream> Merge<L, R> {
|
|
|
|
|
pub(crate) fn new(left: L, right: R) -> Self {
|
|
|
|
|
Self { left: left.fuse(), right: right.fuse() }
|
|
|
|
|
Self {
|
|
|
|
|
left: left.fuse(),
|
|
|
|
|
right: right.fuse(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -40,14 +44,29 @@ where
|
|
|
|
|
|
|
|
|
|
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
|
|
|
|
|
let this = self.project();
|
|
|
|
|
match this.left.poll_next(cx) {
|
|
|
|
|
Poll::Ready(Some(item)) => Poll::Ready(Some(item)),
|
|
|
|
|
Poll::Ready(None) => this.right.poll_next(cx),
|
|
|
|
|
Poll::Pending => match this.right.poll_next(cx) {
|
|
|
|
|
Poll::Ready(Some(item)) => Poll::Ready(Some(item)),
|
|
|
|
|
Poll::Ready(None) => Poll::Pending,
|
|
|
|
|
Poll::Pending => Poll::Pending,
|
|
|
|
|
}
|
|
|
|
|
if utils::random(1) == 1 {
|
|
|
|
|
poll_next_in_order(this.left, this.right, cx)
|
|
|
|
|
} else {
|
|
|
|
|
poll_next_in_order(this.right, this.left, cx)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn poll_next_in_order<F, S, I>(
|
|
|
|
|
first: Pin<&mut F>,
|
|
|
|
|
second: Pin<&mut S>,
|
|
|
|
|
cx: &mut Context<'_>,
|
|
|
|
|
) -> Poll<Option<I>>
|
|
|
|
|
where
|
|
|
|
|
F: Stream<Item = I>,
|
|
|
|
|
S: Stream<Item = I>,
|
|
|
|
|
{
|
|
|
|
|
match first.poll_next(cx) {
|
|
|
|
|
Poll::Ready(None) => second.poll_next(cx),
|
|
|
|
|
Poll::Ready(item) => Poll::Ready(item),
|
|
|
|
|
Poll::Pending => match second.poll_next(cx) {
|
|
|
|
|
Poll::Ready(None) | Poll::Pending => Poll::Pending,
|
|
|
|
|
Poll::Ready(item) => Poll::Ready(item),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|