4 * Copyright (c) 2006 Junio C Hamano
11 #include "tree-walk.h"
19 * git grep pathspecs are somewhat different from diff-tree pathspecs;
20 * pathname wildcards are allowed.
22 static int pathspec_matches(const char **paths, const char *name)
25 if (!paths || !*paths)
27 namelen = strlen(name);
28 for (i = 0; paths[i]; i++) {
29 const char *match = paths[i];
30 int matchlen = strlen(match);
31 const char *cp, *meta;
34 ((matchlen <= namelen) &&
35 !strncmp(name, match, matchlen) &&
36 (match[matchlen-1] == '/' ||
37 name[matchlen] == '\0' || name[matchlen] == '/')))
39 if (!fnmatch(match, name, 0))
41 if (name[namelen-1] != '/')
44 /* We are being asked if the directory ("name") is worth
47 * Find the longest leading directory name that does
48 * not have metacharacter in the pathspec; the name
49 * we are looking at must overlap with that directory.
51 for (cp = match, meta = NULL; cp - match < matchlen; cp++) {
53 if (ch == '*' || ch == '[' || ch == '?') {
59 meta = cp; /* fully literal */
61 if (namelen <= meta - match) {
62 /* Looking at "Documentation/" and
63 * the pattern says "Documentation/howto/", or
64 * "Documentation/diff*.txt". The name we
65 * have should match prefix.
67 if (!memcmp(match, name, namelen))
72 if (meta - match < namelen) {
73 /* Looking at "Documentation/howto/" and
74 * the pattern says "Documentation/h*";
75 * match up to "Do.../h"; this avoids descending
76 * into "Documentation/technical/".
78 if (!memcmp(match, name, meta - match))
86 static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1, const char *name, int tree_name_len)
94 data = read_sha1_file(sha1, type, &size);
96 error("'%s': unable to read %s", name, sha1_to_hex(sha1));
99 if (opt->relative && opt->prefix_length) {
100 static char name_buf[PATH_MAX];
102 int name_len = strlen(name) - opt->prefix_length + 1;
105 name += opt->prefix_length;
107 if (ARRAY_SIZE(name_buf) <= name_len)
108 cp = to_free = xmalloc(name_len);
111 memcpy(cp, name, tree_name_len);
112 strcpy(cp + tree_name_len,
113 name + tree_name_len + opt->prefix_length);
117 hit = grep_buffer(opt, name, data, size);
123 static int grep_file(struct grep_opt *opt, const char *filename)
128 if (lstat(filename, &st) < 0) {
131 error("'%s': %s", filename, strerror(errno));
135 return 0; /* empty file -- no grep hit */
136 if (!S_ISREG(st.st_mode))
138 i = open(filename, O_RDONLY);
141 data = xmalloc(st.st_size + 1);
142 if (st.st_size != xread(i, data, st.st_size)) {
143 error("'%s': short read %s", filename, strerror(errno));
149 if (opt->relative && opt->prefix_length)
150 filename += opt->prefix_length;
151 i = grep_buffer(opt, filename, data, st.st_size);
156 static int exec_grep(int argc, const char **argv)
166 execvp("grep", (char **) argv);
169 while (waitpid(pid, &status, 0) < 0) {
174 if (WIFEXITED(status)) {
175 if (!WEXITSTATUS(status))
184 #define push_arg(a) do { \
185 if (nr < MAXARGS) argv[nr++] = (a); \
186 else die("maximum number of args exceeded"); \
189 static int external_grep(struct grep_opt *opt, const char **paths, int cached)
191 int i, nr, argc, hit, len, status;
192 const char *argv[MAXARGS+1];
193 char randarg[ARGBUF];
194 char *argptr = randarg;
197 if (opt->extended || (opt->relative && opt->prefix_length))
207 if (opt->regflags & REG_EXTENDED)
209 if (opt->regflags & REG_ICASE)
211 if (opt->word_regexp)
215 if (opt->unmatch_name_only)
219 if (opt->post_context || opt->pre_context) {
220 if (opt->post_context != opt->pre_context) {
221 if (opt->pre_context) {
223 len += snprintf(argptr, sizeof(randarg)-len,
224 "%u", opt->pre_context);
225 if (sizeof(randarg) <= len)
226 die("maximum length of args exceeded");
230 if (opt->post_context) {
232 len += snprintf(argptr, sizeof(randarg)-len,
233 "%u", opt->post_context);
234 if (sizeof(randarg) <= len)
235 die("maximum length of args exceeded");
242 len += snprintf(argptr, sizeof(randarg)-len,
243 "%u", opt->post_context);
244 if (sizeof(randarg) <= len)
245 die("maximum length of args exceeded");
250 for (p = opt->pattern_list; p; p = p->next) {
252 push_arg(p->pattern);
256 * To make sure we get the header printed out when we want it,
257 * add /dev/null to the paths to grep. This is unnecessary
258 * (and wrong) with "-l" or "-L", which always print out the
261 * GNU grep has "-H", but this is portable.
263 if (!opt->name_only && !opt->unmatch_name_only)
264 push_arg("/dev/null");
268 for (i = 0; i < active_nr; i++) {
269 struct cache_entry *ce = active_cache[i];
271 if (ce_stage(ce) || !S_ISREG(ntohl(ce->ce_mode)))
273 if (!pathspec_matches(paths, ce->name))
276 if (name[0] == '-') {
277 int len = ce_namelen(ce);
278 name = xmalloc(len + 3);
279 memcpy(name, "./", 2);
280 memcpy(name + 2, ce->name, len + 1);
285 status = exec_grep(argc, argv);
291 status = exec_grep(argc, argv);
298 static int grep_cache(struct grep_opt *opt, const char **paths, int cached)
306 * Use the external "grep" command for the case where
307 * we grep through the checked-out files. It tends to
308 * be a lot more optimized
311 hit = external_grep(opt, paths, cached);
317 for (nr = 0; nr < active_nr; nr++) {
318 struct cache_entry *ce = active_cache[nr];
319 if (ce_stage(ce) || !S_ISREG(ntohl(ce->ce_mode)))
321 if (!pathspec_matches(paths, ce->name))
324 hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
326 hit |= grep_file(opt, ce->name);
331 static int grep_tree(struct grep_opt *opt, const char **paths,
332 struct tree_desc *tree,
333 const char *tree_name, const char *base)
337 struct name_entry entry;
339 int tn_len = strlen(tree_name);
340 char *path_buf = xmalloc(PATH_MAX + tn_len + 100);
343 tn_len = sprintf(path_buf, "%s:", tree_name);
344 down = path_buf + tn_len;
351 len = strlen(path_buf);
353 while (tree_entry(tree, &entry)) {
354 strcpy(path_buf + len, entry.path);
356 if (S_ISDIR(entry.mode))
357 /* Match "abc/" against pathspec to
358 * decide if we want to descend into "abc"
361 strcpy(path_buf + len + entry.pathlen, "/");
363 if (!pathspec_matches(paths, down))
365 else if (S_ISREG(entry.mode))
366 hit |= grep_sha1(opt, entry.sha1, path_buf, tn_len);
367 else if (S_ISDIR(entry.mode)) {
369 struct tree_desc sub;
371 data = read_sha1_file(entry.sha1, type, &sub.size);
373 die("unable to read tree (%s)",
374 sha1_to_hex(entry.sha1));
376 hit |= grep_tree(opt, paths, &sub, tree_name, down);
383 static int grep_object(struct grep_opt *opt, const char **paths,
384 struct object *obj, const char *name)
386 if (obj->type == OBJ_BLOB)
387 return grep_sha1(opt, obj->sha1, name, 0);
388 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
389 struct tree_desc tree;
392 data = read_object_with_reference(obj->sha1, tree_type,
395 die("unable to read tree (%s)", sha1_to_hex(obj->sha1));
397 hit = grep_tree(opt, paths, &tree, name, "");
401 die("unable to grep from object of type %s", typename(obj->type));
404 static const char builtin_grep_usage[] =
405 "git-grep <option>* <rev>* [-e] <pattern> [<path>...]";
407 static const char emsg_invalid_context_len[] =
408 "%s: invalid context length argument";
409 static const char emsg_missing_context_len[] =
410 "missing context length argument";
411 static const char emsg_missing_argument[] =
412 "option requires an argument -%s";
414 int cmd_grep(int argc, const char **argv, const char *prefix)
418 int seen_dashdash = 0;
420 struct object_array list = { 0, 0, NULL };
421 const char **paths = NULL;
424 memset(&opt, 0, sizeof(opt));
425 opt.prefix_length = (prefix && *prefix) ? strlen(prefix) : 0;
428 opt.pattern_tail = &opt.pattern_list;
429 opt.regflags = REG_NEWLINE;
432 * If there is no -- then the paths must exist in the working
433 * tree. If there is no explicit pattern specified with -e or
434 * -f, we take the first unrecognized non option to be the
435 * pattern, but then what follows it must be zero or more
436 * valid refs up to the -- (if exists), and then existing
437 * paths. If there is an explicit pattern, then the first
438 * unrecognized non option is the beginning of the refs list
439 * that continues up to the -- (if exists), and then paths.
443 const char *arg = argv[1];
445 if (!strcmp("--cached", arg)) {
449 if (!strcmp("-a", arg) ||
450 !strcmp("--text", arg)) {
451 opt.binary = GREP_BINARY_TEXT;
454 if (!strcmp("-i", arg) ||
455 !strcmp("--ignore-case", arg)) {
456 opt.regflags |= REG_ICASE;
459 if (!strcmp("-I", arg)) {
460 opt.binary = GREP_BINARY_NOMATCH;
463 if (!strcmp("-v", arg) ||
464 !strcmp("--invert-match", arg)) {
468 if (!strcmp("-E", arg) ||
469 !strcmp("--extended-regexp", arg)) {
470 opt.regflags |= REG_EXTENDED;
473 if (!strcmp("-F", arg) ||
474 !strcmp("--fixed-strings", arg)) {
478 if (!strcmp("-G", arg) ||
479 !strcmp("--basic-regexp", arg)) {
480 opt.regflags &= ~REG_EXTENDED;
483 if (!strcmp("-n", arg)) {
487 if (!strcmp("-h", arg)) {
491 if (!strcmp("-H", arg)) {
495 if (!strcmp("-l", arg) ||
496 !strcmp("--files-with-matches", arg)) {
500 if (!strcmp("-L", arg) ||
501 !strcmp("--files-without-match", arg)) {
502 opt.unmatch_name_only = 1;
505 if (!strcmp("-c", arg) ||
506 !strcmp("--count", arg)) {
510 if (!strcmp("-w", arg) ||
511 !strcmp("--word-regexp", arg)) {
515 if (!strncmp("-A", arg, 2) ||
516 !strncmp("-B", arg, 2) ||
517 !strncmp("-C", arg, 2) ||
518 (arg[0] == '-' && '1' <= arg[1] && arg[1] <= '9')) {
522 case 'A': case 'B': case 'C':
525 die(emsg_missing_context_len);
536 if (sscanf(scan, "%u", &num) != 1)
537 die(emsg_invalid_context_len, scan);
540 opt.post_context = num;
544 opt.post_context = num;
546 opt.pre_context = num;
551 if (!strcmp("-f", arg)) {
556 die(emsg_missing_argument, arg);
557 patterns = fopen(argv[1], "r");
559 die("'%s': %s", argv[1], strerror(errno));
560 while (fgets(buf, sizeof(buf), patterns)) {
561 int len = strlen(buf);
562 if (buf[len-1] == '\n')
564 /* ignore empty line like grep does */
567 append_grep_pattern(&opt, xstrdup(buf),
576 if (!strcmp("--not", arg)) {
577 append_grep_pattern(&opt, arg, "command line", 0,
581 if (!strcmp("--and", arg)) {
582 append_grep_pattern(&opt, arg, "command line", 0,
586 if (!strcmp("--or", arg))
587 continue; /* no-op */
588 if (!strcmp("(", arg)) {
589 append_grep_pattern(&opt, arg, "command line", 0,
593 if (!strcmp(")", arg)) {
594 append_grep_pattern(&opt, arg, "command line", 0,
598 if (!strcmp("-e", arg)) {
600 append_grep_pattern(&opt, argv[1],
607 die(emsg_missing_argument, arg);
609 if (!strcmp("--full-name", arg)) {
613 if (!strcmp("--", arg)) {
614 /* later processing wants to have this at argv[1] */
620 usage(builtin_grep_usage);
622 /* First unrecognized non-option token */
623 if (!opt.pattern_list) {
624 append_grep_pattern(&opt, arg, "command line", 0,
629 /* We are looking at the first path or rev;
630 * it is found at argv[1] after leaving the
638 if (!opt.pattern_list)
639 die("no pattern given.");
640 if ((opt.regflags != REG_NEWLINE) && opt.fixed)
641 die("cannot mix --fixed-strings and regexp");
642 compile_grep_patterns(&opt);
644 /* Check revs and then paths */
645 for (i = 1; i < argc; i++) {
646 const char *arg = argv[i];
647 unsigned char sha1[20];
649 if (!get_sha1(arg, sha1)) {
650 struct object *object = parse_object(sha1);
652 die("bad object %s", arg);
653 add_object_array(object, arg, &list);
656 if (!strcmp(arg, "--")) {
663 /* The rest are paths */
664 if (!seen_dashdash) {
666 for (j = i; j < argc; j++)
667 verify_filename(prefix, argv[j]);
671 paths = get_pathspec(prefix, argv + i);
672 if (opt.prefix_length && opt.relative) {
673 /* Make sure we do not get outside of paths */
674 for (i = 0; paths[i]; i++)
675 if (strncmp(prefix, paths[i], opt.prefix_length))
676 die("git-grep: cannot generate relative filenames containing '..'");
680 paths = xcalloc(2, sizeof(const char *));
686 return !grep_cache(&opt, paths, cached);
689 die("both --cached and trees are given.");
691 for (i = 0; i < list.nr; i++) {
692 struct object *real_obj;
693 real_obj = deref_tag(list.objects[i].item, NULL, 0);
694 if (grep_object(&opt, paths, real_obj, list.objects[i].name))