forked from AbleOS/ableos
52 lines
1.4 KiB
Rust
52 lines
1.4 KiB
Rust
// TODO: refactor this file
|
|
// TODO: make STDOUT redirect to a socket owned
|
|
// by the process named "stdout"
|
|
pub struct Stdout;
|
|
use core::fmt::{Arguments, Error};
|
|
impl Stdout {
|
|
pub fn write_fmt(&mut self, arg: Arguments<'_>) /*-> Result<(), Error> */
|
|
{
|
|
let _ = core::fmt::Write::write_fmt(self, arg);
|
|
// 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> {
|
|
use crate::kprint;
|
|
kprint!("{}", s);
|
|
Ok(())
|
|
}
|
|
#[cfg(target_arch = "riscv64")]
|
|
fn write_str(&mut self, s: &str) -> Result<(), Error> {
|
|
Ok(())
|
|
}
|
|
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)
|
|
}
|
|
}
|
|
#[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)*)
|
|
// panic![];
|
|
};
|
|
}
|