2019-06-04 18:08:26 +00:00
|
|
|
pub mod ffmpeg;
|
|
|
|
pub mod pandoc;
|
|
|
|
pub mod poppler;
|
|
|
|
pub mod spawning;
|
|
|
|
|
|
|
|
//pub use ffmpeg::FffmpegAdapter;
|
|
|
|
|
|
|
|
use regex::{Regex, RegexSet};
|
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::ffi::OsString;
|
|
|
|
use std::io::BufRead;
|
|
|
|
use std::io::Write;
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
|
|
|
pub enum Matcher {
|
2019-06-05 14:43:40 +00:00
|
|
|
// MimeType(Regex),
|
2019-06-04 18:08:26 +00:00
|
|
|
FileName(Regex),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct AdapterMeta {
|
|
|
|
pub name: String,
|
|
|
|
pub version: i32,
|
|
|
|
pub matchers: Vec<Matcher>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct FileMeta {
|
|
|
|
// filename is not actually a utf8 string, but since we can't do regex on OsStr and can't get a &[u8] from OsStr either,
|
|
|
|
// and since we probably only want to do matching on ascii stuff anyways, this is the filename as a string with non-valid bytes removed
|
|
|
|
pub lossy_filename: String,
|
2019-06-05 14:43:40 +00:00
|
|
|
// pub mimetype: String,
|
2019-06-04 18:08:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub trait GetMetadata {
|
|
|
|
fn metadata<'a>(&'a self) -> &'a AdapterMeta;
|
|
|
|
}
|
|
|
|
pub trait FileAdapter: GetMetadata {
|
|
|
|
fn adapt(&self, inp_fname: &str, oup: &mut dyn Write) -> std::io::Result<()>;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn ExtensionMatcher(extension: &str) -> Matcher {
|
|
|
|
let regex = Regex::new(&format!(".*\\.{}", ®ex::escape(extension)))
|
|
|
|
.expect("we know this regex compiles");
|
|
|
|
Matcher::FileName(regex)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn init_adapters() -> Result<impl Fn(FileMeta) -> Option<Rc<dyn FileAdapter>>, regex::Error> {
|
|
|
|
let adapters: Vec<Rc<dyn FileAdapter>> = vec![
|
|
|
|
Rc::new(crate::adapters::ffmpeg::FFmpegAdapter::new()),
|
|
|
|
Rc::new(crate::adapters::pandoc::PandocAdapter::new()),
|
|
|
|
Rc::new(crate::adapters::poppler::PopplerAdapter::new()),
|
|
|
|
];
|
|
|
|
|
|
|
|
let mut fname_regexes = vec![];
|
2019-06-05 14:43:40 +00:00
|
|
|
//let mut mime_regexes = vec![];
|
2019-06-04 18:08:26 +00:00
|
|
|
for adapter in adapters.into_iter() {
|
|
|
|
let metadata = adapter.metadata();
|
|
|
|
for matcher in &metadata.matchers {
|
|
|
|
match matcher {
|
2019-06-05 14:43:40 +00:00
|
|
|
//Matcher::MimeType(re) => mime_regexes.push((re.clone(), adapter.clone())),
|
2019-06-04 18:08:26 +00:00
|
|
|
Matcher::FileName(re) => fname_regexes.push((re.clone(), adapter.clone())),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let fname_regex_set = RegexSet::new(fname_regexes.iter().map(|p| p.0.as_str()))?;
|
2019-06-05 14:43:40 +00:00
|
|
|
//let mime_regex_set = RegexSet::new(mime_regexes.iter().map(|p| p.0.as_str()))?;
|
2019-06-04 18:08:26 +00:00
|
|
|
return Ok(move |meta: FileMeta| {
|
|
|
|
// todo: handle multiple matches
|
|
|
|
for m in fname_regex_set.matches(&meta.lossy_filename) {
|
|
|
|
return Some(fname_regexes[m].1.clone());
|
|
|
|
}
|
2019-06-05 14:43:40 +00:00
|
|
|
/*for m in mime_regex_set.matches(&meta.mimetype) {
|
2019-06-04 18:08:26 +00:00
|
|
|
return Some(mime_regexes[m].1.clone());
|
2019-06-05 14:43:40 +00:00
|
|
|
}*/
|
2019-06-04 18:08:26 +00:00
|
|
|
return None;
|
|
|
|
});
|
|
|
|
}
|