use std::io::Write;
use std::sync::Mutex;
pub static mut GLORE: Option<Mutex<&mut dyn Write>> = None;
pub fn init(w: impl Write + 'static) {
unsafe {
let l = Box::new(w);
let leaked = Box::leak(l);
GLORE = Some(Mutex::new(leaked));
}
}
#[macro_export]
macro_rules! log {
($($arg:tt)*) => (
std::sync::Once::new().call_once(||{
use crate::GLORE;
unsafe {
if let Some(writer) = GLORE.as_mut() {
match writeln!(writer.lock().unwrap(), "{} line {}: {}", file!(), line!(), format_args!($($arg)*)) {
Ok(_) => (),
Err(e) => {panic!("Error writing to logger\nreason: {}", e);}
}
} else {
panic!("Nothing to log to yet, use init() before logging");
}
}
});
);
}
#[cfg(test)]
mod tests {
use super::{init, log};
#[test]
fn it_works() {
let f = if let Ok(f) = std::fs::OpenOptions::new().append(true).open("log.txt") {
f
} else {
std::fs::File::create("log.txt").unwrap()
};
let stdout = std::io::stdout();
init(stdout);
log!("hello ====");
log!("world");
init(f);
log!("hello ====");
let mut threads = vec![];
for i in 0..10 {
threads.push(std::thread::spawn(move || {
log!("{}- world", i);
}));
}
threads.into_iter().for_each(|t| t.join().unwrap());
}
}