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.
47 /* if type == WORK_SHA1, then 'identifier' is a SHA1,
48 * otherwise type == WORK_FILE, and 'identifier' is a NUL
49 * terminated filename.
56 /* In the range [todo_done, todo_start) in 'todo' we have work_items
57 * that have been or are processed by a consumer thread. We haven't
58 * written the result for these to stdout yet.
60 * The work_items in [todo_start, todo_end) are waiting to be picked
61 * up by a consumer thread.
63 * The ranges are modulo TODO_SIZE.
66 static struct work_item todo
[TODO_SIZE
];
67 static int todo_start
;
71 /* Has all work items been added? */
72 static int all_work_added
;
74 /* This lock protects all the variables above. */
75 static pthread_mutex_t grep_mutex
;
77 /* Used to serialize calls to read_sha1_file. */
78 static pthread_mutex_t read_sha1_mutex
;
80 #define grep_lock() pthread_mutex_lock(&grep_mutex)
81 #define grep_unlock() pthread_mutex_unlock(&grep_mutex)
82 #define read_sha1_lock() pthread_mutex_lock(&read_sha1_mutex)
83 #define read_sha1_unlock() pthread_mutex_unlock(&read_sha1_mutex)
85 /* Signalled when a new work_item is added to todo. */
86 static pthread_cond_t cond_add
;
88 /* Signalled when the result from one work_item is written to
91 static pthread_cond_t cond_write
;
93 /* Signalled when we are finished with everything. */
94 static pthread_cond_t cond_result
;
96 static int skip_first_line
;
98 static void add_work(enum work_type type
, char *name
, void *id
)
102 while ((todo_end
+1) % ARRAY_SIZE(todo
) == todo_done
) {
103 pthread_cond_wait(&cond_write
, &grep_mutex
);
106 todo
[todo_end
].type
= type
;
107 todo
[todo_end
].name
= name
;
108 todo
[todo_end
].identifier
= id
;
109 todo
[todo_end
].done
= 0;
110 strbuf_reset(&todo
[todo_end
].out
);
111 todo_end
= (todo_end
+ 1) % ARRAY_SIZE(todo
);
113 pthread_cond_signal(&cond_add
);
117 static struct work_item
*get_work(void)
119 struct work_item
*ret
;
122 while (todo_start
== todo_end
&& !all_work_added
) {
123 pthread_cond_wait(&cond_add
, &grep_mutex
);
126 if (todo_start
== todo_end
&& all_work_added
) {
129 ret
= &todo
[todo_start
];
130 todo_start
= (todo_start
+ 1) % ARRAY_SIZE(todo
);
136 static void grep_sha1_async(struct grep_opt
*opt
, char *name
,
137 const unsigned char *sha1
)
142 add_work(WORK_SHA1
, name
, s
);
145 static void grep_file_async(struct grep_opt
*opt
, char *name
,
146 const char *filename
)
148 add_work(WORK_FILE
, name
, xstrdup(filename
));
151 static void work_done(struct work_item
*w
)
157 old_done
= todo_done
;
158 for(; todo
[todo_done
].done
&& todo_done
!= todo_start
;
159 todo_done
= (todo_done
+1) % ARRAY_SIZE(todo
)) {
160 w
= &todo
[todo_done
];
162 const char *p
= w
->out
.buf
;
163 size_t len
= w
->out
.len
;
165 /* Skip the leading hunk mark of the first file. */
166 if (skip_first_line
) {
175 write_or_die(1, p
, len
);
181 if (old_done
!= todo_done
)
182 pthread_cond_signal(&cond_write
);
184 if (all_work_added
&& todo_done
== todo_end
)
185 pthread_cond_signal(&cond_result
);
190 static void *run(void *arg
)
193 struct grep_opt
*opt
= arg
;
196 struct work_item
*w
= get_work();
200 opt
->output_priv
= w
;
201 if (w
->type
== WORK_SHA1
) {
203 void* data
= load_sha1(w
->identifier
, &sz
, w
->name
);
206 hit
|= grep_buffer(opt
, w
->name
, data
, sz
);
209 } else if (w
->type
== WORK_FILE
) {
211 void* data
= load_file(w
->identifier
, &sz
);
213 hit
|= grep_buffer(opt
, w
->name
, data
, sz
);
222 free_grep_patterns(arg
);
225 return (void*) (intptr_t) hit
;
228 static void strbuf_out(struct grep_opt
*opt
, const void *buf
, size_t size
)
230 struct work_item
*w
= opt
->output_priv
;
231 strbuf_add(&w
->out
, buf
, size
);
234 static void start_threads(struct grep_opt
*opt
)
238 pthread_mutex_init(&grep_mutex
, NULL
);
239 pthread_mutex_init(&read_sha1_mutex
, NULL
);
240 pthread_cond_init(&cond_add
, NULL
);
241 pthread_cond_init(&cond_write
, NULL
);
242 pthread_cond_init(&cond_result
, NULL
);
244 for (i
= 0; i
< ARRAY_SIZE(todo
); i
++) {
245 strbuf_init(&todo
[i
].out
, 0);
248 for (i
= 0; i
< ARRAY_SIZE(threads
); i
++) {
250 struct grep_opt
*o
= grep_opt_dup(opt
);
251 o
->output
= strbuf_out
;
252 compile_grep_patterns(o
);
253 err
= pthread_create(&threads
[i
], NULL
, run
, o
);
256 die(_("grep: failed to create thread: %s"),
261 static int wait_all(void)
269 /* Wait until all work is done. */
270 while (todo_done
!= todo_end
)
271 pthread_cond_wait(&cond_result
, &grep_mutex
);
273 /* Wake up all the consumer threads so they can see that there
274 * is no more work to do.
276 pthread_cond_broadcast(&cond_add
);
279 for (i
= 0; i
< ARRAY_SIZE(threads
); i
++) {
281 pthread_join(threads
[i
], &h
);
282 hit
|= (int) (intptr_t) h
;
285 pthread_mutex_destroy(&grep_mutex
);
286 pthread_mutex_destroy(&read_sha1_mutex
);
287 pthread_cond_destroy(&cond_add
);
288 pthread_cond_destroy(&cond_write
);
289 pthread_cond_destroy(&cond_result
);
293 #else /* !NO_PTHREADS */
294 #define read_sha1_lock()
295 #define read_sha1_unlock()
297 static int wait_all(void)
303 static int grep_config(const char *var
, const char *value
, void *cb
)
305 struct grep_opt
*opt
= cb
;
308 switch (userdiff_config(var
, value
)) {
314 if (!strcmp(var
, "grep.extendedregexp")) {
315 if (git_config_bool(var
, value
))
316 opt
->regflags
|= REG_EXTENDED
;
318 opt
->regflags
&= ~REG_EXTENDED
;
322 if (!strcmp(var
, "grep.linenumber")) {
323 opt
->linenum
= git_config_bool(var
, value
);
327 if (!strcmp(var
, "color.grep"))
328 opt
->color
= git_config_colorbool(var
, value
);
329 else if (!strcmp(var
, "color.grep.context"))
330 color
= opt
->color_context
;
331 else if (!strcmp(var
, "color.grep.filename"))
332 color
= opt
->color_filename
;
333 else if (!strcmp(var
, "color.grep.function"))
334 color
= opt
->color_function
;
335 else if (!strcmp(var
, "color.grep.linenumber"))
336 color
= opt
->color_lineno
;
337 else if (!strcmp(var
, "color.grep.match"))
338 color
= opt
->color_match
;
339 else if (!strcmp(var
, "color.grep.selected"))
340 color
= opt
->color_selected
;
341 else if (!strcmp(var
, "color.grep.separator"))
342 color
= opt
->color_sep
;
344 return git_color_default_config(var
, value
, cb
);
347 return config_error_nonbool(var
);
348 color_parse(value
, var
, color
);
353 static void *lock_and_read_sha1_file(const unsigned char *sha1
, enum object_type
*type
, unsigned long *size
)
359 data
= read_sha1_file(sha1
, type
, size
);
362 data
= read_sha1_file(sha1
, type
, size
);
367 static void *load_sha1(const unsigned char *sha1
, unsigned long *size
,
370 enum object_type type
;
371 void *data
= lock_and_read_sha1_file(sha1
, &type
, size
);
374 error(_("'%s': unable to read %s"), name
, sha1_to_hex(sha1
));
379 static int grep_sha1(struct grep_opt
*opt
, const unsigned char *sha1
,
380 const char *filename
, int tree_name_len
)
382 struct strbuf pathbuf
= STRBUF_INIT
;
385 if (opt
->relative
&& opt
->prefix_length
) {
386 quote_path_relative(filename
+ tree_name_len
, -1, &pathbuf
,
388 strbuf_insert(&pathbuf
, 0, filename
, tree_name_len
);
390 strbuf_addstr(&pathbuf
, filename
);
393 name
= strbuf_detach(&pathbuf
, NULL
);
397 grep_sha1_async(opt
, name
, sha1
);
404 void *data
= load_sha1(sha1
, &sz
, name
);
408 hit
= grep_buffer(opt
, name
, data
, sz
);
416 static void *load_file(const char *filename
, size_t *sz
)
422 if (lstat(filename
, &st
) < 0) {
425 error(_("'%s': %s"), filename
, strerror(errno
));
428 if (!S_ISREG(st
.st_mode
))
430 *sz
= xsize_t(st
.st_size
);
431 i
= open(filename
, O_RDONLY
);
434 data
= xmalloc(*sz
+ 1);
435 if (st
.st_size
!= read_in_full(i
, data
, *sz
)) {
436 error(_("'%s': short read %s"), filename
, strerror(errno
));
446 static int grep_file(struct grep_opt
*opt
, const char *filename
)
448 struct strbuf buf
= STRBUF_INIT
;
451 if (opt
->relative
&& opt
->prefix_length
)
452 quote_path_relative(filename
, -1, &buf
, opt
->prefix
);
454 strbuf_addstr(&buf
, filename
);
455 name
= strbuf_detach(&buf
, NULL
);
459 grep_file_async(opt
, name
, filename
);
466 void *data
= load_file(filename
, &sz
);
470 hit
= grep_buffer(opt
, name
, data
, sz
);
478 static void append_path(struct grep_opt
*opt
, const void *data
, size_t len
)
480 struct string_list
*path_list
= opt
->output_priv
;
482 if (len
== 1 && *(const char *)data
== '\0')
484 string_list_append(path_list
, xstrndup(data
, len
));
487 static void run_pager(struct grep_opt
*opt
, const char *prefix
)
489 struct string_list
*path_list
= opt
->output_priv
;
490 const char **argv
= xmalloc(sizeof(const char *) * (path_list
->nr
+ 1));
493 for (i
= 0; i
< path_list
->nr
; i
++)
494 argv
[i
] = path_list
->items
[i
].string
;
495 argv
[path_list
->nr
] = NULL
;
497 if (prefix
&& chdir(prefix
))
498 die(_("Failed to chdir: %s"), prefix
);
499 status
= run_command_v_opt(argv
, RUN_USING_SHELL
);
505 static int grep_cache(struct grep_opt
*opt
, const struct pathspec
*pathspec
, int cached
)
511 for (nr
= 0; nr
< active_nr
; nr
++) {
512 struct cache_entry
*ce
= active_cache
[nr
];
513 if (!S_ISREG(ce
->ce_mode
))
515 if (!match_pathspec_depth(pathspec
, ce
->name
, ce_namelen(ce
), 0, NULL
))
518 * If CE_VALID is on, we assume worktree file and its cache entry
519 * are identical, even if worktree file has been modified, so use
520 * cache version instead
522 if (cached
|| (ce
->ce_flags
& CE_VALID
) || ce_skip_worktree(ce
)) {
525 hit
|= grep_sha1(opt
, ce
->sha1
, ce
->name
, 0);
528 hit
|= grep_file(opt
, ce
->name
);
532 } while (nr
< active_nr
&&
533 !strcmp(ce
->name
, active_cache
[nr
]->name
));
534 nr
--; /* compensate for loop control */
536 if (hit
&& opt
->status_only
)
542 static int grep_tree(struct grep_opt
*opt
, const struct pathspec
*pathspec
,
543 struct tree_desc
*tree
, struct strbuf
*base
, int tn_len
)
545 int hit
= 0, match
= 0;
546 struct name_entry entry
;
547 int old_baselen
= base
->len
;
549 while (tree_entry(tree
, &entry
)) {
550 int te_len
= tree_entry_len(entry
.path
, entry
.sha1
);
553 match
= tree_entry_interesting(&entry
, base
, tn_len
, pathspec
);
560 strbuf_add(base
, entry
.path
, te_len
);
562 if (S_ISREG(entry
.mode
)) {
563 hit
|= grep_sha1(opt
, entry
.sha1
, base
->buf
, tn_len
);
565 else if (S_ISDIR(entry
.mode
)) {
566 enum object_type type
;
567 struct tree_desc sub
;
571 data
= lock_and_read_sha1_file(entry
.sha1
, &type
, &size
);
573 die(_("unable to read tree (%s)"),
574 sha1_to_hex(entry
.sha1
));
576 strbuf_addch(base
, '/');
577 init_tree_desc(&sub
, data
, size
);
578 hit
|= grep_tree(opt
, pathspec
, &sub
, base
, tn_len
);
581 strbuf_setlen(base
, old_baselen
);
583 if (hit
&& opt
->status_only
)
589 static int grep_object(struct grep_opt
*opt
, const struct pathspec
*pathspec
,
590 struct object
*obj
, const char *name
)
592 if (obj
->type
== OBJ_BLOB
)
593 return grep_sha1(opt
, obj
->sha1
, name
, 0);
594 if (obj
->type
== OBJ_COMMIT
|| obj
->type
== OBJ_TREE
) {
595 struct tree_desc tree
;
602 data
= read_object_with_reference(obj
->sha1
, tree_type
,
607 die(_("unable to read tree (%s)"), sha1_to_hex(obj
->sha1
));
609 len
= name
? strlen(name
) : 0;
610 strbuf_init(&base
, PATH_MAX
+ len
+ 1);
612 strbuf_add(&base
, name
, len
);
613 strbuf_addch(&base
, ':');
615 init_tree_desc(&tree
, data
, size
);
616 hit
= grep_tree(opt
, pathspec
, &tree
, &base
, base
.len
);
617 strbuf_release(&base
);
621 die(_("unable to grep from object of type %s"), typename(obj
->type
));
624 static int grep_objects(struct grep_opt
*opt
, const struct pathspec
*pathspec
,
625 const struct object_array
*list
)
629 const unsigned int nr
= list
->nr
;
631 for (i
= 0; i
< nr
; i
++) {
632 struct object
*real_obj
;
633 real_obj
= deref_tag(list
->objects
[i
].item
, NULL
, 0);
634 if (grep_object(opt
, pathspec
, real_obj
, list
->objects
[i
].name
)) {
636 if (opt
->status_only
)
643 static int grep_directory(struct grep_opt
*opt
, const struct pathspec
*pathspec
,
646 struct dir_struct dir
;
649 memset(&dir
, 0, sizeof(dir
));
651 setup_standard_excludes(&dir
);
653 fill_directory(&dir
, pathspec
->raw
);
654 for (i
= 0; i
< dir
.nr
; i
++) {
655 const char *name
= dir
.entries
[i
]->name
;
656 int namelen
= strlen(name
);
657 if (!match_pathspec_depth(pathspec
, name
, namelen
, 0, NULL
))
659 hit
|= grep_file(opt
, dir
.entries
[i
]->name
);
660 if (hit
&& opt
->status_only
)
666 static int context_callback(const struct option
*opt
, const char *arg
,
669 struct grep_opt
*grep_opt
= opt
->value
;
674 grep_opt
->pre_context
= grep_opt
->post_context
= 0;
677 value
= strtol(arg
, (char **)&endp
, 10);
679 return error(_("switch `%c' expects a numerical value"),
682 grep_opt
->pre_context
= grep_opt
->post_context
= value
;
686 static int file_callback(const struct option
*opt
, const char *arg
, int unset
)
688 struct grep_opt
*grep_opt
= opt
->value
;
689 int from_stdin
= !strcmp(arg
, "-");
692 struct strbuf sb
= STRBUF_INIT
;
694 patterns
= from_stdin
? stdin
: fopen(arg
, "r");
696 die_errno(_("cannot open '%s'"), arg
);
697 while (strbuf_getline(&sb
, patterns
, '\n') == 0) {
701 /* ignore empty line like grep does */
705 s
= strbuf_detach(&sb
, &len
);
706 append_grep_pat(grep_opt
, s
, len
, arg
, ++lno
, GREP_PATTERN
);
714 static int not_callback(const struct option
*opt
, const char *arg
, int unset
)
716 struct grep_opt
*grep_opt
= opt
->value
;
717 append_grep_pattern(grep_opt
, "--not", "command line", 0, GREP_NOT
);
721 static int and_callback(const struct option
*opt
, const char *arg
, int unset
)
723 struct grep_opt
*grep_opt
= opt
->value
;
724 append_grep_pattern(grep_opt
, "--and", "command line", 0, GREP_AND
);
728 static int open_callback(const struct option
*opt
, const char *arg
, int unset
)
730 struct grep_opt
*grep_opt
= opt
->value
;
731 append_grep_pattern(grep_opt
, "(", "command line", 0, GREP_OPEN_PAREN
);
735 static int close_callback(const struct option
*opt
, const char *arg
, int unset
)
737 struct grep_opt
*grep_opt
= opt
->value
;
738 append_grep_pattern(grep_opt
, ")", "command line", 0, GREP_CLOSE_PAREN
);
742 static int pattern_callback(const struct option
*opt
, const char *arg
,
745 struct grep_opt
*grep_opt
= opt
->value
;
746 append_grep_pattern(grep_opt
, arg
, "-e option", 0, GREP_PATTERN
);
750 static int help_callback(const struct option
*opt
, const char *arg
, int unset
)
755 int cmd_grep(int argc
, const char **argv
, const char *prefix
)
758 int cached
= 0, untracked
= 0, opt_exclude
= -1;
759 int seen_dashdash
= 0;
760 int external_grep_allowed__ignored
;
761 const char *show_in_pager
= NULL
, *default_pager
= "dummy";
763 struct object_array list
= OBJECT_ARRAY_INIT
;
764 const char **paths
= NULL
;
765 struct pathspec pathspec
;
766 struct string_list path_list
= STRING_LIST_INIT_NODUP
;
771 pattern_type_unspecified
= 0,
777 int pattern_type
= pattern_type_unspecified
;
779 struct option options
[] = {
780 OPT_BOOLEAN(0, "cached", &cached
,
781 "search in index instead of in the work tree"),
782 { OPTION_BOOLEAN
, 0, "index", &use_index
, NULL
,
783 "finds in contents not managed by git",
784 PARSE_OPT_NOARG
| PARSE_OPT_NEGHELP
},
785 OPT_BOOLEAN(0, "untracked", &untracked
,
786 "search in both tracked and untracked files"),
787 OPT_SET_INT(0, "exclude-standard", &opt_exclude
,
788 "search also in ignored files", 1),
790 OPT_BOOLEAN('v', "invert-match", &opt
.invert
,
791 "show non-matching lines"),
792 OPT_BOOLEAN('i', "ignore-case", &opt
.ignore_case
,
793 "case insensitive matching"),
794 OPT_BOOLEAN('w', "word-regexp", &opt
.word_regexp
,
795 "match patterns only at word boundaries"),
796 OPT_SET_INT('a', "text", &opt
.binary
,
797 "process binary files as text", GREP_BINARY_TEXT
),
798 OPT_SET_INT('I', NULL
, &opt
.binary
,
799 "don't match patterns in binary files",
800 GREP_BINARY_NOMATCH
),
801 { OPTION_INTEGER
, 0, "max-depth", &opt
.max_depth
, "depth",
802 "descend at most <depth> levels", PARSE_OPT_NONEG
,
805 OPT_SET_INT('E', "extended-regexp", &pattern_type
,
806 "use extended POSIX regular expressions",
808 OPT_SET_INT('G', "basic-regexp", &pattern_type
,
809 "use basic POSIX regular expressions (default)",
811 OPT_SET_INT('F', "fixed-strings", &pattern_type
,
812 "interpret patterns as fixed strings",
814 OPT_SET_INT('P', "perl-regexp", &pattern_type
,
815 "use Perl-compatible regular expressions",
818 OPT_BOOLEAN('n', "line-number", &opt
.linenum
, "show line numbers"),
819 OPT_NEGBIT('h', NULL
, &opt
.pathname
, "don't show filenames", 1),
820 OPT_BIT('H', NULL
, &opt
.pathname
, "show filenames", 1),
821 OPT_NEGBIT(0, "full-name", &opt
.relative
,
822 "show filenames relative to top directory", 1),
823 OPT_BOOLEAN('l', "files-with-matches", &opt
.name_only
,
824 "show only filenames instead of matching lines"),
825 OPT_BOOLEAN(0, "name-only", &opt
.name_only
,
826 "synonym for --files-with-matches"),
827 OPT_BOOLEAN('L', "files-without-match",
828 &opt
.unmatch_name_only
,
829 "show only the names of files without match"),
830 OPT_BOOLEAN('z', "null", &opt
.null_following_name
,
831 "print NUL after filenames"),
832 OPT_BOOLEAN('c', "count", &opt
.count
,
833 "show the number of matches instead of matching lines"),
834 OPT__COLOR(&opt
.color
, "highlight matches"),
835 OPT_BOOLEAN(0, "break", &opt
.file_break
,
836 "print empty line between matches from different files"),
837 OPT_BOOLEAN(0, "heading", &opt
.heading
,
838 "show filename only once above matches from same file"),
840 OPT_CALLBACK('C', "context", &opt
, "n",
841 "show <n> context lines before and after matches",
843 OPT_INTEGER('B', "before-context", &opt
.pre_context
,
844 "show <n> context lines before matches"),
845 OPT_INTEGER('A', "after-context", &opt
.post_context
,
846 "show <n> context lines after matches"),
847 OPT_NUMBER_CALLBACK(&opt
, "shortcut for -C NUM",
849 OPT_BOOLEAN('p', "show-function", &opt
.funcname
,
850 "show a line with the function name before matches"),
851 OPT_BOOLEAN('W', "function-context", &opt
.funcbody
,
852 "show the surrounding function"),
854 OPT_CALLBACK('f', NULL
, &opt
, "file",
855 "read patterns from file", file_callback
),
856 { OPTION_CALLBACK
, 'e', NULL
, &opt
, "pattern",
857 "match <pattern>", PARSE_OPT_NONEG
, pattern_callback
},
858 { OPTION_CALLBACK
, 0, "and", &opt
, NULL
,
859 "combine patterns specified with -e",
860 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, and_callback
},
861 OPT_BOOLEAN(0, "or", &dummy
, ""),
862 { OPTION_CALLBACK
, 0, "not", &opt
, NULL
, "",
863 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, not_callback
},
864 { OPTION_CALLBACK
, '(', NULL
, &opt
, NULL
, "",
865 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
| PARSE_OPT_NODASH
,
867 { OPTION_CALLBACK
, ')', NULL
, &opt
, NULL
, "",
868 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
| PARSE_OPT_NODASH
,
870 OPT__QUIET(&opt
.status_only
,
871 "indicate hit with exit status without output"),
872 OPT_BOOLEAN(0, "all-match", &opt
.all_match
,
873 "show only matches from files that match all patterns"),
875 { OPTION_STRING
, 'O', "open-files-in-pager", &show_in_pager
,
876 "pager", "show matching files in the pager",
877 PARSE_OPT_OPTARG
, NULL
, (intptr_t)default_pager
},
878 OPT_BOOLEAN(0, "ext-grep", &external_grep_allowed__ignored
,
879 "allow calling of grep(1) (ignored by this build)"),
880 { OPTION_CALLBACK
, 0, "help-all", &options
, NULL
, "show usage",
881 PARSE_OPT_HIDDEN
| PARSE_OPT_NOARG
, help_callback
},
886 * 'git grep -h', unlike 'git grep -h <pattern>', is a request
887 * to show usage information and exit.
889 if (argc
== 2 && !strcmp(argv
[1], "-h"))
890 usage_with_options(grep_usage
, options
);
892 memset(&opt
, 0, sizeof(opt
));
894 opt
.prefix_length
= (prefix
&& *prefix
) ? strlen(prefix
) : 0;
897 opt
.pattern_tail
= &opt
.pattern_list
;
898 opt
.header_tail
= &opt
.header_list
;
899 opt
.regflags
= REG_NEWLINE
;
902 strcpy(opt
.color_context
, "");
903 strcpy(opt
.color_filename
, "");
904 strcpy(opt
.color_function
, "");
905 strcpy(opt
.color_lineno
, "");
906 strcpy(opt
.color_match
, GIT_COLOR_BOLD_RED
);
907 strcpy(opt
.color_selected
, "");
908 strcpy(opt
.color_sep
, GIT_COLOR_CYAN
);
910 git_config(grep_config
, &opt
);
913 * If there is no -- then the paths must exist in the working
914 * tree. If there is no explicit pattern specified with -e or
915 * -f, we take the first unrecognized non option to be the
916 * pattern, but then what follows it must be zero or more
917 * valid refs up to the -- (if exists), and then existing
918 * paths. If there is an explicit pattern, then the first
919 * unrecognized non option is the beginning of the refs list
920 * that continues up to the -- (if exists), and then paths.
922 argc
= parse_options(argc
, argv
, prefix
, options
, grep_usage
,
923 PARSE_OPT_KEEP_DASHDASH
|
924 PARSE_OPT_STOP_AT_NON_OPTION
|
925 PARSE_OPT_NO_INTERNAL_HELP
);
926 switch (pattern_type
) {
927 case pattern_type_fixed
:
931 case pattern_type_bre
:
934 opt
.regflags
&= ~REG_EXTENDED
;
936 case pattern_type_ere
:
939 opt
.regflags
|= REG_EXTENDED
;
941 case pattern_type_pcre
:
949 if (use_index
&& !startup_info
->have_repository
)
950 /* die the same way as if we did it at the beginning */
951 setup_git_directory();
954 * skip a -- separator; we know it cannot be
955 * separating revisions from pathnames if
956 * we haven't even had any patterns yet
958 if (argc
> 0 && !opt
.pattern_list
&& !strcmp(argv
[0], "--")) {
963 /* First unrecognized non-option token */
964 if (argc
> 0 && !opt
.pattern_list
) {
965 append_grep_pattern(&opt
, argv
[0], "command line", 0,
971 if (show_in_pager
== default_pager
)
972 show_in_pager
= git_pager(1);
976 opt
.null_following_name
= 1;
977 opt
.output_priv
= &path_list
;
978 opt
.output
= append_path
;
979 string_list_append(&path_list
, show_in_pager
);
983 if (!opt
.pattern_list
)
984 die(_("no pattern given."));
985 if (!opt
.fixed
&& opt
.ignore_case
)
986 opt
.regflags
|= REG_ICASE
;
989 if (online_cpus() == 1 || !grep_threads_ok(&opt
))
993 if (opt
.pre_context
|| opt
.post_context
|| opt
.file_break
||
1002 compile_grep_patterns(&opt
);
1004 /* Check revs and then paths */
1005 for (i
= 0; i
< argc
; i
++) {
1006 const char *arg
= argv
[i
];
1007 unsigned char sha1
[20];
1009 if (!get_sha1(arg
, sha1
)) {
1010 struct object
*object
= parse_object(sha1
);
1012 die(_("bad object %s"), arg
);
1013 add_object_array(object
, arg
, &list
);
1016 if (!strcmp(arg
, "--")) {
1023 /* The rest are paths */
1024 if (!seen_dashdash
) {
1026 for (j
= i
; j
< argc
; j
++)
1027 verify_filename(prefix
, argv
[j
]);
1030 paths
= get_pathspec(prefix
, argv
+ i
);
1031 init_pathspec(&pathspec
, paths
);
1032 pathspec
.max_depth
= opt
.max_depth
;
1033 pathspec
.recursive
= 1;
1035 if (show_in_pager
&& (cached
|| list
.nr
))
1036 die(_("--open-files-in-pager only works on the worktree"));
1038 if (show_in_pager
&& opt
.pattern_list
&& !opt
.pattern_list
->next
) {
1039 const char *pager
= path_list
.items
[0].string
;
1040 int len
= strlen(pager
);
1042 if (len
> 4 && is_dir_sep(pager
[len
- 5]))
1045 if (!strcmp("less", pager
) || !strcmp("vi", pager
)) {
1046 struct strbuf buf
= STRBUF_INIT
;
1047 strbuf_addf(&buf
, "+/%s%s",
1048 strcmp("less", pager
) ? "" : "*",
1049 opt
.pattern_list
->pattern
);
1050 string_list_append(&path_list
, buf
.buf
);
1051 strbuf_detach(&buf
, NULL
);
1058 if (!use_index
&& (untracked
|| cached
))
1059 die(_("--cached or --untracked cannot be used with --no-index."));
1061 if (!use_index
|| untracked
) {
1062 int use_exclude
= (opt_exclude
< 0) ? use_index
: !!opt_exclude
;
1064 die(_("--no-index or --untracked cannot be used with revs."));
1065 hit
= grep_directory(&opt
, &pathspec
, use_exclude
);
1066 } else if (0 <= opt_exclude
) {
1067 die(_("--[no-]exclude-standard cannot be used for tracked contents."));
1068 } else if (!list
.nr
) {
1072 hit
= grep_cache(&opt
, &pathspec
, cached
);
1075 die(_("both --cached and trees are given."));
1076 hit
= grep_objects(&opt
, &pathspec
, &list
);
1081 if (hit
&& show_in_pager
)
1082 run_pager(&opt
, prefix
);
1083 free_grep_patterns(&opt
);