1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
extern crate backtrace;
use backtrace::Backtrace;
use std::{
panic::{self, PanicInfo},
process, thread,
};
pub fn set_abort() {
set_with(|msg| {
eprintln!("{}", msg);
process::abort()
});
}
pub fn set_with<F>(f: F)
where
F: Fn(&str) + Send + Sync + 'static,
{
panic::set_hook(Box::new(move |info| {
let msg = gen_panic_msg(info);
f(&msg);
}));
}
static ABOUT_PANIC: &str = "
This is a bug. Please report it at:
https://github.com/openethereum/openethereum/issues/new
";
fn gen_panic_msg(info: &PanicInfo) -> String {
let location = info.location();
let file = location.as_ref().map(|l| l.file()).unwrap_or("<unknown>");
let line = location.as_ref().map(|l| l.line()).unwrap_or(0);
let msg = match info.payload().downcast_ref::<&'static str>() {
Some(s) => *s,
None => match info.payload().downcast_ref::<String>() {
Some(s) => &s[..],
None => "Box<Any>",
},
};
let thread = thread::current();
let name = thread.name().unwrap_or("<unnamed>");
let backtrace = Backtrace::new();
format!(
r#"
====================
{backtrace:?}
Thread '{name}' panicked at '{msg}', {file}:{line}
{about}
"#,
backtrace = backtrace,
name = name,
msg = msg,
file = file,
line = line,
about = ABOUT_PANIC
)
}