app.rs 19.2 KB
Newer Older
A
Andrew Gallant 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
use std::collections::HashMap;

use clap::{App, AppSettings, Arg};

const ABOUT: &'static str = "
ripgrep (rg) recursively searches your current directory for a regex pattern.

Project home page: https://github.com/BurntSushi/ripgrep

Use -h for short descriptions and --help for more details.";

const USAGE: &'static str = "
    rg [OPTIONS] <pattern> [<path> ...]
    rg [OPTIONS] [-e PATTERN | -f FILE ]... [<path> ...]
    rg [OPTIONS] --files [<path> ...]
    rg [OPTIONS] --type-list";

const TEMPLATE: &'static str = "\
{bin} {version}
{author}
{about}

USAGE:{usage}

ARGS:
{positionals}

OPTIONS:
{unified}";

/// Build a clap application with short help strings.
pub fn app_short() -> App<'static, 'static> {
    app(false, |k| USAGES[k].short)
}

/// Build a clap application with long help strings.
pub fn app_long() -> App<'static, 'static> {
    app(true, |k| USAGES[k].long)
}

/// Build a clap application parameterized by usage strings.
///
/// The function given should take a clap argument name and return a help
/// string. `app` will panic if a usage string is not defined.
///
/// This is an intentionally stand-alone module so that it can be used easily
/// in a `build.rs` script to build shell completion files.
fn app<F>(next_line_help: bool, doc: F) -> App<'static, 'static>
        where F: Fn(&'static str) -> &'static str {
    let arg = |name| {
        Arg::with_name(name).help(doc(name)).next_line_help(next_line_help)
    };
    let flag = |name| arg(name).long(name);

    App::new("ripgrep")
        .author(crate_authors!())
        .version(crate_version!())
        .about(ABOUT)
        .max_term_width(100)
        .setting(AppSettings::UnifiedHelpMessage)
        .usage(USAGE)
        .template(TEMPLATE)
        // Handle help/version manually to make their output formatting
        // consistent with short/long views.
        .arg(arg("help-short").short("h"))
        .arg(flag("help"))
        .arg(flag("version").short("V"))
        // First, set up primary positional/flag arguments.
        .arg(arg("pattern")
             .required_unless_one(&[
                "file", "files", "help-short", "help", "regexp", "type-list",
                "version",
             ]))
        .arg(arg("path").multiple(true))
        .arg(flag("regexp").short("e")
             .takes_value(true).multiple(true).number_of_values(1)
             .value_name("pattern"))
        .arg(flag("files")
             // This should also conflict with `pattern`, but the first file
             // path will actually be in `pattern`.
             .conflicts_with_all(&["file", "regexp", "type-list"]))
        .arg(flag("type-list")
             .conflicts_with_all(&["file", "files", "pattern", "regexp"]))
        // Second, set up common flags.
        .arg(flag("text").short("a"))
        .arg(flag("count").short("c"))
        .arg(flag("color")
             .value_name("WHEN")
             .takes_value(true)
             .hide_possible_values(true)
             .possible_values(&["never", "always", "auto"]))
        .arg(flag("fixed-strings").short("F"))
        .arg(flag("glob").short("g")
             .takes_value(true).multiple(true).number_of_values(1)
             .value_name("GLOB"))
        .arg(flag("ignore-case").short("i"))
        .arg(flag("line-number").short("n"))
        .arg(flag("no-line-number").short("N"))
        .arg(flag("quiet").short("q"))
        .arg(flag("type").short("t")
             .takes_value(true).multiple(true).number_of_values(1)
             .value_name("TYPE"))
        .arg(flag("type-not").short("T")
             .takes_value(true).multiple(true).number_of_values(1)
             .value_name("TYPE"))
        .arg(flag("unrestricted").short("u")
             .multiple(true))
        .arg(flag("invert-match").short("v"))
        .arg(flag("word-regexp").short("w"))
        // Third, set up less common flags.
        .arg(flag("after-context").short("A")
             .value_name("NUM").takes_value(true)
             .validator(validate_number))
        .arg(flag("before-context").short("B")
             .value_name("NUM").takes_value(true)
             .validator(validate_number))
        .arg(flag("context").short("C")
             .value_name("NUM").takes_value(true)
             .validator(validate_number))
        .arg(flag("column"))
        .arg(flag("context-separator").value_name("ARG").takes_value(true))
        .arg(flag("debug"))
        .arg(flag("file").short("f")
             .value_name("FILE").takes_value(true)
             .multiple(true).number_of_values(1))
        .arg(flag("files-with-matches").short("l"))
127
        .arg(flag("files-without-match"))
A
Andrew Gallant 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
        .arg(flag("with-filename").short("H"))
        .arg(flag("no-filename"))
        .arg(flag("heading"))
        .arg(flag("no-heading"))
        .arg(flag("hidden"))
        .arg(flag("ignore-file")
             .value_name("FILE").takes_value(true)
             .multiple(true).number_of_values(1))
        .arg(flag("follow").short("L"))
        .arg(flag("max-count")
             .short("m").value_name("NUM").takes_value(true)
             .validator(validate_number))
        .arg(flag("maxdepth")
             .value_name("NUM").takes_value(true)
             .validator(validate_number))
        .arg(flag("mmap"))
        .arg(flag("no-messages"))
        .arg(flag("no-mmap"))
        .arg(flag("no-ignore"))
        .arg(flag("no-ignore-parent"))
        .arg(flag("no-ignore-vcs"))
        .arg(flag("null"))
        .arg(flag("pretty").short("p"))
        .arg(flag("replace").short("r").value_name("ARG").takes_value(true))
        .arg(flag("case-sensitive").short("s"))
        .arg(flag("smart-case").short("S"))
        .arg(flag("threads")
             .short("j").value_name("ARG").takes_value(true)
             .validator(validate_number))
        .arg(flag("vimgrep"))
        .arg(flag("type-add")
             .value_name("TYPE").takes_value(true)
             .multiple(true).number_of_values(1))
        .arg(flag("type-clear")
             .value_name("TYPE").takes_value(true)
             .multiple(true).number_of_values(1))
}

struct Usage {
    short: &'static str,
    long: &'static str,
}

macro_rules! doc {
    ($map:expr, $name:expr, $short:expr) => {
        doc!($map, $name, $short, $short)
    };
    ($map:expr, $name:expr, $short:expr, $long:expr) => {
        $map.insert($name, Usage {
            short: $short,
            long: concat!($long, "\n "),
        });
    };
}

lazy_static! {
    static ref USAGES: HashMap<&'static str, Usage> = {
        let mut h = HashMap::new();
        doc!(h, "help-short",
             "Show short help output.",
             "Show short help output. Use --help to show more details.");
        doc!(h, "help",
             "Show verbose help output.",
             "When given, more details about flags are provided.");
        doc!(h, "version",
             "Prints version information.");

        doc!(h, "pattern",
             "A regular expression used for searching.",
             "A regular expression used for searching. Multiple patterns \
              may be given. To match a pattern beginning with a -, use [-].");
        doc!(h, "regexp",
             "A regular expression used for searching.",
             "A regular expression used for searching. Multiple patterns \
              may be given. To match a pattern beginning with a -, use [-].");
        doc!(h, "path",
             "A file or directory to search.",
             "A file or directory to search. Directories are searched \
              recursively.");
        doc!(h, "files",
             "Print each file that would be searched.",
             "Print each file that would be searched without actually \
              performing the search. This is useful to determine whether a \
              particular file is being searched or not.");
        doc!(h, "type-list",
             "Show all supported file types.",
             "Show all supported file types and their corresponding globs.");

        doc!(h, "text",
             "Search binary files as if they were text.");
        doc!(h, "count",
             "Only show count of matches for each file.");
        doc!(h, "color",
             "When to use color. [default: auto]",
             "When to use color in the output. The possible values are \
              never, always or auto. The default is auto.");
        doc!(h, "fixed-strings",
             "Treat the pattern as a literal string.",
             "Treat the pattern as a literal string instead of a regular \
              expression. When this flag is used, special regular expression \
              meta characters such as (){}*+. do not need to be escaped.");
        doc!(h, "glob",
             "Include or exclude files/directories.",
             "Include or exclude files/directories for searching that \
              match the given glob. This always overrides any other \
              ignore logic. Multiple glob flags may be used. Globbing \
              rules match .gitignore globs. Precede a glob with a ! \
              to exclude it.");
        doc!(h, "ignore-case",
             "Case insensitive search.",
             "Case insensitive search. This is overridden by \
              --case-sensitive.");
        doc!(h, "line-number",
             "Show line numbers.",
             "Show line numbers (1-based). This is enabled by default when \
              searching in a tty.");
        doc!(h, "no-line-number",
             "Suppress line numbers.",
             "Suppress line numbers. This is enabled by default when NOT \
              searching in a tty.");
        doc!(h, "quiet",
             "Do not print anything to stdout.",
             "Do not print anything to stdout. If a match is found in a file, \
              stop searching. This is useful when ripgrep is used only for \
              its exit code.");
        doc!(h, "type",
             "Only search files matching TYPE.",
             "Only search files matching TYPE. Multiple type flags may be \
              provided. Use the --type-list flag to list all available \
              types.");
        doc!(h, "type-not",
             "Do not search files matching TYPE.",
             "Do not search files matching TYPE. Multiple type-not flags may \
              be provided. Use the --type-list flag to list all available \
              types.");
        doc!(h, "unrestricted",
             "Reduce the level of \"smart\" searching.",
             "Reduce the level of \"smart\" searching. A single -u \
              won't respect .gitignore (etc.) files. Two -u flags will \
              additionally search hidden files and directories. Three \
              -u flags will additionally search binary files. -uu is \
              roughly equivalent to grep -r and -uuu is roughly \
              equivalent to grep -a -r.");
        doc!(h, "invert-match",
             "Invert matching.",
             "Invert matching. Show lines that don't match given patterns.");
        doc!(h, "word-regexp",
             "Only show matches surrounded by word boundaries.",
             "Only show matches surrounded by word boundaries. This is \
              equivalent to putting \\b before and after all of the search \
              patterns.");

        doc!(h, "after-context",
             "Show NUM lines after each match.");
        doc!(h, "before-context",
             "Show NUM lines before each match.");
        doc!(h, "context",
             "Show NUM lines before and after each match.");
        doc!(h, "column",
             "Show column numbers",
             "Show column numbers (1-based). This only shows the column \
              numbers for the first match on each line. This does not try \
              to account for Unicode. One byte is equal to one column.");
        doc!(h, "context-separator",
             "Set the context separator string. [default: --]",
             "The string used to separate non-contiguous context lines in the \
              output. Escape sequences like \\x7F or \\t may be used. The \
              default value is --.");
        doc!(h, "debug",
             "Show debug messages.",
             "Show debug messages. Please use this when filing a bug report.");
        doc!(h, "file",
             "Search for patterns from the given file.",
             "Search for patterns from the given file, with one pattern per \
              line. When this flag is used or multiple times or in \
              combination with the -e/--regexp flag, then all patterns \
              provided are searched. Empty pattern lines will match all input \
              lines, and the newline is not counted as part of the pattern.");
        doc!(h, "files-with-matches",
             "Only show the path of each file with at least one match.");
308
        doc!(h, "files-without-match",
D
Daniel Luz 已提交
309
             "Only show the path of each file that contains zero matches.");
A
Andrew Gallant 已提交
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
        doc!(h, "with-filename",
             "Show file name for each match.",
             "Prefix each match with the file name that contains it. This is \
              the default when more than one file is searched.");
        doc!(h, "no-filename",
             "Never show the file name for a match.",
             "Never show the file name for a match. This is the default when \
              one file is searched.");
        doc!(h, "heading",
             "Show matches grouped by each file.",
             "This shows the file name above clusters of matches from each \
              file. This is the default mode at a tty.");
        doc!(h, "no-heading",
             "Don't group matches by each file.",
             "Don't group matches by each file. This is the default mode \
              when not at a tty.");
        doc!(h, "hidden",
             "Search hidden files and directories.",
             "Search hidden files and directories. By default, hidden files \
              and directories are skipped.");
        doc!(h, "ignore-file",
             "Specify additional ignore files.",
             "Specify additional ignore files for filtering file paths. \
              Ignore files should be in the gitignore format and are matched \
              relative to the current working directory. These ignore files \
              have lower precedence than all other ignore files. When \
              specifying multiple ignore files, earlier files have lower \
              precedence than later files.");
        doc!(h, "follow",
             "Follow symbolic links.");
        doc!(h, "max-count",
             "Limit the number of matches.",
             "Limit the number of matching lines per file searched to NUM.");
        doc!(h, "maxdepth",
             "Descend at most NUM directories.",
             "Limit the depth of directory traversal to NUM levels beyond \
              the paths given. A value of zero only searches the \
              starting-points themselves.\n\nFor example, \
              'rg --maxdepth 0 dir/' is a no-op because dir/ will not be \
              descended into. 'rg --maxdepth 1 dir/' will search only the \
              direct children of dir/.");
        doc!(h, "mmap",
             "Searching using memory maps when possible.",
             "Search using memory maps when possible. This is enabled by \
              default when ripgrep thinks it will be faster. Note that memory \
              map searching doesn't currently support all options, so if an \
              incompatible option (e.g., --context) is given with --mmap, \
              then memory maps will not be used.");
        doc!(h, "no-messages",
             "Suppress all error messages.",
             "Suppress all error messages. This is equivalent to redirecting \
              stderr to /dev/null.");
        doc!(h, "no-mmap",
             "Never use memory maps.",
             "Never use memory maps, even when they might be faster.");
        doc!(h, "no-ignore",
             "Don't respect ignore files.",
             "Don't respect ignore files (.gitignore, .ignore, etc.). This \
              implies --no-ignore-parent and --no-ignore-vcs.");
        doc!(h, "no-ignore-parent",
             "Don't respect ignore files in parent directories.",
             "Don't respect ignore files (.gitignore, .ignore, etc.) in \
              parent directories.");
        doc!(h, "no-ignore-vcs",
             "Don't respect VCS ignore files",
             "Don't respect version control ignore files (.gitignore, etc.). \
              This implies --no-ignore-parent. Note that .ignore files will \
              continue to be respected.");
        doc!(h, "null",
             "Print NUL byte after file names",
             "Whenever a file name is printed, follow it with a NUL byte. \
              This includes printing file names before matches, and when \
              printing a list of matching files such as with --count, \
              --files-with-matches and --files. This option is useful for use \
              with xargs.");
        doc!(h, "pretty",
             "Alias for --color always --heading -n.");
        doc!(h, "replace",
             "Replace matches with string given.",
             "Replace every match with the string given when printing \
              results. Neither this flag nor any other flag will modify your \
              files.\n\nCapture group indices (e.g., $5) and names \
              (e.g., $foo) are supported in the replacement string.");
        doc!(h, "case-sensitive",
             "Search case sensitively.",
             "Search case sensitively. This overrides -i/--ignore-case and \
              -S/--smart-case.");
        doc!(h, "smart-case",
             "Smart case search.",
             "Searches case insensitively if the pattern is all lowercase. \
              Search case sensitively otherwise. This is overridden by \
              either -s/--case-sensitive or -i/--ignore-case.");
        doc!(h, "threads",
             "The approximate number of threads to use.",
             "The approximate number of threads to use. A value of 0 (which \
              is the default) causes ripgrep to choose the thread count \
              using heuristics.");
        doc!(h, "vimgrep",
             "Show results in vim compatible format.",
             "Show results with every match on its own line, including \
              line numbers and column numbers. With this option, a line with \
              more than one match will be printed more than once.");

        doc!(h, "type-add",
             "Add a new glob for a file type.",
             "Add a new glob for a particular file type. Only one glob can be \
              added at a time. Multiple --type-add flags can be provided. \
              Unless --type-clear is used, globs are added to any existing \
              globs defined inside of ripgrep.\n\nNote that this MUST be \
              passed to every invocation of ripgrep. Type settings are NOT \
              persisted.\n\nExample: \
              rg --type-add 'foo:*.foo' -tfoo PATTERN.");
        doc!(h, "type-clear",
             "Clear globs for given file type.",
             "Clear the file type globs previously defined for TYPE. This \
              only clears the default tpye definitions that are found inside \
              of ripgrep.\n\nNote that this MUST be passed to every \
              invocation of ripgrep. Type settings are NOT persisted.");

        h
    };
}

fn validate_number(s: String) -> Result<(), String> {
    s.parse::<usize>().map(|_|()).map_err(|err| err.to_string())
}