use std::collections::BTreeSet;
use std::path::PathBuf;
pub fn git_diffed(in_git_hook: bool) -> anyhow::Result<Vec<PathBuf>> {
let sh = xshell::Shell::new()?;
let files = xshell::cmd!(sh, "git diff --diff-filter MAR --name-only")
.output()?
.stdout;
let files_cached = xshell::cmd!(sh, "git diff --diff-filter MAR --name-only --cached")
.output()?
.stdout;
let files = String::from_utf8_lossy(&files);
let files_cached = String::from_utf8_lossy(&files_cached);
let files: Box<dyn Iterator<Item = _>> = if in_git_hook {
Box::new(files_cached.lines())
} else {
Box::new(files_cached.lines().chain(files.lines()))
};
let mut all_files = files.map(PathBuf::from).collect::<Vec<_>>();
all_files.sort();
all_files.dedup();
Ok(all_files)
}
pub fn git_ls_files() -> anyhow::Result<Vec<PathBuf>> {
let sh = xshell::Shell::new()?;
macro_rules! as_set {
($cmd:literal) => {{
let output = xshell::cmd!(sh, $cmd).output()?.stdout;
let output = String::from_utf8_lossy(&output).to_string();
output
.split('\n')
.map(PathBuf::from)
.collect::<BTreeSet<_>>()
}};
}
let all = as_set!("git ls-files");
let extra = as_set!("git ls-files --others --exclude-standard");
let deleted = as_set!("git ls-files --deleted");
let mut allow_list = all;
allow_list.extend(extra);
allow_list = allow_list.difference(&deleted).cloned().collect();
Ok(allow_list.into_iter().collect())
}