]> git.lizzy.rs Git - rust.git/commitdiff
Add std::panic::propagate
authorSteven Fackler <sfackler@gmail.com>
Fri, 25 Dec 2015 19:00:40 +0000 (12:00 -0700)
committerSteven Fackler <sfackler@gmail.com>
Thu, 7 Jan 2016 00:06:11 +0000 (16:06 -0800)
src/libstd/panic.rs
src/libstd/sys/common/unwind/mod.rs
src/test/run-pass/panic-recover-propagate.rs [new file with mode: 0644]

index b42d1d1b8d4ce5fb95d4cdc7d1d09207b150d6fc..f6931f21eb9d02aea76ec20280f9cff846eb94d0 100644 (file)
@@ -13,6 +13,8 @@
 #![unstable(feature = "std_panic", reason = "awaiting feedback",
             issue = "27719")]
 
+use any::Any;
+use boxed::Box;
 use cell::UnsafeCell;
 use ops::{Deref, DerefMut};
 use ptr::{Unique, Shared};
@@ -259,3 +261,28 @@ pub fn recover<F: FnOnce() -> R + RecoverSafe, R>(f: F) -> Result<R> {
     }
     Ok(result.unwrap())
 }
+
+/// Triggers a panic without invoking the panic handler.
+///
+/// This is designed to be used in conjunction with `recover` to, for example,
+/// carry a panic across a layer of C code.
+///
+/// # Examples
+///
+/// ```should_panic
+/// #![feature(std_panic, recover, panic_propagate)]
+///
+/// use std::panic;
+///
+/// let result = panic::recover(|| {
+///     panic!("oh no!");
+/// });
+///
+/// if let Err(err) = result {
+///     panic::propagate(err);
+/// }
+/// ```
+#[unstable(feature = "panic_propagate", reason = "awaiting feedback", issue = "30752")]
+pub fn propagate(payload: Box<Any + Send>) -> ! {
+    unwind::rust_panic(payload)
+}
index 0f10e7274614ce9a1104ff5bc89f078a51d11300..666b2ed72adcec2ae7bfe58078c636397f2ac67f 100644 (file)
@@ -172,7 +172,7 @@ pub fn panicking() -> bool {
 #[inline(never)]
 #[no_mangle]
 #[allow(private_no_mangle_fns)]
-fn rust_panic(cause: Box<Any + Send + 'static>) -> ! {
+pub fn rust_panic(cause: Box<Any + Send + 'static>) -> ! {
     unsafe {
         imp::panic(cause)
     }
diff --git a/src/test/run-pass/panic-recover-propagate.rs b/src/test/run-pass/panic-recover-propagate.rs
new file mode 100644 (file)
index 0000000..c0b2f25
--- /dev/null
@@ -0,0 +1,35 @@
+// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+#![feature(std_panic, recover, panic_propagate, panic_handler, const_fn)]
+
+use std::sync::atomic::{AtomicUsize, Ordering};
+use std::panic;
+use std::thread;
+
+static A: AtomicUsize = AtomicUsize::new(0);
+
+fn main() {
+    panic::set_handler(|_| {
+        A.fetch_add(1, Ordering::SeqCst);
+    });
+
+    let result = thread::spawn(|| {
+        let result = panic::recover(|| {
+            panic!("hi there");
+        });
+
+        panic::propagate(result.err().unwrap());
+    }).join();
+
+    let msg = *result.err().unwrap().downcast::<&'static str>().unwrap();
+    assert_eq!("hi there", msg);
+    assert_eq!(1, A.load(Ordering::SeqCst));
+}