use std::path::{Path, PathBuf};
use path_absolutize::Absolutize;
use crate::registry::RuleSet;
use crate::settings::types::CompiledPerFileIgnoreList;
pub(crate) fn get_cwd() -> &'static Path {
cfg_select! {
target_arch = "wasm32" => Path::new("."),
_ => path_absolutize::path_dedot::CWD.as_path(),
}
}
pub(crate) fn ignores_from_path(path: &Path, ignore_list: &CompiledPerFileIgnoreList) -> RuleSet {
if ignore_list.is_empty() {
return RuleSet::empty();
}
ignore_list
.iter_matches(path, "Adding per-file ignores")
.flatten()
.collect()
}
pub fn normalize_path<P: AsRef<Path>>(path: P) -> PathBuf {
let path = path.as_ref();
if let Ok(path) = path.absolutize() {
return path.to_path_buf();
}
path.to_path_buf()
}
pub fn normalize_path_to<P: AsRef<Path>, R: AsRef<Path>>(path: P, project_root: R) -> PathBuf {
path.as_ref()
.absolutize_from(project_root.as_ref())
.into_owned()
}
pub fn relativize_path<P: AsRef<Path>>(path: P) -> String {
let path = path.as_ref();
let cwd = get_cwd();
if let Ok(path) = path.strip_prefix(cwd) {
return format!("{}", path.display());
}
format!("{}", path.display())
}