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
//! Common abstractions used in Texlang
use std::collections::HashMap;
use std::{cell::RefCell, rc::Rc};
/// Implementations of this trait can provide access to the file system.
///
/// This trait is intended to be implemented by the state and used as a trait
/// bound in Texlang primitives like `\input` that require a file system.
pub trait HasFileSystem {
fn file_system(&self) -> Rc<RefCell<dyn FileSystem>> {
Rc::new(RefCell::new(RealFileSystem {}))
}
}
/// File system operations that TeX may need to perform.
///
/// These operations are extracted to a trait so that they be mocked out in unit testing
/// and in execution contexts like WASM.
pub trait FileSystem {
/// Read the entire contents of a file into a string.
///
/// This is implemented by [std::fs::read_to_string].
fn read_to_string(&self, path: &std::path::Path) -> std::io::Result<String>;
/// Write a slice of bytes to a file.
///
/// This is implemented by [std::fs::write].
fn write_bytes(&self, path: &std::path::Path, contents: &[u8]) -> std::io::Result<()>;
}
/// Implementation of the file system trait the uses the real file system.
pub struct RealFileSystem;
impl FileSystem for RealFileSystem {
fn read_to_string(&self, path: &std::path::Path) -> std::io::Result<String> {
std::fs::read_to_string(path)
}
fn write_bytes(&self, path: &std::path::Path, contents: &[u8]) -> std::io::Result<()> {
std::fs::write(path, contents)
}
}
/// In-memory filesystem for use in unit tests.
///
/// This type mocks out the file system operations in the VM.
/// It provides an in-memory system to which "files" can be added before the test runs.
/// It is designed to help test primitives that interact with the filesystem.
///
/// Given a VM, the file system can be set as follows:
/// ```
/// # use texlang::vm;
/// # use std::rc::Rc;
/// # use std::cell::RefCell;
/// # use texlang_common::*;
/// # use std::collections::HashMap;
/// #[derive(Default)]
/// struct State {
/// file_system: Rc<RefCell<InMemoryFileSystem>>,
/// }
/// let mut vm = vm::VM::<State>::new_with_built_in_commands(
/// HashMap::new(), // empty set of built-in commands
/// );
/// let mut mock_file_system = InMemoryFileSystem::new(&vm.working_directory.as_ref().unwrap());
/// mock_file_system.add("file/path.tex", "file content");
/// vm.state.file_system = Rc::new(RefCell::new(mock_file_system));
/// ```
#[derive(Default)]
pub struct InMemoryFileSystem {
working_directory: std::path::PathBuf,
files: HashMap<std::path::PathBuf, String>,
}
impl InMemoryFileSystem {
/// Create a new in-memory file system.
///
/// Typically the working directory is taken from the VM.
pub fn new(working_directory: &std::path::Path) -> Self {
Self {
working_directory: working_directory.into(),
files: Default::default(),
}
}
/// Add a file to the in-memory file system.
///
/// The provided path is relative to the working directory
pub fn add(&mut self, relative_path: &str, content: &str) {
let mut path = self.working_directory.clone();
path.push(relative_path);
self.files.insert(path, content.to_string());
}
}
impl FileSystem for InMemoryFileSystem {
fn read_to_string(&self, path: &std::path::Path) -> std::io::Result<String> {
match self.files.get(path) {
None => Err(std::io::Error::new(
std::io::ErrorKind::NotFound,
"not found",
)),
Some(content) => Ok(content.clone()),
}
}
fn write_bytes(&self, _: &std::path::Path, _: &[u8]) -> std::io::Result<()> {
unimplemented!()
}
}
/// Implementations of this trait can provide access to an output terminal and a log file.
pub trait HasLogging {
/// Return the output terminal.
///
/// The default implementation returns standard out.
fn terminal_out(&self) -> Rc<RefCell<dyn std::io::Write>> {
Rc::new(RefCell::new(std::io::stdout()))
}
/// Return the log file.
///
/// The default implementation returns a sink that writes nothing.
fn log_file(&self) -> Rc<RefCell<dyn std::io::Write>> {
Rc::new(RefCell::new(std::io::sink()))
}
}
/// Implementations of this trait can provide access to an input terminal.
///
/// This trait is intended to be implemented by the state and used as a trait
/// bound in Texlang primitives like `\read` that require an input terminal.
pub trait HasTerminalIn {
fn terminal_in(&self) -> Rc<RefCell<dyn TerminalIn>> {
Rc::new(RefCell::new(std::io::stdin()))
}
}
/// Input operations from the terminal.
pub trait TerminalIn {
/// Read a line from the terminal and append it to the provided buffer.
fn read_line(&mut self, prompt: Option<&str>, buffer: &mut String) -> std::io::Result<()>;
}
impl TerminalIn for std::io::Stdin {
fn read_line(&mut self, prompt: Option<&str>, buffer: &mut String) -> std::io::Result<()> {
if let Some(prompt) = prompt {
eprint!("\n{prompt}")
}
std::io::Stdin::read_line(self, buffer)?;
Ok(())
}
}
/// A mock version of [`TerminalIn`].
///
/// This type wraps a vector of strings.
/// The first call to [`TerminalIn::read_line`] returns the first string;
/// the second call returns the second string;
/// and so on.
/// When the vector is exhausted, `read_line` returns an IO error of
/// kind [std::io::ErrorKind::UnexpectedEof].
#[derive(Default)]
pub struct MockTerminalIn(usize, Vec<String>);
impl MockTerminalIn {
/// Add a new line to be returned from the mock terminal.
pub fn add_line<S: Into<String>>(&mut self, line: S) {
self.1.push(line.into());
}
}
impl TerminalIn for MockTerminalIn {
fn read_line(&mut self, _: Option<&str>, buffer: &mut String) -> std::io::Result<()> {
match self.1.get(self.0) {
None => Err(std::io::Error::new(
std::io::ErrorKind::UnexpectedEof,
"mock terminal input exhausted",
)),
Some(line) => {
buffer.push_str(line);
self.0 += 1;
Ok(())
}
}
}
}