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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
use std::{
fmt, fs, env, panic, process,
thread, sync::RwLock
};
use chrono::{Timelike, Datelike, Local};
use colored::{Colorize, ColoredString};
use lazy_static::lazy_static;
lazy_static! {
static ref PANIC_LOG_NAME: RwLock<String> = RwLock::new(String::new());
static ref PANIC_LOG_FOLDER: RwLock<String> = RwLock::new(String::new());
}
#[derive(Clone)]
pub struct Log {
name: String,
path: String,
folder: String
}
impl Log {
pub fn get(log_name: &str, folder: &str) -> Log {
let path = format!("{}/.local/share/{}", env::var("HOME").expect("Where the hell is your home folder?!"), folder);
fs::create_dir_all(&path).unwrap_or(());
Log {
name: log_name.to_string(),
path: path.to_string(),
folder: folder.to_string()
}
}
pub fn line<T: fmt::Display>(&self, level: LogLevel, text: T, print_stdout: bool) {
if let LogLevel::Debug(false) = level {
return;
}
let log_path = format!("{}/{}", self.path, self.get_log_name());
let mut log = fs::read_to_string(&log_path).unwrap_or_default();
let now = Local::now();
let msg = format!("[{}:{:02}:{:02}] [{}]: {}\n", now.hour(), now.minute(), now.second(), level, text);
if print_stdout { print!("{}", level.colorize(&msg)); }
log.push_str(&msg);
fs::write(log_path, log).expect("Unable to write to log file!");
}
pub fn line_basic<T: fmt::Display>(&self, text: T, print_stdout: bool) { self.line(LogLevel::Info, text, print_stdout); }
pub fn report_panics(&self, report: bool) {
if report {
let mut log_name = PANIC_LOG_NAME.write().unwrap();
*log_name = self.name.clone();
let mut log_folder = PANIC_LOG_FOLDER.write().unwrap();
*log_folder = self.folder.clone();
panic::set_hook(Box::new(panic_handler))
}
else {
drop(panic::take_hook());
}
}
fn get_log_name(&self) -> String {
let now = Local::now();
format!("{}-{}-{}-{}.log", self.name, now.year(), now.month(), now.day())
}
}
#[derive(Copy, Clone)]
pub enum LogLevel {
Info,
Debug(bool),
Warn,
Error,
Fatal
}
impl LogLevel {
fn colorize(&self, input: &str) -> ColoredString {
match self {
Self::Debug(_) => input.cyan(),
Self::Info => input.green(),
Self::Warn => input.bright_yellow(),
Self::Error => input.bright_red(),
Self::Fatal => input.bright_red().on_black()
}
}
}
impl fmt::Display for LogLevel {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match *self {
LogLevel::Info => write!(f, "INFO"),
LogLevel::Debug(_) => write!(f, "DEBUG"),
LogLevel::Warn => write!(f, "WARN"),
LogLevel::Error => write!(f, "ERROR"),
LogLevel::Fatal => write!(f, "FATAL")
}
}
}
fn panic_handler(info: &panic::PanicInfo) {
let backtrace = format!("{:?}", backtrace::Backtrace::new());
let log_name = PANIC_LOG_NAME.read().unwrap_or_else(|_| {
println!("Internal Error");
process::exit(101);
});
let log_folder = PANIC_LOG_FOLDER.read().unwrap_or_else(|_| {
println!("Internal Error");
process::exit(101);
});
let panic_log = Log::get(&log_name, &log_folder);
let cur_thread = thread::current();
let name = cur_thread.name();
let id = cur_thread.id();
let thread_disp = if let Some(n) = name {
n.to_string()
}
else {
format!("{:?}", id)
};
let location = if let Some(loc) = info.location() {
format!("at {}:{}:{}", loc.file(),loc.line(),loc.column())
}
else {
String::new()
};
panic_log.line(LogLevel::Fatal, format!("Thread '{}' panicked {}", thread_disp, location), true);
let msg = match (info.payload().downcast_ref::<&str>(), info.payload().downcast_ref::<String>()) {
(Some(s), _) => s.to_string(),
(_, Some(s)) => s.to_string(),
(None, None) => String::new(),
};
if !msg.is_empty() {
panic_log.line(LogLevel::Fatal, format!("Error: {}", msg), true);
}
panic_log.line(LogLevel::Fatal, "Backtrace:", true);
for line in backtrace.lines() {
panic_log.line(LogLevel::Fatal, line, true);
}
}