summaryrefslogtreecommitdiffstats
path: root/third_party/rust/futures-0.1.31/src/future/catch_unwind.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/futures-0.1.31/src/future/catch_unwind.rs')
-rw-r--r--third_party/rust/futures-0.1.31/src/future/catch_unwind.rs51
1 files changed, 51 insertions, 0 deletions
diff --git a/third_party/rust/futures-0.1.31/src/future/catch_unwind.rs b/third_party/rust/futures-0.1.31/src/future/catch_unwind.rs
new file mode 100644
index 0000000000..f87f118185
--- /dev/null
+++ b/third_party/rust/futures-0.1.31/src/future/catch_unwind.rs
@@ -0,0 +1,51 @@
+use std::prelude::v1::*;
+use std::any::Any;
+use std::panic::{catch_unwind, UnwindSafe, AssertUnwindSafe};
+
+use {Future, Poll, Async};
+
+/// Future for the `catch_unwind` combinator.
+///
+/// This is created by the `Future::catch_unwind` method.
+#[derive(Debug)]
+#[must_use = "futures do nothing unless polled"]
+pub struct CatchUnwind<F> where F: Future {
+ future: Option<F>,
+}
+
+pub fn new<F>(future: F) -> CatchUnwind<F>
+ where F: Future + UnwindSafe,
+{
+ CatchUnwind {
+ future: Some(future),
+ }
+}
+
+impl<F> Future for CatchUnwind<F>
+ where F: Future + UnwindSafe,
+{
+ type Item = Result<F::Item, F::Error>;
+ type Error = Box<Any + Send>;
+
+ fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
+ let mut future = self.future.take().expect("cannot poll twice");
+ let (res, future) = catch_unwind(|| (future.poll(), future))?;
+ match res {
+ Ok(Async::NotReady) => {
+ self.future = Some(future);
+ Ok(Async::NotReady)
+ }
+ Ok(Async::Ready(t)) => Ok(Async::Ready(Ok(t))),
+ Err(e) => Ok(Async::Ready(Err(e))),
+ }
+ }
+}
+
+impl<F: Future> Future for AssertUnwindSafe<F> {
+ type Item = F::Item;
+ type Error = F::Error;
+
+ fn poll(&mut self) -> Poll<F::Item, F::Error> {
+ self.0.poll()
+ }
+}