watchexec/cli/src/filterer/globset.rs

137 lines
2.8 KiB
Rust
Raw Normal View History

use std::{
ffi::{OsStr, OsString},
sync::Arc,
};
use clap::ArgMatches;
use miette::{IntoDiagnostic, Result};
use watchexec::{
error::RuntimeError,
event::{
filekind::{FileEventKind, ModifyKind},
Event, Tag,
},
filter::{globset::GlobsetFilterer, Filterer},
};
pub async fn globset(args: &ArgMatches<'static>) -> Result<Arc<WatchexecFilterer>> {
let (project_origin, workdir) = super::common::dirs(args).await?;
let ignorefiles = super::common::ignores(args, &project_origin).await?;
let mut ignores = Vec::new();
for ignore in ignorefiles {
ignores.extend(GlobsetFilterer::list_from_ignore_file(&ignore).await?);
}
let filters = args
.values_of("filter")
.unwrap_or_default()
.map(|f| (f.to_owned(), Some(workdir.clone())));
ignores.extend(
args.values_of("ignore")
.unwrap_or_default()
.map(|f| (f.to_owned(), Some(workdir.clone()))),
);
let exts = args
.values_of_os("extensions")
.unwrap_or_default()
.map(|s| s.split(b','))
.flatten();
Ok(Arc::new(WatchexecFilterer {
inner: GlobsetFilterer::new(project_origin, filters, ignores, exts).into_diagnostic()?,
no_meta: args.is_present("no-meta"),
}))
}
/// A custom filterer that combines the library's Globset filterer and a switch for --no-meta
#[derive(Debug)]
pub struct WatchexecFilterer {
inner: GlobsetFilterer,
no_meta: bool,
}
impl Filterer for WatchexecFilterer {
fn check_event(&self, event: &Event) -> Result<bool, RuntimeError> {
let is_meta = event.tags.iter().any(|tag| {
matches!(
tag,
Tag::FileEventKind(FileEventKind::Modify(ModifyKind::Metadata(_)))
)
});
if self.no_meta && is_meta {
Ok(false)
} else {
self.inner.check_event(event)
}
}
}
trait OsStringSplit {
fn split(&self, sep: u8) -> OsSplit;
}
impl OsStringSplit for OsStr {
fn split(&self, sep: u8) -> OsSplit {
OsSplit {
os: self.to_os_string(),
pos: 0,
sep,
}
}
}
struct OsSplit {
os: OsString,
pos: usize,
sep: u8,
}
#[cfg(unix)]
impl Iterator for OsSplit {
type Item = OsString;
fn next(&mut self) -> Option<Self::Item> {
use std::os::unix::ffi::{OsStrExt, OsStringExt};
let bytes = self.os.as_bytes();
if self.pos >= bytes.len() {
None
} else {
let mut pos = self.pos;
while pos < bytes.len() && bytes[pos] != self.sep {
pos += 1;
}
let res = OsString::from_vec(bytes[self.pos..=pos].to_vec());
self.pos = pos + 1;
Some(res)
}
}
}
#[cfg(windows)]
impl Iterator for OsSplit {
type Item = OsString;
fn next(&mut self) -> Option<Self::Item> {
use std::os::windows::ffi::{OsStrExt, OsStringExt};
2021-12-24 07:07:01 +01:00
let wides = self.os.encode_wide().skip(self.pos);
let mut cur = Vec::new();
for wide in wides {
if wide == u16::from(self.sep) {
break;
}
cur.push(wide);
}
let res = OsString::from_wide(&cur);
self.pos = cur.len() + 1;
Some(res)
}
}