4 * Copyright (c) 2006 Junio C Hamano
11 #include "tree-walk.h"
18 * git grep pathspecs are somewhat different from diff-tree pathspecs;
19 * pathname wildcards are allowed.
21 static int pathspec_matches(const char **paths, const char *name)
24 if (!paths || !*paths)
26 namelen = strlen(name);
27 for (i = 0; paths[i]; i++) {
28 const char *match = paths[i];
29 int matchlen = strlen(match);
30 const char *cp, *meta;
33 ((matchlen <= namelen) &&
34 !strncmp(name, match, matchlen) &&
35 (match[matchlen-1] == '/' ||
36 name[matchlen] == '\0' || name[matchlen] == '/')))
38 if (!fnmatch(match, name, 0))
40 if (name[namelen-1] != '/')
43 /* We are being asked if the directory ("name") is worth
46 * Find the longest leading directory name that does
47 * not have metacharacter in the pathspec; the name
48 * we are looking at must overlap with that directory.
50 for (cp = match, meta = NULL; cp - match < matchlen; cp++) {
52 if (ch == '*' || ch == '[' || ch == '?') {
58 meta = cp; /* fully literal */
60 if (namelen <= meta - match) {
61 /* Looking at "Documentation/" and
62 * the pattern says "Documentation/howto/", or
63 * "Documentation/diff*.txt". The name we
64 * have should match prefix.
66 if (!memcmp(match, name, namelen))
71 if (meta - match < namelen) {
72 /* Looking at "Documentation/howto/" and
73 * the pattern says "Documentation/h*";
74 * match up to "Do.../h"; this avoids descending
75 * into "Documentation/technical/".
77 if (!memcmp(match, name, meta - match))
95 struct grep_pat *next;
98 enum grep_pat_token token;
103 enum grep_expr_node {
111 enum grep_expr_node node;
113 struct grep_pat *atom;
114 struct grep_expr *unary;
116 struct grep_expr *left;
117 struct grep_expr *right;
123 struct grep_pat *pattern_list;
124 struct grep_pat **pattern_tail;
125 struct grep_expr *pattern_expression;
130 unsigned name_only:1;
131 unsigned unmatch_name_only:1;
133 unsigned word_regexp:1;
135 #define GREP_BINARY_DEFAULT 0
136 #define GREP_BINARY_NOMATCH 1
137 #define GREP_BINARY_TEXT 2
142 unsigned pre_context;
143 unsigned post_context;
146 static void add_pattern(struct grep_opt *opt, const char *pat,
147 const char *origin, int no, enum grep_pat_token t)
149 struct grep_pat *p = xcalloc(1, sizeof(*p));
154 *opt->pattern_tail = p;
155 opt->pattern_tail = &p->next;
159 static void compile_regexp(struct grep_pat *p, struct grep_opt *opt)
161 int err = regcomp(&p->regexp, p->pattern, opt->regflags);
166 sprintf(where, "In '%s' at %d, ",
169 sprintf(where, "%s, ", p->origin);
172 regerror(err, &p->regexp, errbuf, 1024);
174 die("%s'%s': %s", where, p->pattern, errbuf);
178 static struct grep_expr *compile_pattern_expr(struct grep_pat **);
179 static struct grep_expr *compile_pattern_atom(struct grep_pat **list)
186 case GREP_PATTERN: /* atom */
187 x = xcalloc(1, sizeof (struct grep_expr));
188 x->node = GREP_NODE_ATOM;
192 case GREP_OPEN_PAREN:
194 x = compile_pattern_expr(list);
197 if (!*list || (*list)->token != GREP_CLOSE_PAREN)
198 die("unmatched parenthesis");
199 *list = (*list)->next;
206 static struct grep_expr *compile_pattern_not(struct grep_pat **list)
215 die("--not not followed by pattern expression");
217 x = xcalloc(1, sizeof (struct grep_expr));
218 x->node = GREP_NODE_NOT;
219 x->u.unary = compile_pattern_not(list);
221 die("--not followed by non pattern expression");
224 return compile_pattern_atom(list);
228 static struct grep_expr *compile_pattern_and(struct grep_pat **list)
231 struct grep_expr *x, *y, *z;
233 x = compile_pattern_not(list);
235 if (p && p->token == GREP_AND) {
237 die("--and not followed by pattern expression");
239 y = compile_pattern_and(list);
241 die("--and not followed by pattern expression");
242 z = xcalloc(1, sizeof (struct grep_expr));
243 z->node = GREP_NODE_AND;
244 z->u.binary.left = x;
245 z->u.binary.right = y;
251 static struct grep_expr *compile_pattern_or(struct grep_pat **list)
254 struct grep_expr *x, *y, *z;
256 x = compile_pattern_and(list);
258 if (x && p && p->token != GREP_CLOSE_PAREN) {
259 y = compile_pattern_or(list);
261 die("not a pattern expression %s", p->pattern);
262 z = xcalloc(1, sizeof (struct grep_expr));
263 z->node = GREP_NODE_OR;
264 z->u.binary.left = x;
265 z->u.binary.right = y;
271 static struct grep_expr *compile_pattern_expr(struct grep_pat **list)
273 return compile_pattern_or(list);
276 static void compile_patterns(struct grep_opt *opt)
280 /* First compile regexps */
281 for (p = opt->pattern_list; p; p = p->next) {
282 if (p->token == GREP_PATTERN)
283 compile_regexp(p, opt);
291 /* Then bundle them up in an expression.
292 * A classic recursive descent parser would do.
294 p = opt->pattern_list;
295 opt->pattern_expression = compile_pattern_expr(&p);
297 dump_pattern_exp(opt->pattern_expression, 0);
300 die("incomplete pattern expression: %s", p->pattern);
303 static char *end_of_line(char *cp, unsigned long *left)
305 unsigned long l = *left;
306 while (l && *cp != '\n') {
314 static int word_char(char ch)
316 return isalnum(ch) || ch == '_';
319 static void show_line(struct grep_opt *opt, const char *bol, const char *eol,
320 const char *name, unsigned lno, char sign)
322 printf("%s%c", name, sign);
324 printf("%d%c", lno, sign);
325 printf("%.*s\n", (int)(eol-bol), bol);
329 * NEEDSWORK: share code with diff.c
331 #define FIRST_FEW_BYTES 8000
332 static int buffer_is_binary(const char *ptr, unsigned long size)
334 if (FIRST_FEW_BYTES < size)
335 size = FIRST_FEW_BYTES;
336 return !!memchr(ptr, 0, size);
339 static int fixmatch(const char *pattern, char *line, regmatch_t *match)
341 char *hit = strstr(line, pattern);
343 match->rm_so = match->rm_eo = -1;
347 match->rm_so = hit - line;
348 match->rm_eo = match->rm_so + strlen(pattern);
353 static int match_one_pattern(struct grep_opt *opt, struct grep_pat *p, char *bol, char *eol)
357 regmatch_t pmatch[10];
361 regex_t *exp = &p->regexp;
362 hit = !regexec(exp, bol, ARRAY_SIZE(pmatch),
366 hit = !fixmatch(p->pattern, bol, pmatch);
369 if (hit && opt->word_regexp) {
370 if ((pmatch[0].rm_so < 0) ||
371 (eol - bol) <= pmatch[0].rm_so ||
372 (pmatch[0].rm_eo < 0) ||
373 (eol - bol) < pmatch[0].rm_eo)
374 die("regexp returned nonsense");
376 /* Match beginning must be either beginning of the
377 * line, or at word boundary (i.e. the last char must
378 * not be a word char). Similarly, match end must be
379 * either end of the line, or at word boundary
380 * (i.e. the next char must not be a word char).
382 if ( ((pmatch[0].rm_so == 0 && at_true_bol) ||
383 !word_char(bol[pmatch[0].rm_so-1])) &&
384 ((pmatch[0].rm_eo == (eol-bol)) ||
385 !word_char(bol[pmatch[0].rm_eo])) )
390 if (!hit && pmatch[0].rm_so + bol + 1 < eol) {
391 /* There could be more than one match on the
392 * line, and the first match might not be
393 * strict word match. But later ones could be!
395 bol = pmatch[0].rm_so + bol + 1;
403 static int match_expr_eval(struct grep_opt *opt,
405 char *bol, char *eol)
409 return match_one_pattern(opt, x->u.atom, bol, eol);
412 return !match_expr_eval(opt, x->u.unary, bol, eol);
414 return (match_expr_eval(opt, x->u.binary.left, bol, eol) &&
415 match_expr_eval(opt, x->u.binary.right, bol, eol));
417 return (match_expr_eval(opt, x->u.binary.left, bol, eol) ||
418 match_expr_eval(opt, x->u.binary.right, bol, eol));
420 die("Unexpected node type (internal error) %d\n", x->node);
423 static int match_expr(struct grep_opt *opt, char *bol, char *eol)
425 struct grep_expr *x = opt->pattern_expression;
426 return match_expr_eval(opt, x, bol, eol);
429 static int match_line(struct grep_opt *opt, char *bol, char *eol)
433 return match_expr(opt, bol, eol);
434 for (p = opt->pattern_list; p; p = p->next) {
435 if (match_one_pattern(opt, p, bol, eol))
441 static int grep_buffer(struct grep_opt *opt, const char *name,
442 char *buf, unsigned long size)
445 unsigned long left = size;
447 struct pre_context_line {
450 } *prev = NULL, *pcl;
451 unsigned last_hit = 0;
452 unsigned last_shown = 0;
453 int binary_match_only = 0;
454 const char *hunk_mark = "";
457 if (buffer_is_binary(buf, size)) {
458 switch (opt->binary) {
459 case GREP_BINARY_DEFAULT:
460 binary_match_only = 1;
462 case GREP_BINARY_NOMATCH:
463 return 0; /* Assume unmatch */
470 if (opt->pre_context)
471 prev = xcalloc(opt->pre_context, sizeof(*prev));
472 if (opt->pre_context || opt->post_context)
479 eol = end_of_line(bol, &left);
483 hit = match_line(opt, bol, eol);
485 /* "grep -v -e foo -e bla" should list lines
486 * that do not have either, so inversion should
491 if (opt->unmatch_name_only) {
498 if (binary_match_only) {
499 printf("Binary file %s matches\n", name);
502 if (opt->name_only) {
503 printf("%s\n", name);
506 /* Hit at this line. If we haven't shown the
507 * pre-context lines, we would need to show them.
508 * When asked to do "count", this still show
509 * the context which is nonsense, but the user
510 * deserves to get that ;-).
512 if (opt->pre_context) {
514 if (opt->pre_context < lno)
515 from = lno - opt->pre_context;
518 if (from <= last_shown)
519 from = last_shown + 1;
520 if (last_shown && from != last_shown + 1)
523 pcl = &prev[lno-from-1];
524 show_line(opt, pcl->bol, pcl->eol,
530 if (last_shown && lno != last_shown + 1)
533 show_line(opt, bol, eol, name, lno, ':');
534 last_shown = last_hit = lno;
537 lno <= last_hit + opt->post_context) {
538 /* If the last hit is within the post context,
539 * we need to show this line.
541 if (last_shown && lno != last_shown + 1)
543 show_line(opt, bol, eol, name, lno, '-');
546 if (opt->pre_context) {
547 memmove(prev+1, prev,
548 (opt->pre_context-1) * sizeof(*prev));
562 if (opt->unmatch_name_only) {
563 /* We did not see any hit, so we want to show this */
564 printf("%s\n", name);
569 * The real "grep -c foo *.c" gives many "bar.c:0" lines,
570 * which feels mostly useless but sometimes useful. Maybe
571 * make it another option? For now suppress them.
573 if (opt->count && count)
574 printf("%s:%u\n", name, count);
578 static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1, const char *name, int tree_name_len)
583 char *to_free = NULL;
586 data = read_sha1_file(sha1, type, &size);
588 error("'%s': unable to read %s", name, sha1_to_hex(sha1));
591 if (opt->relative && opt->prefix_length) {
592 static char name_buf[PATH_MAX];
594 int name_len = strlen(name) - opt->prefix_length + 1;
597 name += opt->prefix_length;
599 if (ARRAY_SIZE(name_buf) <= name_len)
600 cp = to_free = xmalloc(name_len);
603 memcpy(cp, name, tree_name_len);
604 strcpy(cp + tree_name_len,
605 name + tree_name_len + opt->prefix_length);
609 hit = grep_buffer(opt, name, data, size);
615 static int grep_file(struct grep_opt *opt, const char *filename)
620 if (lstat(filename, &st) < 0) {
623 error("'%s': %s", filename, strerror(errno));
627 return 0; /* empty file -- no grep hit */
628 if (!S_ISREG(st.st_mode))
630 i = open(filename, O_RDONLY);
633 data = xmalloc(st.st_size + 1);
634 if (st.st_size != xread(i, data, st.st_size)) {
635 error("'%s': short read %s", filename, strerror(errno));
641 if (opt->relative && opt->prefix_length)
642 filename += opt->prefix_length;
643 i = grep_buffer(opt, filename, data, st.st_size);
648 static int exec_grep(int argc, const char **argv)
658 execvp("grep", (char **) argv);
661 while (waitpid(pid, &status, 0) < 0) {
666 if (WIFEXITED(status)) {
667 if (!WEXITSTATUS(status))
676 #define push_arg(a) do { \
677 if (nr < MAXARGS) argv[nr++] = (a); \
678 else die("maximum number of args exceeded"); \
681 static int external_grep(struct grep_opt *opt, const char **paths, int cached)
683 int i, nr, argc, hit, len, status;
684 const char *argv[MAXARGS+1];
685 char randarg[ARGBUF];
686 char *argptr = randarg;
689 if (opt->extended || (opt->relative && opt->prefix_length))
697 if (opt->regflags & REG_EXTENDED)
699 if (opt->regflags & REG_ICASE)
701 if (opt->word_regexp)
705 if (opt->unmatch_name_only)
709 if (opt->post_context || opt->pre_context) {
710 if (opt->post_context != opt->pre_context) {
711 if (opt->pre_context) {
713 len += snprintf(argptr, sizeof(randarg)-len,
714 "%u", opt->pre_context);
715 if (sizeof(randarg) <= len)
716 die("maximum length of args exceeded");
720 if (opt->post_context) {
722 len += snprintf(argptr, sizeof(randarg)-len,
723 "%u", opt->post_context);
724 if (sizeof(randarg) <= len)
725 die("maximum length of args exceeded");
732 len += snprintf(argptr, sizeof(randarg)-len,
733 "%u", opt->post_context);
734 if (sizeof(randarg) <= len)
735 die("maximum length of args exceeded");
740 for (p = opt->pattern_list; p; p = p->next) {
742 push_arg(p->pattern);
746 * To make sure we get the header printed out when we want it,
747 * add /dev/null to the paths to grep. This is unnecessary
748 * (and wrong) with "-l" or "-L", which always print out the
751 * GNU grep has "-H", but this is portable.
753 if (!opt->name_only && !opt->unmatch_name_only)
754 push_arg("/dev/null");
758 for (i = 0; i < active_nr; i++) {
759 struct cache_entry *ce = active_cache[i];
761 if (ce_stage(ce) || !S_ISREG(ntohl(ce->ce_mode)))
763 if (!pathspec_matches(paths, ce->name))
766 if (name[0] == '-') {
767 int len = ce_namelen(ce);
768 name = xmalloc(len + 3);
769 memcpy(name, "./", 2);
770 memcpy(name + 2, ce->name, len + 1);
775 status = exec_grep(argc, argv);
781 status = exec_grep(argc, argv);
788 static int grep_cache(struct grep_opt *opt, const char **paths, int cached)
796 * Use the external "grep" command for the case where
797 * we grep through the checked-out files. It tends to
798 * be a lot more optimized
801 hit = external_grep(opt, paths, cached);
807 for (nr = 0; nr < active_nr; nr++) {
808 struct cache_entry *ce = active_cache[nr];
809 if (ce_stage(ce) || !S_ISREG(ntohl(ce->ce_mode)))
811 if (!pathspec_matches(paths, ce->name))
814 hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
816 hit |= grep_file(opt, ce->name);
821 static int grep_tree(struct grep_opt *opt, const char **paths,
822 struct tree_desc *tree,
823 const char *tree_name, const char *base)
827 struct name_entry entry;
829 int tn_len = strlen(tree_name);
830 char *path_buf = xmalloc(PATH_MAX + tn_len + 100);
833 tn_len = sprintf(path_buf, "%s:", tree_name);
834 down = path_buf + tn_len;
841 len = strlen(path_buf);
843 while (tree_entry(tree, &entry)) {
844 strcpy(path_buf + len, entry.path);
846 if (S_ISDIR(entry.mode))
847 /* Match "abc/" against pathspec to
848 * decide if we want to descend into "abc"
851 strcpy(path_buf + len + entry.pathlen, "/");
853 if (!pathspec_matches(paths, down))
855 else if (S_ISREG(entry.mode))
856 hit |= grep_sha1(opt, entry.sha1, path_buf, tn_len);
857 else if (S_ISDIR(entry.mode)) {
859 struct tree_desc sub;
861 data = read_sha1_file(entry.sha1, type, &sub.size);
863 die("unable to read tree (%s)",
864 sha1_to_hex(entry.sha1));
866 hit |= grep_tree(opt, paths, &sub, tree_name, down);
873 static int grep_object(struct grep_opt *opt, const char **paths,
874 struct object *obj, const char *name)
876 if (obj->type == OBJ_BLOB)
877 return grep_sha1(opt, obj->sha1, name, 0);
878 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
879 struct tree_desc tree;
882 data = read_object_with_reference(obj->sha1, tree_type,
885 die("unable to read tree (%s)", sha1_to_hex(obj->sha1));
887 hit = grep_tree(opt, paths, &tree, name, "");
891 die("unable to grep from object of type %s", typename(obj->type));
894 static const char builtin_grep_usage[] =
895 "git-grep <option>* <rev>* [-e] <pattern> [<path>...]";
897 static const char emsg_invalid_context_len[] =
898 "%s: invalid context length argument";
899 static const char emsg_missing_context_len[] =
900 "missing context length argument";
901 static const char emsg_missing_argument[] =
902 "option requires an argument -%s";
904 int cmd_grep(int argc, const char **argv, const char *prefix)
908 int seen_dashdash = 0;
910 struct object_array list = { 0, 0, NULL };
911 const char **paths = NULL;
914 memset(&opt, 0, sizeof(opt));
915 opt.prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
917 opt.pattern_tail = &opt.pattern_list;
918 opt.regflags = REG_NEWLINE;
921 * If there is no -- then the paths must exist in the working
922 * tree. If there is no explicit pattern specified with -e or
923 * -f, we take the first unrecognized non option to be the
924 * pattern, but then what follows it must be zero or more
925 * valid refs up to the -- (if exists), and then existing
926 * paths. If there is an explicit pattern, then the first
927 * unrecognized non option is the beginning of the refs list
928 * that continues up to the -- (if exists), and then paths.
932 const char *arg = argv[1];
934 if (!strcmp("--cached", arg)) {
938 if (!strcmp("-a", arg) ||
939 !strcmp("--text", arg)) {
940 opt.binary = GREP_BINARY_TEXT;
943 if (!strcmp("-i", arg) ||
944 !strcmp("--ignore-case", arg)) {
945 opt.regflags |= REG_ICASE;
948 if (!strcmp("-I", arg)) {
949 opt.binary = GREP_BINARY_NOMATCH;
952 if (!strcmp("-v", arg) ||
953 !strcmp("--invert-match", arg)) {
957 if (!strcmp("-E", arg) ||
958 !strcmp("--extended-regexp", arg)) {
959 opt.regflags |= REG_EXTENDED;
962 if (!strcmp("-F", arg) ||
963 !strcmp("--fixed-strings", arg)) {
967 if (!strcmp("-G", arg) ||
968 !strcmp("--basic-regexp", arg)) {
969 opt.regflags &= ~REG_EXTENDED;
972 if (!strcmp("-n", arg)) {
976 if (!strcmp("-H", arg)) {
977 /* We always show the pathname, so this
982 if (!strcmp("-l", arg) ||
983 !strcmp("--files-with-matches", arg)) {
987 if (!strcmp("-L", arg) ||
988 !strcmp("--files-without-match", arg)) {
989 opt.unmatch_name_only = 1;
992 if (!strcmp("-c", arg) ||
993 !strcmp("--count", arg)) {
997 if (!strcmp("-w", arg) ||
998 !strcmp("--word-regexp", arg)) {
1002 if (!strncmp("-A", arg, 2) ||
1003 !strncmp("-B", arg, 2) ||
1004 !strncmp("-C", arg, 2) ||
1005 (arg[0] == '-' && '1' <= arg[1] && arg[1] <= '9')) {
1009 case 'A': case 'B': case 'C':
1012 die(emsg_missing_context_len);
1023 if (sscanf(scan, "%u", &num) != 1)
1024 die(emsg_invalid_context_len, scan);
1027 opt.post_context = num;
1031 opt.post_context = num;
1033 opt.pre_context = num;
1038 if (!strcmp("-f", arg)) {
1043 die(emsg_missing_argument, arg);
1044 patterns = fopen(argv[1], "r");
1046 die("'%s': %s", argv[1], strerror(errno));
1047 while (fgets(buf, sizeof(buf), patterns)) {
1048 int len = strlen(buf);
1049 if (buf[len-1] == '\n')
1051 /* ignore empty line like grep does */
1054 add_pattern(&opt, strdup(buf), argv[1], ++lno,
1062 if (!strcmp("--not", arg)) {
1063 add_pattern(&opt, arg, "command line", 0, GREP_NOT);
1066 if (!strcmp("--and", arg)) {
1067 add_pattern(&opt, arg, "command line", 0, GREP_AND);
1070 if (!strcmp("--or", arg))
1071 continue; /* no-op */
1072 if (!strcmp("(", arg)) {
1073 add_pattern(&opt, arg, "command line", 0, GREP_OPEN_PAREN);
1076 if (!strcmp(")", arg)) {
1077 add_pattern(&opt, arg, "command line", 0, GREP_CLOSE_PAREN);
1080 if (!strcmp("-e", arg)) {
1082 add_pattern(&opt, argv[1], "-e option", 0,
1088 die(emsg_missing_argument, arg);
1090 if (!strcmp("--full-name", arg)) {
1094 if (!strcmp("--", arg)) {
1095 /* later processing wants to have this at argv[1] */
1101 usage(builtin_grep_usage);
1103 /* First unrecognized non-option token */
1104 if (!opt.pattern_list) {
1105 add_pattern(&opt, arg, "command line", 0,
1110 /* We are looking at the first path or rev;
1111 * it is found at argv[1] after leaving the
1119 if (!opt.pattern_list)
1120 die("no pattern given.");
1121 if ((opt.regflags != REG_NEWLINE) && opt.fixed)
1122 die("cannot mix --fixed-strings and regexp");
1124 compile_patterns(&opt);
1126 /* Check revs and then paths */
1127 for (i = 1; i < argc; i++) {
1128 const char *arg = argv[i];
1129 unsigned char sha1[20];
1131 if (!get_sha1(arg, sha1)) {
1132 struct object *object = parse_object(sha1);
1134 die("bad object %s", arg);
1135 add_object_array(object, arg, &list);
1138 if (!strcmp(arg, "--")) {
1145 /* The rest are paths */
1146 if (!seen_dashdash) {
1148 for (j = i; j < argc; j++)
1149 verify_filename(prefix, argv[j]);
1153 paths = get_pathspec(prefix, argv + i);
1154 if (opt.prefix_length && opt.relative) {
1155 /* Make sure we do not get outside of paths */
1156 for (i = 0; paths[i]; i++)
1157 if (strncmp(prefix, paths[i], opt.prefix_length))
1158 die("git-grep: cannot generate relative filenames containing '..'");
1162 paths = xcalloc(2, sizeof(const char *));
1168 return !grep_cache(&opt, paths, cached);
1171 die("both --cached and trees are given.");
1173 for (i = 0; i < list.nr; i++) {
1174 struct object *real_obj;
1175 real_obj = deref_tag(list.objects[i].item, NULL, 0);
1176 if (grep_object(&opt, paths, real_obj, list.objects[i].name))