2022-06-17 10:08:24 +02:00
|
|
|
mod cli;
|
2021-08-23 13:31:01 +02:00
|
|
|
mod config;
|
2021-11-30 08:51:16 +01:00
|
|
|
mod dir_entry;
|
2020-04-03 21:24:11 +02:00
|
|
|
mod error;
|
2017-10-14 18:04:11 +02:00
|
|
|
mod exec;
|
2018-10-03 11:25:16 +02:00
|
|
|
mod exit_codes;
|
2020-04-03 12:04:47 +02:00
|
|
|
mod filesystem;
|
2020-04-03 11:34:34 +02:00
|
|
|
mod filetypes;
|
2020-04-03 11:36:54 +02:00
|
|
|
mod filter;
|
2017-10-10 08:01:17 +02:00
|
|
|
mod output;
|
2020-04-03 11:44:45 +02:00
|
|
|
mod regex_helper;
|
2017-10-10 08:01:17 +02:00
|
|
|
mod walk;
|
2017-05-12 11:50:03 +02:00
|
|
|
|
|
|
|
use std::env;
|
2022-06-17 10:08:24 +02:00
|
|
|
use std::path::Path;
|
2017-06-11 22:43:30 +02:00
|
|
|
use std::sync::Arc;
|
2017-06-16 10:37:40 +02:00
|
|
|
use std::time;
|
2017-05-12 11:50:03 +02:00
|
|
|
|
2022-06-17 10:08:24 +02:00
|
|
|
use anyhow::{anyhow, bail, Context, Result};
|
2017-06-10 17:30:48 +02:00
|
|
|
use atty::Stream;
|
2022-07-18 10:19:11 +02:00
|
|
|
use clap::{CommandFactory, Parser};
|
2020-04-15 15:47:17 +02:00
|
|
|
use globset::GlobBuilder;
|
2018-12-09 14:56:05 +01:00
|
|
|
use lscolors::LsColors;
|
2022-11-01 22:00:35 +01:00
|
|
|
use regex::bytes::{Regex, RegexBuilder, RegexSetBuilder};
|
2017-05-12 13:02:20 +02:00
|
|
|
|
2022-06-17 10:08:24 +02:00
|
|
|
use crate::cli::{ColorWhen, Opts};
|
2021-08-23 13:31:01 +02:00
|
|
|
use crate::config::Config;
|
2022-02-18 09:21:00 +01:00
|
|
|
use crate::exec::CommandSet;
|
2020-04-03 20:55:14 +02:00
|
|
|
use crate::exit_codes::ExitCode;
|
2020-04-03 11:34:34 +02:00
|
|
|
use crate::filetypes::FileTypes;
|
2020-05-01 14:50:12 +02:00
|
|
|
#[cfg(unix)]
|
|
|
|
use crate::filter::OwnerFilter;
|
2022-06-17 10:08:24 +02:00
|
|
|
use crate::filter::TimeFilter;
|
2020-12-06 15:57:33 +01:00
|
|
|
use crate::regex_helper::{pattern_has_uppercase_char, pattern_matches_strings_with_leading_dot};
|
2017-05-12 11:50:03 +02:00
|
|
|
|
2019-09-15 18:13:29 +02:00
|
|
|
// We use jemalloc for performance reasons, see https://github.com/sharkdp/fd/pull/481
|
2020-05-19 16:07:12 +02:00
|
|
|
// FIXME: re-enable jemalloc on macOS, see comment in Cargo.toml file for more infos
|
2020-10-25 21:18:53 +01:00
|
|
|
#[cfg(all(
|
|
|
|
not(windows),
|
|
|
|
not(target_os = "android"),
|
|
|
|
not(target_os = "macos"),
|
2021-11-28 12:12:43 +01:00
|
|
|
not(target_os = "freebsd"),
|
2022-07-12 18:09:36 +02:00
|
|
|
not(all(target_env = "musl", target_pointer_width = "32")),
|
2021-12-14 10:09:48 +01:00
|
|
|
not(target_arch = "riscv64"),
|
2021-12-23 09:13:44 +01:00
|
|
|
feature = "use-jemalloc"
|
2020-10-25 21:18:53 +01:00
|
|
|
))]
|
2019-09-15 17:47:36 +02:00
|
|
|
#[global_allocator]
|
|
|
|
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
|
|
|
|
2020-10-30 15:41:29 +01:00
|
|
|
// vivid --color-mode 8-bit generate molokai
|
|
|
|
const DEFAULT_LS_COLORS: &str = "
|
|
|
|
ow=0:or=0;38;5;16;48;5;203:no=0:ex=1;38;5;203:cd=0;38;5;203;48;5;236:mi=0;38;5;16;48;5;203:*~=0;38;5;243:st=0:pi=0;38;5;16;48;5;81:fi=0:di=0;38;5;81:so=0;38;5;16;48;5;203:bd=0;38;5;81;48;5;236:tw=0:ln=0;38;5;203:*.m=0;38;5;48:*.o=0;38;5;243:*.z=4;38;5;203:*.a=1;38;5;203:*.r=0;38;5;48:*.c=0;38;5;48:*.d=0;38;5;48:*.t=0;38;5;48:*.h=0;38;5;48:*.p=0;38;5;48:*.cc=0;38;5;48:*.ll=0;38;5;48:*.jl=0;38;5;48:*css=0;38;5;48:*.md=0;38;5;185:*.gz=4;38;5;203:*.nb=0;38;5;48:*.mn=0;38;5;48:*.go=0;38;5;48:*.xz=4;38;5;203:*.so=1;38;5;203:*.rb=0;38;5;48:*.pm=0;38;5;48:*.bc=0;38;5;243:*.py=0;38;5;48:*.as=0;38;5;48:*.pl=0;38;5;48:*.rs=0;38;5;48:*.sh=0;38;5;48:*.7z=4;38;5;203:*.ps=0;38;5;186:*.cs=0;38;5;48:*.el=0;38;5;48:*.rm=0;38;5;208:*.hs=0;38;5;48:*.td=0;38;5;48:*.ui=0;38;5;149:*.ex=0;38;5;48:*.js=0;38;5;48:*.cp=0;38;5;48:*.cr=0;38;5;48:*.la=0;38;5;243:*.kt=0;38;5;48:*.ml=0;38;5;48:*.vb=0;38;5;48:*.gv=0;38;5;48:*.lo=0;38;5;243:*.hi=0;38;5;243:*.ts=0;38;5;48:*.ko=1;38;5;203:*.hh=0;38;5;48:*.pp=0;38;5;48:*.di=0;38;5;48:*.bz=4;38;5;203:*.fs=0;38;5;48:*.png=0;38;5;208:*.zsh=0;38;5;48:*.mpg=0;38;5;208:*.pid=0;38;5;243:*.xmp=0;38;5;149:*.iso=4;38;5;203:*.m4v=0;38;5;208:*.dot=0;38;5;48:*.ods=0;38;5;186:*.inc=0;38;5;48:*.sxw=0;38;5;186:*.aif=0;38;5;208:*.git=0;38;5;243:*.gvy=0;38;5;48:*.tbz=4;38;5;203:*.log=0;38;5;243:*.txt=0;38;5;185:*.ico=0;38;5;208:*.csx=0;38;5;48:*.vob=0;38;5;208:*.pgm=0;38;5;208:*.pps=0;38;5;186:*.ics=0;38;5;186:*.img=4;38;5;203:*.fon=0;38;5;208:*.hpp=0;38;5;48:*.bsh=0;38;5;48:*.sql=0;38;5;48:*TODO=1:*.php=0;38;5;48:*.pkg=4;38;5;203:*.ps1=0;38;5;48:*.csv=0;38;5;185:*.ilg=0;38;5;243:*.ini=0;38;5;149:*.pyc=0;38;5;243:*.psd=0;38;5;208:*.htc=0;38;5;48:*.swp=0;38;5;243:*.mli=0;38;5;48:*hgrc=0;38;5;149:*.bst=0;38;5;149:*.ipp=0;38;5;48:*.fsi=0;38;5;48:*.tcl=0;38;5;48:*.exs=0;38;5;48:*.out=0;38;5;243:*.jar=4;38;5;203:*.xls=0;38;5;186:*.ppm=0;38;5;208:*.apk=4;38;5;203:*.aux=0;38;5;243:*.rpm=4;38;5;203:*.dll=1;38;5;203:*.eps=0;38;5;208:*.exe=1;38;5;203:*.doc=0;38;5;186:*.wma=0;38;5;208:*.deb=4;38;5;203:*.pod=0;38;5;48:*.ind=0;38;5;243:*.nix=0;38;5;149:*.lua=0;38;5;48:*.epp=0;38;5;48:*.dpr=0;38;5;48:*.htm=0;38;5;185:*.ogg=0;38;5;208:*.bin=4;38;5;203:*.otf=0;38;5;208:*.yml=0;38;5;149:*.pro=0;38;5;149:*.cxx=0;38;5;48:*.tex=0;38;5;48:*.fnt=0;38;5;208:*.erl=0;38;5;48:*.sty=0;38;5;243:*.bag=4;38;5;203:*.rst=0;38;5;185:*.pdf=0;38;5;186:*.pbm=0;38;5;208:*.xcf=0;38;5;208:*.clj=0;38;5;48:*.gif=0;38;5;208:*.rar=4;38;5;203:*.elm=0;38;5;48:*.bib=0;38;5;149:*.tsx=0;38;5;48:*.dmg=4;38;5;203:*.tmp=0;38;5;243:*.bcf=0;38;5;243:*.mkv=0;38;5;208:*.svg=0;38;5;208:*.cpp=0;38;5;48:*.vim=0;38;5;48:*.bmp=0;38;5;208:*.ltx=0;38;5;48:*.fls=0;38;5;243:*.flv=0;38;5;208:*.wav=0;38;5;208:*.m4a=0;38;5;208:*.mid=0;38;5;208:*.hxx=0;38;5;48:*.pas=0;38;5;48:*.wmv=0;38;5;208:*.tif=0;38;5;208:*.kex=0;38;5;186:*.mp4=0;38;5;208:*.bak=0;38;5;243:*.xlr=0;38;5;186:*.dox=0;38;5;149:*.swf=0;38;5;208:*.tar=4;38;5;203:*.tgz=4;38;5;203:*.cfg=0;38;5;149:*.xml=0;
|
|
|
|
38;5;185:*.jpg=0;38;5;208:*.mir=0;38;5;48:*.sxi=0;38;5;186:*.bz2=4;38;5;203:*.odt=0;38;5;186:*.mov=0;38;5;208:*.toc=0;38;5;243:*.bat=1;38;5;203:*.asa=0;38;5;48:*.awk=0;38;5;48:*.sbt=0;38;5;48:*.vcd=4;38;5;203:*.kts=0;38;5;48:*.arj=4;38;5;203:*.blg=0;38;5;243:*.c++=0;38;5;48:*.odp=0;38;5;186:*.bbl=0;38;5;243:*.idx=0;38;5;243:*.com=1;38;5;203:*.mp3=0;38;5;208:*.avi=0;38;5;208:*.def=0;38;5;48:*.cgi=0;38;5;48:*.zip=4;38;5;203:*.ttf=0;38;5;208:*.ppt=0;38;5;186:*.tml=0;38;5;149:*.fsx=0;38;5;48:*.h++=0;38;5;48:*.rtf=0;38;5;186:*.inl=0;38;5;48:*.yaml=0;38;5;149:*.html=0;38;5;185:*.mpeg=0;38;5;208:*.java=0;38;5;48:*.hgrc=0;38;5;149:*.orig=0;38;5;243:*.conf=0;38;5;149:*.dart=0;38;5;48:*.psm1=0;38;5;48:*.rlib=0;38;5;243:*.fish=0;38;5;48:*.bash=0;38;5;48:*.make=0;38;5;149:*.docx=0;38;5;186:*.json=0;38;5;149:*.psd1=0;38;5;48:*.lisp=0;38;5;48:*.tbz2=4;38;5;203:*.diff=0;38;5;48:*.epub=0;38;5;186:*.xlsx=0;38;5;186:*.pptx=0;38;5;186:*.toml=0;38;5;149:*.h264=0;38;5;208:*.purs=0;38;5;48:*.flac=0;38;5;208:*.tiff=0;38;5;208:*.jpeg=0;38;5;208:*.lock=0;38;5;243:*.less=0;38;5;48:*.dyn_o=0;38;5;243:*.scala=0;38;5;48:*.mdown=0;38;5;185:*.shtml=0;38;5;185:*.class=0;38;5;243:*.cache=0;38;5;243:*.cmake=0;38;5;149:*passwd=0;38;5;149:*.swift=0;38;5;48:*shadow=0;38;5;149:*.xhtml=0;38;5;185:*.patch=0;38;5;48:*.cabal=0;38;5;48:*README=0;38;5;16;48;5;186:*.toast=4;38;5;203:*.ipynb=0;38;5;48:*COPYING=0;38;5;249:*.gradle=0;38;5;48:*.matlab=0;38;5;48:*.config=0;38;5;149:*LICENSE=0;38;5;249:*.dyn_hi=0;38;5;243:*.flake8=0;38;5;149:*.groovy=0;38;5;48:*INSTALL=0;38;5;16;48;5;186:*TODO.md=1:*.ignore=0;38;5;149:*Doxyfile=0;38;5;149:*TODO.txt=1:*setup.py=0;38;5;149:*Makefile=0;38;5;149:*.gemspec=0;38;5;149:*.desktop=0;38;5;149:*.rgignore=0;38;5;149:*.markdown=0;38;5;185:*COPYRIGHT=0;38;5;249:*configure=0;38;5;149:*.DS_Store=0;38;5;243:*.kdevelop=0;38;5;149:*.fdignore=0;38;5;149:*README.md=0;38;5;16;48;5;186:*.cmake.in=0;38;5;149:*SConscript=0;38;5;149:*CODEOWNERS=0;38;5;149:*.localized=0;38;5;243:*.gitignore=0;38;5;149:*Dockerfile=0;38;5;149:*.gitconfig=0;38;5;149:*INSTALL.md=0;38;5;16;48;5;186:*README.txt=0;38;5;16;48;5;186:*SConstruct=0;38;5;149:*.scons_opt=0;38;5;243:*.travis.yml=0;38;5;186:*.gitmodules=0;38;5;149:*.synctex.gz=0;38;5;243:*LICENSE-MIT=0;38;5;249:*MANIFEST.in=0;38;5;149:*Makefile.in=0;38;5;243:*Makefile.am=0;38;5;149:*INSTALL.txt=0;38;5;16;48;5;186:*configure.ac=0;38;5;149:*.applescript=0;38;5;48:*appveyor.yml=0;38;5;186:*.fdb_latexmk=0;38;5;243:*CONTRIBUTORS=0;38;5;16;48;5;186:*.clang-format=0;38;5;149:*LICENSE-APACHE=0;38;5;249:*CMakeLists.txt=0;38;5;149:*CMakeCache.txt=0;38;5;243:*.gitattributes=0;38;5;149:*CONTRIBUTORS.md=0;38;5;16;48;5;186:*.sconsign.dblite=0;38;5;243:*requirements.txt=0;38;5;149:*CONTRIBUTORS.txt=0;38;5;16;48;5;186:*package-lock.json=0;38;5;243:*.CFUserTextEncoding=0;38;5;243
|
|
|
|
";
|
|
|
|
|
2021-08-21 23:00:23 +02:00
|
|
|
fn main() {
|
|
|
|
let result = run();
|
|
|
|
match result {
|
|
|
|
Ok(exit_code) => {
|
2021-11-14 22:31:38 +01:00
|
|
|
exit_code.exit();
|
2021-08-21 23:00:23 +02:00
|
|
|
}
|
|
|
|
Err(err) => {
|
|
|
|
eprintln!("[fd error]: {:#}", err);
|
2021-11-14 22:31:38 +01:00
|
|
|
ExitCode::GeneralError.exit();
|
2021-08-21 23:00:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-03 20:55:14 +02:00
|
|
|
fn run() -> Result<ExitCode> {
|
2022-06-17 10:08:24 +02:00
|
|
|
let opts = Opts::parse();
|
2017-05-12 11:50:03 +02:00
|
|
|
|
2022-06-17 10:08:24 +02:00
|
|
|
#[cfg(feature = "completions")]
|
|
|
|
if let Some(shell) = opts.gen_completions()? {
|
|
|
|
return print_completions(shell);
|
|
|
|
}
|
|
|
|
|
|
|
|
set_working_dir(&opts)?;
|
|
|
|
let search_paths = opts.search_paths()?;
|
|
|
|
if search_paths.is_empty() {
|
|
|
|
bail!("No valid search paths given.");
|
|
|
|
}
|
|
|
|
|
|
|
|
ensure_search_pattern_is_not_a_path(&opts)?;
|
2022-11-01 22:00:35 +01:00
|
|
|
let pattern = &opts.pattern;
|
|
|
|
let exprs = &opts.exprs;
|
|
|
|
let empty = Vec::new();
|
|
|
|
|
|
|
|
let pattern_regexps = exprs
|
|
|
|
.as_ref()
|
|
|
|
.unwrap_or(&empty)
|
|
|
|
.iter()
|
|
|
|
.chain([pattern])
|
|
|
|
.map(|pat| build_pattern_regex(pat, &opts))
|
|
|
|
.collect::<Result<Vec<String>>>()?;
|
|
|
|
|
|
|
|
let config = construct_config(opts, &pattern_regexps)?;
|
2021-08-21 23:00:23 +02:00
|
|
|
|
2022-11-01 22:00:35 +01:00
|
|
|
ensure_use_hidden_option_for_leading_dot_pattern(&config, &pattern_regexps)?;
|
|
|
|
|
|
|
|
let regexps = pattern_regexps
|
|
|
|
.into_iter()
|
|
|
|
.map(|pat| build_regex(pat, &config))
|
|
|
|
.collect::<Result<Vec<Regex>>>()?;
|
|
|
|
|
|
|
|
walk::scan(&search_paths, Arc::new(regexps), Arc::new(config))
|
2021-08-21 23:00:23 +02:00
|
|
|
}
|
|
|
|
|
2022-06-17 10:08:24 +02:00
|
|
|
#[cfg(feature = "completions")]
|
|
|
|
#[cold]
|
|
|
|
fn print_completions(shell: clap_complete::Shell) -> Result<ExitCode> {
|
|
|
|
// The program name is the first argument.
|
2022-11-13 17:49:03 +01:00
|
|
|
let first_arg = env::args().next();
|
|
|
|
let program_name = first_arg
|
|
|
|
.as_ref()
|
|
|
|
.map(Path::new)
|
2022-11-18 06:20:03 +01:00
|
|
|
.and_then(|path| path.file_stem())
|
2022-11-13 17:49:03 +01:00
|
|
|
.and_then(|file| file.to_str())
|
|
|
|
.unwrap_or("fd");
|
2022-06-17 10:08:24 +02:00
|
|
|
let mut cmd = Opts::command();
|
|
|
|
cmd.build();
|
2022-11-13 17:49:03 +01:00
|
|
|
clap_complete::generate(shell, &mut cmd, program_name, &mut std::io::stdout());
|
2022-06-17 10:08:24 +02:00
|
|
|
Ok(ExitCode::Success)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_working_dir(opts: &Opts) -> Result<()> {
|
|
|
|
if let Some(ref base_directory) = opts.base_directory {
|
2021-08-08 13:24:56 +02:00
|
|
|
if !filesystem::is_existing_directory(base_directory) {
|
2020-04-03 20:55:14 +02:00
|
|
|
return Err(anyhow!(
|
|
|
|
"The '--base-directory' path '{}' is not a directory.",
|
2020-04-03 19:41:43 +02:00
|
|
|
base_directory.to_string_lossy()
|
2020-04-03 20:55:14 +02:00
|
|
|
));
|
2019-11-20 10:53:51 +01:00
|
|
|
}
|
2020-04-03 20:55:14 +02:00
|
|
|
env::set_current_dir(base_directory).with_context(|| {
|
|
|
|
format!(
|
2020-10-25 21:18:53 +01:00
|
|
|
"Could not set '{}' as the current working directory",
|
2020-04-03 20:55:14 +02:00
|
|
|
base_directory.to_string_lossy()
|
|
|
|
)
|
|
|
|
})?;
|
2019-11-20 10:53:51 +01:00
|
|
|
}
|
2021-08-21 23:00:23 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
2019-11-20 10:53:51 +01:00
|
|
|
|
2021-08-21 23:00:23 +02:00
|
|
|
/// Detect if the user accidentally supplied a path instead of a search pattern
|
2022-06-17 10:08:24 +02:00
|
|
|
fn ensure_search_pattern_is_not_a_path(opts: &Opts) -> Result<()> {
|
|
|
|
if !opts.full_path
|
|
|
|
&& opts.pattern.contains(std::path::MAIN_SEPARATOR)
|
|
|
|
&& Path::new(&opts.pattern).is_dir()
|
2018-03-14 23:13:17 +01:00
|
|
|
{
|
2021-08-21 23:00:23 +02:00
|
|
|
Err(anyhow!(
|
2018-10-27 16:30:29 +02:00
|
|
|
"The search pattern '{pattern}' contains a path-separation character ('{sep}') \
|
2018-03-14 23:13:17 +01:00
|
|
|
and will not lead to any search results.\n\n\
|
|
|
|
If you want to search for all files inside the '{pattern}' directory, use a match-all pattern:\n\n \
|
|
|
|
fd . '{pattern}'\n\n\
|
2020-04-03 20:55:14 +02:00
|
|
|
Instead, if you want your pattern to match the full file path, use:\n\n \
|
2018-03-14 23:13:17 +01:00
|
|
|
fd --full-path '{pattern}'",
|
2022-06-17 10:08:24 +02:00
|
|
|
pattern = &opts.pattern,
|
2018-03-14 23:13:17 +01:00
|
|
|
sep = std::path::MAIN_SEPARATOR,
|
2021-08-21 23:00:23 +02:00
|
|
|
))
|
|
|
|
} else {
|
|
|
|
Ok(())
|
2018-03-14 23:13:17 +01:00
|
|
|
}
|
2021-08-21 23:00:23 +02:00
|
|
|
}
|
2018-03-14 23:13:17 +01:00
|
|
|
|
2022-11-01 22:00:35 +01:00
|
|
|
fn build_pattern_regex(pattern: &str, opts: &Opts) -> Result<String> {
|
2022-06-17 10:08:24 +02:00
|
|
|
Ok(if opts.glob && !pattern.is_empty() {
|
2020-04-15 15:47:17 +02:00
|
|
|
let glob = GlobBuilder::new(pattern).literal_separator(true).build()?;
|
2019-09-15 15:37:08 +02:00
|
|
|
glob.regex().to_owned()
|
2022-06-17 10:08:24 +02:00
|
|
|
} else if opts.fixed_strings {
|
2019-09-15 15:37:08 +02:00
|
|
|
// Treat pattern as literal string if '--fixed-strings' is used
|
2018-02-10 15:19:53 +01:00
|
|
|
regex::escape(pattern)
|
|
|
|
} else {
|
|
|
|
String::from(pattern)
|
2021-08-21 23:00:23 +02:00
|
|
|
})
|
|
|
|
}
|
2018-02-10 15:19:53 +01:00
|
|
|
|
2021-08-21 23:00:23 +02:00
|
|
|
fn check_path_separator_length(path_separator: Option<&str>) -> Result<()> {
|
|
|
|
match (cfg!(windows), path_separator) {
|
|
|
|
(true, Some(sep)) if sep.len() > 1 => Err(anyhow!(
|
|
|
|
"A path separator must be exactly one byte, but \
|
|
|
|
the given separator is {} bytes: '{}'.\n\
|
|
|
|
In some shells on Windows, '/' is automatically \
|
|
|
|
expanded. Try to use '//' instead.",
|
|
|
|
sep.len(),
|
|
|
|
sep
|
|
|
|
)),
|
|
|
|
_ => Ok(()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-01 22:00:35 +01:00
|
|
|
fn construct_config(mut opts: Opts, pattern_regexps: &[String]) -> Result<Config> {
|
2017-06-05 14:14:01 +02:00
|
|
|
// The search will be case-sensitive if the command line flag is set or
|
2022-11-01 22:00:35 +01:00
|
|
|
// if any of the patterns has an uppercase character (smart case).
|
|
|
|
let case_sensitive = !opts.ignore_case
|
|
|
|
&& (opts.case_sensitive
|
|
|
|
|| pattern_regexps
|
|
|
|
.iter()
|
|
|
|
.any(|pat| pattern_has_uppercase_char(pat)));
|
2021-08-21 23:00:23 +02:00
|
|
|
|
2022-06-17 10:08:24 +02:00
|
|
|
let path_separator = opts
|
|
|
|
.path_separator
|
|
|
|
.take()
|
|
|
|
.or_else(filesystem::default_path_separator);
|
2022-03-16 17:13:05 +01:00
|
|
|
let actual_path_separator = path_separator
|
|
|
|
.clone()
|
|
|
|
.unwrap_or_else(|| std::path::MAIN_SEPARATOR.to_string());
|
2021-08-21 23:00:23 +02:00
|
|
|
check_path_separator_length(path_separator.as_deref())?;
|
|
|
|
|
2022-07-26 06:27:26 +02:00
|
|
|
let size_limits = std::mem::take(&mut opts.size);
|
2022-06-17 10:08:24 +02:00
|
|
|
let time_constraints = extract_time_constraints(&opts)?;
|
2021-08-21 23:00:23 +02:00
|
|
|
#[cfg(unix)]
|
2022-11-03 05:39:22 +01:00
|
|
|
let owner_constraint: Option<OwnerFilter> = opts.owner.and_then(OwnerFilter::filter_ignore);
|
2017-06-05 14:14:01 +02:00
|
|
|
|
2020-05-24 14:34:33 +02:00
|
|
|
#[cfg(windows)]
|
2020-05-24 14:37:52 +02:00
|
|
|
let ansi_colors_support =
|
|
|
|
ansi_term::enable_ansi_support().is_ok() || std::env::var_os("TERM").is_some();
|
2020-05-24 14:34:33 +02:00
|
|
|
#[cfg(not(windows))]
|
|
|
|
let ansi_colors_support = true;
|
|
|
|
|
2020-04-04 12:51:15 +02:00
|
|
|
let interactive_terminal = atty::is(Stream::Stdout);
|
2022-06-17 10:08:24 +02:00
|
|
|
let colored_output = match opts.color {
|
|
|
|
ColorWhen::Always => true,
|
|
|
|
ColorWhen::Never => false,
|
|
|
|
ColorWhen::Auto => {
|
|
|
|
ansi_colors_support && env::var_os("NO_COLOR").is_none() && interactive_terminal
|
|
|
|
}
|
2017-09-30 23:02:57 +02:00
|
|
|
};
|
2017-10-26 21:44:40 +02:00
|
|
|
|
2017-10-12 08:01:51 +02:00
|
|
|
let ls_colors = if colored_output {
|
2020-12-06 12:04:47 +01:00
|
|
|
Some(LsColors::from_env().unwrap_or_else(|| LsColors::from_string(DEFAULT_LS_COLORS)))
|
2017-10-12 08:01:51 +02:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2022-06-17 10:08:24 +02:00
|
|
|
let command = extract_command(&mut opts, colored_output)?;
|
2022-10-09 09:25:03 +02:00
|
|
|
let has_command = command.is_some();
|
2017-05-12 15:44:09 +02:00
|
|
|
|
2021-08-23 13:31:01 +02:00
|
|
|
Ok(Config {
|
2017-10-14 18:04:11 +02:00
|
|
|
case_sensitive,
|
2022-06-17 10:08:24 +02:00
|
|
|
search_full_path: opts.full_path,
|
|
|
|
ignore_hidden: !(opts.hidden || opts.rg_alias_ignore()),
|
|
|
|
read_fdignore: !(opts.no_ignore || opts.rg_alias_ignore()),
|
|
|
|
read_vcsignore: !(opts.no_ignore || opts.rg_alias_ignore() || opts.no_ignore_vcs),
|
|
|
|
read_parent_ignore: !opts.no_ignore_parent,
|
|
|
|
read_global_ignore: !opts.no_ignore || opts.rg_alias_ignore() || opts.no_global_ignore_file,
|
|
|
|
follow_links: opts.follow,
|
|
|
|
one_file_system: opts.one_file_system,
|
|
|
|
null_separator: opts.null_separator,
|
|
|
|
quiet: opts.quiet,
|
|
|
|
max_depth: opts.max_depth(),
|
|
|
|
min_depth: opts.min_depth(),
|
|
|
|
prune: opts.prune,
|
|
|
|
threads: opts.threads(),
|
|
|
|
max_buffer_time: opts.max_buffer_time,
|
2017-10-14 18:04:11 +02:00
|
|
|
ls_colors,
|
2020-04-04 12:51:15 +02:00
|
|
|
interactive_terminal,
|
2022-06-17 10:08:24 +02:00
|
|
|
file_types: opts.filetype.as_ref().map(|values| {
|
|
|
|
use crate::cli::FileType::*;
|
2018-02-25 11:11:14 +01:00
|
|
|
let mut file_types = FileTypes::default();
|
|
|
|
for value in values {
|
|
|
|
match value {
|
2022-06-17 10:08:24 +02:00
|
|
|
File => file_types.files = true,
|
|
|
|
Directory => file_types.directories = true,
|
|
|
|
Symlink => file_types.symlinks = true,
|
|
|
|
Executable => {
|
2018-03-25 12:19:51 +02:00
|
|
|
file_types.executables_only = true;
|
|
|
|
file_types.files = true;
|
2018-03-25 16:36:37 +02:00
|
|
|
}
|
2022-06-17 10:08:24 +02:00
|
|
|
Empty => file_types.empty_only = true,
|
|
|
|
Socket => file_types.sockets = true,
|
|
|
|
Pipe => file_types.pipes = true,
|
2018-02-25 11:11:14 +01:00
|
|
|
}
|
|
|
|
}
|
2018-08-19 17:05:04 +02:00
|
|
|
|
|
|
|
// If only 'empty' was specified, search for both files and directories:
|
|
|
|
if file_types.empty_only && !(file_types.files || file_types.directories) {
|
|
|
|
file_types.files = true;
|
|
|
|
file_types.directories = true;
|
|
|
|
}
|
|
|
|
|
2018-02-25 11:11:14 +01:00
|
|
|
file_types
|
|
|
|
}),
|
2022-06-17 10:08:24 +02:00
|
|
|
extensions: opts
|
|
|
|
.extensions
|
|
|
|
.as_ref()
|
2020-04-03 20:55:14 +02:00
|
|
|
.map(|exts| {
|
|
|
|
let patterns = exts
|
2022-06-17 10:08:24 +02:00
|
|
|
.iter()
|
2020-04-03 20:55:14 +02:00
|
|
|
.map(|e| e.trim_start_matches('.'))
|
|
|
|
.map(|e| format!(r".\.{}$", regex::escape(e)));
|
|
|
|
RegexSetBuilder::new(patterns)
|
|
|
|
.case_insensitive(true)
|
|
|
|
.build()
|
|
|
|
})
|
|
|
|
.transpose()?,
|
2019-01-29 23:09:45 +01:00
|
|
|
command: command.map(Arc::new),
|
2022-06-17 10:08:24 +02:00
|
|
|
batch_size: opts.batch_size,
|
|
|
|
exclude_patterns: opts.exclude.iter().map(|p| String::from("!") + p).collect(),
|
2022-07-26 06:27:26 +02:00
|
|
|
ignore_files: std::mem::take(&mut opts.ignore_file),
|
2018-04-23 01:38:10 +02:00
|
|
|
size_constraints: size_limits,
|
2018-10-10 12:13:19 +02:00
|
|
|
time_constraints,
|
2020-05-01 14:50:12 +02:00
|
|
|
#[cfg(unix)]
|
|
|
|
owner_constraint,
|
2022-06-17 10:08:24 +02:00
|
|
|
show_filesystem_errors: opts.show_errors,
|
2019-04-11 00:30:56 +02:00
|
|
|
path_separator,
|
2022-03-16 17:13:05 +01:00
|
|
|
actual_path_separator,
|
2022-06-17 10:08:24 +02:00
|
|
|
max_results: opts.max_results(),
|
|
|
|
strip_cwd_prefix: (opts.no_search_paths()
|
2022-10-09 09:25:03 +02:00
|
|
|
&& (opts.strip_cwd_prefix || !(opts.null_separator || has_command))),
|
2021-10-16 20:15:37 +02:00
|
|
|
})
|
2021-08-21 23:00:23 +02:00
|
|
|
}
|
|
|
|
|
2022-06-17 10:08:24 +02:00
|
|
|
fn extract_command(opts: &mut Opts, colored_output: bool) -> Result<Option<CommandSet>> {
|
|
|
|
opts.exec
|
|
|
|
.command
|
|
|
|
.take()
|
|
|
|
.map(Ok)
|
|
|
|
.or_else(|| {
|
|
|
|
if !opts.list_details {
|
|
|
|
return None;
|
|
|
|
}
|
2022-07-26 06:23:47 +02:00
|
|
|
let color_arg = format!("--color={}", opts.color.as_str());
|
2021-08-21 23:00:23 +02:00
|
|
|
|
2022-06-17 10:08:24 +02:00
|
|
|
let res = determine_ls_command(&color_arg, colored_output)
|
|
|
|
.map(|cmd| CommandSet::new_batch([cmd]).unwrap());
|
|
|
|
Some(res)
|
|
|
|
})
|
|
|
|
.transpose()
|
2021-08-21 23:00:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn determine_ls_command(color_arg: &str, colored_output: bool) -> Result<Vec<&str>> {
|
|
|
|
#[allow(unused)]
|
|
|
|
let gnu_ls = |command_name| {
|
|
|
|
// Note: we use short options here (instead of --long-options) to support more
|
|
|
|
// platforms (like BusyBox).
|
|
|
|
vec![
|
|
|
|
command_name,
|
|
|
|
"-l", // long listing format
|
|
|
|
"-h", // human readable file sizes
|
|
|
|
"-d", // list directories themselves, not their contents
|
|
|
|
color_arg,
|
|
|
|
]
|
2017-05-12 15:44:09 +02:00
|
|
|
};
|
2021-08-21 23:00:23 +02:00
|
|
|
let cmd: Vec<&str> = if cfg!(unix) {
|
|
|
|
if !cfg!(any(
|
|
|
|
target_os = "macos",
|
|
|
|
target_os = "dragonfly",
|
|
|
|
target_os = "freebsd",
|
|
|
|
target_os = "netbsd",
|
|
|
|
target_os = "openbsd"
|
|
|
|
)) {
|
|
|
|
// Assume ls is GNU ls
|
|
|
|
gnu_ls("ls")
|
|
|
|
} else {
|
|
|
|
// MacOS, DragonFlyBSD, FreeBSD
|
|
|
|
use std::process::{Command, Stdio};
|
2017-05-12 13:32:30 +02:00
|
|
|
|
2021-08-21 23:00:23 +02:00
|
|
|
// Use GNU ls, if available (support for --color=auto, better LS_COLORS support)
|
|
|
|
let gnu_ls_exists = Command::new("gls")
|
|
|
|
.arg("--version")
|
|
|
|
.stdout(Stdio::null())
|
|
|
|
.stderr(Stdio::null())
|
|
|
|
.status()
|
|
|
|
.is_ok();
|
|
|
|
|
|
|
|
if gnu_ls_exists {
|
|
|
|
gnu_ls("gls")
|
|
|
|
} else {
|
|
|
|
let mut cmd = vec![
|
|
|
|
"ls", // BSD version of ls
|
|
|
|
"-l", // long listing format
|
|
|
|
"-h", // '--human-readable' is not available, '-h' is
|
|
|
|
"-d", // '--directory' is not available, but '-d' is
|
|
|
|
];
|
|
|
|
|
|
|
|
if !cfg!(any(target_os = "netbsd", target_os = "openbsd")) && colored_output {
|
|
|
|
// -G is not available in NetBSD's and OpenBSD's ls
|
|
|
|
cmd.push("-G");
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if cfg!(windows) {
|
|
|
|
use std::process::{Command, Stdio};
|
|
|
|
|
|
|
|
// Use GNU ls, if available
|
|
|
|
let gnu_ls_exists = Command::new("ls")
|
|
|
|
.arg("--version")
|
|
|
|
.stdout(Stdio::null())
|
|
|
|
.stderr(Stdio::null())
|
|
|
|
.status()
|
|
|
|
.is_ok();
|
|
|
|
|
|
|
|
if gnu_ls_exists {
|
|
|
|
gnu_ls("ls")
|
|
|
|
} else {
|
|
|
|
return Err(anyhow!(
|
|
|
|
"'fd --list-details' is not supported on Windows unless GNU 'ls' is installed."
|
|
|
|
));
|
|
|
|
}
|
|
|
|
} else {
|
2020-12-06 15:57:33 +01:00
|
|
|
return Err(anyhow!(
|
2021-08-21 23:00:23 +02:00
|
|
|
"'fd --list-details' is not supported on this platform."
|
|
|
|
));
|
|
|
|
};
|
|
|
|
Ok(cmd)
|
|
|
|
}
|
|
|
|
|
2022-06-17 10:08:24 +02:00
|
|
|
fn extract_time_constraints(opts: &Opts) -> Result<Vec<TimeFilter>> {
|
2021-08-21 23:00:23 +02:00
|
|
|
let now = time::SystemTime::now();
|
|
|
|
let mut time_constraints: Vec<TimeFilter> = Vec::new();
|
2022-06-17 10:08:24 +02:00
|
|
|
if let Some(ref t) = opts.changed_within {
|
2021-08-21 23:00:23 +02:00
|
|
|
if let Some(f) = TimeFilter::after(&now, t) {
|
|
|
|
time_constraints.push(f);
|
|
|
|
} else {
|
|
|
|
return Err(anyhow!(
|
|
|
|
"'{}' is not a valid date or duration. See 'fd --help'.",
|
|
|
|
t
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
2022-06-17 10:08:24 +02:00
|
|
|
if let Some(ref t) = opts.changed_before {
|
2021-08-21 23:00:23 +02:00
|
|
|
if let Some(f) = TimeFilter::before(&now, t) {
|
|
|
|
time_constraints.push(f);
|
|
|
|
} else {
|
|
|
|
return Err(anyhow!(
|
|
|
|
"'{}' is not a valid date or duration. See 'fd --help'.",
|
|
|
|
t
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(time_constraints)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ensure_use_hidden_option_for_leading_dot_pattern(
|
2021-08-23 13:31:01 +02:00
|
|
|
config: &Config,
|
2022-11-01 22:00:35 +01:00
|
|
|
pattern_regexps: &[String],
|
2021-08-21 23:00:23 +02:00
|
|
|
) -> Result<()> {
|
2022-11-01 22:00:35 +01:00
|
|
|
if cfg!(unix)
|
|
|
|
&& config.ignore_hidden
|
|
|
|
&& pattern_regexps
|
|
|
|
.iter()
|
|
|
|
.any(|pat| pattern_matches_strings_with_leading_dot(pat))
|
2021-08-21 23:00:23 +02:00
|
|
|
{
|
|
|
|
Err(anyhow!(
|
2022-11-01 22:00:35 +01:00
|
|
|
"The pattern(s) seems to only match files with a leading dot, but hidden files are \
|
2020-12-06 15:57:33 +01:00
|
|
|
filtered by default. Consider adding -H/--hidden to search hidden files as well \
|
2022-11-01 22:00:35 +01:00
|
|
|
or adjust your search pattern(s)."
|
2021-08-21 23:00:23 +02:00
|
|
|
))
|
|
|
|
} else {
|
|
|
|
Ok(())
|
2020-12-06 15:57:33 +01:00
|
|
|
}
|
2021-08-21 23:00:23 +02:00
|
|
|
}
|
2020-12-06 15:57:33 +01:00
|
|
|
|
2021-08-23 13:31:01 +02:00
|
|
|
fn build_regex(pattern_regex: String, config: &Config) -> Result<regex::bytes::Regex> {
|
2021-08-21 23:00:23 +02:00
|
|
|
RegexBuilder::new(&pattern_regex)
|
2017-10-12 08:01:51 +02:00
|
|
|
.case_insensitive(!config.case_sensitive)
|
2017-10-14 15:41:38 +02:00
|
|
|
.dot_matches_new_line(true)
|
2018-01-01 12:16:43 +01:00
|
|
|
.build()
|
2020-04-03 20:55:14 +02:00
|
|
|
.map_err(|e| {
|
|
|
|
anyhow!(
|
|
|
|
"{}\n\nNote: You can use the '--fixed-strings' option to search for a \
|
|
|
|
literal string instead of a regular expression. Alternatively, you can \
|
|
|
|
also use the '--glob' option to match on a glob pattern.",
|
|
|
|
e.to_string()
|
|
|
|
)
|
2021-08-21 23:00:23 +02:00
|
|
|
})
|
2017-05-12 11:50:03 +02:00
|
|
|
}
|