grep -I: do not bother to read known-binary files
[git/dscho.git] / builtin / grep.c
blob6f765d607aef7e7527cee3f27953f69dd91180d9
1 /*
2 * Builtin "git grep"
4 * Copyright (c) 2006 Junio C Hamano
5 */
6 #include "cache.h"
7 #include "blob.h"
8 #include "tree.h"
9 #include "commit.h"
10 #include "tag.h"
11 #include "tree-walk.h"
12 #include "builtin.h"
13 #include "parse-options.h"
14 #include "string-list.h"
15 #include "run-command.h"
16 #include "userdiff.h"
17 #include "grep.h"
18 #include "quote.h"
19 #include "dir.h"
20 #include "thread-utils.h"
21 #include "attr.h"
23 static char const * const grep_usage[] = {
24 "git grep [options] [-e] <pattern> [<rev>...] [[--] <path>...]",
25 NULL
28 static int use_threads = 1;
30 #ifndef NO_PTHREADS
31 #define THREADS 8
32 static pthread_t threads[THREADS];
34 static void *load_sha1(const unsigned char *sha1, unsigned long *size,
35 const char *name);
36 static void *load_file(const char *filename, size_t *sz);
38 enum work_type {WORK_SHA1, WORK_FILE};
40 /* We use one producer thread and THREADS consumer
41 * threads. The producer adds struct work_items to 'todo' and the
42 * consumers pick work items from the same array.
44 struct work_item
46 enum work_type type;
47 char *name;
49 /* if type == WORK_SHA1, then 'identifier' is a SHA1,
50 * otherwise type == WORK_FILE, and 'identifier' is a NUL
51 * terminated filename.
53 void *identifier;
54 char done;
55 struct strbuf out;
58 /* In the range [todo_done, todo_start) in 'todo' we have work_items
59 * that have been or are processed by a consumer thread. We haven't
60 * written the result for these to stdout yet.
62 * The work_items in [todo_start, todo_end) are waiting to be picked
63 * up by a consumer thread.
65 * The ranges are modulo TODO_SIZE.
67 #define TODO_SIZE 128
68 static struct work_item todo[TODO_SIZE];
69 static int todo_start;
70 static int todo_end;
71 static int todo_done;
73 /* Has all work items been added? */
74 static int all_work_added;
76 /* This lock protects all the variables above. */
77 static pthread_mutex_t grep_mutex;
79 /* Used to serialize calls to read_sha1_file. */
80 static pthread_mutex_t read_sha1_mutex;
82 #define grep_lock() pthread_mutex_lock(&grep_mutex)
83 #define grep_unlock() pthread_mutex_unlock(&grep_mutex)
84 #define read_sha1_lock() pthread_mutex_lock(&read_sha1_mutex)
85 #define read_sha1_unlock() pthread_mutex_unlock(&read_sha1_mutex)
87 /* Signalled when a new work_item is added to todo. */
88 static pthread_cond_t cond_add;
90 /* Signalled when the result from one work_item is written to
91 * stdout.
93 static pthread_cond_t cond_write;
95 /* Signalled when we are finished with everything. */
96 static pthread_cond_t cond_result;
98 static int print_hunk_marks_between_files;
99 static int printed_something;
101 static void add_work(enum work_type type, char *name, void *id)
103 grep_lock();
105 while ((todo_end+1) % ARRAY_SIZE(todo) == todo_done) {
106 pthread_cond_wait(&cond_write, &grep_mutex);
109 todo[todo_end].type = type;
110 todo[todo_end].name = name;
111 todo[todo_end].identifier = id;
112 todo[todo_end].done = 0;
113 strbuf_reset(&todo[todo_end].out);
114 todo_end = (todo_end + 1) % ARRAY_SIZE(todo);
116 pthread_cond_signal(&cond_add);
117 grep_unlock();
120 static struct work_item *get_work(void)
122 struct work_item *ret;
124 grep_lock();
125 while (todo_start == todo_end && !all_work_added) {
126 pthread_cond_wait(&cond_add, &grep_mutex);
129 if (todo_start == todo_end && all_work_added) {
130 ret = NULL;
131 } else {
132 ret = &todo[todo_start];
133 todo_start = (todo_start + 1) % ARRAY_SIZE(todo);
135 grep_unlock();
136 return ret;
139 static void grep_sha1_async(struct grep_opt *opt, char *name,
140 const unsigned char *sha1)
142 unsigned char *s;
143 s = xmalloc(20);
144 memcpy(s, sha1, 20);
145 add_work(WORK_SHA1, name, s);
148 static void grep_file_async(struct grep_opt *opt, char *name,
149 const char *filename)
151 add_work(WORK_FILE, name, xstrdup(filename));
154 static void work_done(struct work_item *w)
156 int old_done;
158 grep_lock();
159 w->done = 1;
160 old_done = todo_done;
161 for(; todo[todo_done].done && todo_done != todo_start;
162 todo_done = (todo_done+1) % ARRAY_SIZE(todo)) {
163 w = &todo[todo_done];
164 if (w->out.len) {
165 if (print_hunk_marks_between_files && printed_something)
166 write_or_die(1, "--\n", 3);
167 write_or_die(1, w->out.buf, w->out.len);
168 printed_something = 1;
170 free(w->name);
171 free(w->identifier);
174 if (old_done != todo_done)
175 pthread_cond_signal(&cond_write);
177 if (all_work_added && todo_done == todo_end)
178 pthread_cond_signal(&cond_result);
180 grep_unlock();
183 static int skip_binary(struct grep_opt *opt, const char *filename)
185 if ((opt->binary & GREP_BINARY_NOMATCH)) {
186 static struct git_attr *attr_text;
187 struct git_attr_check check;
189 if (!attr_text)
190 attr_text = git_attr("text");
191 memset(&check, 0, sizeof(check));
192 check.attr = attr_text;
193 return !git_checkattr(filename, 1, &check) &&
194 ATTR_FALSE(check.value);
196 return 0;
199 static void *run(void *arg)
201 int hit = 0;
202 struct grep_opt *opt = arg;
204 while (1) {
205 struct work_item *w = get_work();
206 if (!w)
207 break;
209 if (skip_binary(opt, (const char *)w->identifier))
210 continue;
212 opt->output_priv = w;
213 if (w->type == WORK_SHA1) {
214 unsigned long sz;
215 void* data = load_sha1(w->identifier, &sz, w->name);
217 if (data) {
218 hit |= grep_buffer(opt, w->name, data, sz);
219 free(data);
221 } else if (w->type == WORK_FILE) {
222 size_t sz;
223 void* data = load_file(w->identifier, &sz);
224 if (data) {
225 hit |= grep_buffer(opt, w->name, data, sz);
226 free(data);
228 } else {
229 assert(0);
232 work_done(w);
234 free_grep_patterns(arg);
235 free(arg);
237 return (void*) (intptr_t) hit;
240 static void strbuf_out(struct grep_opt *opt, const void *buf, size_t size)
242 struct work_item *w = opt->output_priv;
243 strbuf_add(&w->out, buf, size);
246 static void start_threads(struct grep_opt *opt)
248 int i;
250 pthread_mutex_init(&grep_mutex, NULL);
251 pthread_mutex_init(&read_sha1_mutex, NULL);
252 pthread_cond_init(&cond_add, NULL);
253 pthread_cond_init(&cond_write, NULL);
254 pthread_cond_init(&cond_result, NULL);
256 for (i = 0; i < ARRAY_SIZE(todo); i++) {
257 strbuf_init(&todo[i].out, 0);
260 for (i = 0; i < ARRAY_SIZE(threads); i++) {
261 int err;
262 struct grep_opt *o = grep_opt_dup(opt);
263 o->output = strbuf_out;
264 compile_grep_patterns(o);
265 err = pthread_create(&threads[i], NULL, run, o);
267 if (err)
268 die("grep: failed to create thread: %s",
269 strerror(err));
273 static int wait_all(void)
275 int hit = 0;
276 int i;
278 grep_lock();
279 all_work_added = 1;
281 /* Wait until all work is done. */
282 while (todo_done != todo_end)
283 pthread_cond_wait(&cond_result, &grep_mutex);
285 /* Wake up all the consumer threads so they can see that there
286 * is no more work to do.
288 pthread_cond_broadcast(&cond_add);
289 grep_unlock();
291 for (i = 0; i < ARRAY_SIZE(threads); i++) {
292 void *h;
293 pthread_join(threads[i], &h);
294 hit |= (int) (intptr_t) h;
297 pthread_mutex_destroy(&grep_mutex);
298 pthread_mutex_destroy(&read_sha1_mutex);
299 pthread_cond_destroy(&cond_add);
300 pthread_cond_destroy(&cond_write);
301 pthread_cond_destroy(&cond_result);
303 return hit;
305 #else /* !NO_PTHREADS */
306 #define read_sha1_lock()
307 #define read_sha1_unlock()
309 static int wait_all(void)
311 return 0;
313 #endif
315 static int grep_config(const char *var, const char *value, void *cb)
317 struct grep_opt *opt = cb;
318 char *color = NULL;
320 switch (userdiff_config(var, value)) {
321 case 0: break;
322 case -1: return -1;
323 default: return 0;
326 if (!strcmp(var, "color.grep"))
327 opt->color = git_config_colorbool(var, value, -1);
328 else if (!strcmp(var, "color.grep.context"))
329 color = opt->color_context;
330 else if (!strcmp(var, "color.grep.filename"))
331 color = opt->color_filename;
332 else if (!strcmp(var, "color.grep.function"))
333 color = opt->color_function;
334 else if (!strcmp(var, "color.grep.linenumber"))
335 color = opt->color_lineno;
336 else if (!strcmp(var, "color.grep.match"))
337 color = opt->color_match;
338 else if (!strcmp(var, "color.grep.selected"))
339 color = opt->color_selected;
340 else if (!strcmp(var, "color.grep.separator"))
341 color = opt->color_sep;
342 else
343 return git_color_default_config(var, value, cb);
344 if (color) {
345 if (!value)
346 return config_error_nonbool(var);
347 color_parse(value, var, color);
349 return 0;
353 * Return non-zero if max_depth is negative or path has no more then max_depth
354 * slashes.
356 static int accept_subdir(const char *path, int max_depth)
358 if (max_depth < 0)
359 return 1;
361 while ((path = strchr(path, '/')) != NULL) {
362 max_depth--;
363 if (max_depth < 0)
364 return 0;
365 path++;
367 return 1;
371 * Return non-zero if name is a subdirectory of match and is not too deep.
373 static int is_subdir(const char *name, int namelen,
374 const char *match, int matchlen, int max_depth)
376 if (matchlen > namelen || strncmp(name, match, matchlen))
377 return 0;
379 if (name[matchlen] == '\0') /* exact match */
380 return 1;
382 if (!matchlen || match[matchlen-1] == '/' || name[matchlen] == '/')
383 return accept_subdir(name + matchlen + 1, max_depth);
385 return 0;
389 * git grep pathspecs are somewhat different from diff-tree pathspecs;
390 * pathname wildcards are allowed.
392 static int pathspec_matches(const char **paths, const char *name, int max_depth)
394 int namelen, i;
395 if (!paths || !*paths)
396 return accept_subdir(name, max_depth);
397 namelen = strlen(name);
398 for (i = 0; paths[i]; i++) {
399 const char *match = paths[i];
400 int matchlen = strlen(match);
401 const char *cp, *meta;
403 if (is_subdir(name, namelen, match, matchlen, max_depth))
404 return 1;
405 if (!fnmatch(match, name, 0))
406 return 1;
407 if (name[namelen-1] != '/')
408 continue;
410 /* We are being asked if the directory ("name") is worth
411 * descending into.
413 * Find the longest leading directory name that does
414 * not have metacharacter in the pathspec; the name
415 * we are looking at must overlap with that directory.
417 for (cp = match, meta = NULL; cp - match < matchlen; cp++) {
418 char ch = *cp;
419 if (ch == '*' || ch == '[' || ch == '?') {
420 meta = cp;
421 break;
424 if (!meta)
425 meta = cp; /* fully literal */
427 if (namelen <= meta - match) {
428 /* Looking at "Documentation/" and
429 * the pattern says "Documentation/howto/", or
430 * "Documentation/diff*.txt". The name we
431 * have should match prefix.
433 if (!memcmp(match, name, namelen))
434 return 1;
435 continue;
438 if (meta - match < namelen) {
439 /* Looking at "Documentation/howto/" and
440 * the pattern says "Documentation/h*";
441 * match up to "Do.../h"; this avoids descending
442 * into "Documentation/technical/".
444 if (!memcmp(match, name, meta - match))
445 return 1;
446 continue;
449 return 0;
452 static void *lock_and_read_sha1_file(const unsigned char *sha1, enum object_type *type, unsigned long *size)
454 void *data;
456 if (use_threads) {
457 read_sha1_lock();
458 data = read_sha1_file(sha1, type, size);
459 read_sha1_unlock();
460 } else {
461 data = read_sha1_file(sha1, type, size);
463 return data;
466 static void *load_sha1(const unsigned char *sha1, unsigned long *size,
467 const char *name)
469 enum object_type type;
470 void *data = lock_and_read_sha1_file(sha1, &type, size);
472 if (!data)
473 error("'%s': unable to read %s", name, sha1_to_hex(sha1));
475 return data;
478 static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1,
479 const char *filename, int tree_name_len)
481 struct strbuf pathbuf = STRBUF_INIT;
482 char *name;
484 if (opt->relative && opt->prefix_length) {
485 quote_path_relative(filename + tree_name_len, -1, &pathbuf,
486 opt->prefix);
487 strbuf_insert(&pathbuf, 0, filename, tree_name_len);
488 } else {
489 strbuf_addstr(&pathbuf, filename);
492 name = strbuf_detach(&pathbuf, NULL);
494 #ifndef NO_PTHREADS
495 if (use_threads) {
496 grep_sha1_async(opt, name, sha1);
497 return 0;
498 } else
499 #endif
501 int hit;
502 unsigned long sz;
503 void *data = load_sha1(sha1, &sz, name);
504 if (!data)
505 hit = 0;
506 else
507 hit = grep_buffer(opt, name, data, sz);
509 free(data);
510 free(name);
511 return hit;
515 static void *load_file(const char *filename, size_t *sz)
517 struct stat st;
518 char *data;
519 int i;
521 if (lstat(filename, &st) < 0) {
522 err_ret:
523 if (errno != ENOENT)
524 error("'%s': %s", filename, strerror(errno));
525 return 0;
527 if (!S_ISREG(st.st_mode))
528 return 0;
529 *sz = xsize_t(st.st_size);
530 i = open(filename, O_RDONLY);
531 if (i < 0)
532 goto err_ret;
533 data = xmalloc(*sz + 1);
534 if (st.st_size != read_in_full(i, data, *sz)) {
535 error("'%s': short read %s", filename, strerror(errno));
536 close(i);
537 free(data);
538 return 0;
540 close(i);
541 data[*sz] = 0;
542 return data;
545 static int grep_file(struct grep_opt *opt, const char *filename)
547 struct strbuf buf = STRBUF_INIT;
548 char *name;
550 if (opt->relative && opt->prefix_length)
551 quote_path_relative(filename, -1, &buf, opt->prefix);
552 else
553 strbuf_addstr(&buf, filename);
554 name = strbuf_detach(&buf, NULL);
556 #ifndef NO_PTHREADS
557 if (use_threads) {
558 grep_file_async(opt, name, filename);
559 return 0;
560 } else
561 #endif
563 int hit;
564 size_t sz;
565 void *data = load_file(filename, &sz);
566 if (!data)
567 hit = 0;
568 else
569 hit = grep_buffer(opt, name, data, sz);
571 free(data);
572 free(name);
573 return hit;
577 static void append_path(struct grep_opt *opt, const void *data, size_t len)
579 struct string_list *path_list = opt->output_priv;
581 if (len == 1 && *(const char *)data == '\0')
582 return;
583 string_list_append(path_list, xstrndup(data, len));
586 static void run_pager(struct grep_opt *opt, const char *prefix)
588 struct string_list *path_list = opt->output_priv;
589 const char **argv = xmalloc(sizeof(const char *) * (path_list->nr + 1));
590 int i, status;
592 for (i = 0; i < path_list->nr; i++)
593 argv[i] = path_list->items[i].string;
594 argv[path_list->nr] = NULL;
596 if (prefix && chdir(prefix))
597 die("Failed to chdir: %s", prefix);
598 status = run_command_v_opt(argv, RUN_USING_SHELL);
599 if (status)
600 exit(status);
601 free(argv);
604 static int grep_cache(struct grep_opt *opt, const char **paths, int cached)
606 int hit = 0;
607 int nr;
608 read_cache();
610 for (nr = 0; nr < active_nr; nr++) {
611 struct cache_entry *ce = active_cache[nr];
612 if (!S_ISREG(ce->ce_mode))
613 continue;
614 if (!pathspec_matches(paths, ce->name, opt->max_depth))
615 continue;
616 if (skip_binary(opt, ce->name))
617 continue;
620 * If CE_VALID is on, we assume worktree file and its cache entry
621 * are identical, even if worktree file has been modified, so use
622 * cache version instead
624 if (cached || (ce->ce_flags & CE_VALID) || ce_skip_worktree(ce)) {
625 if (ce_stage(ce))
626 continue;
627 hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
629 else
630 hit |= grep_file(opt, ce->name);
631 if (ce_stage(ce)) {
632 do {
633 nr++;
634 } while (nr < active_nr &&
635 !strcmp(ce->name, active_cache[nr]->name));
636 nr--; /* compensate for loop control */
638 if (hit && opt->status_only)
639 break;
641 return hit;
644 static int grep_tree(struct grep_opt *opt, const char **paths,
645 struct tree_desc *tree,
646 const char *tree_name, const char *base)
648 int len;
649 int hit = 0;
650 struct name_entry entry;
651 char *down;
652 int tn_len = strlen(tree_name);
653 struct strbuf pathbuf;
655 strbuf_init(&pathbuf, PATH_MAX + tn_len);
657 if (tn_len) {
658 strbuf_add(&pathbuf, tree_name, tn_len);
659 strbuf_addch(&pathbuf, ':');
660 tn_len = pathbuf.len;
662 strbuf_addstr(&pathbuf, base);
663 len = pathbuf.len;
665 while (tree_entry(tree, &entry)) {
666 int te_len = tree_entry_len(entry.path, entry.sha1);
667 pathbuf.len = len;
668 strbuf_add(&pathbuf, entry.path, te_len);
670 if (S_ISDIR(entry.mode))
671 /* Match "abc/" against pathspec to
672 * decide if we want to descend into "abc"
673 * directory.
675 strbuf_addch(&pathbuf, '/');
677 down = pathbuf.buf + tn_len;
678 if (!pathspec_matches(paths, down, opt->max_depth))
680 else if (S_ISREG(entry.mode))
681 hit |= grep_sha1(opt, entry.sha1, pathbuf.buf, tn_len);
682 else if (S_ISDIR(entry.mode)) {
683 enum object_type type;
684 struct tree_desc sub;
685 void *data;
686 unsigned long size;
688 data = lock_and_read_sha1_file(entry.sha1, &type, &size);
689 if (!data)
690 die("unable to read tree (%s)",
691 sha1_to_hex(entry.sha1));
692 init_tree_desc(&sub, data, size);
693 hit |= grep_tree(opt, paths, &sub, tree_name, down);
694 free(data);
696 if (hit && opt->status_only)
697 break;
699 strbuf_release(&pathbuf);
700 return hit;
703 static int grep_object(struct grep_opt *opt, const char **paths,
704 struct object *obj, const char *name)
706 if (obj->type == OBJ_BLOB)
707 return grep_sha1(opt, obj->sha1, name, 0);
708 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
709 struct tree_desc tree;
710 void *data;
711 unsigned long size;
712 int hit;
713 data = read_object_with_reference(obj->sha1, tree_type,
714 &size, NULL);
715 if (!data)
716 die("unable to read tree (%s)", sha1_to_hex(obj->sha1));
717 init_tree_desc(&tree, data, size);
718 hit = grep_tree(opt, paths, &tree, name, "");
719 free(data);
720 return hit;
722 die("unable to grep from object of type %s", typename(obj->type));
725 static int grep_objects(struct grep_opt *opt, const char **paths,
726 const struct object_array *list)
728 unsigned int i;
729 int hit = 0;
730 const unsigned int nr = list->nr;
732 for (i = 0; i < nr; i++) {
733 struct object *real_obj;
734 real_obj = deref_tag(list->objects[i].item, NULL, 0);
735 if (grep_object(opt, paths, real_obj, list->objects[i].name)) {
736 hit = 1;
737 if (opt->status_only)
738 break;
741 return hit;
744 static int grep_directory(struct grep_opt *opt, const char **paths)
746 struct dir_struct dir;
747 int i, hit = 0;
749 memset(&dir, 0, sizeof(dir));
750 setup_standard_excludes(&dir);
752 fill_directory(&dir, paths);
753 for (i = 0; i < dir.nr; i++) {
754 hit |= grep_file(opt, dir.entries[i]->name);
755 if (hit && opt->status_only)
756 break;
758 return hit;
761 static int context_callback(const struct option *opt, const char *arg,
762 int unset)
764 struct grep_opt *grep_opt = opt->value;
765 int value;
766 const char *endp;
768 if (unset) {
769 grep_opt->pre_context = grep_opt->post_context = 0;
770 return 0;
772 value = strtol(arg, (char **)&endp, 10);
773 if (*endp) {
774 return error("switch `%c' expects a numerical value",
775 opt->short_name);
777 grep_opt->pre_context = grep_opt->post_context = value;
778 return 0;
781 static int file_callback(const struct option *opt, const char *arg, int unset)
783 struct grep_opt *grep_opt = opt->value;
784 FILE *patterns;
785 int lno = 0;
786 struct strbuf sb = STRBUF_INIT;
788 patterns = fopen(arg, "r");
789 if (!patterns)
790 die_errno("cannot open '%s'", arg);
791 while (strbuf_getline(&sb, patterns, '\n') == 0) {
792 char *s;
793 size_t len;
795 /* ignore empty line like grep does */
796 if (sb.len == 0)
797 continue;
799 s = strbuf_detach(&sb, &len);
800 append_grep_pat(grep_opt, s, len, arg, ++lno, GREP_PATTERN);
802 fclose(patterns);
803 strbuf_release(&sb);
804 return 0;
807 static int not_callback(const struct option *opt, const char *arg, int unset)
809 struct grep_opt *grep_opt = opt->value;
810 append_grep_pattern(grep_opt, "--not", "command line", 0, GREP_NOT);
811 return 0;
814 static int and_callback(const struct option *opt, const char *arg, int unset)
816 struct grep_opt *grep_opt = opt->value;
817 append_grep_pattern(grep_opt, "--and", "command line", 0, GREP_AND);
818 return 0;
821 static int open_callback(const struct option *opt, const char *arg, int unset)
823 struct grep_opt *grep_opt = opt->value;
824 append_grep_pattern(grep_opt, "(", "command line", 0, GREP_OPEN_PAREN);
825 return 0;
828 static int close_callback(const struct option *opt, const char *arg, int unset)
830 struct grep_opt *grep_opt = opt->value;
831 append_grep_pattern(grep_opt, ")", "command line", 0, GREP_CLOSE_PAREN);
832 return 0;
835 static int pattern_callback(const struct option *opt, const char *arg,
836 int unset)
838 struct grep_opt *grep_opt = opt->value;
839 append_grep_pattern(grep_opt, arg, "-e option", 0, GREP_PATTERN);
840 return 0;
843 static int help_callback(const struct option *opt, const char *arg, int unset)
845 return -1;
848 int cmd_grep(int argc, const char **argv, const char *prefix)
850 int hit = 0;
851 int cached = 0;
852 int seen_dashdash = 0;
853 int external_grep_allowed__ignored;
854 const char *show_in_pager = NULL, *default_pager = "dummy";
855 struct grep_opt opt;
856 struct object_array list = OBJECT_ARRAY_INIT;
857 const char **paths = NULL;
858 struct string_list path_list = STRING_LIST_INIT_NODUP;
859 int i;
860 int dummy;
861 int use_index = 1;
862 struct option options[] = {
863 OPT_BOOLEAN(0, "cached", &cached,
864 "search in index instead of in the work tree"),
865 OPT_BOOLEAN(0, "index", &use_index,
866 "--no-index finds in contents not managed by git"),
867 OPT_GROUP(""),
868 OPT_BOOLEAN('v', "invert-match", &opt.invert,
869 "show non-matching lines"),
870 OPT_BOOLEAN('i', "ignore-case", &opt.ignore_case,
871 "case insensitive matching"),
872 OPT_BOOLEAN('w', "word-regexp", &opt.word_regexp,
873 "match patterns only at word boundaries"),
874 OPT_SET_INT('a', "text", &opt.binary,
875 "process binary files as text", GREP_BINARY_TEXT),
876 OPT_SET_INT('I', NULL, &opt.binary,
877 "don't match patterns in binary files",
878 GREP_BINARY_NOMATCH),
879 { OPTION_INTEGER, 0, "max-depth", &opt.max_depth, "depth",
880 "descend at most <depth> levels", PARSE_OPT_NONEG,
881 NULL, 1 },
882 OPT_GROUP(""),
883 OPT_BIT('E', "extended-regexp", &opt.regflags,
884 "use extended POSIX regular expressions", REG_EXTENDED),
885 OPT_NEGBIT('G', "basic-regexp", &opt.regflags,
886 "use basic POSIX regular expressions (default)",
887 REG_EXTENDED),
888 OPT_BOOLEAN('F', "fixed-strings", &opt.fixed,
889 "interpret patterns as fixed strings"),
890 OPT_GROUP(""),
891 OPT_BOOLEAN('n', NULL, &opt.linenum, "show line numbers"),
892 OPT_NEGBIT('h', NULL, &opt.pathname, "don't show filenames", 1),
893 OPT_BIT('H', NULL, &opt.pathname, "show filenames", 1),
894 OPT_NEGBIT(0, "full-name", &opt.relative,
895 "show filenames relative to top directory", 1),
896 OPT_BOOLEAN('l', "files-with-matches", &opt.name_only,
897 "show only filenames instead of matching lines"),
898 OPT_BOOLEAN(0, "name-only", &opt.name_only,
899 "synonym for --files-with-matches"),
900 OPT_BOOLEAN('L', "files-without-match",
901 &opt.unmatch_name_only,
902 "show only the names of files without match"),
903 OPT_BOOLEAN('z', "null", &opt.null_following_name,
904 "print NUL after filenames"),
905 OPT_BOOLEAN('c', "count", &opt.count,
906 "show the number of matches instead of matching lines"),
907 OPT__COLOR(&opt.color, "highlight matches"),
908 OPT_GROUP(""),
909 OPT_CALLBACK('C', NULL, &opt, "n",
910 "show <n> context lines before and after matches",
911 context_callback),
912 OPT_INTEGER('B', NULL, &opt.pre_context,
913 "show <n> context lines before matches"),
914 OPT_INTEGER('A', NULL, &opt.post_context,
915 "show <n> context lines after matches"),
916 OPT_NUMBER_CALLBACK(&opt, "shortcut for -C NUM",
917 context_callback),
918 OPT_BOOLEAN('p', "show-function", &opt.funcname,
919 "show a line with the function name before matches"),
920 OPT_GROUP(""),
921 OPT_CALLBACK('f', NULL, &opt, "file",
922 "read patterns from file", file_callback),
923 { OPTION_CALLBACK, 'e', NULL, &opt, "pattern",
924 "match <pattern>", PARSE_OPT_NONEG, pattern_callback },
925 { OPTION_CALLBACK, 0, "and", &opt, NULL,
926 "combine patterns specified with -e",
927 PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback },
928 OPT_BOOLEAN(0, "or", &dummy, ""),
929 { OPTION_CALLBACK, 0, "not", &opt, NULL, "",
930 PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback },
931 { OPTION_CALLBACK, '(', NULL, &opt, NULL, "",
932 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
933 open_callback },
934 { OPTION_CALLBACK, ')', NULL, &opt, NULL, "",
935 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
936 close_callback },
937 OPT__QUIET(&opt.status_only,
938 "indicate hit with exit status without output"),
939 OPT_BOOLEAN(0, "all-match", &opt.all_match,
940 "show only matches from files that match all patterns"),
941 OPT_GROUP(""),
942 { OPTION_STRING, 'O', "open-files-in-pager", &show_in_pager,
943 "pager", "show matching files in the pager",
944 PARSE_OPT_OPTARG, NULL, (intptr_t)default_pager },
945 OPT_BOOLEAN(0, "ext-grep", &external_grep_allowed__ignored,
946 "allow calling of grep(1) (ignored by this build)"),
947 { OPTION_CALLBACK, 0, "help-all", &options, NULL, "show usage",
948 PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, help_callback },
949 OPT_END()
953 * 'git grep -h', unlike 'git grep -h <pattern>', is a request
954 * to show usage information and exit.
956 if (argc == 2 && !strcmp(argv[1], "-h"))
957 usage_with_options(grep_usage, options);
959 memset(&opt, 0, sizeof(opt));
960 opt.prefix = prefix;
961 opt.prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
962 opt.relative = 1;
963 opt.pathname = 1;
964 opt.pattern_tail = &opt.pattern_list;
965 opt.header_tail = &opt.header_list;
966 opt.regflags = REG_NEWLINE;
967 opt.max_depth = -1;
969 strcpy(opt.color_context, "");
970 strcpy(opt.color_filename, "");
971 strcpy(opt.color_function, "");
972 strcpy(opt.color_lineno, "");
973 strcpy(opt.color_match, GIT_COLOR_BOLD_RED);
974 strcpy(opt.color_selected, "");
975 strcpy(opt.color_sep, GIT_COLOR_CYAN);
976 opt.color = -1;
977 git_config(grep_config, &opt);
978 if (opt.color == -1)
979 opt.color = git_use_color_default;
982 * If there is no -- then the paths must exist in the working
983 * tree. If there is no explicit pattern specified with -e or
984 * -f, we take the first unrecognized non option to be the
985 * pattern, but then what follows it must be zero or more
986 * valid refs up to the -- (if exists), and then existing
987 * paths. If there is an explicit pattern, then the first
988 * unrecognized non option is the beginning of the refs list
989 * that continues up to the -- (if exists), and then paths.
991 argc = parse_options(argc, argv, prefix, options, grep_usage,
992 PARSE_OPT_KEEP_DASHDASH |
993 PARSE_OPT_STOP_AT_NON_OPTION |
994 PARSE_OPT_NO_INTERNAL_HELP);
996 if (use_index && !startup_info->have_repository)
997 /* die the same way as if we did it at the beginning */
998 setup_git_directory();
1001 * skip a -- separator; we know it cannot be
1002 * separating revisions from pathnames if
1003 * we haven't even had any patterns yet
1005 if (argc > 0 && !opt.pattern_list && !strcmp(argv[0], "--")) {
1006 argv++;
1007 argc--;
1010 /* First unrecognized non-option token */
1011 if (argc > 0 && !opt.pattern_list) {
1012 append_grep_pattern(&opt, argv[0], "command line", 0,
1013 GREP_PATTERN);
1014 argv++;
1015 argc--;
1018 if (show_in_pager == default_pager)
1019 show_in_pager = git_pager(1);
1020 if (show_in_pager) {
1021 opt.color = 0;
1022 opt.name_only = 1;
1023 opt.null_following_name = 1;
1024 opt.output_priv = &path_list;
1025 opt.output = append_path;
1026 string_list_append(&path_list, show_in_pager);
1027 use_threads = 0;
1029 if ((opt.binary & GREP_BINARY_NOMATCH))
1030 use_threads = 0;
1032 if (!opt.pattern_list)
1033 die("no pattern given.");
1034 if (!opt.fixed && opt.ignore_case)
1035 opt.regflags |= REG_ICASE;
1036 if ((opt.regflags != REG_NEWLINE) && opt.fixed)
1037 die("cannot mix --fixed-strings and regexp");
1039 #ifndef NO_PTHREADS
1040 if (online_cpus() == 1 || !grep_threads_ok(&opt))
1041 use_threads = 0;
1043 if (use_threads) {
1044 if (opt.pre_context || opt.post_context)
1045 print_hunk_marks_between_files = 1;
1046 start_threads(&opt);
1048 #else
1049 use_threads = 0;
1050 #endif
1052 compile_grep_patterns(&opt);
1054 /* Check revs and then paths */
1055 for (i = 0; i < argc; i++) {
1056 const char *arg = argv[i];
1057 unsigned char sha1[20];
1058 /* Is it a rev? */
1059 if (!get_sha1(arg, sha1)) {
1060 struct object *object = parse_object(sha1);
1061 if (!object)
1062 die("bad object %s", arg);
1063 add_object_array(object, arg, &list);
1064 continue;
1066 if (!strcmp(arg, "--")) {
1067 i++;
1068 seen_dashdash = 1;
1070 break;
1073 /* The rest are paths */
1074 if (!seen_dashdash) {
1075 int j;
1076 for (j = i; j < argc; j++)
1077 verify_filename(prefix, argv[j]);
1080 if (i < argc)
1081 paths = get_pathspec(prefix, argv + i);
1082 else if (prefix) {
1083 paths = xcalloc(2, sizeof(const char *));
1084 paths[0] = prefix;
1085 paths[1] = NULL;
1088 if (show_in_pager && (cached || list.nr))
1089 die("--open-files-in-pager only works on the worktree");
1091 if (show_in_pager && opt.pattern_list && !opt.pattern_list->next) {
1092 const char *pager = path_list.items[0].string;
1093 int len = strlen(pager);
1095 if (len > 4 && is_dir_sep(pager[len - 5]))
1096 pager += len - 4;
1098 if (!strcmp("less", pager) || !strcmp("vi", pager)) {
1099 struct strbuf buf = STRBUF_INIT;
1100 strbuf_addf(&buf, "+/%s%s",
1101 strcmp("less", pager) ? "" : "*",
1102 opt.pattern_list->pattern);
1103 string_list_append(&path_list, buf.buf);
1104 strbuf_detach(&buf, NULL);
1108 if (!show_in_pager)
1109 setup_pager();
1112 if (!use_index) {
1113 if (cached)
1114 die("--cached cannot be used with --no-index.");
1115 if (list.nr)
1116 die("--no-index cannot be used with revs.");
1117 hit = grep_directory(&opt, paths);
1118 } else if (!list.nr) {
1119 if (!cached)
1120 setup_work_tree();
1122 hit = grep_cache(&opt, paths, cached);
1123 } else {
1124 if (cached)
1125 die("both --cached and trees are given.");
1126 hit = grep_objects(&opt, paths, &list);
1129 if (use_threads)
1130 hit |= wait_all();
1131 if (hit && show_in_pager)
1132 run_pager(&opt, prefix);
1133 free_grep_patterns(&opt);
1134 return !hit;