2022-02-07 07:33:40 -06:00
|
|
|
// TODO: refactor this file
|
|
|
|
// TODO: make STDOUT redirect to a socket owned
|
|
|
|
// by the process named "stdout"
|
2021-11-16 00:09:27 -06:00
|
|
|
pub struct Stdout;
|
2021-11-23 05:53:06 -06:00
|
|
|
use core::fmt::{Arguments, Error};
|
2021-11-16 00:09:27 -06:00
|
|
|
impl Stdout {
|
|
|
|
pub fn write_fmt(&mut self, arg: Arguments<'_>) /*-> Result<(), Error> */
|
|
|
|
{
|
2021-12-24 07:03:15 -06:00
|
|
|
let _ = core::fmt::Write::write_fmt(self, arg);
|
2021-11-16 00:09:27 -06:00
|
|
|
// Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl core::fmt::Write for Stdout {
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
fn write_str(&mut self, s: &str) -> Result<(), Error> {
|
|
|
|
// Don't actually print anything yet lmao
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
fn write_str(&mut self, s: &str) -> Result<(), Error> {
|
2022-03-11 13:51:47 -06:00
|
|
|
use crate::kprint;
|
2022-02-21 07:17:16 -06:00
|
|
|
kprint!("{}", s);
|
2021-11-16 00:09:27 -06:00
|
|
|
Ok(())
|
|
|
|
}
|
2021-11-17 08:42:54 -06:00
|
|
|
#[cfg(target_arch = "riscv64")]
|
|
|
|
fn write_str(&mut self, s: &str) -> Result<(), Error> {
|
|
|
|
Ok(())
|
|
|
|
}
|
2021-11-27 09:19:08 -06:00
|
|
|
fn write_char(&mut self, c: char) -> core::fmt::Result {
|
|
|
|
self.write_str(c.encode_utf8(&mut [0; 4]))
|
|
|
|
}
|
|
|
|
fn write_fmt(mut self: &mut Self, args: Arguments<'_>) -> core::fmt::Result {
|
|
|
|
core::fmt::write(&mut self, args)
|
|
|
|
}
|
2021-11-16 00:09:27 -06:00
|
|
|
}
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! print {
|
|
|
|
() => {
|
|
|
|
::core::writeln!($crate::print::Stdout, "")
|
|
|
|
};
|
|
|
|
($($tt:tt)*) => {
|
|
|
|
::core::write!($crate::print::Stdout, $($tt)*)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! println {
|
|
|
|
($($tt:tt)*) => {
|
|
|
|
::core::writeln!($crate::print::Stdout, $($tt)*)
|
|
|
|
};
|
|
|
|
}
|