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
//! Stream combinator that can be used in the futures::select! macro. It is
//! similar to futures::StreamExt::select_next_some, but instead of only
//! resolving the Some variants, this one will return Option<T>. This is
//! useful when you want to do some action after one stream completes.
//! The bulk of this code was copied from futures::stream::SelectNextSome
//! (Copyright (c) 2016 Alex Crichton, Copyright (c) 2017 The Tokio Authors).

use core::pin::Pin;
use futures::future::{FusedFuture, Future};
use futures::stream::{FusedStream, StreamExt};
use futures::task::{Context, Poll};

pub trait SelectNextAnyExt {
    fn select_next_any(&mut self) -> SelectNextAny<'_, Self>
    where
        Self: Unpin + FusedStream;
}

impl<T> SelectNextAnyExt for T
where
    T: Unpin + FusedStream,
{
    fn select_next_any(&mut self) -> SelectNextAny<'_, Self> {
        SelectNextAny::new(self)
    }
}

/// Future for the [`select_next_any`](super::StreamExt::select_next_any)
/// method.
#[derive(Debug)]
#[must_use = "futures do nothing unless you `.await` or poll them"]
pub struct SelectNextAny<'a, St: ?Sized> {
    stream: &'a mut St,
}

impl<'a, St: ?Sized> SelectNextAny<'a, St> {
    fn new(stream: &'a mut St) -> Self {
        SelectNextAny { stream }
    }
}

impl<St: ?Sized + FusedStream + Unpin> FusedFuture for SelectNextAny<'_, St> {
    fn is_terminated(&self) -> bool {
        self.stream.is_terminated()
    }
}

impl<St: ?Sized + FusedStream + Unpin> Future for SelectNextAny<'_, St> {
    type Output = Option<St::Item>;

    fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        assert!(
            !self.stream.is_terminated(),
            "SelectNextAny polled after terminated"
        );

        self.stream.poll_next_unpin(cx)
    }
}