tectonic 0.4.1

A modernized, complete, embeddable TeX/LaTeX engine. Tectonic is forked from the XeTeX extension to the classic “Web2C” implementation of TeX and uses the TeXLive distribution of support files.
Documentation
use std::ffi::OsStr;
use std::fs::File;
use std::io::BufReader;
use std::path::PathBuf;

use super::{Bundle, InputHandle, InputOrigin, IoProvider, OpenResult};
use crate::status::StatusBackend;

pub struct DirBundle {
    dir: PathBuf,
}

impl DirBundle {
    pub fn new(dir: PathBuf) -> DirBundle {
        DirBundle { dir }
    }
}

impl IoProvider for DirBundle {
    fn input_open_name(
        &mut self,
        name: &OsStr,
        _status: &mut dyn StatusBackend,
    ) -> OpenResult<InputHandle> {
        let mut path = self.dir.clone();
        path.push(name);

        if path.is_file() {
            match File::open(path) {
                Err(e) => OpenResult::Err(e.into()),
                Ok(f) => OpenResult::Ok(InputHandle::new(
                    name,
                    BufReader::new(f),
                    InputOrigin::Filesystem,
                )),
            }
        } else {
            OpenResult::NotAvailable
        }
    }
}

impl Bundle for DirBundle {}