koto_runtime 0.16.1

The runtime used by the Koto programming language
Documentation
use crate::{KString, KotoFile, KotoRead, KotoWrite, Result, core_lib::io::map_io_err};
use std::io::{self, IsTerminal, Read, Write};

/// The default stdin used in Koto
#[derive(Default)]
pub struct DefaultStdin {}

impl KotoFile for DefaultStdin {
    fn id(&self) -> KString {
        STDIN_ID.with(|id| id.clone())
    }

    fn is_terminal(&self) -> bool {
        io::stdin().is_terminal()
    }
}

impl KotoWrite for DefaultStdin {}
impl KotoRead for DefaultStdin {
    fn read_line(&self) -> Result<Option<String>> {
        let mut result = String::new();
        let bytes_read = io::stdin().read_line(&mut result).map_err(map_io_err)?;
        if bytes_read > 0 {
            Ok(Some(result))
        } else {
            Ok(None)
        }
    }

    fn read_to_string(&self) -> Result<String> {
        let mut result = String::new();
        io::stdin()
            .lock()
            .read_to_string(&mut result)
            .map_err(map_io_err)?;
        Ok(result)
    }
}

/// The default stdout used in Koto
#[derive(Default)]
pub struct DefaultStdout {}

impl KotoFile for DefaultStdout {
    fn id(&self) -> KString {
        STDOUT_ID.with(|id| id.clone())
    }

    fn is_terminal(&self) -> bool {
        io::stdout().is_terminal()
    }
}

impl KotoRead for DefaultStdout {}
impl KotoWrite for DefaultStdout {
    fn write(&self, bytes: &[u8]) -> Result<()> {
        io::stdout().write_all(bytes).map_err(map_io_err)
    }

    fn write_line(&self, output: &str) -> Result<()> {
        let stdout = io::stdout();
        let mut handle = stdout.lock();
        handle.write_all(output.as_bytes()).map_err(map_io_err)?;
        handle.write_all("\n".as_bytes()).map_err(map_io_err)
    }

    fn flush(&self) -> Result<()> {
        io::stdout().flush().map_err(map_io_err)
    }
}

/// The default stderr used in Koto
#[derive(Default)]
pub struct DefaultStderr {}

impl KotoFile for DefaultStderr {
    fn id(&self) -> KString {
        STDERR_ID.with(|id| id.clone())
    }

    fn is_terminal(&self) -> bool {
        io::stderr().is_terminal()
    }
}

impl KotoRead for DefaultStderr {}
impl KotoWrite for DefaultStderr {
    fn write(&self, bytes: &[u8]) -> Result<()> {
        io::stderr().write_all(bytes).map_err(map_io_err)
    }

    fn write_line(&self, output: &str) -> Result<()> {
        let stderr = io::stderr();
        let mut handle = stderr.lock();
        handle.write_all(output.as_bytes()).map_err(map_io_err)?;
        handle.write_all("\n".as_bytes()).map_err(map_io_err)
    }

    fn flush(&self) -> Result<()> {
        io::stderr().flush().map_err(map_io_err)
    }
}

thread_local! {
    static STDIN_ID: KString = "_stdin_".into();
    static STDOUT_ID: KString = "_stdout_".into();
    static STDERR_ID: KString = "_stderr_".into();
}