1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
/* Copyright (c) [2023] [Syswonder Community]
* [Rukos] is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
use crate::io::{self, prelude::*, BufReader};
use crate::sync::{Mutex, MutexGuard};
#[cfg(feature = "alloc")]
use alloc::{string::String, vec::Vec};
struct StdinRaw;
struct StdoutRaw;
impl Read for StdinRaw {
// Non-blocking read, returns number of bytes read.
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
let mut read_len = 0;
while read_len < buf.len() {
if let Some(c) = arceos_api::stdio::ax_console_read_byte() {
buf[read_len] = c;
read_len += 1;
} else {
break;
}
}
Ok(read_len)
}
}
impl Write for StdoutRaw {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
arceos_api::stdio::ax_console_write_bytes(buf)
}
fn flush(&mut self) -> io::Result<()> {
Ok(())
}
}
/// A handle to the standard input stream of a process.
pub struct Stdin {
inner: &'static Mutex<BufReader<StdinRaw>>,
}
/// A locked reference to the [`Stdin`] handle.
pub struct StdinLock<'a> {
inner: MutexGuard<'a, BufReader<StdinRaw>>,
}
impl Stdin {
/// Locks this handle to the standard input stream, returning a readable
/// guard.
///
/// The lock is released when the returned lock goes out of scope. The
/// returned guard also implements the [`Read`] and [`BufRead`] traits for
/// accessing the underlying data.
pub fn lock(&self) -> StdinLock<'static> {
// Locks this handle with 'static lifetime. This depends on the
// implementation detail that the underlying `Mutex` is static.
StdinLock {
inner: self.inner.lock(),
}
}
/// Locks this handle and reads a line of input, appending it to the specified buffer.
#[cfg(feature = "alloc")]
pub fn read_line(&self, buf: &mut String) -> io::Result<usize> {
self.inner.lock().read_line(buf)
}
}
impl Read for Stdin {
// Block until at least one byte is read.
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
let read_len = self.inner.lock().read(buf)?;
if buf.is_empty() || read_len > 0 {
return Ok(read_len);
}
// try again until we got something
loop {
let read_len = self.inner.lock().read(buf)?;
if read_len > 0 {
return Ok(read_len);
}
crate::thread::yield_now();
}
}
}
impl Read for StdinLock<'_> {
fn read(&mut self, buf: &mut [u8]) -> io::Result<usize> {
self.inner.read(buf)
}
}
impl BufRead for StdinLock<'_> {
fn fill_buf(&mut self) -> io::Result<&[u8]> {
self.inner.fill_buf()
}
fn consume(&mut self, n: usize) {
self.inner.consume(n)
}
#[cfg(feature = "alloc")]
fn read_until(&mut self, byte: u8, buf: &mut Vec<u8>) -> io::Result<usize> {
self.inner.read_until(byte, buf)
}
#[cfg(feature = "alloc")]
fn read_line(&mut self, buf: &mut String) -> io::Result<usize> {
self.inner.read_line(buf)
}
}
/// A handle to the global standard output stream of the current process.
pub struct Stdout {
inner: &'static Mutex<StdoutRaw>,
}
/// A locked reference to the [`Stdout`] handle.
pub struct StdoutLock<'a> {
inner: MutexGuard<'a, StdoutRaw>,
}
impl Stdout {
/// Locks this handle to the standard output stream, returning a writable
/// guard.
///
/// The lock is released when the returned lock goes out of scope. The
/// returned guard also implements the `Write` trait for writing data.
pub fn lock(&self) -> StdoutLock<'static> {
StdoutLock {
inner: self.inner.lock(),
}
}
}
impl Write for Stdout {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.inner.lock().write(buf)
}
fn flush(&mut self) -> io::Result<()> {
self.inner.lock().flush()
}
}
impl Write for StdoutLock<'_> {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
self.inner.write(buf)
}
fn flush(&mut self) -> io::Result<()> {
self.inner.flush()
}
}
/// Constructs a new handle to the standard input of the current process.
pub fn stdin() -> Stdin {
static INSTANCE: Mutex<BufReader<StdinRaw>> = Mutex::new(BufReader::new(StdinRaw));
Stdin { inner: &INSTANCE }
}
/// Constructs a new handle to the standard output of the current process.
pub fn stdout() -> Stdout {
static INSTANCE: Mutex<StdoutRaw> = Mutex::new(StdoutRaw);
Stdout { inner: &INSTANCE }
}
#[doc(hidden)]
pub fn __print_impl(args: core::fmt::Arguments) {
if cfg!(feature = "smp") {
// synchronize using the lock in axlog, to avoid interleaving
// with kernel logs
arceos_api::stdio::ax_console_write_fmt(args).unwrap();
} else {
stdout().lock().write_fmt(args).unwrap();
}
}