forked from async-rs/async-std
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the ability to collect a stream of results
- Loading branch information
Showing
4 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
use crate::stream::{FromStream, IntoStream, Stream}; | ||
|
||
use std::pin::Pin; | ||
|
||
impl<T: Send, E: Send, V> FromStream<Result<T, E>> for Result<V, E> | ||
where V: FromStream<T> { | ||
/// Takes each element in the stream: if it is an `Err`, no further | ||
/// elements are taken, and the `Err` is returned. Should no `Err` | ||
/// occur, a container with the values of each `Result` is returned. | ||
#[inline] | ||
fn from_stream<'a, S: IntoStream<Item = Result<T, E>>>( | ||
stream: S, | ||
) -> Pin<Box<dyn core::future::Future<Output = Self> + Send + 'a>> | ||
where | ||
<S as IntoStream>::IntoStream: Send + 'a, | ||
{ | ||
let stream = stream.into_stream(); | ||
|
||
Pin::from(Box::new(async move { | ||
pin_utils::pin_mut!(stream); | ||
|
||
// Using `scan` here because it is able to stop the stream early | ||
// if a failure occurs | ||
let mut found_error = None; | ||
let out: V = stream.scan((), |_, elem| { | ||
match elem { | ||
Ok(elem) => Some(elem), | ||
Err(err) => { | ||
found_error = Some(err); | ||
// Stop processing the stream on error | ||
None | ||
}, | ||
} | ||
}).collect().await; | ||
|
||
match found_error { | ||
Some(err) => Err(err), | ||
None => Ok(out), | ||
} | ||
})) | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
//! The Rust core error handling type | ||
//! | ||
//! This module provides the `Result<T, E>` type for returning and | ||
//! propagating errors. | ||
mod from_stream; | ||
|
||
#[doc(inline)] | ||
pub use std::result::Result; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters