use std::fmt;
use log;
const QSYM2_BANNER_LENGTH: usize = 103;
macro_rules! qsym2_error {
($fmt:expr $(, $($arg:tt)*)?) => {
log::error!($fmt, $($($arg)*)?);
log::error!(target: "qsym2-output", $fmt, $($($arg)*)?);
}
}
macro_rules! qsym2_warn {
($fmt:expr $(, $($arg:tt)*)?) => { log::warn!(target: "qsym2-output", $fmt, $($($arg)*)?); }
}
macro_rules! qsym2_output {
($fmt:expr $(, $($arg:tt)*)?) => { log::info!(target: "qsym2-output", $fmt, $($($arg)*)?); }
}
pub(crate) use {qsym2_error, qsym2_output, qsym2_warn};
pub(crate) fn write_title(f: &mut fmt::Formatter<'_>, title: &str) -> fmt::Result {
let length = title.chars().count().max(QSYM2_BANNER_LENGTH - 6);
let bar = "─".repeat(length);
writeln!(f, "┌──{bar}──┐")?;
writeln!(f, "│§ {title:^length$} §│")?;
writeln!(f, "└──{bar}──┘")?;
Ok(())
}
pub(crate) fn log_title(title: &str) {
let length = title.chars().count().max(QSYM2_BANNER_LENGTH - 6);
let bar = "─".repeat(length);
qsym2_output!("┌──{bar}──┐");
qsym2_output!("│§ {title:^length$} §│");
qsym2_output!("└──{bar}──┘");
}
pub(crate) fn write_subtitle(f: &mut fmt::Formatter<'_>, subtitle: &str) -> fmt::Result {
let length = subtitle.chars().count();
let bar = "═".repeat(length);
writeln!(f, "{subtitle}")?;
writeln!(f, "{bar}")?;
Ok(())
}
pub(crate) fn log_subtitle(subtitle: &str) {
let length = subtitle.chars().count();
let bar = "═".repeat(length);
qsym2_output!("{}", subtitle);
qsym2_output!("{}", bar);
}
pub(crate) fn log_macsec_begin(sectitle: &str) {
let width = QSYM2_BANNER_LENGTH - 14;
let sectitle_space = sectitle.to_string() + " ";
qsym2_output!("❬❬❬❬❬ [Begin] {sectitle_space:❬<width$}");
}
pub(crate) fn log_macsec_end(sectitle: &str) {
let width = QSYM2_BANNER_LENGTH - 14;
let sectitle_space = sectitle.to_string() + " ";
qsym2_output!("❭❭❭❭❭ [ End ] {sectitle_space:❭<width$}");
}
pub(crate) fn log_micsec_begin(sectitle: &str) {
let width = QSYM2_BANNER_LENGTH - 14;
let sectitle_space = sectitle.to_string() + " ";
qsym2_output!("‹‹‹‹‹ [Begin] {sectitle_space:‹<width$}");
}
pub(crate) fn log_micsec_end(sectitle: &str) {
let width = QSYM2_BANNER_LENGTH - 14;
let sectitle_space = sectitle.to_string() + " ";
qsym2_output!("››››› [ End ] {sectitle_space:›<width$}");
}
pub(crate) fn nice_bool(b: bool) -> String {
if b {
"yes".to_string()
} else {
"no".to_string()
}
}
pub(crate) trait QSym2Output: fmt::Debug + fmt::Display {
fn log_output_display(&self) {
let lines = self.to_string();
lines.lines().for_each(|line| {
qsym2_output!("{line}");
})
}
fn log_output_debug(&self) {
let lines = format!("{self:?}");
lines.lines().for_each(|line| {
qsym2_output!("{line}");
})
}
}
impl<T> QSym2Output for T where T: fmt::Debug + fmt::Display {}