1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
use crate::jsonrpc::futures::stream::{Fuse, Stream};
use crate::jsonrpc::futures::{Async, Poll};

pub trait SelectWithWeakExt: Stream {
	fn select_with_weak<S>(self, other: S) -> SelectWithWeak<Self, S>
	where
		S: Stream<Item = Self::Item, Error = Self::Error>,
		Self: Sized;
}

impl<T> SelectWithWeakExt for T
where
	T: Stream,
{
	fn select_with_weak<S>(self, other: S) -> SelectWithWeak<Self, S>
	where
		S: Stream<Item = Self::Item, Error = Self::Error>,
		Self: Sized,
	{
		new(self, other)
	}
}

/// An adapter for merging the output of two streams.
///
/// The merged stream produces items from either of the underlying streams as
/// they become available, and the streams are polled in a round-robin fashion.
/// Errors, however, are not merged: you get at most one error at a time.
///
/// Finishes when strong stream finishes
#[derive(Debug)]
#[must_use = "streams do nothing unless polled"]
pub struct SelectWithWeak<S1, S2> {
	strong: Fuse<S1>,
	weak: Fuse<S2>,
	use_strong: bool,
}

fn new<S1, S2>(stream1: S1, stream2: S2) -> SelectWithWeak<S1, S2>
where
	S1: Stream,
	S2: Stream<Item = S1::Item, Error = S1::Error>,
{
	SelectWithWeak {
		strong: stream1.fuse(),
		weak: stream2.fuse(),
		use_strong: false,
	}
}

impl<S1, S2> Stream for SelectWithWeak<S1, S2>
where
	S1: Stream,
	S2: Stream<Item = S1::Item, Error = S1::Error>,
{
	type Item = S1::Item;
	type Error = S1::Error;

	fn poll(&mut self) -> Poll<Option<S1::Item>, S1::Error> {
		let mut checked_strong = false;
		loop {
			if self.use_strong {
				match self.strong.poll()? {
					Async::Ready(Some(item)) => {
						self.use_strong = false;
						return Ok(Some(item).into());
					}
					Async::Ready(None) => return Ok(None.into()),
					Async::NotReady => {
						if !checked_strong {
							self.use_strong = false;
						} else {
							return Ok(Async::NotReady);
						}
					}
				}
				checked_strong = true;
			} else {
				self.use_strong = true;
				match self.weak.poll()? {
					Async::Ready(Some(item)) => return Ok(Some(item).into()),
					Async::Ready(None) | Async::NotReady => (),
				}
			}
		}
	}
}