mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 22:54:58 +00:00
Add panic_context module for better panic messages
This commit is contained in:
parent
e315fd9bb0
commit
d3a2b21a8c
3 changed files with 55 additions and 2 deletions
49
crates/stdx/src/panic_context.rs
Normal file
49
crates/stdx/src/panic_context.rs
Normal file
|
@ -0,0 +1,49 @@
|
|||
//! A micro-crate to enhance panic messages with context info.
|
||||
//!
|
||||
//! FIXME: upstream to https://github.com/kriomant/panic-context ?
|
||||
|
||||
use std::{cell::RefCell, panic, sync::Once};
|
||||
|
||||
pub fn enter(context: String) -> impl Drop {
|
||||
static ONCE: Once = Once::new();
|
||||
ONCE.call_once(PanicContext::init);
|
||||
|
||||
with_ctx(|ctx| ctx.push(context));
|
||||
PanicContext { _priv: () }
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
struct PanicContext {
|
||||
_priv: (),
|
||||
}
|
||||
|
||||
impl PanicContext {
|
||||
fn init() {
|
||||
let default_hook = panic::take_hook();
|
||||
let hook = move |panic_info: &panic::PanicInfo<'_>| {
|
||||
with_ctx(|ctx| {
|
||||
if !ctx.is_empty() {
|
||||
eprintln!("Panic context:");
|
||||
for frame in ctx.iter() {
|
||||
eprintln!("> {}\n", frame)
|
||||
}
|
||||
}
|
||||
default_hook(panic_info)
|
||||
})
|
||||
};
|
||||
panic::set_hook(Box::new(hook))
|
||||
}
|
||||
}
|
||||
|
||||
impl Drop for PanicContext {
|
||||
fn drop(&mut self) {
|
||||
with_ctx(|ctx| assert!(ctx.pop().is_some()))
|
||||
}
|
||||
}
|
||||
|
||||
fn with_ctx(f: impl FnOnce(&mut Vec<String>)) {
|
||||
thread_local! {
|
||||
static CTX: RefCell<Vec<String>> = RefCell::new(Vec::new());
|
||||
}
|
||||
CTX.with(|ctx| f(&mut *ctx.borrow_mut()))
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue