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"
20 #include "thread-utils.h"
22 static char const * const grep_usage[] = {
23 "git grep [options] [-e] <pattern> [<rev>...] [[--] <path>...]",
27 static int use_threads = 1;
31 static pthread_t threads[THREADS];
33 static void *load_sha1(const unsigned char *sha1, unsigned long *size,
35 static void *load_file(const char *filename, size_t *sz);
37 enum work_type {WORK_SHA1, WORK_FILE};
39 /* We use one producer thread and THREADS consumer
40 * threads. The producer adds struct work_items to 'todo' and the
41 * consumers pick work items from the same array.
48 /* if type == WORK_SHA1, then 'identifier' is a SHA1,
49 * otherwise type == WORK_FILE, and 'identifier' is a NUL
50 * terminated filename.
57 /* In the range [todo_done, todo_start) in 'todo' we have work_items
58 * that have been or are processed by a consumer thread. We haven't
59 * written the result for these to stdout yet.
61 * The work_items in [todo_start, todo_end) are waiting to be picked
62 * up by a consumer thread.
64 * The ranges are modulo TODO_SIZE.
67 static struct work_item todo[TODO_SIZE];
68 static int todo_start;
72 /* Has all work items been added? */
73 static int all_work_added;
75 /* This lock protects all the variables above. */
76 static pthread_mutex_t grep_mutex;
78 /* Used to serialize calls to read_sha1_file. */
79 static pthread_mutex_t read_sha1_mutex;
81 #define grep_lock() pthread_mutex_lock(&grep_mutex)
82 #define grep_unlock() pthread_mutex_unlock(&grep_mutex)
83 #define read_sha1_lock() pthread_mutex_lock(&read_sha1_mutex)
84 #define read_sha1_unlock() pthread_mutex_unlock(&read_sha1_mutex)
86 /* Signalled when a new work_item is added to todo. */
87 static pthread_cond_t cond_add;
89 /* Signalled when the result from one work_item is written to
92 static pthread_cond_t cond_write;
94 /* Signalled when we are finished with everything. */
95 static pthread_cond_t cond_result;
97 static int print_hunk_marks_between_files;
98 static int printed_something;
100 static void add_work(enum work_type type, char *name, void *id)
104 while ((todo_end+1) % ARRAY_SIZE(todo) == todo_done) {
105 pthread_cond_wait(&cond_write, &grep_mutex);
108 todo[todo_end].type = type;
109 todo[todo_end].name = name;
110 todo[todo_end].identifier = id;
111 todo[todo_end].done = 0;
112 strbuf_reset(&todo[todo_end].out);
113 todo_end = (todo_end + 1) % ARRAY_SIZE(todo);
115 pthread_cond_signal(&cond_add);
119 static struct work_item *get_work(void)
121 struct work_item *ret;
124 while (todo_start == todo_end && !all_work_added) {
125 pthread_cond_wait(&cond_add, &grep_mutex);
128 if (todo_start == todo_end && all_work_added) {
131 ret = &todo[todo_start];
132 todo_start = (todo_start + 1) % ARRAY_SIZE(todo);
138 static void grep_sha1_async(struct grep_opt *opt, char *name,
139 const unsigned char *sha1)
144 add_work(WORK_SHA1, name, s);
147 static void grep_file_async(struct grep_opt *opt, char *name,
148 const char *filename)
150 add_work(WORK_FILE, name, xstrdup(filename));
153 static void work_done(struct work_item *w)
159 old_done = todo_done;
160 for(; todo[todo_done].done && todo_done != todo_start;
161 todo_done = (todo_done+1) % ARRAY_SIZE(todo)) {
162 w = &todo[todo_done];
164 if (print_hunk_marks_between_files && printed_something)
165 write_or_die(1, "--\n", 3);
166 write_or_die(1, w->out.buf, w->out.len);
167 printed_something = 1;
173 if (old_done != todo_done)
174 pthread_cond_signal(&cond_write);
176 if (all_work_added && todo_done == todo_end)
177 pthread_cond_signal(&cond_result);
182 static void *run(void *arg)
185 struct grep_opt *opt = arg;
188 struct work_item *w = get_work();
192 opt->output_priv = w;
193 if (w->type == WORK_SHA1) {
195 void* data = load_sha1(w->identifier, &sz, w->name);
198 hit |= grep_buffer(opt, w->name, data, sz);
201 } else if (w->type == WORK_FILE) {
203 void* data = load_file(w->identifier, &sz);
205 hit |= grep_buffer(opt, w->name, data, sz);
214 free_grep_patterns(arg);
217 return (void*) (intptr_t) hit;
220 static void strbuf_out(struct grep_opt *opt, const void *buf, size_t size)
222 struct work_item *w = opt->output_priv;
223 strbuf_add(&w->out, buf, size);
226 static void start_threads(struct grep_opt *opt)
230 pthread_mutex_init(&grep_mutex, NULL);
231 pthread_mutex_init(&read_sha1_mutex, NULL);
232 pthread_cond_init(&cond_add, NULL);
233 pthread_cond_init(&cond_write, NULL);
234 pthread_cond_init(&cond_result, NULL);
236 for (i = 0; i < ARRAY_SIZE(todo); i++) {
237 strbuf_init(&todo[i].out, 0);
240 for (i = 0; i < ARRAY_SIZE(threads); i++) {
242 struct grep_opt *o = grep_opt_dup(opt);
243 o->output = strbuf_out;
244 compile_grep_patterns(o);
245 err = pthread_create(&threads[i], NULL, run, o);
248 die("grep: failed to create thread: %s",
253 static int wait_all(void)
261 /* Wait until all work is done. */
262 while (todo_done != todo_end)
263 pthread_cond_wait(&cond_result, &grep_mutex);
265 /* Wake up all the consumer threads so they can see that there
266 * is no more work to do.
268 pthread_cond_broadcast(&cond_add);
271 for (i = 0; i < ARRAY_SIZE(threads); i++) {
273 pthread_join(threads[i], &h);
274 hit |= (int) (intptr_t) h;
277 pthread_mutex_destroy(&grep_mutex);
278 pthread_mutex_destroy(&read_sha1_mutex);
279 pthread_cond_destroy(&cond_add);
280 pthread_cond_destroy(&cond_write);
281 pthread_cond_destroy(&cond_result);
285 #else /* !NO_PTHREADS */
286 #define read_sha1_lock()
287 #define read_sha1_unlock()
289 static int wait_all(void)
295 static int grep_config(const char *var, const char *value, void *cb)
297 struct grep_opt *opt = cb;
300 switch (userdiff_config(var, value)) {
306 if (!strcmp(var, "color.grep"))
307 opt->color = git_config_colorbool(var, value, -1);
308 else if (!strcmp(var, "color.grep.context"))
309 color = opt->color_context;
310 else if (!strcmp(var, "color.grep.filename"))
311 color = opt->color_filename;
312 else if (!strcmp(var, "color.grep.function"))
313 color = opt->color_function;
314 else if (!strcmp(var, "color.grep.linenumber"))
315 color = opt->color_lineno;
316 else if (!strcmp(var, "color.grep.match"))
317 color = opt->color_match;
318 else if (!strcmp(var, "color.grep.selected"))
319 color = opt->color_selected;
320 else if (!strcmp(var, "color.grep.separator"))
321 color = opt->color_sep;
323 return git_color_default_config(var, value, cb);
326 return config_error_nonbool(var);
327 color_parse(value, var, color);
333 * Return non-zero if max_depth is negative or path has no more then max_depth
336 static int accept_subdir(const char *path, int max_depth)
341 while ((path = strchr(path, '/')) != NULL) {
351 * Return non-zero if name is a subdirectory of match and is not too deep.
353 static int is_subdir(const char *name, int namelen,
354 const char *match, int matchlen, int max_depth)
356 if (matchlen > namelen || strncmp(name, match, matchlen))
359 if (name[matchlen] == '\0') /* exact match */
362 if (!matchlen || match[matchlen-1] == '/' || name[matchlen] == '/')
363 return accept_subdir(name + matchlen + 1, max_depth);
369 * git grep pathspecs are somewhat different from diff-tree pathspecs;
370 * pathname wildcards are allowed.
372 static int pathspec_matches(const char **paths, const char *name, int max_depth)
375 if (!paths || !*paths)
376 return accept_subdir(name, max_depth);
377 namelen = strlen(name);
378 for (i = 0; paths[i]; i++) {
379 const char *match = paths[i];
380 int matchlen = strlen(match);
381 const char *cp, *meta;
383 if (is_subdir(name, namelen, match, matchlen, max_depth))
385 if (!fnmatch(match, name, 0))
387 if (name[namelen-1] != '/')
390 /* We are being asked if the directory ("name") is worth
393 * Find the longest leading directory name that does
394 * not have metacharacter in the pathspec; the name
395 * we are looking at must overlap with that directory.
397 for (cp = match, meta = NULL; cp - match < matchlen; cp++) {
399 if (ch == '*' || ch == '[' || ch == '?') {
405 meta = cp; /* fully literal */
407 if (namelen <= meta - match) {
408 /* Looking at "Documentation/" and
409 * the pattern says "Documentation/howto/", or
410 * "Documentation/diff*.txt". The name we
411 * have should match prefix.
413 if (!memcmp(match, name, namelen))
418 if (meta - match < namelen) {
419 /* Looking at "Documentation/howto/" and
420 * the pattern says "Documentation/h*";
421 * match up to "Do.../h"; this avoids descending
422 * into "Documentation/technical/".
424 if (!memcmp(match, name, meta - match))
432 static void *lock_and_read_sha1_file(const unsigned char *sha1, enum object_type *type, unsigned long *size)
438 data = read_sha1_file(sha1, type, size);
441 data = read_sha1_file(sha1, type, size);
446 static void *load_sha1(const unsigned char *sha1, unsigned long *size,
449 enum object_type type;
450 void *data = lock_and_read_sha1_file(sha1, &type, size);
453 error("'%s': unable to read %s", name, sha1_to_hex(sha1));
458 static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1,
459 const char *filename, int tree_name_len)
461 struct strbuf pathbuf = STRBUF_INIT;
464 if (opt->relative && opt->prefix_length) {
465 quote_path_relative(filename + tree_name_len, -1, &pathbuf,
467 strbuf_insert(&pathbuf, 0, filename, tree_name_len);
469 strbuf_addstr(&pathbuf, filename);
472 name = strbuf_detach(&pathbuf, NULL);
476 grep_sha1_async(opt, name, sha1);
483 void *data = load_sha1(sha1, &sz, name);
487 hit = grep_buffer(opt, name, data, sz);
495 static void *load_file(const char *filename, size_t *sz)
501 if (lstat(filename, &st) < 0) {
504 error("'%s': %s", filename, strerror(errno));
507 if (!S_ISREG(st.st_mode))
509 *sz = xsize_t(st.st_size);
510 i = open(filename, O_RDONLY);
513 data = xmalloc(*sz + 1);
514 if (st.st_size != read_in_full(i, data, *sz)) {
515 error("'%s': short read %s", filename, strerror(errno));
525 static int grep_file(struct grep_opt *opt, const char *filename)
527 struct strbuf buf = STRBUF_INIT;
530 if (opt->relative && opt->prefix_length)
531 quote_path_relative(filename, -1, &buf, opt->prefix);
533 strbuf_addstr(&buf, filename);
534 name = strbuf_detach(&buf, NULL);
538 grep_file_async(opt, name, filename);
545 void *data = load_file(filename, &sz);
549 hit = grep_buffer(opt, name, data, sz);
557 static void append_path(struct grep_opt *opt, const void *data, size_t len)
559 struct string_list *path_list = opt->output_priv;
561 if (len == 1 && *(const char *)data == '\0')
563 string_list_append(path_list, xstrndup(data, len));
566 static void run_pager(struct grep_opt *opt, const char *prefix)
568 struct string_list *path_list = opt->output_priv;
569 const char **argv = xmalloc(sizeof(const char *) * (path_list->nr + 1));
572 for (i = 0; i < path_list->nr; i++)
573 argv[i] = path_list->items[i].string;
574 argv[path_list->nr] = NULL;
576 if (prefix && chdir(prefix))
577 die("Failed to chdir: %s", prefix);
578 status = run_command_v_opt(argv, RUN_USING_SHELL);
584 static int grep_cache(struct grep_opt *opt, const struct pathspec *pathspec, int cached)
590 for (nr = 0; nr < active_nr; nr++) {
591 struct cache_entry *ce = active_cache[nr];
592 if (!S_ISREG(ce->ce_mode))
594 if (!pathspec_matches(pathspec->raw, ce->name, opt->max_depth))
597 * If CE_VALID is on, we assume worktree file and its cache entry
598 * are identical, even if worktree file has been modified, so use
599 * cache version instead
601 if (cached || (ce->ce_flags & CE_VALID) || ce_skip_worktree(ce)) {
604 hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
607 hit |= grep_file(opt, ce->name);
611 } while (nr < active_nr &&
612 !strcmp(ce->name, active_cache[nr]->name));
613 nr--; /* compensate for loop control */
615 if (hit && opt->status_only)
621 static int grep_tree(struct grep_opt *opt, const struct pathspec *pathspec,
622 struct tree_desc *tree,
623 const char *tree_name, const char *base)
627 struct name_entry entry;
629 int tn_len = strlen(tree_name);
630 struct strbuf pathbuf;
632 strbuf_init(&pathbuf, PATH_MAX + tn_len);
635 strbuf_add(&pathbuf, tree_name, tn_len);
636 strbuf_addch(&pathbuf, ':');
637 tn_len = pathbuf.len;
639 strbuf_addstr(&pathbuf, base);
642 while (tree_entry(tree, &entry)) {
643 int te_len = tree_entry_len(entry.path, entry.sha1);
645 strbuf_add(&pathbuf, entry.path, te_len);
647 if (S_ISDIR(entry.mode))
648 /* Match "abc/" against pathspec to
649 * decide if we want to descend into "abc"
652 strbuf_addch(&pathbuf, '/');
654 down = pathbuf.buf + tn_len;
655 if (!pathspec_matches(pathspec->raw, down, opt->max_depth))
657 else if (S_ISREG(entry.mode))
658 hit |= grep_sha1(opt, entry.sha1, pathbuf.buf, tn_len);
659 else if (S_ISDIR(entry.mode)) {
660 enum object_type type;
661 struct tree_desc sub;
665 data = lock_and_read_sha1_file(entry.sha1, &type, &size);
667 die("unable to read tree (%s)",
668 sha1_to_hex(entry.sha1));
669 init_tree_desc(&sub, data, size);
670 hit |= grep_tree(opt, pathspec, &sub, tree_name, down);
673 if (hit && opt->status_only)
676 strbuf_release(&pathbuf);
680 static int grep_object(struct grep_opt *opt, const struct pathspec *pathspec,
681 struct object *obj, const char *name)
683 if (obj->type == OBJ_BLOB)
684 return grep_sha1(opt, obj->sha1, name, 0);
685 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
686 struct tree_desc tree;
690 data = read_object_with_reference(obj->sha1, tree_type,
693 die("unable to read tree (%s)", sha1_to_hex(obj->sha1));
694 init_tree_desc(&tree, data, size);
695 hit = grep_tree(opt, pathspec, &tree, name, "");
699 die("unable to grep from object of type %s", typename(obj->type));
702 static int grep_objects(struct grep_opt *opt, const struct pathspec *pathspec,
703 const struct object_array *list)
707 const unsigned int nr = list->nr;
709 for (i = 0; i < nr; i++) {
710 struct object *real_obj;
711 real_obj = deref_tag(list->objects[i].item, NULL, 0);
712 if (grep_object(opt, pathspec, real_obj, list->objects[i].name)) {
714 if (opt->status_only)
721 static int grep_directory(struct grep_opt *opt, const struct pathspec *pathspec)
723 struct dir_struct dir;
726 memset(&dir, 0, sizeof(dir));
727 setup_standard_excludes(&dir);
729 fill_directory(&dir, pathspec->raw);
730 for (i = 0; i < dir.nr; i++) {
731 hit |= grep_file(opt, dir.entries[i]->name);
732 if (hit && opt->status_only)
738 static int context_callback(const struct option *opt, const char *arg,
741 struct grep_opt *grep_opt = opt->value;
746 grep_opt->pre_context = grep_opt->post_context = 0;
749 value = strtol(arg, (char **)&endp, 10);
751 return error("switch `%c' expects a numerical value",
754 grep_opt->pre_context = grep_opt->post_context = value;
758 static int file_callback(const struct option *opt, const char *arg, int unset)
760 struct grep_opt *grep_opt = opt->value;
763 struct strbuf sb = STRBUF_INIT;
765 patterns = fopen(arg, "r");
767 die_errno("cannot open '%s'", arg);
768 while (strbuf_getline(&sb, patterns, '\n') == 0) {
772 /* ignore empty line like grep does */
776 s = strbuf_detach(&sb, &len);
777 append_grep_pat(grep_opt, s, len, arg, ++lno, GREP_PATTERN);
784 static int not_callback(const struct option *opt, const char *arg, int unset)
786 struct grep_opt *grep_opt = opt->value;
787 append_grep_pattern(grep_opt, "--not", "command line", 0, GREP_NOT);
791 static int and_callback(const struct option *opt, const char *arg, int unset)
793 struct grep_opt *grep_opt = opt->value;
794 append_grep_pattern(grep_opt, "--and", "command line", 0, GREP_AND);
798 static int open_callback(const struct option *opt, const char *arg, int unset)
800 struct grep_opt *grep_opt = opt->value;
801 append_grep_pattern(grep_opt, "(", "command line", 0, GREP_OPEN_PAREN);
805 static int close_callback(const struct option *opt, const char *arg, int unset)
807 struct grep_opt *grep_opt = opt->value;
808 append_grep_pattern(grep_opt, ")", "command line", 0, GREP_CLOSE_PAREN);
812 static int pattern_callback(const struct option *opt, const char *arg,
815 struct grep_opt *grep_opt = opt->value;
816 append_grep_pattern(grep_opt, arg, "-e option", 0, GREP_PATTERN);
820 static int help_callback(const struct option *opt, const char *arg, int unset)
825 int cmd_grep(int argc, const char **argv, const char *prefix)
829 int seen_dashdash = 0;
830 int external_grep_allowed__ignored;
831 const char *show_in_pager = NULL, *default_pager = "dummy";
833 struct object_array list = OBJECT_ARRAY_INIT;
834 const char **paths = NULL;
835 struct pathspec pathspec;
836 struct string_list path_list = STRING_LIST_INIT_NODUP;
840 struct option options[] = {
841 OPT_BOOLEAN(0, "cached", &cached,
842 "search in index instead of in the work tree"),
843 OPT_BOOLEAN(0, "index", &use_index,
844 "--no-index finds in contents not managed by git"),
846 OPT_BOOLEAN('v', "invert-match", &opt.invert,
847 "show non-matching lines"),
848 OPT_BOOLEAN('i', "ignore-case", &opt.ignore_case,
849 "case insensitive matching"),
850 OPT_BOOLEAN('w', "word-regexp", &opt.word_regexp,
851 "match patterns only at word boundaries"),
852 OPT_SET_INT('a', "text", &opt.binary,
853 "process binary files as text", GREP_BINARY_TEXT),
854 OPT_SET_INT('I', NULL, &opt.binary,
855 "don't match patterns in binary files",
856 GREP_BINARY_NOMATCH),
857 { OPTION_INTEGER, 0, "max-depth", &opt.max_depth, "depth",
858 "descend at most <depth> levels", PARSE_OPT_NONEG,
861 OPT_BIT('E', "extended-regexp", &opt.regflags,
862 "use extended POSIX regular expressions", REG_EXTENDED),
863 OPT_NEGBIT('G', "basic-regexp", &opt.regflags,
864 "use basic POSIX regular expressions (default)",
866 OPT_BOOLEAN('F', "fixed-strings", &opt.fixed,
867 "interpret patterns as fixed strings"),
869 OPT_BOOLEAN('n', NULL, &opt.linenum, "show line numbers"),
870 OPT_NEGBIT('h', NULL, &opt.pathname, "don't show filenames", 1),
871 OPT_BIT('H', NULL, &opt.pathname, "show filenames", 1),
872 OPT_NEGBIT(0, "full-name", &opt.relative,
873 "show filenames relative to top directory", 1),
874 OPT_BOOLEAN('l', "files-with-matches", &opt.name_only,
875 "show only filenames instead of matching lines"),
876 OPT_BOOLEAN(0, "name-only", &opt.name_only,
877 "synonym for --files-with-matches"),
878 OPT_BOOLEAN('L', "files-without-match",
879 &opt.unmatch_name_only,
880 "show only the names of files without match"),
881 OPT_BOOLEAN('z', "null", &opt.null_following_name,
882 "print NUL after filenames"),
883 OPT_BOOLEAN('c', "count", &opt.count,
884 "show the number of matches instead of matching lines"),
885 OPT__COLOR(&opt.color, "highlight matches"),
887 OPT_CALLBACK('C', NULL, &opt, "n",
888 "show <n> context lines before and after matches",
890 OPT_INTEGER('B', NULL, &opt.pre_context,
891 "show <n> context lines before matches"),
892 OPT_INTEGER('A', NULL, &opt.post_context,
893 "show <n> context lines after matches"),
894 OPT_NUMBER_CALLBACK(&opt, "shortcut for -C NUM",
896 OPT_BOOLEAN('p', "show-function", &opt.funcname,
897 "show a line with the function name before matches"),
899 OPT_CALLBACK('f', NULL, &opt, "file",
900 "read patterns from file", file_callback),
901 { OPTION_CALLBACK, 'e', NULL, &opt, "pattern",
902 "match <pattern>", PARSE_OPT_NONEG, pattern_callback },
903 { OPTION_CALLBACK, 0, "and", &opt, NULL,
904 "combine patterns specified with -e",
905 PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback },
906 OPT_BOOLEAN(0, "or", &dummy, ""),
907 { OPTION_CALLBACK, 0, "not", &opt, NULL, "",
908 PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback },
909 { OPTION_CALLBACK, '(', NULL, &opt, NULL, "",
910 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
912 { OPTION_CALLBACK, ')', NULL, &opt, NULL, "",
913 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
915 OPT__QUIET(&opt.status_only,
916 "indicate hit with exit status without output"),
917 OPT_BOOLEAN(0, "all-match", &opt.all_match,
918 "show only matches from files that match all patterns"),
920 { OPTION_STRING, 'O', "open-files-in-pager", &show_in_pager,
921 "pager", "show matching files in the pager",
922 PARSE_OPT_OPTARG, NULL, (intptr_t)default_pager },
923 OPT_BOOLEAN(0, "ext-grep", &external_grep_allowed__ignored,
924 "allow calling of grep(1) (ignored by this build)"),
925 { OPTION_CALLBACK, 0, "help-all", &options, NULL, "show usage",
926 PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, help_callback },
931 * 'git grep -h', unlike 'git grep -h <pattern>', is a request
932 * to show usage information and exit.
934 if (argc == 2 && !strcmp(argv[1], "-h"))
935 usage_with_options(grep_usage, options);
937 memset(&opt, 0, sizeof(opt));
939 opt.prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
942 opt.pattern_tail = &opt.pattern_list;
943 opt.header_tail = &opt.header_list;
944 opt.regflags = REG_NEWLINE;
947 strcpy(opt.color_context, "");
948 strcpy(opt.color_filename, "");
949 strcpy(opt.color_function, "");
950 strcpy(opt.color_lineno, "");
951 strcpy(opt.color_match, GIT_COLOR_BOLD_RED);
952 strcpy(opt.color_selected, "");
953 strcpy(opt.color_sep, GIT_COLOR_CYAN);
955 git_config(grep_config, &opt);
957 opt.color = git_use_color_default;
960 * If there is no -- then the paths must exist in the working
961 * tree. If there is no explicit pattern specified with -e or
962 * -f, we take the first unrecognized non option to be the
963 * pattern, but then what follows it must be zero or more
964 * valid refs up to the -- (if exists), and then existing
965 * paths. If there is an explicit pattern, then the first
966 * unrecognized non option is the beginning of the refs list
967 * that continues up to the -- (if exists), and then paths.
969 argc = parse_options(argc, argv, prefix, options, grep_usage,
970 PARSE_OPT_KEEP_DASHDASH |
971 PARSE_OPT_STOP_AT_NON_OPTION |
972 PARSE_OPT_NO_INTERNAL_HELP);
974 if (use_index && !startup_info->have_repository)
975 /* die the same way as if we did it at the beginning */
976 setup_git_directory();
979 * skip a -- separator; we know it cannot be
980 * separating revisions from pathnames if
981 * we haven't even had any patterns yet
983 if (argc > 0 && !opt.pattern_list && !strcmp(argv[0], "--")) {
988 /* First unrecognized non-option token */
989 if (argc > 0 && !opt.pattern_list) {
990 append_grep_pattern(&opt, argv[0], "command line", 0,
996 if (show_in_pager == default_pager)
997 show_in_pager = git_pager(1);
1001 opt.null_following_name = 1;
1002 opt.output_priv = &path_list;
1003 opt.output = append_path;
1004 string_list_append(&path_list, show_in_pager);
1008 if (!opt.pattern_list)
1009 die("no pattern given.");
1010 if (!opt.fixed && opt.ignore_case)
1011 opt.regflags |= REG_ICASE;
1012 if ((opt.regflags != REG_NEWLINE) && opt.fixed)
1013 die("cannot mix --fixed-strings and regexp");
1016 if (online_cpus() == 1 || !grep_threads_ok(&opt))
1020 if (opt.pre_context || opt.post_context)
1021 print_hunk_marks_between_files = 1;
1022 start_threads(&opt);
1028 compile_grep_patterns(&opt);
1030 /* Check revs and then paths */
1031 for (i = 0; i < argc; i++) {
1032 const char *arg = argv[i];
1033 unsigned char sha1[20];
1035 if (!get_sha1(arg, sha1)) {
1036 struct object *object = parse_object(sha1);
1038 die("bad object %s", arg);
1039 add_object_array(object, arg, &list);
1042 if (!strcmp(arg, "--")) {
1049 /* The rest are paths */
1050 if (!seen_dashdash) {
1052 for (j = i; j < argc; j++)
1053 verify_filename(prefix, argv[j]);
1057 paths = get_pathspec(prefix, argv + i);
1059 paths = xcalloc(2, sizeof(const char *));
1063 init_pathspec(&pathspec, paths);
1065 if (show_in_pager && (cached || list.nr))
1066 die("--open-files-in-pager only works on the worktree");
1068 if (show_in_pager && opt.pattern_list && !opt.pattern_list->next) {
1069 const char *pager = path_list.items[0].string;
1070 int len = strlen(pager);
1072 if (len > 4 && is_dir_sep(pager[len - 5]))
1075 if (!strcmp("less", pager) || !strcmp("vi", pager)) {
1076 struct strbuf buf = STRBUF_INIT;
1077 strbuf_addf(&buf, "+/%s%s",
1078 strcmp("less", pager) ? "" : "*",
1079 opt.pattern_list->pattern);
1080 string_list_append(&path_list, buf.buf);
1081 strbuf_detach(&buf, NULL);
1091 die("--cached cannot be used with --no-index.");
1093 die("--no-index cannot be used with revs.");
1094 hit = grep_directory(&opt, &pathspec);
1095 } else if (!list.nr) {
1099 hit = grep_cache(&opt, &pathspec, cached);
1102 die("both --cached and trees are given.");
1103 hit = grep_objects(&opt, &pathspec, &list);
1108 if (hit && show_in_pager)
1109 run_pager(&opt, prefix);
1110 free_grep_patterns(&opt);