#[cfg(feature = "message-box")]
use crate::alert_service::AlertService;
#[cfg(feature = "message-box")]
use crate::settings::ARGS;
#[cfg(feature = "message-box")]
use crate::settings::RUNS_ON_CONSOLE;
use crate::CONFIG_PATH;
use lazy_static::lazy_static;
use log::LevelFilter;
use log::{Level, Metadata, Record};
use std::env;
use std::path::PathBuf;
use std::sync::atomic::{AtomicBool, Ordering};
lazy_static! {
pub static ref ERR_MSG_TAIL: String = {
let mut args_str = String::new();
for argument in env::args() {
args_str.push_str(argument.as_str());
args_str.push(' ');
};
format!(
"\n\
__________\n\
Additional technical details:\n\
* Command line parameters:\n\
{}\n\
* Configuration file:\n\
{}",
args_str,
&*CONFIG_PATH
.as_ref()
.unwrap_or(&PathBuf::from("no path found"))
.to_str()
.unwrap_or_default()
)
};
}
pub struct AppLogger {
popup_always_enabled: AtomicBool,
}
lazy_static! {
static ref APP_LOGGER: AppLogger = AppLogger {
popup_always_enabled: AtomicBool::new(false)
};
}
impl AppLogger {
#[inline]
pub fn init() {
#[cfg(feature = "message-box")]
if !*RUNS_ON_CONSOLE && !ARGS.batch {
AlertService::init();
};
log::set_logger(&*APP_LOGGER).unwrap();
log::set_max_level(LevelFilter::Error);
}
#[allow(dead_code)]
pub fn set_max_level(level: LevelFilter) {
log::set_max_level(level);
}
#[allow(dead_code)]
pub fn set_popup_always_enabled(popup: bool) {
APP_LOGGER
.popup_always_enabled
.store(popup, Ordering::SeqCst);
}
pub fn flush() {
#[cfg(feature = "message-box")]
if !*RUNS_ON_CONSOLE && !ARGS.batch {
AlertService::flush();
}
}
}
impl log::Log for AppLogger {
fn enabled(&self, metadata: &Metadata<'_>) -> bool {
metadata.level() <= Level::Trace
}
fn log(&self, record: &Record<'_>) {
if self.enabled(record.metadata()) {
let mut msg = format!("{}:\n{}", record.level(), &record.args().to_string());
if record.metadata().level() == Level::Error {
msg.push_str(&ERR_MSG_TAIL);
};
eprintln!("*** {}", msg);
#[cfg(feature = "message-box")]
if !*RUNS_ON_CONSOLE
&& !ARGS.batch
&& ((record.metadata().level() == LevelFilter::Error)
|| APP_LOGGER.popup_always_enabled.load(Ordering::SeqCst))
{
let _ = AlertService::push_str(msg);
};
}
}
fn flush(&self) {
Self::flush();
}
}