1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-26 09:53:28 +04:00
rCore/kernel/src/logging.rs

91 lines
2.5 KiB
Rust
Raw Normal View History

2018-06-03 19:05:43 +04:00
use core::fmt;
2019-03-16 11:44:57 +04:00
use lazy_static::lazy_static;
2018-07-16 05:48:58 +04:00
use log::{self, Level, LevelFilter, Log, Metadata, Record};
2019-03-16 11:44:57 +04:00
use crate::sync::SpinNoIrqLock as Mutex;
2019-03-16 11:44:57 +04:00
use crate::util::color::ConsoleColor;
2018-10-17 15:37:53 +04:00
lazy_static! {
2019-03-16 11:44:57 +04:00
static ref LOG_LOCK: Mutex<()> = Mutex::new(());
2018-10-17 15:37:53 +04:00
}
pub fn init() {
static LOGGER: SimpleLogger = SimpleLogger;
log::set_logger(&LOGGER).unwrap();
2018-05-21 21:11:37 +04:00
log::set_max_level(match option_env!("LOG") {
Some("off") => LevelFilter::Off,
Some("error") => LevelFilter::Error,
Some("warn") => LevelFilter::Warn,
Some("info") => LevelFilter::Info,
2018-07-16 13:28:15 +04:00
Some("debug") => LevelFilter::Debug,
2018-05-21 21:11:37 +04:00
Some("trace") => LevelFilter::Trace,
2018-07-16 13:28:15 +04:00
_ => LevelFilter::Warn,
2018-05-21 21:11:37 +04:00
});
2018-04-07 16:57:14 +04:00
}
#[macro_export]
macro_rules! print {
($($arg:tt)*) => ({
2018-07-12 19:31:54 +04:00
$crate::logging::print(format_args!($($arg)*));
});
}
#[macro_export]
macro_rules! println {
2018-12-27 11:56:20 +04:00
($fmt:expr) => (print!(concat!($fmt, "\n")));
($fmt:expr, $($arg:tt)*) => (print!(concat!($fmt, "\n"), $($arg)*));
}
/// Add escape sequence to print with color in Linux console
macro_rules! with_color {
($args: ident, $color: ident) => {{
2019-03-16 11:44:57 +04:00
let code = $color.to_console_code();
format_args!("\u{1B}[{}m{}\u{1B}[0m", code as u8, $args)
}};
}
2019-03-16 11:44:57 +04:00
fn print_in_color(args: fmt::Arguments, color: ConsoleColor) {
2018-11-19 13:21:06 +04:00
use crate::arch::io;
2019-03-16 11:44:57 +04:00
let _guard = LOG_LOCK.lock();
2018-07-16 05:48:58 +04:00
io::putfmt(with_color!(args, color));
2018-04-07 16:57:14 +04:00
}
2018-07-12 16:45:22 +04:00
pub fn print(args: fmt::Arguments) {
2018-11-19 13:21:06 +04:00
use crate::arch::io;
2019-03-16 11:44:57 +04:00
let _guard = LOG_LOCK.lock();
2018-07-16 05:48:58 +04:00
io::putfmt(args);
2018-07-12 16:45:22 +04:00
}
struct SimpleLogger;
impl Log for SimpleLogger {
2018-12-18 09:31:31 +04:00
fn enabled(&self, _metadata: &Metadata) -> bool {
2019-03-27 14:35:08 +04:00
true
}
fn log(&self, record: &Record) {
2019-03-27 14:35:08 +04:00
static DISABLED_TARGET: &[&str] = &[];
2018-06-01 07:46:32 +04:00
if self.enabled(record.metadata()) && !DISABLED_TARGET.contains(&record.target()) {
2019-03-27 14:35:08 +04:00
// let target = record.target();
// let begin = target.as_bytes().iter().rposition(|&c| c == b':').map(|i| i + 1).unwrap_or(0);
print_in_color(
format_args!("[{:>5}] {}\n", record.level(), record.args()),
ConsoleColor::from(record.level()),
);
}
}
fn flush(&self) {}
}
2019-03-16 11:44:57 +04:00
impl From<Level> for ConsoleColor {
fn from(level: Level) -> Self {
match level {
2019-03-16 11:44:57 +04:00
Level::Error => ConsoleColor::Red,
Level::Warn => ConsoleColor::BrightYellow,
2019-03-16 11:44:57 +04:00
Level::Info => ConsoleColor::Blue,
Level::Debug => ConsoleColor::Green,
Level::Trace => ConsoleColor::BrightBlack,
}
}
}