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
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
use core::fmt::{self, Debug, Formatter};
use core::iter::{FromIterator, FusedIterator};
use core::marker::PhantomData;
use core::pin::Pin;
use core::task::{Context, Poll};

use completion_core::CompletionFuture;

use crate::future::CompletionFutureExt;
use crate::stream::{FromCompletionStream, FromCompletionStreamInner};

use super::super::{ControlFlow, FutureState, TryFuture, TryZipFuture};
use super::base::{JoinAll, JoinAllOutput};

/// Wait for all the futures in an iterator to successfully complete or one to return an error.
///
/// On success, this outputs a [`TryZipAllOutput`].
///
/// Requires the `std` feature, as [`std::panic::catch_unwind`] is needed when polling the futures
/// to ensure soundness.
///
/// # Examples
///
/// ```
/// use completion::{future, completion_async_move};
///
/// # future::block_on(completion::completion_async! {
/// assert_eq!(
///     future::try_zip_all(
///         [1, 2, 3, 4]
///             .iter()
///             .map(|&i| completion_async_move!(Ok::<_, ()>(i * 2)))
///     )
///     .await
///     .unwrap()
///     .collect::<Vec<_>>(),
///     vec![2, 4, 6, 8],
/// );
/// assert_eq!(
///     future::try_zip_all(
///         [1, 2, 3, 4]
///             .iter()
///             .map(|&i| completion_async_move! {
///                 if i == 3 {
///                     Err("oh no")
///                 } else {
///                     Ok(i * 2)
///                 }
///             })
///     )
///     .await
///     .unwrap_err(),
///     "oh no",
/// );
/// # });
/// ```
///
/// As [`TryZipAll`] implements [`FromIterator`], it can also be used with [`Iterator::collect`]:
///
/// ```
/// use completion::{future, completion_async_move};
///
/// # future::block_on(completion::completion_async! {
/// assert_eq!(
///     [1, 2, 3, 4]
///         .iter()
///         .map(|&i| completion_async_move!(Ok::<_, ()>(i * 2)))
///         .collect::<future::TryZipAll<_>>()
///         .await
///         .unwrap()
///         .collect::<Vec<_>>(),
///     vec![2, 4, 6, 8],
/// );
/// # });
/// ```
#[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
pub fn try_zip_all<I>(iter: I) -> TryZipAll<I::Item>
where
    I: IntoIterator,
    I::Item: TryFuture,
{
    iter.into_iter().collect()
}

/// Future for [`try_zip_all`]. On success, this outputs a [`TryZipAllOutput`].
#[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
#[derive(Debug)]
pub struct TryZipAll<F: TryFuture> {
    inner: JoinAll<TryZipFuture<F>>,
    _correct_debug_bounds: PhantomData<(F::Ok, F::Error)>,
}

impl<F: TryFuture> Unpin for TryZipAll<F> {}

impl<F: TryFuture> TryZipAll<F> {
    fn new(inner: JoinAll<TryZipFuture<F>>) -> Self {
        Self {
            inner,
            _correct_debug_bounds: PhantomData,
        }
    }
}

impl<F: TryFuture> FromIterator<F> for TryZipAll<F> {
    fn from_iter<T: IntoIterator<Item = F>>(iter: T) -> Self {
        Self::new(JoinAll::new(iter.into_iter().map(TryZipFuture::new)))
    }
}

impl<F: TryFuture> FromCompletionStream<F> for TryZipAll<F> {}
impl<F: TryFuture> FromCompletionStreamInner<F> for TryZipAll<F> {
    type Intermediate = Vec<FutureState<TryZipFuture<F>>>;
    fn start(lower: usize, upper: Option<usize>) -> Self::Intermediate {
        <JoinAll<TryZipFuture<F>>>::start(lower, upper)
    }
    fn push(intermediate: Self::Intermediate, item: F) -> Result<Self::Intermediate, Self> {
        <JoinAll<TryZipFuture<F>>>::push(intermediate, TryZipFuture::new(item)).map_err(Self::new)
    }
    fn finalize(intermediate: Self::Intermediate) -> Self {
        Self::new(<JoinAll<TryZipFuture<F>>>::finalize(intermediate))
    }
}

impl<F: TryFuture> CompletionFuture for TryZipAll<F> {
    type Output = Result<TryZipAllOutput<F>, F::Error>;

    unsafe fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
        self.inner.poll(cx).map(|flow| match flow {
            ControlFlow::Continue(val) => Ok(TryZipAllOutput(val)),
            ControlFlow::Break(e) => Err(e),
        })
    }
    unsafe fn poll_cancel(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> {
        self.inner.poll_cancel(cx)
    }
}

/// An iterator over the successful outputs of futures in a [`TryZipAll`].
#[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
pub struct TryZipAllOutput<F: TryFuture>(JoinAllOutput<TryZipFuture<F>>);

impl<F: TryFuture> Iterator for TryZipAllOutput<F> {
    type Item = F::Ok;

    fn next(&mut self) -> Option<Self::Item> {
        self.0.next()
    }
    fn size_hint(&self) -> (usize, Option<usize>) {
        self.0.size_hint()
    }
    fn count(self) -> usize {
        self.0.count()
    }
}
impl<F: TryFuture> ExactSizeIterator for TryZipAllOutput<F> {
    fn len(&self) -> usize {
        self.0.len()
    }
}
impl<F: TryFuture> DoubleEndedIterator for TryZipAllOutput<F> {
    fn next_back(&mut self) -> Option<Self::Item> {
        self.0.next_back()
    }
}
impl<F: TryFuture> FusedIterator for TryZipAllOutput<F> {}

impl<F: TryFuture> Debug for TryZipAllOutput<F>
where
    F::Ok: Debug,
{
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.debug_tuple("TryZipAllOutput").field(&self.0).finish()
    }
}