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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
//! A simple library that handles stdio queues for applications invoked by a
//! shell.
//!
//! The shell is responsible for setting the correct stdio queues prior to
//! spawning the application, and destroying them after the application has
//! completed.
//!
//! Applications can access their queues using [`stdin`], [`stdout`], and
//! [`stderr`]. This crate also has support for line disciplines, which can be
//! accessed using [`line_discipline`].
#![no_std]
extern crate alloc;
extern crate logger;
use alloc::{format, sync::Arc};
use core2::io::{self, Error, ErrorKind, Read, Write};
use stdio::{StdioReader, StdioWriter};
use tty::{LineDiscipline, Slave};
pub trait ImmutableRead: Send + Sync + 'static {
fn read(&self, buf: &mut [u8]) -> io::Result<usize>;
}
pub trait ImmutableWrite: Send + Sync + 'static {
fn write(&self, buf: &[u8]) -> io::Result<usize>;
fn write_all(&self, mut buf: &[u8]) -> io::Result<()> {
while !buf.is_empty() {
match self.write(buf) {
Ok(0) => {
return Err(Error::new(
ErrorKind::WriteZero,
"failed to write whole buffer",
));
}
Ok(n) => buf = &buf[n..],
Err(ref e) if e.kind() == ErrorKind::Interrupted => {}
Err(e) => return Err(e),
}
}
Ok(())
}
}
impl ImmutableRead for StdioReader {
fn read(&self, buf: &mut [u8]) -> io::Result<usize> {
self.lock().read(buf)
}
}
impl ImmutableWrite for StdioWriter {
fn write(&self, buf: &[u8]) -> io::Result<usize> {
self.lock().write(buf)
}
}
impl ImmutableRead for Slave {
fn read(&self, buf: &mut [u8]) -> io::Result<usize> {
self.read(buf)
}
}
impl ImmutableWrite for Slave {
fn write(&self, buf: &[u8]) -> io::Result<usize> {
self.write(buf)
}
}
/// Stores the stdio queues and line discipline. The stored queues are for use
/// by applications e.g. `stdin` is a reader. The other end of the queue is held
/// by the shell.
#[derive(Clone)]
pub struct IoStreams {
/// The reader to stdin.
pub stdin: Arc<dyn ImmutableRead>,
/// The writer to stdout.
pub stdout: Arc<dyn ImmutableWrite>,
/// The writer to stderr.
pub stderr: Arc<dyn ImmutableWrite>,
pub discipline: Option<Arc<LineDiscipline>>,
}
mod shared_maps {
use super::IoStreams;
use hashbrown::HashMap;
use sync_block::{Mutex, MutexGuard};
lazy_static::lazy_static! {
/// Map a task id to its IoStreams structure.
/// Shells should call `insert_child_streams` when spawning a new app,
/// which effectively stores a new key value pair to this map.
/// After a shell's child app exits, the shell should call
/// `remove_child_streams` to clean it up.
static ref APP_IO_STREAMS: Mutex<HashMap<usize, IoStreams>> = Mutex::new(HashMap::new());
}
/// Lock and returns the `MutexGuard` of `APP_IO_STREAMS`. Use
/// `lock_all_maps()` if you want to lock both of the maps to avoid
/// deadlock.
pub fn lock_stream_map() -> MutexGuard<'static, HashMap<usize, IoStreams>> {
APP_IO_STREAMS.lock()
}
}
/// Shells call this function to store queue stdio streams for applications. If
/// there are any existing readers/writers for the task (which should not
/// happen in normal practice), it returns the old one, otherwise returns None.
pub fn insert_child_streams(task_id: usize, streams: IoStreams) -> Option<IoStreams> {
shared_maps::lock_stream_map().insert(task_id, streams)
}
/// Shells call this function to remove queues and pointer to terminal for
/// applications. It returns the removed streams in the return value if the key
/// matches, otherwise returns None.
pub fn remove_child_streams(task_id: usize) -> Option<IoStreams> {
shared_maps::lock_stream_map().remove(&task_id)
}
pub fn streams() -> Result<IoStreams, &'static str> {
let task_id = task::get_my_current_task_id();
let locked_streams = shared_maps::lock_stream_map();
match locked_streams.get(&task_id) {
Some(streams) => Ok(streams.clone()),
None => Err("no stdin for this task"),
}
}
/// Applications call this function to acquire a reader to its stdin queue.
///
/// Errors can occur in two cases. One is when it fails to get the task_id of
/// the calling task, and the second is that there's no stdin reader stored in
/// the map. Shells should make sure to store IoStreams for the newly spawned
/// app first, and then unblocks the app to let it run.
pub fn stdin() -> Result<Arc<dyn ImmutableRead>, &'static str> {
let task_id = task::get_my_current_task_id();
let locked_streams = shared_maps::lock_stream_map();
match locked_streams.get(&task_id) {
Some(queues) => Ok(queues.stdin.clone()),
None => Err("no stdin for this task"),
}
}
/// Applications call this function to acquire a writer to its stdout queue.
///
/// Errors can occur in two cases. One is when it fails to get the task_id of
/// the calling task, and the second is that there's no stdout writer stored in
/// the map. Shells should make sure to store IoStreams for the newly spawned
/// app first, and then unblocks the app to let it run.
pub fn stdout() -> Result<Arc<dyn ImmutableWrite>, &'static str> {
let task_id = task::get_my_current_task_id();
let locked_streams = shared_maps::lock_stream_map();
match locked_streams.get(&task_id) {
Some(queues) => Ok(queues.stdout.clone()),
None => Err("no stdout for this task"),
}
}
/// Applications call this function to acquire a writer to its stderr queue.
///
/// Errors can occur in two cases. One is when it fails to get the task_id of
/// the calling task, and the second is that there's no stderr writer stored in
/// the map. Shells should make sure to store IoStreams for the newly spawned
/// app first, and then unblocks the app to let it run.
pub fn stderr() -> Result<Arc<dyn ImmutableWrite>, &'static str> {
let task_id = task::get_my_current_task_id();
let locked_streams = shared_maps::lock_stream_map();
match locked_streams.get(&task_id) {
Some(queues) => Ok(queues.stderr.clone()),
None => Err("no stderr for this task"),
}
}
/// Returns the application's line discipline.
pub fn line_discipline() -> Result<Arc<LineDiscipline>, &'static str> {
let task_id = task::get_my_current_task_id();
let locked_streams = shared_maps::lock_stream_map();
match locked_streams.get(&task_id) {
Some(IoStreams {
discipline: Some(discipline),
..
}) => Ok(discipline.clone()),
_ => Err("no line discipline for this task"),
}
}
/// Calls `print!()` with an extra newline ('\n') appended to the end.
#[macro_export]
macro_rules! println {
() => ($crate::print!("\n"));
($($arg:tt)*) => ({
$crate::print_to_stdout_args(::core::format_args!("{}\n", ::core::format_args!($($arg)*)));
});
}
/// The main printing macro, which simply writes to the current task's stdout
/// stream.
#[macro_export]
macro_rules! print {
($($arg:tt)*) => ({
$crate::print_to_stdout_args(::core::format_args!($($arg)*));
});
}
/// Converts the given `core::fmt::Arguments` to a `String` and enqueues the
/// string into the correct terminal print-producer
pub fn print_to_stdout_args(fmt_args: core::fmt::Arguments) {
let task_id = task::get_my_current_task_id();
// Obtains the correct stdout stream and push the output bytes.
let locked_streams = shared_maps::lock_stream_map();
if let Some(queues) = locked_streams.get(&task_id) {
if queues
.stdout
.write_all(format!("{fmt_args}").as_bytes())
.is_err()
{
let _ = logger::write_str("\x1b[31m [E] failed to write to stdout \x1b[0m\n");
}
} else {
// let _ = logger::write_str("\x1b[31m [E] error in print!/println! macro: no stdout queue for current task \x1b[0m\n");
};
}