ripgrep-all/src/adapters.rs

94 lines
2.9 KiB
Rust
Raw Normal View History

2019-06-04 18:08:26 +00:00
pub mod ffmpeg;
pub mod pandoc;
pub mod poppler;
pub mod spawning;
2019-06-06 15:59:15 +00:00
pub mod tar;
2019-06-06 09:00:13 +00:00
pub mod zip;
use failure::*;
2019-06-04 18:08:26 +00:00
use regex::{Regex, RegexSet};
2019-06-06 09:00:13 +00:00
use std::io::prelude::*;
2019-06-05 19:28:35 +00:00
use std::path::Path;
2019-06-04 18:08:26 +00:00
use std::rc::Rc;
2019-06-05 19:28:35 +00:00
//pub use ffmpeg::FffmpegAdapter;
2019-06-04 18:08:26 +00:00
pub enum Matcher {
2019-06-05 14:43:40 +00:00
// MimeType(Regex),
2019-06-06 15:59:15 +00:00
/**
* without the dot. e.g. "jpg" or "tar.gz" matched as /.*\.ext$/
*
*/
2019-06-05 19:28:35 +00:00
FileExtension(String),
2019-06-04 18:08:26 +00:00
}
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,
2019-06-06 09:00:13 +00:00
// and since we probably only want to do only matching on ascii stuff anyways, this is the filename as a string with non-valid bytes removed
2019-06-04 18:08:26 +00:00
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 {
2019-06-06 09:00:13 +00:00
fn adapt(&self, a: AdaptInfo) -> Fallible<()>;
}
pub struct AdaptInfo<'a> {
pub filepath_hint: &'a Path,
pub inp: &'a mut dyn Read,
pub oup: &'a mut (dyn Write + Send),
pub line_prefix: &'a str,
// pub adapt_subobject: &'a dyn Fn(AdaptInfo) -> Fallible<()>,
2019-06-04 18:08:26 +00:00
}
2019-06-05 19:28:35 +00:00
pub fn extension_to_regex(extension: &str) -> Regex {
Regex::new(&format!(".*\\.{}", &regex::escape(extension))).expect("we know this regex compiles")
2019-06-04 18:08:26 +00:00
}
2019-06-05 19:28:35 +00:00
pub fn get_adapters() -> Vec<Rc<dyn FileAdapter>> {
2019-06-04 18:08:26 +00:00
let adapters: Vec<Rc<dyn FileAdapter>> = vec![
2019-06-06 09:00:13 +00:00
Rc::new(ffmpeg::FFmpegAdapter::new()),
Rc::new(pandoc::PandocAdapter::new()),
Rc::new(poppler::PopplerAdapter::new()),
Rc::new(zip::ZipAdapter::new()),
2019-06-06 15:59:15 +00:00
Rc::new(tar::TarAdapter::new()),
2019-06-04 18:08:26 +00:00
];
2019-06-05 19:28:35 +00:00
adapters
}
2019-06-04 18:08:26 +00:00
2019-06-05 19:28:35 +00:00
pub fn adapter_matcher() -> Result<impl Fn(FileMeta) -> Option<Rc<dyn FileAdapter>>, regex::Error> {
let adapters = get_adapters();
2019-06-04 18:08:26 +00:00
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-05 19:28:35 +00:00
Matcher::FileExtension(re) => {
fname_regexes.push((extension_to_regex(re), adapter.clone()))
}
2019-06-04 18:08:26 +00:00
};
}
}
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| {
2019-06-05 19:28:35 +00:00
// todo: handle multiple conflicting matches
2019-06-04 18:08:26 +00:00
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;
});
}