setup.h: move declarations for setup.c functions from cache.h
[git.git] / builtin / grep.c
blobb8ebf014f403de391084d96c85041b729a6ae861
1 /*
2 * Builtin "git grep"
4 * Copyright (c) 2006 Junio C Hamano
5 */
6 #include "cache.h"
7 #include "alloc.h"
8 #include "gettext.h"
9 #include "hex.h"
10 #include "repository.h"
11 #include "config.h"
12 #include "blob.h"
13 #include "tree.h"
14 #include "commit.h"
15 #include "tag.h"
16 #include "tree-walk.h"
17 #include "builtin.h"
18 #include "parse-options.h"
19 #include "string-list.h"
20 #include "run-command.h"
21 #include "userdiff.h"
22 #include "grep.h"
23 #include "quote.h"
24 #include "dir.h"
25 #include "pathspec.h"
26 #include "setup.h"
27 #include "submodule.h"
28 #include "submodule-config.h"
29 #include "object-store.h"
30 #include "packfile.h"
32 static const char *grep_prefix;
34 static char const * const grep_usage[] = {
35 N_("git grep [<options>] [-e] <pattern> [<rev>...] [[--] <path>...]"),
36 NULL
39 static int recurse_submodules;
41 static int num_threads;
43 static pthread_t *threads;
45 /* We use one producer thread and THREADS consumer
46 * threads. The producer adds struct work_items to 'todo' and the
47 * consumers pick work items from the same array.
49 struct work_item {
50 struct grep_source source;
51 char done;
52 struct strbuf out;
55 /* In the range [todo_done, todo_start) in 'todo' we have work_items
56 * that have been or are processed by a consumer thread. We haven't
57 * written the result for these to stdout yet.
59 * The work_items in [todo_start, todo_end) are waiting to be picked
60 * up by a consumer thread.
62 * The ranges are modulo TODO_SIZE.
64 #define TODO_SIZE 128
65 static struct work_item todo[TODO_SIZE];
66 static int todo_start;
67 static int todo_end;
68 static int todo_done;
70 /* Has all work items been added? */
71 static int all_work_added;
73 static struct repository **repos_to_free;
74 static size_t repos_to_free_nr, repos_to_free_alloc;
76 /* This lock protects all the variables above. */
77 static pthread_mutex_t grep_mutex;
79 static inline void grep_lock(void)
81 pthread_mutex_lock(&grep_mutex);
84 static inline void grep_unlock(void)
86 pthread_mutex_unlock(&grep_mutex);
89 /* Signalled when a new work_item is added to todo. */
90 static pthread_cond_t cond_add;
92 /* Signalled when the result from one work_item is written to
93 * stdout.
95 static pthread_cond_t cond_write;
97 /* Signalled when we are finished with everything. */
98 static pthread_cond_t cond_result;
100 static int skip_first_line;
102 static void add_work(struct grep_opt *opt, struct grep_source *gs)
104 if (opt->binary != GREP_BINARY_TEXT)
105 grep_source_load_driver(gs, opt->repo->index);
107 grep_lock();
109 while ((todo_end+1) % ARRAY_SIZE(todo) == todo_done) {
110 pthread_cond_wait(&cond_write, &grep_mutex);
113 todo[todo_end].source = *gs;
114 todo[todo_end].done = 0;
115 strbuf_reset(&todo[todo_end].out);
116 todo_end = (todo_end + 1) % ARRAY_SIZE(todo);
118 pthread_cond_signal(&cond_add);
119 grep_unlock();
122 static struct work_item *get_work(void)
124 struct work_item *ret;
126 grep_lock();
127 while (todo_start == todo_end && !all_work_added) {
128 pthread_cond_wait(&cond_add, &grep_mutex);
131 if (todo_start == todo_end && all_work_added) {
132 ret = NULL;
133 } else {
134 ret = &todo[todo_start];
135 todo_start = (todo_start + 1) % ARRAY_SIZE(todo);
137 grep_unlock();
138 return ret;
141 static void work_done(struct work_item *w)
143 int old_done;
145 grep_lock();
146 w->done = 1;
147 old_done = todo_done;
148 for(; todo[todo_done].done && todo_done != todo_start;
149 todo_done = (todo_done+1) % ARRAY_SIZE(todo)) {
150 w = &todo[todo_done];
151 if (w->out.len) {
152 const char *p = w->out.buf;
153 size_t len = w->out.len;
155 /* Skip the leading hunk mark of the first file. */
156 if (skip_first_line) {
157 while (len) {
158 len--;
159 if (*p++ == '\n')
160 break;
162 skip_first_line = 0;
165 write_or_die(1, p, len);
167 grep_source_clear(&w->source);
170 if (old_done != todo_done)
171 pthread_cond_signal(&cond_write);
173 if (all_work_added && todo_done == todo_end)
174 pthread_cond_signal(&cond_result);
176 grep_unlock();
179 static void free_repos(void)
181 int i;
183 for (i = 0; i < repos_to_free_nr; i++) {
184 repo_clear(repos_to_free[i]);
185 free(repos_to_free[i]);
187 FREE_AND_NULL(repos_to_free);
188 repos_to_free_nr = 0;
189 repos_to_free_alloc = 0;
192 static void *run(void *arg)
194 int hit = 0;
195 struct grep_opt *opt = arg;
197 while (1) {
198 struct work_item *w = get_work();
199 if (!w)
200 break;
202 opt->output_priv = w;
203 hit |= grep_source(opt, &w->source);
204 grep_source_clear_data(&w->source);
205 work_done(w);
207 free_grep_patterns(opt);
208 free(opt);
210 return (void*) (intptr_t) hit;
213 static void strbuf_out(struct grep_opt *opt, const void *buf, size_t size)
215 struct work_item *w = opt->output_priv;
216 strbuf_add(&w->out, buf, size);
219 static void start_threads(struct grep_opt *opt)
221 int i;
223 pthread_mutex_init(&grep_mutex, NULL);
224 pthread_mutex_init(&grep_attr_mutex, NULL);
225 pthread_cond_init(&cond_add, NULL);
226 pthread_cond_init(&cond_write, NULL);
227 pthread_cond_init(&cond_result, NULL);
228 grep_use_locks = 1;
229 enable_obj_read_lock();
231 for (i = 0; i < ARRAY_SIZE(todo); i++) {
232 strbuf_init(&todo[i].out, 0);
235 CALLOC_ARRAY(threads, num_threads);
236 for (i = 0; i < num_threads; i++) {
237 int err;
238 struct grep_opt *o = grep_opt_dup(opt);
239 o->output = strbuf_out;
240 compile_grep_patterns(o);
241 err = pthread_create(&threads[i], NULL, run, o);
243 if (err)
244 die(_("grep: failed to create thread: %s"),
245 strerror(err));
249 static int wait_all(void)
251 int hit = 0;
252 int i;
254 if (!HAVE_THREADS)
255 BUG("Never call this function unless you have started threads");
257 grep_lock();
258 all_work_added = 1;
260 /* Wait until all work is done. */
261 while (todo_done != todo_end)
262 pthread_cond_wait(&cond_result, &grep_mutex);
264 /* Wake up all the consumer threads so they can see that there
265 * is no more work to do.
267 pthread_cond_broadcast(&cond_add);
268 grep_unlock();
270 for (i = 0; i < num_threads; i++) {
271 void *h;
272 pthread_join(threads[i], &h);
273 hit |= (int) (intptr_t) h;
276 free(threads);
278 pthread_mutex_destroy(&grep_mutex);
279 pthread_mutex_destroy(&grep_attr_mutex);
280 pthread_cond_destroy(&cond_add);
281 pthread_cond_destroy(&cond_write);
282 pthread_cond_destroy(&cond_result);
283 grep_use_locks = 0;
284 disable_obj_read_lock();
286 return hit;
289 static int grep_cmd_config(const char *var, const char *value, void *cb)
291 int st = grep_config(var, value, cb);
292 if (git_color_default_config(var, value, NULL) < 0)
293 st = -1;
295 if (!strcmp(var, "grep.threads")) {
296 num_threads = git_config_int(var, value);
297 if (num_threads < 0)
298 die(_("invalid number of threads specified (%d) for %s"),
299 num_threads, var);
300 else if (!HAVE_THREADS && num_threads > 1) {
302 * TRANSLATORS: %s is the configuration
303 * variable for tweaking threads, currently
304 * grep.threads
306 warning(_("no threads support, ignoring %s"), var);
307 num_threads = 1;
311 if (!strcmp(var, "submodule.recurse"))
312 recurse_submodules = git_config_bool(var, value);
314 return st;
317 static void grep_source_name(struct grep_opt *opt, const char *filename,
318 int tree_name_len, struct strbuf *out)
320 strbuf_reset(out);
322 if (opt->null_following_name) {
323 if (opt->relative && grep_prefix) {
324 struct strbuf rel_buf = STRBUF_INIT;
325 const char *rel_name =
326 relative_path(filename + tree_name_len,
327 grep_prefix, &rel_buf);
329 if (tree_name_len)
330 strbuf_add(out, filename, tree_name_len);
332 strbuf_addstr(out, rel_name);
333 strbuf_release(&rel_buf);
334 } else {
335 strbuf_addstr(out, filename);
337 return;
340 if (opt->relative && grep_prefix)
341 quote_path(filename + tree_name_len, grep_prefix, out, 0);
342 else
343 quote_c_style(filename + tree_name_len, out, NULL, 0);
345 if (tree_name_len)
346 strbuf_insert(out, 0, filename, tree_name_len);
349 static int grep_oid(struct grep_opt *opt, const struct object_id *oid,
350 const char *filename, int tree_name_len,
351 const char *path)
353 struct strbuf pathbuf = STRBUF_INIT;
354 struct grep_source gs;
356 grep_source_name(opt, filename, tree_name_len, &pathbuf);
357 grep_source_init_oid(&gs, pathbuf.buf, path, oid, opt->repo);
358 strbuf_release(&pathbuf);
360 if (num_threads > 1) {
362 * add_work() copies gs and thus assumes ownership of
363 * its fields, so do not call grep_source_clear()
365 add_work(opt, &gs);
366 return 0;
367 } else {
368 int hit;
370 hit = grep_source(opt, &gs);
372 grep_source_clear(&gs);
373 return hit;
377 static int grep_file(struct grep_opt *opt, const char *filename)
379 struct strbuf buf = STRBUF_INIT;
380 struct grep_source gs;
382 grep_source_name(opt, filename, 0, &buf);
383 grep_source_init_file(&gs, buf.buf, filename);
384 strbuf_release(&buf);
386 if (num_threads > 1) {
388 * add_work() copies gs and thus assumes ownership of
389 * its fields, so do not call grep_source_clear()
391 add_work(opt, &gs);
392 return 0;
393 } else {
394 int hit;
396 hit = grep_source(opt, &gs);
398 grep_source_clear(&gs);
399 return hit;
403 static void append_path(struct grep_opt *opt, const void *data, size_t len)
405 struct string_list *path_list = opt->output_priv;
407 if (len == 1 && *(const char *)data == '\0')
408 return;
409 string_list_append_nodup(path_list, xstrndup(data, len));
412 static void run_pager(struct grep_opt *opt, const char *prefix)
414 struct string_list *path_list = opt->output_priv;
415 struct child_process child = CHILD_PROCESS_INIT;
416 int i, status;
418 for (i = 0; i < path_list->nr; i++)
419 strvec_push(&child.args, path_list->items[i].string);
420 child.dir = prefix;
421 child.use_shell = 1;
423 status = run_command(&child);
424 if (status)
425 exit(status);
428 static int grep_cache(struct grep_opt *opt,
429 const struct pathspec *pathspec, int cached);
430 static int grep_tree(struct grep_opt *opt, const struct pathspec *pathspec,
431 struct tree_desc *tree, struct strbuf *base, int tn_len,
432 int check_attr);
434 static int grep_submodule(struct grep_opt *opt,
435 const struct pathspec *pathspec,
436 const struct object_id *oid,
437 const char *filename, const char *path, int cached)
439 struct repository *subrepo;
440 struct repository *superproject = opt->repo;
441 struct grep_opt subopt;
442 int hit = 0;
444 if (!is_submodule_active(superproject, path))
445 return 0;
447 subrepo = xmalloc(sizeof(*subrepo));
448 if (repo_submodule_init(subrepo, superproject, path, null_oid())) {
449 free(subrepo);
450 return 0;
452 ALLOC_GROW(repos_to_free, repos_to_free_nr + 1, repos_to_free_alloc);
453 repos_to_free[repos_to_free_nr++] = subrepo;
456 * NEEDSWORK: repo_read_gitmodules() might call
457 * add_to_alternates_memory() via config_from_gitmodules(). This
458 * operation causes a race condition with concurrent object readings
459 * performed by the worker threads. That's why we need obj_read_lock()
460 * here. It should be removed once it's no longer necessary to add the
461 * subrepo's odbs to the in-memory alternates list.
463 obj_read_lock();
466 * NEEDSWORK: when reading a submodule, the sparsity settings in the
467 * superproject are incorrectly forgotten or misused. For example:
469 * 1. "command_requires_full_index"
470 * When this setting is turned on for `grep`, only the superproject
471 * knows it. All the submodules are read with their own configs
472 * and get prepare_repo_settings()'d. Therefore, these submodules
473 * "forget" the sparse-index feature switch. As a result, the index
474 * of these submodules are expanded unexpectedly.
476 * 2. "core_apply_sparse_checkout"
477 * When running `grep` in the superproject, this setting is
478 * populated using the superproject's configs. However, once
479 * initialized, this config is globally accessible and is read by
480 * prepare_repo_settings() for the submodules. For instance, if a
481 * submodule is using a sparse-checkout, however, the superproject
482 * is not, the result is that the config from the superproject will
483 * dictate the behavior for the submodule, making it "forget" its
484 * sparse-checkout state.
486 * 3. "core_sparse_checkout_cone"
487 * ditto.
489 * Note that this list is not exhaustive.
491 repo_read_gitmodules(subrepo, 0);
494 * All code paths tested by test code no longer need submodule ODBs to
495 * be added as alternates, but add it to the list just in case.
496 * Submodule ODBs added through add_submodule_odb_by_path() will be
497 * lazily registered as alternates when needed (and except in an
498 * unexpected code interaction, it won't be needed).
500 add_submodule_odb_by_path(subrepo->objects->odb->path);
501 obj_read_unlock();
503 memcpy(&subopt, opt, sizeof(subopt));
504 subopt.repo = subrepo;
506 if (oid) {
507 enum object_type object_type;
508 struct tree_desc tree;
509 void *data;
510 unsigned long size;
511 struct strbuf base = STRBUF_INIT;
513 obj_read_lock();
514 object_type = oid_object_info(subrepo, oid, NULL);
515 obj_read_unlock();
516 data = read_object_with_reference(subrepo,
517 oid, OBJ_TREE,
518 &size, NULL);
519 if (!data)
520 die(_("unable to read tree (%s)"), oid_to_hex(oid));
522 strbuf_addstr(&base, filename);
523 strbuf_addch(&base, '/');
525 init_tree_desc(&tree, data, size);
526 hit = grep_tree(&subopt, pathspec, &tree, &base, base.len,
527 object_type == OBJ_COMMIT);
528 strbuf_release(&base);
529 free(data);
530 } else {
531 hit = grep_cache(&subopt, pathspec, cached);
534 return hit;
537 static int grep_cache(struct grep_opt *opt,
538 const struct pathspec *pathspec, int cached)
540 struct repository *repo = opt->repo;
541 int hit = 0;
542 int nr;
543 struct strbuf name = STRBUF_INIT;
544 int name_base_len = 0;
545 if (repo->submodule_prefix) {
546 name_base_len = strlen(repo->submodule_prefix);
547 strbuf_addstr(&name, repo->submodule_prefix);
550 if (repo_read_index(repo) < 0)
551 die(_("index file corrupt"));
553 for (nr = 0; nr < repo->index->cache_nr; nr++) {
554 const struct cache_entry *ce = repo->index->cache[nr];
556 if (!cached && ce_skip_worktree(ce))
557 continue;
559 strbuf_setlen(&name, name_base_len);
560 strbuf_addstr(&name, ce->name);
561 if (S_ISSPARSEDIR(ce->ce_mode)) {
562 enum object_type type;
563 struct tree_desc tree;
564 void *data;
565 unsigned long size;
567 data = read_object_file(&ce->oid, &type, &size);
568 init_tree_desc(&tree, data, size);
570 hit |= grep_tree(opt, pathspec, &tree, &name, 0, 0);
571 strbuf_setlen(&name, name_base_len);
572 strbuf_addstr(&name, ce->name);
573 free(data);
574 } else if (S_ISREG(ce->ce_mode) &&
575 match_pathspec(repo->index, pathspec, name.buf, name.len, 0, NULL,
576 S_ISDIR(ce->ce_mode) ||
577 S_ISGITLINK(ce->ce_mode))) {
579 * If CE_VALID is on, we assume worktree file and its
580 * cache entry are identical, even if worktree file has
581 * been modified, so use cache version instead
583 if (cached || (ce->ce_flags & CE_VALID)) {
584 if (ce_stage(ce) || ce_intent_to_add(ce))
585 continue;
586 hit |= grep_oid(opt, &ce->oid, name.buf,
587 0, name.buf);
588 } else {
589 hit |= grep_file(opt, name.buf);
591 } else if (recurse_submodules && S_ISGITLINK(ce->ce_mode) &&
592 submodule_path_match(repo->index, pathspec, name.buf, NULL)) {
593 hit |= grep_submodule(opt, pathspec, NULL, ce->name,
594 ce->name, cached);
595 } else {
596 continue;
599 if (ce_stage(ce)) {
600 do {
601 nr++;
602 } while (nr < repo->index->cache_nr &&
603 !strcmp(ce->name, repo->index->cache[nr]->name));
604 nr--; /* compensate for loop control */
606 if (hit && opt->status_only)
607 break;
610 strbuf_release(&name);
611 return hit;
614 static int grep_tree(struct grep_opt *opt, const struct pathspec *pathspec,
615 struct tree_desc *tree, struct strbuf *base, int tn_len,
616 int check_attr)
618 struct repository *repo = opt->repo;
619 int hit = 0;
620 enum interesting match = entry_not_interesting;
621 struct name_entry entry;
622 int old_baselen = base->len;
623 struct strbuf name = STRBUF_INIT;
624 int name_base_len = 0;
625 if (repo->submodule_prefix) {
626 strbuf_addstr(&name, repo->submodule_prefix);
627 name_base_len = name.len;
630 while (tree_entry(tree, &entry)) {
631 int te_len = tree_entry_len(&entry);
633 if (match != all_entries_interesting) {
634 strbuf_addstr(&name, base->buf + tn_len);
635 match = tree_entry_interesting(repo->index,
636 &entry, &name,
637 0, pathspec);
638 strbuf_setlen(&name, name_base_len);
640 if (match == all_entries_not_interesting)
641 break;
642 if (match == entry_not_interesting)
643 continue;
646 strbuf_add(base, entry.path, te_len);
648 if (S_ISREG(entry.mode)) {
649 hit |= grep_oid(opt, &entry.oid, base->buf, tn_len,
650 check_attr ? base->buf + tn_len : NULL);
651 } else if (S_ISDIR(entry.mode)) {
652 enum object_type type;
653 struct tree_desc sub;
654 void *data;
655 unsigned long size;
657 data = read_object_file(&entry.oid, &type, &size);
658 if (!data)
659 die(_("unable to read tree (%s)"),
660 oid_to_hex(&entry.oid));
662 strbuf_addch(base, '/');
663 init_tree_desc(&sub, data, size);
664 hit |= grep_tree(opt, pathspec, &sub, base, tn_len,
665 check_attr);
666 free(data);
667 } else if (recurse_submodules && S_ISGITLINK(entry.mode)) {
668 hit |= grep_submodule(opt, pathspec, &entry.oid,
669 base->buf, base->buf + tn_len,
670 1); /* ignored */
673 strbuf_setlen(base, old_baselen);
675 if (hit && opt->status_only)
676 break;
679 strbuf_release(&name);
680 return hit;
683 static int grep_object(struct grep_opt *opt, const struct pathspec *pathspec,
684 struct object *obj, const char *name, const char *path)
686 if (obj->type == OBJ_BLOB)
687 return grep_oid(opt, &obj->oid, name, 0, path);
688 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
689 struct tree_desc tree;
690 void *data;
691 unsigned long size;
692 struct strbuf base;
693 int hit, len;
695 data = read_object_with_reference(opt->repo,
696 &obj->oid, OBJ_TREE,
697 &size, NULL);
698 if (!data)
699 die(_("unable to read tree (%s)"), oid_to_hex(&obj->oid));
701 len = name ? strlen(name) : 0;
702 strbuf_init(&base, PATH_MAX + len + 1);
703 if (len) {
704 strbuf_add(&base, name, len);
705 strbuf_addch(&base, ':');
707 init_tree_desc(&tree, data, size);
708 hit = grep_tree(opt, pathspec, &tree, &base, base.len,
709 obj->type == OBJ_COMMIT);
710 strbuf_release(&base);
711 free(data);
712 return hit;
714 die(_("unable to grep from object of type %s"), type_name(obj->type));
717 static int grep_objects(struct grep_opt *opt, const struct pathspec *pathspec,
718 const struct object_array *list)
720 unsigned int i;
721 int hit = 0;
722 const unsigned int nr = list->nr;
724 for (i = 0; i < nr; i++) {
725 struct object *real_obj;
727 obj_read_lock();
728 real_obj = deref_tag(opt->repo, list->objects[i].item,
729 NULL, 0);
730 obj_read_unlock();
732 if (!real_obj) {
733 char hex[GIT_MAX_HEXSZ + 1];
734 const char *name = list->objects[i].name;
736 if (!name) {
737 oid_to_hex_r(hex, &list->objects[i].item->oid);
738 name = hex;
740 die(_("invalid object '%s' given."), name);
743 /* load the gitmodules file for this rev */
744 if (recurse_submodules) {
745 submodule_free(opt->repo);
746 obj_read_lock();
747 gitmodules_config_oid(&real_obj->oid);
748 obj_read_unlock();
750 if (grep_object(opt, pathspec, real_obj, list->objects[i].name,
751 list->objects[i].path)) {
752 hit = 1;
753 if (opt->status_only)
754 break;
757 return hit;
760 static int grep_directory(struct grep_opt *opt, const struct pathspec *pathspec,
761 int exc_std, int use_index)
763 struct dir_struct dir = DIR_INIT;
764 int i, hit = 0;
766 if (!use_index)
767 dir.flags |= DIR_NO_GITLINKS;
768 if (exc_std)
769 setup_standard_excludes(&dir);
771 fill_directory(&dir, opt->repo->index, pathspec);
772 for (i = 0; i < dir.nr; i++) {
773 hit |= grep_file(opt, dir.entries[i]->name);
774 if (hit && opt->status_only)
775 break;
777 dir_clear(&dir);
778 return hit;
781 static int context_callback(const struct option *opt, const char *arg,
782 int unset)
784 struct grep_opt *grep_opt = opt->value;
785 int value;
786 const char *endp;
788 if (unset) {
789 grep_opt->pre_context = grep_opt->post_context = 0;
790 return 0;
792 value = strtol(arg, (char **)&endp, 10);
793 if (*endp) {
794 return error(_("switch `%c' expects a numerical value"),
795 opt->short_name);
797 grep_opt->pre_context = grep_opt->post_context = value;
798 return 0;
801 static int file_callback(const struct option *opt, const char *arg, int unset)
803 struct grep_opt *grep_opt = opt->value;
804 int from_stdin;
805 FILE *patterns;
806 int lno = 0;
807 struct strbuf sb = STRBUF_INIT;
809 BUG_ON_OPT_NEG(unset);
811 from_stdin = !strcmp(arg, "-");
812 patterns = from_stdin ? stdin : fopen(arg, "r");
813 if (!patterns)
814 die_errno(_("cannot open '%s'"), arg);
815 while (strbuf_getline(&sb, patterns) == 0) {
816 /* ignore empty line like grep does */
817 if (sb.len == 0)
818 continue;
820 append_grep_pat(grep_opt, sb.buf, sb.len, arg, ++lno,
821 GREP_PATTERN);
823 if (!from_stdin)
824 fclose(patterns);
825 strbuf_release(&sb);
826 return 0;
829 static int not_callback(const struct option *opt, const char *arg, int unset)
831 struct grep_opt *grep_opt = opt->value;
832 BUG_ON_OPT_NEG(unset);
833 BUG_ON_OPT_ARG(arg);
834 append_grep_pattern(grep_opt, "--not", "command line", 0, GREP_NOT);
835 return 0;
838 static int and_callback(const struct option *opt, const char *arg, int unset)
840 struct grep_opt *grep_opt = opt->value;
841 BUG_ON_OPT_NEG(unset);
842 BUG_ON_OPT_ARG(arg);
843 append_grep_pattern(grep_opt, "--and", "command line", 0, GREP_AND);
844 return 0;
847 static int open_callback(const struct option *opt, const char *arg, int unset)
849 struct grep_opt *grep_opt = opt->value;
850 BUG_ON_OPT_NEG(unset);
851 BUG_ON_OPT_ARG(arg);
852 append_grep_pattern(grep_opt, "(", "command line", 0, GREP_OPEN_PAREN);
853 return 0;
856 static int close_callback(const struct option *opt, const char *arg, int unset)
858 struct grep_opt *grep_opt = opt->value;
859 BUG_ON_OPT_NEG(unset);
860 BUG_ON_OPT_ARG(arg);
861 append_grep_pattern(grep_opt, ")", "command line", 0, GREP_CLOSE_PAREN);
862 return 0;
865 static int pattern_callback(const struct option *opt, const char *arg,
866 int unset)
868 struct grep_opt *grep_opt = opt->value;
869 BUG_ON_OPT_NEG(unset);
870 append_grep_pattern(grep_opt, arg, "-e option", 0, GREP_PATTERN);
871 return 0;
874 int cmd_grep(int argc, const char **argv, const char *prefix)
876 int hit = 0;
877 int cached = 0, untracked = 0, opt_exclude = -1;
878 int seen_dashdash = 0;
879 int external_grep_allowed__ignored;
880 const char *show_in_pager = NULL, *default_pager = "dummy";
881 struct grep_opt opt;
882 struct object_array list = OBJECT_ARRAY_INIT;
883 struct pathspec pathspec;
884 struct string_list path_list = STRING_LIST_INIT_DUP;
885 int i;
886 int dummy;
887 int use_index = 1;
888 int allow_revs;
890 struct option options[] = {
891 OPT_BOOL(0, "cached", &cached,
892 N_("search in index instead of in the work tree")),
893 OPT_NEGBIT(0, "no-index", &use_index,
894 N_("find in contents not managed by git"), 1),
895 OPT_BOOL(0, "untracked", &untracked,
896 N_("search in both tracked and untracked files")),
897 OPT_SET_INT(0, "exclude-standard", &opt_exclude,
898 N_("ignore files specified via '.gitignore'"), 1),
899 OPT_BOOL(0, "recurse-submodules", &recurse_submodules,
900 N_("recursively search in each submodule")),
901 OPT_GROUP(""),
902 OPT_BOOL('v', "invert-match", &opt.invert,
903 N_("show non-matching lines")),
904 OPT_BOOL('i', "ignore-case", &opt.ignore_case,
905 N_("case insensitive matching")),
906 OPT_BOOL('w', "word-regexp", &opt.word_regexp,
907 N_("match patterns only at word boundaries")),
908 OPT_SET_INT('a', "text", &opt.binary,
909 N_("process binary files as text"), GREP_BINARY_TEXT),
910 OPT_SET_INT('I', NULL, &opt.binary,
911 N_("don't match patterns in binary files"),
912 GREP_BINARY_NOMATCH),
913 OPT_BOOL(0, "textconv", &opt.allow_textconv,
914 N_("process binary files with textconv filters")),
915 OPT_SET_INT('r', "recursive", &opt.max_depth,
916 N_("search in subdirectories (default)"), -1),
917 { OPTION_INTEGER, 0, "max-depth", &opt.max_depth, N_("depth"),
918 N_("descend at most <depth> levels"), PARSE_OPT_NONEG,
919 NULL, 1 },
920 OPT_GROUP(""),
921 OPT_SET_INT('E', "extended-regexp", &opt.pattern_type_option,
922 N_("use extended POSIX regular expressions"),
923 GREP_PATTERN_TYPE_ERE),
924 OPT_SET_INT('G', "basic-regexp", &opt.pattern_type_option,
925 N_("use basic POSIX regular expressions (default)"),
926 GREP_PATTERN_TYPE_BRE),
927 OPT_SET_INT('F', "fixed-strings", &opt.pattern_type_option,
928 N_("interpret patterns as fixed strings"),
929 GREP_PATTERN_TYPE_FIXED),
930 OPT_SET_INT('P', "perl-regexp", &opt.pattern_type_option,
931 N_("use Perl-compatible regular expressions"),
932 GREP_PATTERN_TYPE_PCRE),
933 OPT_GROUP(""),
934 OPT_BOOL('n', "line-number", &opt.linenum, N_("show line numbers")),
935 OPT_BOOL(0, "column", &opt.columnnum, N_("show column number of first match")),
936 OPT_NEGBIT('h', NULL, &opt.pathname, N_("don't show filenames"), 1),
937 OPT_BIT('H', NULL, &opt.pathname, N_("show filenames"), 1),
938 OPT_NEGBIT(0, "full-name", &opt.relative,
939 N_("show filenames relative to top directory"), 1),
940 OPT_BOOL('l', "files-with-matches", &opt.name_only,
941 N_("show only filenames instead of matching lines")),
942 OPT_BOOL(0, "name-only", &opt.name_only,
943 N_("synonym for --files-with-matches")),
944 OPT_BOOL('L', "files-without-match",
945 &opt.unmatch_name_only,
946 N_("show only the names of files without match")),
947 OPT_BOOL_F('z', "null", &opt.null_following_name,
948 N_("print NUL after filenames"),
949 PARSE_OPT_NOCOMPLETE),
950 OPT_BOOL('o', "only-matching", &opt.only_matching,
951 N_("show only matching parts of a line")),
952 OPT_BOOL('c', "count", &opt.count,
953 N_("show the number of matches instead of matching lines")),
954 OPT__COLOR(&opt.color, N_("highlight matches")),
955 OPT_BOOL(0, "break", &opt.file_break,
956 N_("print empty line between matches from different files")),
957 OPT_BOOL(0, "heading", &opt.heading,
958 N_("show filename only once above matches from same file")),
959 OPT_GROUP(""),
960 OPT_CALLBACK('C', "context", &opt, N_("n"),
961 N_("show <n> context lines before and after matches"),
962 context_callback),
963 OPT_INTEGER('B', "before-context", &opt.pre_context,
964 N_("show <n> context lines before matches")),
965 OPT_INTEGER('A', "after-context", &opt.post_context,
966 N_("show <n> context lines after matches")),
967 OPT_INTEGER(0, "threads", &num_threads,
968 N_("use <n> worker threads")),
969 OPT_NUMBER_CALLBACK(&opt, N_("shortcut for -C NUM"),
970 context_callback),
971 OPT_BOOL('p', "show-function", &opt.funcname,
972 N_("show a line with the function name before matches")),
973 OPT_BOOL('W', "function-context", &opt.funcbody,
974 N_("show the surrounding function")),
975 OPT_GROUP(""),
976 OPT_CALLBACK('f', NULL, &opt, N_("file"),
977 N_("read patterns from file"), file_callback),
978 OPT_CALLBACK_F('e', NULL, &opt, N_("pattern"),
979 N_("match <pattern>"), PARSE_OPT_NONEG, pattern_callback),
980 OPT_CALLBACK_F(0, "and", &opt, NULL,
981 N_("combine patterns specified with -e"),
982 PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback),
983 OPT_BOOL(0, "or", &dummy, ""),
984 OPT_CALLBACK_F(0, "not", &opt, NULL, "",
985 PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback),
986 OPT_CALLBACK_F('(', NULL, &opt, NULL, "",
987 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
988 open_callback),
989 OPT_CALLBACK_F(')', NULL, &opt, NULL, "",
990 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
991 close_callback),
992 OPT__QUIET(&opt.status_only,
993 N_("indicate hit with exit status without output")),
994 OPT_BOOL(0, "all-match", &opt.all_match,
995 N_("show only matches from files that match all patterns")),
996 OPT_GROUP(""),
997 { OPTION_STRING, 'O', "open-files-in-pager", &show_in_pager,
998 N_("pager"), N_("show matching files in the pager"),
999 PARSE_OPT_OPTARG | PARSE_OPT_NOCOMPLETE,
1000 NULL, (intptr_t)default_pager },
1001 OPT_BOOL_F(0, "ext-grep", &external_grep_allowed__ignored,
1002 N_("allow calling of grep(1) (ignored by this build)"),
1003 PARSE_OPT_NOCOMPLETE),
1004 OPT_INTEGER('m', "max-count", &opt.max_count,
1005 N_("maximum number of results per file")),
1006 OPT_END()
1008 grep_prefix = prefix;
1010 grep_init(&opt, the_repository);
1011 git_config(grep_cmd_config, &opt);
1014 * If there is no -- then the paths must exist in the working
1015 * tree. If there is no explicit pattern specified with -e or
1016 * -f, we take the first unrecognized non option to be the
1017 * pattern, but then what follows it must be zero or more
1018 * valid refs up to the -- (if exists), and then existing
1019 * paths. If there is an explicit pattern, then the first
1020 * unrecognized non option is the beginning of the refs list
1021 * that continues up to the -- (if exists), and then paths.
1023 argc = parse_options(argc, argv, prefix, options, grep_usage,
1024 PARSE_OPT_KEEP_DASHDASH |
1025 PARSE_OPT_STOP_AT_NON_OPTION);
1027 if (the_repository->gitdir) {
1028 prepare_repo_settings(the_repository);
1029 the_repository->settings.command_requires_full_index = 0;
1032 if (use_index && !startup_info->have_repository) {
1033 int fallback = 0;
1034 git_config_get_bool("grep.fallbacktonoindex", &fallback);
1035 if (fallback)
1036 use_index = 0;
1037 else
1038 /* die the same way as if we did it at the beginning */
1039 setup_git_directory();
1041 /* Ignore --recurse-submodules if --no-index is given or implied */
1042 if (!use_index)
1043 recurse_submodules = 0;
1046 * skip a -- separator; we know it cannot be
1047 * separating revisions from pathnames if
1048 * we haven't even had any patterns yet
1050 if (argc > 0 && !opt.pattern_list && !strcmp(argv[0], "--")) {
1051 argv++;
1052 argc--;
1055 /* First unrecognized non-option token */
1056 if (argc > 0 && !opt.pattern_list) {
1057 append_grep_pattern(&opt, argv[0], "command line", 0,
1058 GREP_PATTERN);
1059 argv++;
1060 argc--;
1063 if (show_in_pager == default_pager)
1064 show_in_pager = git_pager(1);
1065 if (show_in_pager) {
1066 opt.color = 0;
1067 opt.name_only = 1;
1068 opt.null_following_name = 1;
1069 opt.output_priv = &path_list;
1070 opt.output = append_path;
1071 string_list_append(&path_list, show_in_pager);
1074 if (!opt.pattern_list)
1075 die(_("no pattern given"));
1077 /* --only-matching has no effect with --invert. */
1078 if (opt.invert)
1079 opt.only_matching = 0;
1082 * We have to find "--" in a separate pass, because its presence
1083 * influences how we will parse arguments that come before it.
1085 for (i = 0; i < argc; i++) {
1086 if (!strcmp(argv[i], "--")) {
1087 seen_dashdash = 1;
1088 break;
1093 * Resolve any rev arguments. If we have a dashdash, then everything up
1094 * to it must resolve as a rev. If not, then we stop at the first
1095 * non-rev and assume everything else is a path.
1097 allow_revs = use_index && !untracked;
1098 for (i = 0; i < argc; i++) {
1099 const char *arg = argv[i];
1100 struct object_id oid;
1101 struct object_context oc;
1102 struct object *object;
1104 if (!strcmp(arg, "--")) {
1105 i++;
1106 break;
1109 if (!allow_revs) {
1110 if (seen_dashdash)
1111 die(_("--no-index or --untracked cannot be used with revs"));
1112 break;
1115 if (get_oid_with_context(the_repository, arg,
1116 GET_OID_RECORD_PATH,
1117 &oid, &oc)) {
1118 if (seen_dashdash)
1119 die(_("unable to resolve revision: %s"), arg);
1120 break;
1123 object = parse_object_or_die(&oid, arg);
1124 if (!seen_dashdash)
1125 verify_non_filename(prefix, arg);
1126 add_object_array_with_path(object, arg, &list, oc.mode, oc.path);
1127 free(oc.path);
1131 * Anything left over is presumed to be a path. But in the non-dashdash
1132 * "do what I mean" case, we verify and complain when that isn't true.
1134 if (!seen_dashdash) {
1135 int j;
1136 for (j = i; j < argc; j++)
1137 verify_filename(prefix, argv[j], j == i && allow_revs);
1140 parse_pathspec(&pathspec, 0,
1141 PATHSPEC_PREFER_CWD |
1142 (opt.max_depth != -1 ? PATHSPEC_MAXDEPTH_VALID : 0),
1143 prefix, argv + i);
1144 pathspec.max_depth = opt.max_depth;
1145 pathspec.recursive = 1;
1146 pathspec.recurse_submodules = !!recurse_submodules;
1148 if (recurse_submodules && untracked)
1149 die(_("--untracked not supported with --recurse-submodules"));
1152 * Optimize out the case where the amount of matches is limited to zero.
1153 * We do this to keep results consistent with GNU grep(1).
1155 if (opt.max_count == 0)
1156 return 1;
1158 if (show_in_pager) {
1159 if (num_threads > 1)
1160 warning(_("invalid option combination, ignoring --threads"));
1161 num_threads = 1;
1162 } else if (!HAVE_THREADS && num_threads > 1) {
1163 warning(_("no threads support, ignoring --threads"));
1164 num_threads = 1;
1165 } else if (num_threads < 0)
1166 die(_("invalid number of threads specified (%d)"), num_threads);
1167 else if (num_threads == 0)
1168 num_threads = HAVE_THREADS ? online_cpus() : 1;
1170 if (num_threads > 1) {
1171 if (!HAVE_THREADS)
1172 BUG("Somebody got num_threads calculation wrong!");
1173 if (!(opt.name_only || opt.unmatch_name_only || opt.count)
1174 && (opt.pre_context || opt.post_context ||
1175 opt.file_break || opt.funcbody))
1176 skip_first_line = 1;
1179 * Pre-read gitmodules (if not read already) and force eager
1180 * initialization of packed_git to prevent racy lazy
1181 * reading/initialization once worker threads are started.
1183 if (recurse_submodules)
1184 repo_read_gitmodules(the_repository, 1);
1185 if (startup_info->have_repository)
1186 (void)get_packed_git(the_repository);
1188 start_threads(&opt);
1189 } else {
1191 * The compiled patterns on the main path are only
1192 * used when not using threading. Otherwise
1193 * start_threads() above calls compile_grep_patterns()
1194 * for each thread.
1196 compile_grep_patterns(&opt);
1199 if (show_in_pager && (cached || list.nr))
1200 die(_("--open-files-in-pager only works on the worktree"));
1202 if (show_in_pager && opt.pattern_list && !opt.pattern_list->next) {
1203 const char *pager = path_list.items[0].string;
1204 int len = strlen(pager);
1206 if (len > 4 && is_dir_sep(pager[len - 5]))
1207 pager += len - 4;
1209 if (opt.ignore_case && !strcmp("less", pager))
1210 string_list_append(&path_list, "-I");
1212 if (!strcmp("less", pager) || !strcmp("vi", pager)) {
1213 struct strbuf buf = STRBUF_INIT;
1214 strbuf_addf(&buf, "+/%s%s",
1215 strcmp("less", pager) ? "" : "*",
1216 opt.pattern_list->pattern);
1217 string_list_append_nodup(&path_list,
1218 strbuf_detach(&buf, NULL));
1222 if (!show_in_pager && !opt.status_only)
1223 setup_pager();
1225 die_for_incompatible_opt3(!use_index, "--no-index",
1226 untracked, "--untracked",
1227 cached, "--cached");
1229 if (!use_index || untracked) {
1230 int use_exclude = (opt_exclude < 0) ? use_index : !!opt_exclude;
1231 hit = grep_directory(&opt, &pathspec, use_exclude, use_index);
1232 } else if (0 <= opt_exclude) {
1233 die(_("--[no-]exclude-standard cannot be used for tracked contents"));
1234 } else if (!list.nr) {
1235 if (!cached)
1236 setup_work_tree();
1238 hit = grep_cache(&opt, &pathspec, cached);
1239 } else {
1240 if (cached)
1241 die(_("both --cached and trees are given"));
1243 hit = grep_objects(&opt, &pathspec, &list);
1246 if (num_threads > 1)
1247 hit |= wait_all();
1248 if (hit && show_in_pager)
1249 run_pager(&opt, prefix);
1250 clear_pathspec(&pathspec);
1251 string_list_clear(&path_list, 0);
1252 free_grep_patterns(&opt);
1253 object_array_clear(&list);
1254 free_repos();
1255 return !hit;