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
88
// Pasts
//
// Copyright (c) 2019-2020 Jeron Aldaron Lau
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// https://apache.org/licenses/LICENSE-2.0>, or the Zlib License, <LICENSE-ZLIB
// or http://opensource.org/licenses/Zlib>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

/// Create a future that polls multiple futures concurrently.
///
/// Takes an array of types that implement [`Future`](core::future::Future) and
/// [`Unpin`](core::marker::Unpin).  If you're dealing with futures that don't
/// implement [`Unpin`](core::marker::Unpin), you can use the
/// [`task!()`](crate::task) macro to make it implement
/// [`Unpin`](core::marker::Unpin).  The resulting type will be the same as
/// other futures created with [`task!()`](crate::task).
///
/// # Examples
/// ## Await on The Fastest Future
/// `poll!()` will always poll the first future in the array first.
///
/// ```rust
/// use pasts::prelude::*;
///
/// async fn async_main() {
///     task!(let hello = async { "Hello" });
///     task!(let world = async { "World!"});
///     // Hello is ready, so returns with index and result.
///     assert_eq!((0, "Hello"), poll!(hello, world).await);
/// }
///
/// exec!(async_main());
/// ```
///
/// ## Await the Outputs of Two Futures Concurrently
/// ```rust
/// use pasts::prelude::*;
///
/// async fn async_main() {
///     task!(let hello = async { (0, "Hello") });
///     task!(let world = async { (1, "World!") });
///     let mut task_queue = vec![hello, world];
///     while !task_queue.is_empty() {
///         let (index, output) = poll!(task_queue).await;
///         task_queue.remove(index);
///         match output {
///             (0, a) => assert_eq!(a, "Hello"),
///             (1, a) => assert_eq!(a, "World!"),
///             _ => unreachable!(),
///         }
///     }
/// }
///
/// exec!(async_main());
/// ```
#[macro_export]
macro_rules! poll {
    ($f:expr) => {{
        use core::{future::Future, task::{Context, Poll}, pin::Pin};
        struct Fut<'a, T, F: Future<Output = T> + Unpin> {
            futures: &'a mut [F],
        }
        impl<T, F: Future<Output = T> + Unpin> Unpin for Fut<'_, T, F> {}
        impl<T: Unpin, F: Future<Output = T> + Unpin> Future for Fut<'_, T, F> {
            type Output = (usize, T);
            fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>)
                -> Poll<Self::Output>
            {
                let tasks = &mut self.get_mut().futures;
                for (task_id, mut task) in tasks.iter_mut().enumerate() {
                    let pin_fut = Pin::new(&mut task);
                    let task = pin_fut.poll(cx);
                    match task {
                        Poll::Ready(ret) => return Poll::Ready((task_id, ret)),
                        Poll::Pending => {}
                    }
                }
                Poll::Pending
            }
        }
        $crate::Task::new(&mut Fut { futures: &mut $f[..] })
    }};

    ($($f:expr),* $(,)?) => {{
        poll!([$($crate::Task::new(&mut $f)),*])
    }};
}