grep: add option -p/--show-function
[git/dscho.git] / builtin-grep.c
blob037452ec79475244f4cae7cfc936695e1de58a63
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 "grep.h"
16 #ifndef NO_EXTERNAL_GREP
17 #ifdef __unix__
18 #define NO_EXTERNAL_GREP 0
19 #else
20 #define NO_EXTERNAL_GREP 1
21 #endif
22 #endif
24 static char const * const grep_usage[] = {
25 "git grep [options] [-e] <pattern> [<rev>...] [[--] path...]",
26 NULL
29 static int grep_config(const char *var, const char *value, void *cb)
31 struct grep_opt *opt = cb;
33 if (!strcmp(var, "color.grep")) {
34 opt->color = git_config_colorbool(var, value, -1);
35 return 0;
37 if (!strcmp(var, "color.grep.external"))
38 return git_config_string(&(opt->color_external), var, value);
39 if (!strcmp(var, "color.grep.match")) {
40 if (!value)
41 return config_error_nonbool(var);
42 color_parse(value, var, opt->color_match);
43 return 0;
45 return git_color_default_config(var, value, cb);
49 * git grep pathspecs are somewhat different from diff-tree pathspecs;
50 * pathname wildcards are allowed.
52 static int pathspec_matches(const char **paths, const char *name)
54 int namelen, i;
55 if (!paths || !*paths)
56 return 1;
57 namelen = strlen(name);
58 for (i = 0; paths[i]; i++) {
59 const char *match = paths[i];
60 int matchlen = strlen(match);
61 const char *cp, *meta;
63 if (!matchlen ||
64 ((matchlen <= namelen) &&
65 !strncmp(name, match, matchlen) &&
66 (match[matchlen-1] == '/' ||
67 name[matchlen] == '\0' || name[matchlen] == '/')))
68 return 1;
69 if (!fnmatch(match, name, 0))
70 return 1;
71 if (name[namelen-1] != '/')
72 continue;
74 /* We are being asked if the directory ("name") is worth
75 * descending into.
77 * Find the longest leading directory name that does
78 * not have metacharacter in the pathspec; the name
79 * we are looking at must overlap with that directory.
81 for (cp = match, meta = NULL; cp - match < matchlen; cp++) {
82 char ch = *cp;
83 if (ch == '*' || ch == '[' || ch == '?') {
84 meta = cp;
85 break;
88 if (!meta)
89 meta = cp; /* fully literal */
91 if (namelen <= meta - match) {
92 /* Looking at "Documentation/" and
93 * the pattern says "Documentation/howto/", or
94 * "Documentation/diff*.txt". The name we
95 * have should match prefix.
97 if (!memcmp(match, name, namelen))
98 return 1;
99 continue;
102 if (meta - match < namelen) {
103 /* Looking at "Documentation/howto/" and
104 * the pattern says "Documentation/h*";
105 * match up to "Do.../h"; this avoids descending
106 * into "Documentation/technical/".
108 if (!memcmp(match, name, meta - match))
109 return 1;
110 continue;
113 return 0;
116 static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1, const char *name, int tree_name_len)
118 unsigned long size;
119 char *data;
120 enum object_type type;
121 char *to_free = NULL;
122 int hit;
124 data = read_sha1_file(sha1, &type, &size);
125 if (!data) {
126 error("'%s': unable to read %s", name, sha1_to_hex(sha1));
127 return 0;
129 if (opt->relative && opt->prefix_length) {
130 static char name_buf[PATH_MAX];
131 char *cp;
132 int name_len = strlen(name) - opt->prefix_length + 1;
134 if (!tree_name_len)
135 name += opt->prefix_length;
136 else {
137 if (ARRAY_SIZE(name_buf) <= name_len)
138 cp = to_free = xmalloc(name_len);
139 else
140 cp = name_buf;
141 memcpy(cp, name, tree_name_len);
142 strcpy(cp + tree_name_len,
143 name + tree_name_len + opt->prefix_length);
144 name = cp;
147 hit = grep_buffer(opt, name, data, size);
148 free(data);
149 free(to_free);
150 return hit;
153 static int grep_file(struct grep_opt *opt, const char *filename)
155 struct stat st;
156 int i;
157 char *data;
158 size_t sz;
160 if (lstat(filename, &st) < 0) {
161 err_ret:
162 if (errno != ENOENT)
163 error("'%s': %s", filename, strerror(errno));
164 return 0;
166 if (!st.st_size)
167 return 0; /* empty file -- no grep hit */
168 if (!S_ISREG(st.st_mode))
169 return 0;
170 sz = xsize_t(st.st_size);
171 i = open(filename, O_RDONLY);
172 if (i < 0)
173 goto err_ret;
174 data = xmalloc(sz + 1);
175 if (st.st_size != read_in_full(i, data, sz)) {
176 error("'%s': short read %s", filename, strerror(errno));
177 close(i);
178 free(data);
179 return 0;
181 close(i);
182 if (opt->relative && opt->prefix_length)
183 filename += opt->prefix_length;
184 i = grep_buffer(opt, filename, data, sz);
185 free(data);
186 return i;
189 #if !NO_EXTERNAL_GREP
190 static int exec_grep(int argc, const char **argv)
192 pid_t pid;
193 int status;
195 argv[argc] = NULL;
196 pid = fork();
197 if (pid < 0)
198 return pid;
199 if (!pid) {
200 execvp("grep", (char **) argv);
201 exit(255);
203 while (waitpid(pid, &status, 0) < 0) {
204 if (errno == EINTR)
205 continue;
206 return -1;
208 if (WIFEXITED(status)) {
209 if (!WEXITSTATUS(status))
210 return 1;
211 return 0;
213 return -1;
216 #define MAXARGS 1000
217 #define ARGBUF 4096
218 #define push_arg(a) do { \
219 if (nr < MAXARGS) argv[nr++] = (a); \
220 else die("maximum number of args exceeded"); \
221 } while (0)
224 * If you send a singleton filename to grep, it does not give
225 * the name of the file. GNU grep has "-H" but we would want
226 * that behaviour in a portable way.
228 * So we keep two pathnames in argv buffer unsent to grep in
229 * the main loop if we need to do more than one grep.
231 static int flush_grep(struct grep_opt *opt,
232 int argc, int arg0, const char **argv, int *kept)
234 int status;
235 int count = argc - arg0;
236 const char *kept_0 = NULL;
238 if (count <= 2) {
240 * Because we keep at least 2 paths in the call from
241 * the main loop (i.e. kept != NULL), and MAXARGS is
242 * far greater than 2, this usually is a call to
243 * conclude the grep. However, the user could attempt
244 * to overflow the argv buffer by giving too many
245 * options to leave very small number of real
246 * arguments even for the call in the main loop.
248 if (kept)
249 die("insanely many options to grep");
252 * If we have two or more paths, we do not have to do
253 * anything special, but we need to push /dev/null to
254 * get "-H" behaviour of GNU grep portably but when we
255 * are not doing "-l" nor "-L" nor "-c".
257 if (count == 1 &&
258 !opt->name_only &&
259 !opt->unmatch_name_only &&
260 !opt->count) {
261 argv[argc++] = "/dev/null";
262 argv[argc] = NULL;
266 else if (kept) {
268 * Called because we found many paths and haven't finished
269 * iterating over the cache yet. We keep two paths
270 * for the concluding call. argv[argc-2] and argv[argc-1]
271 * has the last two paths, so save the first one away,
272 * replace it with NULL while sending the list to grep,
273 * and recover them after we are done.
275 *kept = 2;
276 kept_0 = argv[argc-2];
277 argv[argc-2] = NULL;
278 argc -= 2;
281 if (opt->pre_context || opt->post_context || opt->funcname) {
283 * grep handles hunk marks between files, but we need to
284 * do that ourselves between multiple calls.
286 if (opt->show_hunk_mark)
287 write_or_die(1, opt->funcname ? "==\n" : "--\n", 3);
288 else
289 opt->show_hunk_mark = 1;
292 status = exec_grep(argc, argv);
294 if (kept_0) {
296 * Then recover them. Now the last arg is beyond the
297 * terminating NULL which is at argc, and the second
298 * from the last is what we saved away in kept_0
300 argv[arg0++] = kept_0;
301 argv[arg0] = argv[argc+1];
303 return status;
306 static void grep_add_color(struct strbuf *sb, const char *escape_seq)
308 size_t orig_len = sb->len;
310 while (*escape_seq) {
311 if (*escape_seq == 'm')
312 strbuf_addch(sb, ';');
313 else if (*escape_seq != '\033' && *escape_seq != '[')
314 strbuf_addch(sb, *escape_seq);
315 escape_seq++;
317 if (sb->len > orig_len && sb->buf[sb->len - 1] == ';')
318 strbuf_setlen(sb, sb->len - 1);
321 static int external_grep(struct grep_opt *opt, const char **paths, int cached)
323 int i, nr, argc, hit, len, status;
324 const char *argv[MAXARGS+1];
325 char randarg[ARGBUF];
326 char *argptr = randarg;
327 struct grep_pat *p;
329 if (opt->extended || (opt->relative && opt->prefix_length))
330 return -1;
331 len = nr = 0;
332 push_arg("grep");
333 if (opt->fixed)
334 push_arg("-F");
335 if (opt->linenum)
336 push_arg("-n");
337 if (!opt->pathname)
338 push_arg("-h");
339 if (opt->regflags & REG_EXTENDED)
340 push_arg("-E");
341 if (opt->regflags & REG_ICASE)
342 push_arg("-i");
343 if (opt->binary == GREP_BINARY_NOMATCH)
344 push_arg("-I");
345 if (opt->word_regexp)
346 push_arg("-w");
347 if (opt->name_only)
348 push_arg("-l");
349 if (opt->unmatch_name_only)
350 push_arg("-L");
351 if (opt->null_following_name)
352 /* in GNU grep git's "-z" translates to "-Z" */
353 push_arg("-Z");
354 if (opt->count)
355 push_arg("-c");
356 if (opt->post_context || opt->pre_context) {
357 if (opt->post_context != opt->pre_context) {
358 if (opt->pre_context) {
359 push_arg("-B");
360 len += snprintf(argptr, sizeof(randarg)-len,
361 "%u", opt->pre_context) + 1;
362 if (sizeof(randarg) <= len)
363 die("maximum length of args exceeded");
364 push_arg(argptr);
365 argptr += len;
367 if (opt->post_context) {
368 push_arg("-A");
369 len += snprintf(argptr, sizeof(randarg)-len,
370 "%u", opt->post_context) + 1;
371 if (sizeof(randarg) <= len)
372 die("maximum length of args exceeded");
373 push_arg(argptr);
374 argptr += len;
377 else {
378 push_arg("-C");
379 len += snprintf(argptr, sizeof(randarg)-len,
380 "%u", opt->post_context) + 1;
381 if (sizeof(randarg) <= len)
382 die("maximum length of args exceeded");
383 push_arg(argptr);
384 argptr += len;
387 for (p = opt->pattern_list; p; p = p->next) {
388 push_arg("-e");
389 push_arg(p->pattern);
391 if (opt->color) {
392 struct strbuf sb = STRBUF_INIT;
394 grep_add_color(&sb, opt->color_match);
395 setenv("GREP_COLOR", sb.buf, 1);
397 strbuf_reset(&sb);
398 strbuf_addstr(&sb, "mt=");
399 grep_add_color(&sb, opt->color_match);
400 strbuf_addstr(&sb, ":sl=:cx=:fn=:ln=:bn=:se=");
401 setenv("GREP_COLORS", sb.buf, 1);
403 strbuf_release(&sb);
405 if (opt->color_external && strlen(opt->color_external) > 0)
406 push_arg(opt->color_external);
409 hit = 0;
410 argc = nr;
411 for (i = 0; i < active_nr; i++) {
412 struct cache_entry *ce = active_cache[i];
413 char *name;
414 int kept;
415 if (!S_ISREG(ce->ce_mode))
416 continue;
417 if (!pathspec_matches(paths, ce->name))
418 continue;
419 name = ce->name;
420 if (name[0] == '-') {
421 int len = ce_namelen(ce);
422 name = xmalloc(len + 3);
423 memcpy(name, "./", 2);
424 memcpy(name + 2, ce->name, len + 1);
426 argv[argc++] = name;
427 if (MAXARGS <= argc) {
428 status = flush_grep(opt, argc, nr, argv, &kept);
429 if (0 < status)
430 hit = 1;
431 argc = nr + kept;
433 if (ce_stage(ce)) {
434 do {
435 i++;
436 } while (i < active_nr &&
437 !strcmp(ce->name, active_cache[i]->name));
438 i--; /* compensate for loop control */
441 if (argc > nr) {
442 status = flush_grep(opt, argc, nr, argv, NULL);
443 if (0 < status)
444 hit = 1;
446 return hit;
448 #endif
450 static int grep_cache(struct grep_opt *opt, const char **paths, int cached,
451 int external_grep_allowed)
453 int hit = 0;
454 int nr;
455 read_cache();
457 #if !NO_EXTERNAL_GREP
459 * Use the external "grep" command for the case where
460 * we grep through the checked-out files. It tends to
461 * be a lot more optimized
463 if (!cached && external_grep_allowed) {
464 hit = external_grep(opt, paths, cached);
465 if (hit >= 0)
466 return hit;
468 #endif
470 for (nr = 0; nr < active_nr; nr++) {
471 struct cache_entry *ce = active_cache[nr];
472 if (!S_ISREG(ce->ce_mode))
473 continue;
474 if (!pathspec_matches(paths, ce->name))
475 continue;
477 * If CE_VALID is on, we assume worktree file and its cache entry
478 * are identical, even if worktree file has been modified, so use
479 * cache version instead
481 if (cached || (ce->ce_flags & CE_VALID)) {
482 if (ce_stage(ce))
483 continue;
484 hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
486 else
487 hit |= grep_file(opt, ce->name);
488 if (ce_stage(ce)) {
489 do {
490 nr++;
491 } while (nr < active_nr &&
492 !strcmp(ce->name, active_cache[nr]->name));
493 nr--; /* compensate for loop control */
496 free_grep_patterns(opt);
497 return hit;
500 static int grep_tree(struct grep_opt *opt, const char **paths,
501 struct tree_desc *tree,
502 const char *tree_name, const char *base)
504 int len;
505 int hit = 0;
506 struct name_entry entry;
507 char *down;
508 int tn_len = strlen(tree_name);
509 struct strbuf pathbuf;
511 strbuf_init(&pathbuf, PATH_MAX + tn_len);
513 if (tn_len) {
514 strbuf_add(&pathbuf, tree_name, tn_len);
515 strbuf_addch(&pathbuf, ':');
516 tn_len = pathbuf.len;
518 strbuf_addstr(&pathbuf, base);
519 len = pathbuf.len;
521 while (tree_entry(tree, &entry)) {
522 int te_len = tree_entry_len(entry.path, entry.sha1);
523 pathbuf.len = len;
524 strbuf_add(&pathbuf, entry.path, te_len);
526 if (S_ISDIR(entry.mode))
527 /* Match "abc/" against pathspec to
528 * decide if we want to descend into "abc"
529 * directory.
531 strbuf_addch(&pathbuf, '/');
533 down = pathbuf.buf + tn_len;
534 if (!pathspec_matches(paths, down))
536 else if (S_ISREG(entry.mode))
537 hit |= grep_sha1(opt, entry.sha1, pathbuf.buf, tn_len);
538 else if (S_ISDIR(entry.mode)) {
539 enum object_type type;
540 struct tree_desc sub;
541 void *data;
542 unsigned long size;
544 data = read_sha1_file(entry.sha1, &type, &size);
545 if (!data)
546 die("unable to read tree (%s)",
547 sha1_to_hex(entry.sha1));
548 init_tree_desc(&sub, data, size);
549 hit |= grep_tree(opt, paths, &sub, tree_name, down);
550 free(data);
553 strbuf_release(&pathbuf);
554 return hit;
557 static int grep_object(struct grep_opt *opt, const char **paths,
558 struct object *obj, const char *name)
560 if (obj->type == OBJ_BLOB)
561 return grep_sha1(opt, obj->sha1, name, 0);
562 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
563 struct tree_desc tree;
564 void *data;
565 unsigned long size;
566 int hit;
567 data = read_object_with_reference(obj->sha1, tree_type,
568 &size, NULL);
569 if (!data)
570 die("unable to read tree (%s)", sha1_to_hex(obj->sha1));
571 init_tree_desc(&tree, data, size);
572 hit = grep_tree(opt, paths, &tree, name, "");
573 free(data);
574 return hit;
576 die("unable to grep from object of type %s", typename(obj->type));
579 static int context_callback(const struct option *opt, const char *arg,
580 int unset)
582 struct grep_opt *grep_opt = opt->value;
583 int value;
584 const char *endp;
586 if (unset) {
587 grep_opt->pre_context = grep_opt->post_context = 0;
588 return 0;
590 value = strtol(arg, (char **)&endp, 10);
591 if (*endp) {
592 return error("switch `%c' expects a numerical value",
593 opt->short_name);
595 grep_opt->pre_context = grep_opt->post_context = value;
596 return 0;
599 static int file_callback(const struct option *opt, const char *arg, int unset)
601 struct grep_opt *grep_opt = opt->value;
602 FILE *patterns;
603 int lno = 0;
604 struct strbuf sb;
606 patterns = fopen(arg, "r");
607 if (!patterns)
608 die("'%s': %s", arg, strerror(errno));
609 while (strbuf_getline(&sb, patterns, '\n') == 0) {
610 /* ignore empty line like grep does */
611 if (sb.len == 0)
612 continue;
613 append_grep_pattern(grep_opt, strbuf_detach(&sb, NULL), arg,
614 ++lno, GREP_PATTERN);
616 fclose(patterns);
617 strbuf_release(&sb);
618 return 0;
621 static int not_callback(const struct option *opt, const char *arg, int unset)
623 struct grep_opt *grep_opt = opt->value;
624 append_grep_pattern(grep_opt, "--not", "command line", 0, GREP_NOT);
625 return 0;
628 static int and_callback(const struct option *opt, const char *arg, int unset)
630 struct grep_opt *grep_opt = opt->value;
631 append_grep_pattern(grep_opt, "--and", "command line", 0, GREP_AND);
632 return 0;
635 static int open_callback(const struct option *opt, const char *arg, int unset)
637 struct grep_opt *grep_opt = opt->value;
638 append_grep_pattern(grep_opt, "(", "command line", 0, GREP_OPEN_PAREN);
639 return 0;
642 static int close_callback(const struct option *opt, const char *arg, int unset)
644 struct grep_opt *grep_opt = opt->value;
645 append_grep_pattern(grep_opt, ")", "command line", 0, GREP_CLOSE_PAREN);
646 return 0;
649 static int pattern_callback(const struct option *opt, const char *arg,
650 int unset)
652 struct grep_opt *grep_opt = opt->value;
653 append_grep_pattern(grep_opt, arg, "-e option", 0, GREP_PATTERN);
654 return 0;
657 static int help_callback(const struct option *opt, const char *arg, int unset)
659 return -1;
662 int cmd_grep(int argc, const char **argv, const char *prefix)
664 int hit = 0;
665 int cached = 0;
666 int external_grep_allowed = 1;
667 int seen_dashdash = 0;
668 struct grep_opt opt;
669 struct object_array list = { 0, 0, NULL };
670 const char **paths = NULL;
671 int i;
672 int dummy;
673 struct option options[] = {
674 OPT_BOOLEAN(0, "cached", &cached,
675 "search in index instead of in the work tree"),
676 OPT_GROUP(""),
677 OPT_BOOLEAN('v', "invert-match", &opt.invert,
678 "show non-matching lines"),
679 OPT_BIT('i', "ignore-case", &opt.regflags,
680 "case insensitive matching", REG_ICASE),
681 OPT_BOOLEAN('w', "word-regexp", &opt.word_regexp,
682 "match patterns only at word boundaries"),
683 OPT_SET_INT('a', "text", &opt.binary,
684 "process binary files as text", GREP_BINARY_TEXT),
685 OPT_SET_INT('I', NULL, &opt.binary,
686 "don't match patterns in binary files",
687 GREP_BINARY_NOMATCH),
688 OPT_GROUP(""),
689 OPT_BIT('E', "extended-regexp", &opt.regflags,
690 "use extended POSIX regular expressions", REG_EXTENDED),
691 OPT_NEGBIT('G', "basic-regexp", &opt.regflags,
692 "use basic POSIX regular expressions (default)",
693 REG_EXTENDED),
694 OPT_BOOLEAN('F', "fixed-strings", &opt.fixed,
695 "interpret patterns as fixed strings"),
696 OPT_GROUP(""),
697 OPT_BOOLEAN('n', NULL, &opt.linenum, "show line numbers"),
698 OPT_NEGBIT('h', NULL, &opt.pathname, "don't show filenames", 1),
699 OPT_BIT('H', NULL, &opt.pathname, "show filenames", 1),
700 OPT_NEGBIT(0, "full-name", &opt.relative,
701 "show filenames relative to top directory", 1),
702 OPT_BOOLEAN('l', "files-with-matches", &opt.name_only,
703 "show only filenames instead of matching lines"),
704 OPT_BOOLEAN(0, "name-only", &opt.name_only,
705 "synonym for --files-with-matches"),
706 OPT_BOOLEAN('L', "files-without-match",
707 &opt.unmatch_name_only,
708 "show only the names of files without match"),
709 OPT_BOOLEAN('z', "null", &opt.null_following_name,
710 "print NUL after filenames"),
711 OPT_BOOLEAN('c', "count", &opt.count,
712 "show the number of matches instead of matching lines"),
713 OPT_SET_INT(0, "color", &opt.color, "highlight matches", 1),
714 OPT_GROUP(""),
715 OPT_CALLBACK('C', NULL, &opt, "n",
716 "show <n> context lines before and after matches",
717 context_callback),
718 OPT_INTEGER('B', NULL, &opt.pre_context,
719 "show <n> context lines before matches"),
720 OPT_INTEGER('A', NULL, &opt.post_context,
721 "show <n> context lines after matches"),
722 OPT_NUMBER_CALLBACK(&opt, "shortcut for -C NUM",
723 context_callback),
724 OPT_BOOLEAN('p', "show-function", &opt.funcname,
725 "show a line with the function name before matches"),
726 OPT_GROUP(""),
727 OPT_CALLBACK('f', NULL, &opt, "file",
728 "read patterns from file", file_callback),
729 { OPTION_CALLBACK, 'e', NULL, &opt, "pattern",
730 "match <pattern>", PARSE_OPT_NONEG, pattern_callback },
731 { OPTION_CALLBACK, 0, "and", &opt, NULL,
732 "combine patterns specified with -e",
733 PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback },
734 OPT_BOOLEAN(0, "or", &dummy, ""),
735 { OPTION_CALLBACK, 0, "not", &opt, NULL, "",
736 PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback },
737 { OPTION_CALLBACK, '(', NULL, &opt, NULL, "",
738 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
739 open_callback },
740 { OPTION_CALLBACK, ')', NULL, &opt, NULL, "",
741 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
742 close_callback },
743 OPT_BOOLEAN(0, "all-match", &opt.all_match,
744 "show only matches from files that match all patterns"),
745 OPT_GROUP(""),
746 #if NO_EXTERNAL_GREP
747 OPT_BOOLEAN(0, "ext-grep", &external_grep_allowed,
748 "allow calling of grep(1) (ignored by this build)"),
749 #else
750 OPT_BOOLEAN(0, "ext-grep", &external_grep_allowed,
751 "allow calling of grep(1) (default)"),
752 #endif
753 { OPTION_CALLBACK, 0, "help-all", &options, NULL, "show usage",
754 PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, help_callback },
755 OPT_END()
758 memset(&opt, 0, sizeof(opt));
759 opt.prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
760 opt.relative = 1;
761 opt.pathname = 1;
762 opt.pattern_tail = &opt.pattern_list;
763 opt.regflags = REG_NEWLINE;
765 strcpy(opt.color_match, GIT_COLOR_RED GIT_COLOR_BOLD);
766 opt.color = -1;
767 git_config(grep_config, &opt);
768 if (opt.color == -1)
769 opt.color = git_use_color_default;
772 * If there is no -- then the paths must exist in the working
773 * tree. If there is no explicit pattern specified with -e or
774 * -f, we take the first unrecognized non option to be the
775 * pattern, but then what follows it must be zero or more
776 * valid refs up to the -- (if exists), and then existing
777 * paths. If there is an explicit pattern, then the first
778 * unrecognized non option is the beginning of the refs list
779 * that continues up to the -- (if exists), and then paths.
781 argc = parse_options(argc, argv, prefix, options, grep_usage,
782 PARSE_OPT_KEEP_DASHDASH |
783 PARSE_OPT_STOP_AT_NON_OPTION |
784 PARSE_OPT_NO_INTERNAL_HELP);
786 /* First unrecognized non-option token */
787 if (argc > 0 && !opt.pattern_list) {
788 append_grep_pattern(&opt, argv[0], "command line", 0,
789 GREP_PATTERN);
790 argv++;
791 argc--;
794 if ((opt.color && !opt.color_external) || opt.funcname)
795 external_grep_allowed = 0;
796 if (!opt.pattern_list)
797 die("no pattern given.");
798 if ((opt.regflags != REG_NEWLINE) && opt.fixed)
799 die("cannot mix --fixed-strings and regexp");
800 compile_grep_patterns(&opt);
802 /* Check revs and then paths */
803 for (i = 0; i < argc; i++) {
804 const char *arg = argv[i];
805 unsigned char sha1[20];
806 /* Is it a rev? */
807 if (!get_sha1(arg, sha1)) {
808 struct object *object = parse_object(sha1);
809 if (!object)
810 die("bad object %s", arg);
811 add_object_array(object, arg, &list);
812 continue;
814 if (!strcmp(arg, "--")) {
815 i++;
816 seen_dashdash = 1;
818 break;
821 /* The rest are paths */
822 if (!seen_dashdash) {
823 int j;
824 for (j = i; j < argc; j++)
825 verify_filename(prefix, argv[j]);
828 if (i < argc) {
829 paths = get_pathspec(prefix, argv + i);
830 if (opt.prefix_length && opt.relative) {
831 /* Make sure we do not get outside of paths */
832 for (i = 0; paths[i]; i++)
833 if (strncmp(prefix, paths[i], opt.prefix_length))
834 die("git grep: cannot generate relative filenames containing '..'");
837 else if (prefix) {
838 paths = xcalloc(2, sizeof(const char *));
839 paths[0] = prefix;
840 paths[1] = NULL;
843 if (!list.nr) {
844 if (!cached)
845 setup_work_tree();
846 return !grep_cache(&opt, paths, cached, external_grep_allowed);
849 if (cached)
850 die("both --cached and trees are given.");
852 for (i = 0; i < list.nr; i++) {
853 struct object *real_obj;
854 real_obj = deref_tag(list.objects[i].item, NULL, 0);
855 if (grep_object(&opt, paths, real_obj, list.objects[i].name))
856 hit = 1;
858 free_grep_patterns(&opt);
859 return !hit;