2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-12-28 07:53:08 +00:00
async-std/src/option/from_stream.rs
Yoshua Wuyts c82b1efb69
fix(stream): add send guards on collect
Closes #639 

Co-authored-by: dignifiedquire <me@dignifiedquire.com>
2020-06-27 16:46:14 +02:00

42 lines
1.3 KiB
Rust

use std::pin::Pin;
use crate::prelude::*;
use crate::stream::{FromStream, IntoStream};
use std::convert::identity;
impl<T: Send, V> FromStream<Option<T>> for Option<V>
where
V: FromStream<T>,
{
/// Takes each element in the stream: if it is `None`, no further
/// elements are taken, and `None` is returned. Should no `None`
/// occur, a container with the values of each `Option` is returned.
#[inline]
fn from_stream<'a, S: IntoStream<Item = Option<T>> + 'a>(
stream: S,
) -> Pin<Box<dyn Future<Output = Self> + 'a + Send>>
where
<S as IntoStream>::IntoStream: Send,
{
let stream = stream.into_stream();
Box::pin(async move {
// Using `take_while` here because it is able to stop the stream early
// if a failure occurs
let mut found_none = false;
let out: V = stream
.take_while(|elem| {
elem.is_some() || {
found_none = true;
// Stop processing the stream on `None`
false
}
})
.filter_map(identity)
.collect()
.await;
if found_none { None } else { Some(out) }
})
}
}