4 * Copyright (c) 2006 Junio C Hamano
11 #include "tree-walk.h"
13 #include "parse-options.h"
14 #include "string-list.h"
15 #include "run-command.h"
21 static char const * const grep_usage[] = {
22 "git grep [options] [-e] <pattern> [<rev>...] [[--] <path>...]",
26 static int use_threads = 1;
30 static pthread_t threads[THREADS];
32 static void *load_sha1(const unsigned char *sha1, unsigned long *size,
34 static void *load_file(const char *filename, size_t *sz);
36 enum work_type {WORK_SHA1, WORK_FILE};
38 /* We use one producer thread and THREADS consumer
39 * threads. The producer adds struct work_items to 'todo' and the
40 * consumers pick work items from the same array.
46 /* if type == WORK_SHA1, then 'identifier' is a SHA1,
47 * otherwise type == WORK_FILE, and 'identifier' is a NUL
48 * terminated filename.
55 /* In the range [todo_done, todo_start) in 'todo' we have work_items
56 * that have been or are processed by a consumer thread. We haven't
57 * written the result for these to stdout yet.
59 * The work_items in [todo_start, todo_end) are waiting to be picked
60 * up by a consumer thread.
62 * The ranges are modulo TODO_SIZE.
65 static struct work_item todo[TODO_SIZE];
66 static int todo_start;
70 /* Has all work items been added? */
71 static int all_work_added;
73 /* This lock protects all the variables above. */
74 static pthread_mutex_t grep_mutex;
76 static inline void grep_lock(void)
79 pthread_mutex_lock(&grep_mutex);
82 static inline void grep_unlock(void)
85 pthread_mutex_unlock(&grep_mutex);
88 /* Used to serialize calls to read_sha1_file. */
89 static pthread_mutex_t read_sha1_mutex;
91 static inline void read_sha1_lock(void)
94 pthread_mutex_lock(&read_sha1_mutex);
97 static inline void read_sha1_unlock(void)
100 pthread_mutex_unlock(&read_sha1_mutex);
103 /* Signalled when a new work_item is added to todo. */
104 static pthread_cond_t cond_add;
106 /* Signalled when the result from one work_item is written to
109 static pthread_cond_t cond_write;
111 /* Signalled when we are finished with everything. */
112 static pthread_cond_t cond_result;
114 static int skip_first_line;
116 static void add_work(enum work_type type, char *name, void *id)
120 while ((todo_end+1) % ARRAY_SIZE(todo) == todo_done) {
121 pthread_cond_wait(&cond_write, &grep_mutex);
124 todo[todo_end].type = type;
125 todo[todo_end].name = name;
126 todo[todo_end].identifier = id;
127 todo[todo_end].done = 0;
128 strbuf_reset(&todo[todo_end].out);
129 todo_end = (todo_end + 1) % ARRAY_SIZE(todo);
131 pthread_cond_signal(&cond_add);
135 static struct work_item *get_work(void)
137 struct work_item *ret;
140 while (todo_start == todo_end && !all_work_added) {
141 pthread_cond_wait(&cond_add, &grep_mutex);
144 if (todo_start == todo_end && all_work_added) {
147 ret = &todo[todo_start];
148 todo_start = (todo_start + 1) % ARRAY_SIZE(todo);
154 static void grep_sha1_async(struct grep_opt *opt, char *name,
155 const unsigned char *sha1)
160 add_work(WORK_SHA1, name, s);
163 static void grep_file_async(struct grep_opt *opt, char *name,
164 const char *filename)
166 add_work(WORK_FILE, name, xstrdup(filename));
169 static void work_done(struct work_item *w)
175 old_done = todo_done;
176 for(; todo[todo_done].done && todo_done != todo_start;
177 todo_done = (todo_done+1) % ARRAY_SIZE(todo)) {
178 w = &todo[todo_done];
180 const char *p = w->out.buf;
181 size_t len = w->out.len;
183 /* Skip the leading hunk mark of the first file. */
184 if (skip_first_line) {
193 write_or_die(1, p, len);
199 if (old_done != todo_done)
200 pthread_cond_signal(&cond_write);
202 if (all_work_added && todo_done == todo_end)
203 pthread_cond_signal(&cond_result);
208 static void *run(void *arg)
211 struct grep_opt *opt = arg;
214 struct work_item *w = get_work();
218 opt->output_priv = w;
219 if (w->type == WORK_SHA1) {
221 void* data = load_sha1(w->identifier, &sz, w->name);
224 hit |= grep_buffer(opt, w->name, data, sz);
227 } else if (w->type == WORK_FILE) {
229 void* data = load_file(w->identifier, &sz);
231 hit |= grep_buffer(opt, w->name, data, sz);
240 free_grep_patterns(arg);
243 return (void*) (intptr_t) hit;
246 static void strbuf_out(struct grep_opt *opt, const void *buf, size_t size)
248 struct work_item *w = opt->output_priv;
249 strbuf_add(&w->out, buf, size);
252 static void start_threads(struct grep_opt *opt)
256 pthread_mutex_init(&grep_mutex, NULL);
257 pthread_mutex_init(&read_sha1_mutex, NULL);
258 pthread_mutex_init(&grep_attr_mutex, NULL);
259 pthread_cond_init(&cond_add, NULL);
260 pthread_cond_init(&cond_write, NULL);
261 pthread_cond_init(&cond_result, NULL);
263 for (i = 0; i < ARRAY_SIZE(todo); i++) {
264 strbuf_init(&todo[i].out, 0);
267 for (i = 0; i < ARRAY_SIZE(threads); i++) {
269 struct grep_opt *o = grep_opt_dup(opt);
270 o->output = strbuf_out;
271 compile_grep_patterns(o);
272 err = pthread_create(&threads[i], NULL, run, o);
275 die(_("grep: failed to create thread: %s"),
280 static int wait_all(void)
288 /* Wait until all work is done. */
289 while (todo_done != todo_end)
290 pthread_cond_wait(&cond_result, &grep_mutex);
292 /* Wake up all the consumer threads so they can see that there
293 * is no more work to do.
295 pthread_cond_broadcast(&cond_add);
298 for (i = 0; i < ARRAY_SIZE(threads); i++) {
300 pthread_join(threads[i], &h);
301 hit |= (int) (intptr_t) h;
304 pthread_mutex_destroy(&grep_mutex);
305 pthread_mutex_destroy(&read_sha1_mutex);
306 pthread_mutex_destroy(&grep_attr_mutex);
307 pthread_cond_destroy(&cond_add);
308 pthread_cond_destroy(&cond_write);
309 pthread_cond_destroy(&cond_result);
313 #else /* !NO_PTHREADS */
314 #define read_sha1_lock()
315 #define read_sha1_unlock()
317 static int wait_all(void)
323 static int grep_config(const char *var, const char *value, void *cb)
325 struct grep_opt *opt = cb;
328 switch (userdiff_config(var, value)) {
334 if (!strcmp(var, "grep.extendedregexp")) {
335 if (git_config_bool(var, value))
336 opt->regflags |= REG_EXTENDED;
338 opt->regflags &= ~REG_EXTENDED;
342 if (!strcmp(var, "grep.linenumber")) {
343 opt->linenum = git_config_bool(var, value);
347 if (!strcmp(var, "color.grep"))
348 opt->color = git_config_colorbool(var, value);
349 else if (!strcmp(var, "color.grep.context"))
350 color = opt->color_context;
351 else if (!strcmp(var, "color.grep.filename"))
352 color = opt->color_filename;
353 else if (!strcmp(var, "color.grep.function"))
354 color = opt->color_function;
355 else if (!strcmp(var, "color.grep.linenumber"))
356 color = opt->color_lineno;
357 else if (!strcmp(var, "color.grep.match"))
358 color = opt->color_match;
359 else if (!strcmp(var, "color.grep.selected"))
360 color = opt->color_selected;
361 else if (!strcmp(var, "color.grep.separator"))
362 color = opt->color_sep;
364 return git_color_default_config(var, value, cb);
367 return config_error_nonbool(var);
368 color_parse(value, var, color);
373 static void *lock_and_read_sha1_file(const unsigned char *sha1, enum object_type *type, unsigned long *size)
378 data = read_sha1_file(sha1, type, size);
383 static void *load_sha1(const unsigned char *sha1, unsigned long *size,
386 enum object_type type;
387 void *data = lock_and_read_sha1_file(sha1, &type, size);
390 error(_("'%s': unable to read %s"), name, sha1_to_hex(sha1));
395 static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1,
396 const char *filename, int tree_name_len)
398 struct strbuf pathbuf = STRBUF_INIT;
401 if (opt->relative && opt->prefix_length) {
402 quote_path_relative(filename + tree_name_len, -1, &pathbuf,
404 strbuf_insert(&pathbuf, 0, filename, tree_name_len);
406 strbuf_addstr(&pathbuf, filename);
409 name = strbuf_detach(&pathbuf, NULL);
413 grep_sha1_async(opt, name, sha1);
420 void *data = load_sha1(sha1, &sz, name);
424 hit = grep_buffer(opt, name, data, sz);
432 static void *load_file(const char *filename, size_t *sz)
438 if (lstat(filename, &st) < 0) {
441 error(_("'%s': %s"), filename, strerror(errno));
444 if (!S_ISREG(st.st_mode))
446 *sz = xsize_t(st.st_size);
447 i = open(filename, O_RDONLY);
450 data = xmalloc(*sz + 1);
451 if (st.st_size != read_in_full(i, data, *sz)) {
452 error(_("'%s': short read %s"), filename, strerror(errno));
462 static int grep_file(struct grep_opt *opt, const char *filename)
464 struct strbuf buf = STRBUF_INIT;
467 if (opt->relative && opt->prefix_length)
468 quote_path_relative(filename, -1, &buf, opt->prefix);
470 strbuf_addstr(&buf, filename);
471 name = strbuf_detach(&buf, NULL);
475 grep_file_async(opt, name, filename);
482 void *data = load_file(filename, &sz);
486 hit = grep_buffer(opt, name, data, sz);
494 static void append_path(struct grep_opt *opt, const void *data, size_t len)
496 struct string_list *path_list = opt->output_priv;
498 if (len == 1 && *(const char *)data == '\0')
500 string_list_append(path_list, xstrndup(data, len));
503 static void run_pager(struct grep_opt *opt, const char *prefix)
505 struct string_list *path_list = opt->output_priv;
506 const char **argv = xmalloc(sizeof(const char *) * (path_list->nr + 1));
509 for (i = 0; i < path_list->nr; i++)
510 argv[i] = path_list->items[i].string;
511 argv[path_list->nr] = NULL;
513 if (prefix && chdir(prefix))
514 die(_("Failed to chdir: %s"), prefix);
515 status = run_command_v_opt(argv, RUN_USING_SHELL);
521 static int grep_cache(struct grep_opt *opt, const struct pathspec *pathspec, int cached)
527 for (nr = 0; nr < active_nr; nr++) {
528 struct cache_entry *ce = active_cache[nr];
529 if (!S_ISREG(ce->ce_mode))
531 if (!match_pathspec_depth(pathspec, ce->name, ce_namelen(ce), 0, NULL))
534 * If CE_VALID is on, we assume worktree file and its cache entry
535 * are identical, even if worktree file has been modified, so use
536 * cache version instead
538 if (cached || (ce->ce_flags & CE_VALID) || ce_skip_worktree(ce)) {
541 hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
544 hit |= grep_file(opt, ce->name);
548 } while (nr < active_nr &&
549 !strcmp(ce->name, active_cache[nr]->name));
550 nr--; /* compensate for loop control */
552 if (hit && opt->status_only)
558 static int grep_tree(struct grep_opt *opt, const struct pathspec *pathspec,
559 struct tree_desc *tree, struct strbuf *base, int tn_len)
562 enum interesting match = entry_not_interesting;
563 struct name_entry entry;
564 int old_baselen = base->len;
566 while (tree_entry(tree, &entry)) {
567 int te_len = tree_entry_len(&entry);
569 if (match != all_entries_interesting) {
570 match = tree_entry_interesting(&entry, base, tn_len, pathspec);
571 if (match == all_entries_not_interesting)
573 if (match == entry_not_interesting)
577 strbuf_add(base, entry.path, te_len);
579 if (S_ISREG(entry.mode)) {
580 hit |= grep_sha1(opt, entry.sha1, base->buf, tn_len);
582 else if (S_ISDIR(entry.mode)) {
583 enum object_type type;
584 struct tree_desc sub;
588 data = lock_and_read_sha1_file(entry.sha1, &type, &size);
590 die(_("unable to read tree (%s)"),
591 sha1_to_hex(entry.sha1));
593 strbuf_addch(base, '/');
594 init_tree_desc(&sub, data, size);
595 hit |= grep_tree(opt, pathspec, &sub, base, tn_len);
598 strbuf_setlen(base, old_baselen);
600 if (hit && opt->status_only)
606 static int grep_object(struct grep_opt *opt, const struct pathspec *pathspec,
607 struct object *obj, const char *name)
609 if (obj->type == OBJ_BLOB)
610 return grep_sha1(opt, obj->sha1, name, 0);
611 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
612 struct tree_desc tree;
619 data = read_object_with_reference(obj->sha1, tree_type,
624 die(_("unable to read tree (%s)"), sha1_to_hex(obj->sha1));
626 len = name ? strlen(name) : 0;
627 strbuf_init(&base, PATH_MAX + len + 1);
629 strbuf_add(&base, name, len);
630 strbuf_addch(&base, ':');
632 init_tree_desc(&tree, data, size);
633 hit = grep_tree(opt, pathspec, &tree, &base, base.len);
634 strbuf_release(&base);
638 die(_("unable to grep from object of type %s"), typename(obj->type));
641 static int grep_objects(struct grep_opt *opt, const struct pathspec *pathspec,
642 const struct object_array *list)
646 const unsigned int nr = list->nr;
648 for (i = 0; i < nr; i++) {
649 struct object *real_obj;
650 real_obj = deref_tag(list->objects[i].item, NULL, 0);
651 if (grep_object(opt, pathspec, real_obj, list->objects[i].name)) {
653 if (opt->status_only)
660 static int grep_directory(struct grep_opt *opt, const struct pathspec *pathspec,
663 struct dir_struct dir;
666 memset(&dir, 0, sizeof(dir));
668 setup_standard_excludes(&dir);
670 fill_directory(&dir, pathspec->raw);
671 for (i = 0; i < dir.nr; i++) {
672 const char *name = dir.entries[i]->name;
673 int namelen = strlen(name);
674 if (!match_pathspec_depth(pathspec, name, namelen, 0, NULL))
676 hit |= grep_file(opt, dir.entries[i]->name);
677 if (hit && opt->status_only)
683 static int context_callback(const struct option *opt, const char *arg,
686 struct grep_opt *grep_opt = opt->value;
691 grep_opt->pre_context = grep_opt->post_context = 0;
694 value = strtol(arg, (char **)&endp, 10);
696 return error(_("switch `%c' expects a numerical value"),
699 grep_opt->pre_context = grep_opt->post_context = value;
703 static int file_callback(const struct option *opt, const char *arg, int unset)
705 struct grep_opt *grep_opt = opt->value;
706 int from_stdin = !strcmp(arg, "-");
709 struct strbuf sb = STRBUF_INIT;
711 patterns = from_stdin ? stdin : fopen(arg, "r");
713 die_errno(_("cannot open '%s'"), arg);
714 while (strbuf_getline(&sb, patterns, '\n') == 0) {
718 /* ignore empty line like grep does */
722 s = strbuf_detach(&sb, &len);
723 append_grep_pat(grep_opt, s, len, arg, ++lno, GREP_PATTERN);
731 static int not_callback(const struct option *opt, const char *arg, int unset)
733 struct grep_opt *grep_opt = opt->value;
734 append_grep_pattern(grep_opt, "--not", "command line", 0, GREP_NOT);
738 static int and_callback(const struct option *opt, const char *arg, int unset)
740 struct grep_opt *grep_opt = opt->value;
741 append_grep_pattern(grep_opt, "--and", "command line", 0, GREP_AND);
745 static int open_callback(const struct option *opt, const char *arg, int unset)
747 struct grep_opt *grep_opt = opt->value;
748 append_grep_pattern(grep_opt, "(", "command line", 0, GREP_OPEN_PAREN);
752 static int close_callback(const struct option *opt, const char *arg, int unset)
754 struct grep_opt *grep_opt = opt->value;
755 append_grep_pattern(grep_opt, ")", "command line", 0, GREP_CLOSE_PAREN);
759 static int pattern_callback(const struct option *opt, const char *arg,
762 struct grep_opt *grep_opt = opt->value;
763 append_grep_pattern(grep_opt, arg, "-e option", 0, GREP_PATTERN);
767 static int help_callback(const struct option *opt, const char *arg, int unset)
772 int cmd_grep(int argc, const char **argv, const char *prefix)
775 int cached = 0, untracked = 0, opt_exclude = -1;
776 int seen_dashdash = 0;
777 int external_grep_allowed__ignored;
778 const char *show_in_pager = NULL, *default_pager = "dummy";
780 struct object_array list = OBJECT_ARRAY_INIT;
781 const char **paths = NULL;
782 struct pathspec pathspec;
783 struct string_list path_list = STRING_LIST_INIT_NODUP;
788 pattern_type_unspecified = 0,
794 int pattern_type = pattern_type_unspecified;
796 struct option options[] = {
797 OPT_BOOLEAN(0, "cached", &cached,
798 "search in index instead of in the work tree"),
799 { OPTION_BOOLEAN, 0, "index", &use_index, NULL,
800 "finds in contents not managed by git",
801 PARSE_OPT_NOARG | PARSE_OPT_NEGHELP },
802 OPT_BOOLEAN(0, "untracked", &untracked,
803 "search in both tracked and untracked files"),
804 OPT_SET_INT(0, "exclude-standard", &opt_exclude,
805 "search also in ignored files", 1),
807 OPT_BOOLEAN('v', "invert-match", &opt.invert,
808 "show non-matching lines"),
809 OPT_BOOLEAN('i', "ignore-case", &opt.ignore_case,
810 "case insensitive matching"),
811 OPT_BOOLEAN('w', "word-regexp", &opt.word_regexp,
812 "match patterns only at word boundaries"),
813 OPT_SET_INT('a', "text", &opt.binary,
814 "process binary files as text", GREP_BINARY_TEXT),
815 OPT_SET_INT('I', NULL, &opt.binary,
816 "don't match patterns in binary files",
817 GREP_BINARY_NOMATCH),
818 { OPTION_INTEGER, 0, "max-depth", &opt.max_depth, "depth",
819 "descend at most <depth> levels", PARSE_OPT_NONEG,
822 OPT_SET_INT('E', "extended-regexp", &pattern_type,
823 "use extended POSIX regular expressions",
825 OPT_SET_INT('G', "basic-regexp", &pattern_type,
826 "use basic POSIX regular expressions (default)",
828 OPT_SET_INT('F', "fixed-strings", &pattern_type,
829 "interpret patterns as fixed strings",
831 OPT_SET_INT('P', "perl-regexp", &pattern_type,
832 "use Perl-compatible regular expressions",
835 OPT_BOOLEAN('n', "line-number", &opt.linenum, "show line numbers"),
836 OPT_NEGBIT('h', NULL, &opt.pathname, "don't show filenames", 1),
837 OPT_BIT('H', NULL, &opt.pathname, "show filenames", 1),
838 OPT_NEGBIT(0, "full-name", &opt.relative,
839 "show filenames relative to top directory", 1),
840 OPT_BOOLEAN('l', "files-with-matches", &opt.name_only,
841 "show only filenames instead of matching lines"),
842 OPT_BOOLEAN(0, "name-only", &opt.name_only,
843 "synonym for --files-with-matches"),
844 OPT_BOOLEAN('L', "files-without-match",
845 &opt.unmatch_name_only,
846 "show only the names of files without match"),
847 OPT_BOOLEAN('z', "null", &opt.null_following_name,
848 "print NUL after filenames"),
849 OPT_BOOLEAN('c', "count", &opt.count,
850 "show the number of matches instead of matching lines"),
851 OPT__COLOR(&opt.color, "highlight matches"),
852 OPT_BOOLEAN(0, "break", &opt.file_break,
853 "print empty line between matches from different files"),
854 OPT_BOOLEAN(0, "heading", &opt.heading,
855 "show filename only once above matches from same file"),
857 OPT_CALLBACK('C', "context", &opt, "n",
858 "show <n> context lines before and after matches",
860 OPT_INTEGER('B', "before-context", &opt.pre_context,
861 "show <n> context lines before matches"),
862 OPT_INTEGER('A', "after-context", &opt.post_context,
863 "show <n> context lines after matches"),
864 OPT_NUMBER_CALLBACK(&opt, "shortcut for -C NUM",
866 OPT_BOOLEAN('p', "show-function", &opt.funcname,
867 "show a line with the function name before matches"),
868 OPT_BOOLEAN('W', "function-context", &opt.funcbody,
869 "show the surrounding function"),
871 OPT_CALLBACK('f', NULL, &opt, "file",
872 "read patterns from file", file_callback),
873 { OPTION_CALLBACK, 'e', NULL, &opt, "pattern",
874 "match <pattern>", PARSE_OPT_NONEG, pattern_callback },
875 { OPTION_CALLBACK, 0, "and", &opt, NULL,
876 "combine patterns specified with -e",
877 PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback },
878 OPT_BOOLEAN(0, "or", &dummy, ""),
879 { OPTION_CALLBACK, 0, "not", &opt, NULL, "",
880 PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback },
881 { OPTION_CALLBACK, '(', NULL, &opt, NULL, "",
882 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
884 { OPTION_CALLBACK, ')', NULL, &opt, NULL, "",
885 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
887 OPT__QUIET(&opt.status_only,
888 "indicate hit with exit status without output"),
889 OPT_BOOLEAN(0, "all-match", &opt.all_match,
890 "show only matches from files that match all patterns"),
892 { OPTION_STRING, 'O', "open-files-in-pager", &show_in_pager,
893 "pager", "show matching files in the pager",
894 PARSE_OPT_OPTARG, NULL, (intptr_t)default_pager },
895 OPT_BOOLEAN(0, "ext-grep", &external_grep_allowed__ignored,
896 "allow calling of grep(1) (ignored by this build)"),
897 { OPTION_CALLBACK, 0, "help-all", &options, NULL, "show usage",
898 PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, help_callback },
903 * 'git grep -h', unlike 'git grep -h <pattern>', is a request
904 * to show usage information and exit.
906 if (argc == 2 && !strcmp(argv[1], "-h"))
907 usage_with_options(grep_usage, options);
909 memset(&opt, 0, sizeof(opt));
911 opt.prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
914 opt.pattern_tail = &opt.pattern_list;
915 opt.header_tail = &opt.header_list;
916 opt.regflags = REG_NEWLINE;
919 strcpy(opt.color_context, "");
920 strcpy(opt.color_filename, "");
921 strcpy(opt.color_function, "");
922 strcpy(opt.color_lineno, "");
923 strcpy(opt.color_match, GIT_COLOR_BOLD_RED);
924 strcpy(opt.color_selected, "");
925 strcpy(opt.color_sep, GIT_COLOR_CYAN);
927 git_config(grep_config, &opt);
930 * If there is no -- then the paths must exist in the working
931 * tree. If there is no explicit pattern specified with -e or
932 * -f, we take the first unrecognized non option to be the
933 * pattern, but then what follows it must be zero or more
934 * valid refs up to the -- (if exists), and then existing
935 * paths. If there is an explicit pattern, then the first
936 * unrecognized non option is the beginning of the refs list
937 * that continues up to the -- (if exists), and then paths.
939 argc = parse_options(argc, argv, prefix, options, grep_usage,
940 PARSE_OPT_KEEP_DASHDASH |
941 PARSE_OPT_STOP_AT_NON_OPTION |
942 PARSE_OPT_NO_INTERNAL_HELP);
943 switch (pattern_type) {
944 case pattern_type_fixed:
948 case pattern_type_bre:
951 opt.regflags &= ~REG_EXTENDED;
953 case pattern_type_ere:
956 opt.regflags |= REG_EXTENDED;
958 case pattern_type_pcre:
966 if (use_index && !startup_info->have_repository)
967 /* die the same way as if we did it at the beginning */
968 setup_git_directory();
971 * skip a -- separator; we know it cannot be
972 * separating revisions from pathnames if
973 * we haven't even had any patterns yet
975 if (argc > 0 && !opt.pattern_list && !strcmp(argv[0], "--")) {
980 /* First unrecognized non-option token */
981 if (argc > 0 && !opt.pattern_list) {
982 append_grep_pattern(&opt, argv[0], "command line", 0,
988 if (show_in_pager == default_pager)
989 show_in_pager = git_pager(1);
993 opt.null_following_name = 1;
994 opt.output_priv = &path_list;
995 opt.output = append_path;
996 string_list_append(&path_list, show_in_pager);
1000 if (!opt.pattern_list)
1001 die(_("no pattern given."));
1002 if (!opt.fixed && opt.ignore_case)
1003 opt.regflags |= REG_ICASE;
1005 compile_grep_patterns(&opt);
1007 /* Check revs and then paths */
1008 for (i = 0; i < argc; i++) {
1009 const char *arg = argv[i];
1010 unsigned char sha1[20];
1012 if (!get_sha1(arg, sha1)) {
1013 struct object *object = parse_object(sha1);
1015 die(_("bad object %s"), arg);
1016 add_object_array(object, arg, &list);
1019 if (!strcmp(arg, "--")) {
1027 if (list.nr || cached || online_cpus() == 1)
1033 opt.use_threads = use_threads;
1037 if (!(opt.name_only || opt.unmatch_name_only || opt.count)
1038 && (opt.pre_context || opt.post_context ||
1039 opt.file_break || opt.funcbody))
1040 skip_first_line = 1;
1041 start_threads(&opt);
1045 /* The rest are paths */
1046 if (!seen_dashdash) {
1048 for (j = i; j < argc; j++)
1049 verify_filename(prefix, argv[j]);
1052 paths = get_pathspec(prefix, argv + i);
1053 init_pathspec(&pathspec, paths);
1054 pathspec.max_depth = opt.max_depth;
1055 pathspec.recursive = 1;
1057 if (show_in_pager && (cached || list.nr))
1058 die(_("--open-files-in-pager only works on the worktree"));
1060 if (show_in_pager && opt.pattern_list && !opt.pattern_list->next) {
1061 const char *pager = path_list.items[0].string;
1062 int len = strlen(pager);
1064 if (len > 4 && is_dir_sep(pager[len - 5]))
1067 if (!strcmp("less", pager) || !strcmp("vi", pager)) {
1068 struct strbuf buf = STRBUF_INIT;
1069 strbuf_addf(&buf, "+/%s%s",
1070 strcmp("less", pager) ? "" : "*",
1071 opt.pattern_list->pattern);
1072 string_list_append(&path_list, buf.buf);
1073 strbuf_detach(&buf, NULL);
1080 if (!use_index && (untracked || cached))
1081 die(_("--cached or --untracked cannot be used with --no-index."));
1083 if (!use_index || untracked) {
1084 int use_exclude = (opt_exclude < 0) ? use_index : !!opt_exclude;
1086 die(_("--no-index or --untracked cannot be used with revs."));
1087 hit = grep_directory(&opt, &pathspec, use_exclude);
1088 } else if (0 <= opt_exclude) {
1089 die(_("--[no-]exclude-standard cannot be used for tracked contents."));
1090 } else if (!list.nr) {
1094 hit = grep_cache(&opt, &pathspec, cached);
1097 die(_("both --cached and trees are given."));
1098 hit = grep_objects(&opt, &pathspec, &list);
1103 if (hit && show_in_pager)
1104 run_pager(&opt, prefix);
1105 free_grep_patterns(&opt);