#[macro_export]
macro_rules! dbgwrite {
( $macro:path, $writer:expr, expect, $format:literal $(, $($args:tt)+)? ) => {
$crate::_dbgwrite_impl!( $macro, $writer, $format $(, $($args)+)? )
};
( $macro:path, $writer:expr, try, $format:literal $(, $($args:tt)+)? ) => {
$crate::_try_dbgwrite_impl!( $macro, $writer, $format $(, $($args)+)? )
};
}
#[doc(hidden)]
#[macro_export]
macro_rules! _dbgwrite_impl {
( $macro:path, $writer:expr, $format:literal ) => {
$crate::write!(
$macro, $writer, expect, "[{}:{}]", ::core::file!(), ::core::line!()
);
};
( $macro:path, $writer:expr, $format:literal, $val:expr $(,)? ) => {
match $val {
tmp => {
$crate::write!(
$macro, $writer, expect,
::core::concat!("[{}:{}] {} = {", $format, "}"),
::core::file!(), ::core::line!(), ::core::stringify!($val), &tmp
);
(tmp)
}
}
};
( $macro:path, $writer:expr, $format:literal, $($val:expr),+ $(,)? ) => {
($(
match $val {
tmp => {
$crate::write!(
$macro, $writer, expect,
::core::concat!("[{}:{}] {} = {", $format, "}"),
::core::file!(), ::core::line!(), ::core::stringify!($val), &tmp
);
tmp
}
}
),+,)
};
}
#[doc(hidden)]
#[macro_export]
macro_rules! _try_dbgwrite_impl {
( $macro:path, $writer:expr, $format:literal ) => {
$crate::write!(
$macro, $writer, try, "[{}:{}]", ::core::file!(), ::core::line!()
).map(|_| ());
};
( $macro:path, $writer:expr, $format:literal, $val:expr $(,)? ) => {
match $val {
tmp => {
$crate::write!(
$macro, $writer, try,
::core::concat!("[{}:{}] {} = {", $format, "}"),
::core::file!(), ::core::line!(), ::core::stringify!($val), &tmp
).map(|_| tmp)
}
}
};
( $macro:path, $writer:expr, $format:literal, $($val:expr),+ $(,)? ) => {
(|| {
Ok(($(
match $val {
tmp => {
match $crate::write!(
$macro, $writer, try,
::core::concat!("[{}:{}] {} = {", $format, "}"),
::core::file!(), ::core::line!(), ::core::stringify!($val), &tmp
) {
Ok(_) => tmp,
Err(err) => return Err(err),
}
}
}
),+,))
})()
};
}