1
0
Fork 0
forked from AbleOS/ableos
ableos_time/ableos/src/log.rs

81 lines
1.8 KiB
Rust
Raw Normal View History

2021-11-27 09:19:08 -06:00
pub trait Log {
2021-12-24 03:30:27 -06:00
fn debug(val: &str);
2021-12-24 03:40:11 -06:00
fn error(val: &str);
2021-12-24 03:30:27 -06:00
fn info(val: &str);
2021-12-24 03:40:11 -06:00
fn trace(val: &str);
2021-11-27 09:19:08 -06:00
}
2021-12-24 07:03:15 -06:00
pub struct LogState {
pub debug: bool,
pub error: bool,
pub info: bool,
pub trace: bool,
}
lazy_static::lazy_static! {
pub static ref LOG_STATE: LogState = LogState {
debug: true,
error: true,
info: true,
trace: true,
};
}
2021-11-27 09:19:08 -06:00
use crate::serial_print;
use lliw::{Fg, Reset};
2021-11-27 09:19:08 -06:00
pub struct ANSISerialLogger;
impl Log for ANSISerialLogger {
2021-12-24 03:30:27 -06:00
fn debug(val: &str) {
serial_print!("[{}Debug{}] {}\n", Fg::Blue, Reset, val);
2021-11-27 09:19:08 -06:00
}
2021-12-24 03:40:11 -06:00
fn error(val: &str) {
serial_print!("[{}Error{}] {}\n", Fg::Red, Reset, val);
2021-11-27 09:19:08 -06:00
}
2021-12-24 03:30:27 -06:00
fn info(val: &str) {
2021-12-24 03:40:11 -06:00
serial_print!("[{}Info{}] {}\n", Fg::LightWhite, Reset, val);
2021-11-27 09:19:08 -06:00
}
2021-12-24 03:40:11 -06:00
fn trace(val: &str) {
serial_print!("[{}Trace{}] {}\n", Fg::Yellow, Reset, val);
2021-11-27 09:19:08 -06:00
}
2021-12-24 03:39:24 -06:00
}
#[macro_export]
macro_rules! debug {
($($arg:tt)*) => ({
2021-12-24 07:03:15 -06:00
if $crate::log::LOG_STATE.debug{
use crate::log::Log;
let _ = &log::ANSISerialLogger::debug(&alloc::format!($($arg)*));
}
2021-12-24 03:39:24 -06:00
})
}
#[macro_export]
macro_rules! error {
($($arg:tt)*) => ({
2021-12-24 07:03:15 -06:00
if $crate::log::LOG_STATE.error{
use crate::log::Log;
crate::log::ANSISerialLogger::error(&alloc::format!($($arg)*));
}
});
2021-12-24 03:39:24 -06:00
}
#[macro_export]
macro_rules! info {
($($arg:tt)*) => ({
2021-12-24 07:03:15 -06:00
if $crate::log::LOG_STATE.info{
use crate::log::Log;
crate::log::ANSISerialLogger::info(&alloc::format!($($arg)*));
}
2021-12-24 03:39:24 -06:00
})
}
#[macro_export]
macro_rules! trace {
($($arg:tt)*) => ({
2021-12-24 07:03:15 -06:00
if $crate::log::LOG_STATE.trace{
use crate::log::Log;
crate::log::ANSISerialLogger::trace(&alloc::format!($($arg)*));
}
2021-12-24 03:39:24 -06:00
})
2021-11-27 09:19:08 -06:00
}