]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/grep.c
repository.h: move declaration of the_index from cache.h
[thirdparty/git.git] / builtin / grep.c
CommitLineData
5010cb5f
JH
1/*
2 * Builtin "git grep"
3 *
4 * Copyright (c) 2006 Junio C Hamano
5 */
6#include "cache.h"
36bf1958 7#include "alloc.h"
f394e093 8#include "gettext.h"
41771fa4 9#include "hex.h"
627d9342 10#include "repository.h"
b2141fc1 11#include "config.h"
5010cb5f
JH
12#include "blob.h"
13#include "tree.h"
14#include "commit.h"
15#include "tag.h"
1362671f 16#include "tree-walk.h"
5010cb5f 17#include "builtin.h"
3e230fa1 18#include "parse-options.h"
678e484b
JS
19#include "string-list.h"
20#include "run-command.h"
60ecac98 21#include "userdiff.h"
83b5d2f5 22#include "grep.h"
493b7a08 23#include "quote.h"
59332d13 24#include "dir.h"
64acde94 25#include "pathspec.h"
e38da487 26#include "setup.h"
0281e487 27#include "submodule.h"
74ed4371 28#include "submodule-config.h"
87bed179 29#include "object-file.h"
dabab1d6 30#include "object-name.h"
90c62155 31#include "object-store.h"
6c307626 32#include "packfile.h"
ca4eed70 33#include "pager.h"
d48be35c 34#include "write-or-die.h"
5b594f45 35
9725c8dd
ÆAB
36static const char *grep_prefix;
37
3e230fa1 38static char const * const grep_usage[] = {
9c9b4f2f 39 N_("git grep [<options>] [-e] <pattern> [<rev>...] [[--] <path>...]"),
3e230fa1
RS
40 NULL
41};
42
0281e487 43static int recurse_submodules;
0281e487 44
89f09dd3 45static int num_threads;
5b594f45 46
89f09dd3 47static pthread_t *threads;
5b594f45 48
5b594f45
FK
49/* We use one producer thread and THREADS consumer
50 * threads. The producer adds struct work_items to 'todo' and the
51 * consumers pick work items from the same array.
52 */
9cba13ca 53struct work_item {
8f24a632 54 struct grep_source source;
5b594f45
FK
55 char done;
56 struct strbuf out;
57};
58
59/* In the range [todo_done, todo_start) in 'todo' we have work_items
60 * that have been or are processed by a consumer thread. We haven't
61 * written the result for these to stdout yet.
62 *
63 * The work_items in [todo_start, todo_end) are waiting to be picked
64 * up by a consumer thread.
65 *
66 * The ranges are modulo TODO_SIZE.
67 */
68#define TODO_SIZE 128
69static struct work_item todo[TODO_SIZE];
70static int todo_start;
71static int todo_end;
72static int todo_done;
73
74/* Has all work items been added? */
75static int all_work_added;
76
dd45471a
JT
77static struct repository **repos_to_free;
78static size_t repos_to_free_nr, repos_to_free_alloc;
79
5b594f45
FK
80/* This lock protects all the variables above. */
81static pthread_mutex_t grep_mutex;
82
1487a12b
JH
83static inline void grep_lock(void)
84{
8df4c295 85 pthread_mutex_lock(&grep_mutex);
1487a12b
JH
86}
87
88static inline void grep_unlock(void)
89{
8df4c295 90 pthread_mutex_unlock(&grep_mutex);
1487a12b
JH
91}
92
5b594f45
FK
93/* Signalled when a new work_item is added to todo. */
94static pthread_cond_t cond_add;
95
96/* Signalled when the result from one work_item is written to
97 * stdout.
98 */
99static pthread_cond_t cond_write;
100
101/* Signalled when we are finished with everything. */
102static pthread_cond_t cond_result;
103
08303c36 104static int skip_first_line;
431d6e7b 105
70a9fef2 106static void add_work(struct grep_opt *opt, struct grep_source *gs)
5b594f45 107{
70a9fef2
MT
108 if (opt->binary != GREP_BINARY_TEXT)
109 grep_source_load_driver(gs, opt->repo->index);
110
5b594f45
FK
111 grep_lock();
112
113 while ((todo_end+1) % ARRAY_SIZE(todo) == todo_done) {
114 pthread_cond_wait(&cond_write, &grep_mutex);
115 }
116
e2e05d61 117 todo[todo_end].source = *gs;
5b594f45
FK
118 todo[todo_end].done = 0;
119 strbuf_reset(&todo[todo_end].out);
120 todo_end = (todo_end + 1) % ARRAY_SIZE(todo);
121
122 pthread_cond_signal(&cond_add);
123 grep_unlock();
124}
125
126static struct work_item *get_work(void)
127{
128 struct work_item *ret;
129
130 grep_lock();
131 while (todo_start == todo_end && !all_work_added) {
132 pthread_cond_wait(&cond_add, &grep_mutex);
133 }
134
135 if (todo_start == todo_end && all_work_added) {
136 ret = NULL;
137 } else {
138 ret = &todo[todo_start];
139 todo_start = (todo_start + 1) % ARRAY_SIZE(todo);
140 }
141 grep_unlock();
142 return ret;
143}
144
5b594f45
FK
145static void work_done(struct work_item *w)
146{
147 int old_done;
148
149 grep_lock();
150 w->done = 1;
151 old_done = todo_done;
152 for(; todo[todo_done].done && todo_done != todo_start;
153 todo_done = (todo_done+1) % ARRAY_SIZE(todo)) {
154 w = &todo[todo_done];
431d6e7b 155 if (w->out.len) {
08303c36
RS
156 const char *p = w->out.buf;
157 size_t len = w->out.len;
158
159 /* Skip the leading hunk mark of the first file. */
160 if (skip_first_line) {
161 while (len) {
162 len--;
163 if (*p++ == '\n')
164 break;
165 }
166 skip_first_line = 0;
167 }
168
169 write_or_die(1, p, len);
431d6e7b 170 }
8f24a632 171 grep_source_clear(&w->source);
5b594f45
FK
172 }
173
174 if (old_done != todo_done)
175 pthread_cond_signal(&cond_write);
176
177 if (all_work_added && todo_done == todo_end)
178 pthread_cond_signal(&cond_result);
179
180 grep_unlock();
181}
182
dd45471a
JT
183static void free_repos(void)
184{
185 int i;
186
187 for (i = 0; i < repos_to_free_nr; i++) {
188 repo_clear(repos_to_free[i]);
189 free(repos_to_free[i]);
190 }
191 FREE_AND_NULL(repos_to_free);
192 repos_to_free_nr = 0;
193 repos_to_free_alloc = 0;
194}
195
5b594f45
FK
196static void *run(void *arg)
197{
198 int hit = 0;
199 struct grep_opt *opt = arg;
200
201 while (1) {
202 struct work_item *w = get_work();
203 if (!w)
204 break;
205
206 opt->output_priv = w;
f9ee2fcd 207 hit |= grep_source(opt, &w->source);
8f24a632 208 grep_source_clear_data(&w->source);
5b594f45
FK
209 work_done(w);
210 }
a2fb7672
ÆAB
211 free_grep_patterns(opt);
212 free(opt);
5b594f45
FK
213
214 return (void*) (intptr_t) hit;
215}
216
217static void strbuf_out(struct grep_opt *opt, const void *buf, size_t size)
218{
219 struct work_item *w = opt->output_priv;
220 strbuf_add(&w->out, buf, size);
221}
222
223static void start_threads(struct grep_opt *opt)
224{
225 int i;
226
227 pthread_mutex_init(&grep_mutex, NULL);
0579f91d 228 pthread_mutex_init(&grep_attr_mutex, NULL);
5b594f45
FK
229 pthread_cond_init(&cond_add, NULL);
230 pthread_cond_init(&cond_write, NULL);
231 pthread_cond_init(&cond_result, NULL);
78db6ea9 232 grep_use_locks = 1;
1d1729ca 233 enable_obj_read_lock();
5b594f45
FK
234
235 for (i = 0; i < ARRAY_SIZE(todo); i++) {
236 strbuf_init(&todo[i].out, 0);
237 }
238
ca56dadb 239 CALLOC_ARRAY(threads, num_threads);
89f09dd3 240 for (i = 0; i < num_threads; i++) {
5b594f45
FK
241 int err;
242 struct grep_opt *o = grep_opt_dup(opt);
243 o->output = strbuf_out;
244 compile_grep_patterns(o);
245 err = pthread_create(&threads[i], NULL, run, o);
246
247 if (err)
2fc5f9f1 248 die(_("grep: failed to create thread: %s"),
5b594f45
FK
249 strerror(err));
250 }
251}
252
253static int wait_all(void)
254{
255 int hit = 0;
256 int i;
257
4002e87c 258 if (!HAVE_THREADS)
fd6263fb 259 BUG("Never call this function unless you have started threads");
4002e87c 260
5b594f45
FK
261 grep_lock();
262 all_work_added = 1;
263
264 /* Wait until all work is done. */
265 while (todo_done != todo_end)
266 pthread_cond_wait(&cond_result, &grep_mutex);
267
268 /* Wake up all the consumer threads so they can see that there
269 * is no more work to do.
270 */
271 pthread_cond_broadcast(&cond_add);
272 grep_unlock();
273
89f09dd3 274 for (i = 0; i < num_threads; i++) {
5b594f45
FK
275 void *h;
276 pthread_join(threads[i], &h);
277 hit |= (int) (intptr_t) h;
278 }
279
89f09dd3
VL
280 free(threads);
281
5b594f45 282 pthread_mutex_destroy(&grep_mutex);
0579f91d 283 pthread_mutex_destroy(&grep_attr_mutex);
5b594f45
FK
284 pthread_cond_destroy(&cond_add);
285 pthread_cond_destroy(&cond_write);
286 pthread_cond_destroy(&cond_result);
78db6ea9 287 grep_use_locks = 0;
1d1729ca 288 disable_obj_read_lock();
5b594f45
FK
289
290 return hit;
291}
5b594f45 292
15fabd1b
JH
293static int grep_cmd_config(const char *var, const char *value, void *cb)
294{
295 int st = grep_config(var, value, cb);
b8db6ed8 296 if (git_color_default_config(var, value, NULL) < 0)
15fabd1b 297 st = -1;
89f09dd3
VL
298
299 if (!strcmp(var, "grep.threads")) {
300 num_threads = git_config_int(var, value);
301 if (num_threads < 0)
302 die(_("invalid number of threads specified (%d) for %s"),
303 num_threads, var);
fd6263fb 304 else if (!HAVE_THREADS && num_threads > 1) {
d1edee4a
ÆAB
305 /*
306 * TRANSLATORS: %s is the configuration
307 * variable for tweaking threads, currently
308 * grep.threads
309 */
310 warning(_("no threads support, ignoring %s"), var);
fd6263fb 311 num_threads = 1;
d1edee4a 312 }
89f09dd3
VL
313 }
314
9071c078
SB
315 if (!strcmp(var, "submodule.recurse"))
316 recurse_submodules = git_config_bool(var, value);
317
15fabd1b
JH
318 return st;
319}
320
45115d84
MT
321static void grep_source_name(struct grep_opt *opt, const char *filename,
322 int tree_name_len, struct strbuf *out)
323{
324 strbuf_reset(out);
325
326 if (opt->null_following_name) {
9725c8dd 327 if (opt->relative && grep_prefix) {
45115d84
MT
328 struct strbuf rel_buf = STRBUF_INIT;
329 const char *rel_name =
330 relative_path(filename + tree_name_len,
9725c8dd 331 grep_prefix, &rel_buf);
45115d84
MT
332
333 if (tree_name_len)
334 strbuf_add(out, filename, tree_name_len);
335
336 strbuf_addstr(out, rel_name);
337 strbuf_release(&rel_buf);
338 } else {
339 strbuf_addstr(out, filename);
340 }
341 return;
342 }
343
9725c8dd
ÆAB
344 if (opt->relative && grep_prefix)
345 quote_path(filename + tree_name_len, grep_prefix, out, 0);
45115d84
MT
346 else
347 quote_c_style(filename + tree_name_len, out, NULL, 0);
348
349 if (tree_name_len)
350 strbuf_insert(out, 0, filename, tree_name_len);
351}
352
1db11086 353static int grep_oid(struct grep_opt *opt, const struct object_id *oid,
55c61688
NTND
354 const char *filename, int tree_name_len,
355 const char *path)
5b594f45
FK
356{
357 struct strbuf pathbuf = STRBUF_INIT;
e2e05d61 358 struct grep_source gs;
5b594f45 359
45115d84 360 grep_source_name(opt, filename, tree_name_len, &pathbuf);
0693806b 361 grep_source_init_oid(&gs, pathbuf.buf, path, oid, opt->repo);
38ef24dc 362 strbuf_release(&pathbuf);
e2e05d61 363
fd6263fb 364 if (num_threads > 1) {
e2e05d61
RV
365 /*
366 * add_work() copies gs and thus assumes ownership of
367 * its fields, so do not call grep_source_clear()
368 */
369 add_work(opt, &gs);
5b594f45 370 return 0;
4002e87c 371 } else {
5b594f45 372 int hit;
5010cb5f 373
8f24a632 374 hit = grep_source(opt, &gs);
dc49cd76 375
8f24a632
JK
376 grep_source_clear(&gs);
377 return hit;
5010cb5f 378 }
5b594f45
FK
379}
380
381static int grep_file(struct grep_opt *opt, const char *filename)
382{
383 struct strbuf buf = STRBUF_INIT;
e2e05d61 384 struct grep_source gs;
5b594f45 385
45115d84 386 grep_source_name(opt, filename, 0, &buf);
50d92b5f 387 grep_source_init_file(&gs, buf.buf, filename);
38ef24dc 388 strbuf_release(&buf);
e2e05d61 389
fd6263fb 390 if (num_threads > 1) {
e2e05d61
RV
391 /*
392 * add_work() copies gs and thus assumes ownership of
393 * its fields, so do not call grep_source_clear()
394 */
395 add_work(opt, &gs);
5b594f45 396 return 0;
4002e87c 397 } else {
5b594f45 398 int hit;
5b594f45 399
8f24a632
JK
400 hit = grep_source(opt, &gs);
401
402 grep_source_clear(&gs);
5b594f45
FK
403 return hit;
404 }
5010cb5f
JH
405}
406
678e484b
JS
407static void append_path(struct grep_opt *opt, const void *data, size_t len)
408{
409 struct string_list *path_list = opt->output_priv;
410
411 if (len == 1 && *(const char *)data == '\0')
412 return;
b202e51b 413 string_list_append_nodup(path_list, xstrndup(data, len));
678e484b
JS
414}
415
416static void run_pager(struct grep_opt *opt, const char *prefix)
417{
418 struct string_list *path_list = opt->output_priv;
850d2fec 419 struct child_process child = CHILD_PROCESS_INIT;
678e484b
JS
420 int i, status;
421
422 for (i = 0; i < path_list->nr; i++)
22f9b7f3 423 strvec_push(&child.args, path_list->items[i].string);
850d2fec
JK
424 child.dir = prefix;
425 child.use_shell = 1;
678e484b 426
850d2fec 427 status = run_command(&child);
678e484b
JS
428 if (status)
429 exit(status);
678e484b
JS
430}
431
dba093dd 432static int grep_cache(struct grep_opt *opt,
f9ee2fcd
BW
433 const struct pathspec *pathspec, int cached);
434static int grep_tree(struct grep_opt *opt, const struct pathspec *pathspec,
435 struct tree_desc *tree, struct strbuf *base, int tn_len,
dba093dd 436 int check_attr);
0281e487 437
dba093dd 438static int grep_submodule(struct grep_opt *opt,
f9ee2fcd
BW
439 const struct pathspec *pathspec,
440 const struct object_id *oid,
6a289d45 441 const char *filename, const char *path, int cached)
0281e487 442{
dd45471a 443 struct repository *subrepo;
dba093dd 444 struct repository *superproject = opt->repo;
dba093dd 445 struct grep_opt subopt;
dd45471a 446 int hit = 0;
74ed4371 447
c441ea4e 448 if (!is_submodule_active(superproject, path))
f9ee2fcd 449 return 0;
0281e487 450
dd45471a 451 subrepo = xmalloc(sizeof(*subrepo));
8eb8dcf9 452 if (repo_submodule_init(subrepo, superproject, path, null_oid())) {
dd45471a 453 free(subrepo);
f9ee2fcd 454 return 0;
dd45471a
JT
455 }
456 ALLOC_GROW(repos_to_free, repos_to_free_nr + 1, repos_to_free_alloc);
457 repos_to_free[repos_to_free_nr++] = subrepo;
be80a239 458
c441ea4e
MT
459 /*
460 * NEEDSWORK: repo_read_gitmodules() might call
461 * add_to_alternates_memory() via config_from_gitmodules(). This
462 * operation causes a race condition with concurrent object readings
463 * performed by the worker threads. That's why we need obj_read_lock()
464 * here. It should be removed once it's no longer necessary to add the
465 * subrepo's odbs to the in-memory alternates list.
466 */
467 obj_read_lock();
7cae7627
SY
468
469 /*
470 * NEEDSWORK: when reading a submodule, the sparsity settings in the
471 * superproject are incorrectly forgotten or misused. For example:
472 *
473 * 1. "command_requires_full_index"
474 * When this setting is turned on for `grep`, only the superproject
475 * knows it. All the submodules are read with their own configs
476 * and get prepare_repo_settings()'d. Therefore, these submodules
477 * "forget" the sparse-index feature switch. As a result, the index
478 * of these submodules are expanded unexpectedly.
479 *
480 * 2. "core_apply_sparse_checkout"
481 * When running `grep` in the superproject, this setting is
482 * populated using the superproject's configs. However, once
483 * initialized, this config is globally accessible and is read by
484 * prepare_repo_settings() for the submodules. For instance, if a
485 * submodule is using a sparse-checkout, however, the superproject
486 * is not, the result is that the config from the superproject will
487 * dictate the behavior for the submodule, making it "forget" its
488 * sparse-checkout state.
489 *
490 * 3. "core_sparse_checkout_cone"
491 * ditto.
492 *
493 * Note that this list is not exhaustive.
494 */
dd45471a 495 repo_read_gitmodules(subrepo, 0);
0281e487 496
74ed4371 497 /*
0693806b
JT
498 * All code paths tested by test code no longer need submodule ODBs to
499 * be added as alternates, but add it to the list just in case.
500 * Submodule ODBs added through add_submodule_odb_by_path() will be
501 * lazily registered as alternates when needed (and except in an
502 * unexpected code interaction, it won't be needed).
74ed4371 503 */
dd45471a 504 add_submodule_odb_by_path(subrepo->objects->odb->path);
1d1729ca 505 obj_read_unlock();
74ed4371 506
dba093dd 507 memcpy(&subopt, opt, sizeof(subopt));
dd45471a 508 subopt.repo = subrepo;
dba093dd 509
f9ee2fcd 510 if (oid) {
78ca584f 511 enum object_type object_type;
f9ee2fcd
BW
512 struct tree_desc tree;
513 void *data;
514 unsigned long size;
515 struct strbuf base = STRBUF_INIT;
74ed4371 516
1d1729ca 517 obj_read_lock();
dd45471a 518 object_type = oid_object_info(subrepo, oid, NULL);
1d1729ca 519 obj_read_unlock();
dd45471a 520 data = read_object_with_reference(subrepo,
6aea6bae 521 oid, OBJ_TREE,
f9ee2fcd 522 &size, NULL);
f9ee2fcd 523 if (!data)
78ca584f 524 die(_("unable to read tree (%s)"), oid_to_hex(oid));
0281e487 525
f9ee2fcd
BW
526 strbuf_addstr(&base, filename);
527 strbuf_addch(&base, '/');
0281e487 528
f9ee2fcd 529 init_tree_desc(&tree, data, size);
dba093dd 530 hit = grep_tree(&subopt, pathspec, &tree, &base, base.len,
78ca584f 531 object_type == OBJ_COMMIT);
f9ee2fcd
BW
532 strbuf_release(&base);
533 free(data);
534 } else {
6a289d45 535 hit = grep_cache(&subopt, pathspec, cached);
e6fac7f3 536 }
0281e487 537
f9ee2fcd 538 return hit;
0281e487
BW
539}
540
dba093dd 541static int grep_cache(struct grep_opt *opt,
f9ee2fcd 542 const struct pathspec *pathspec, int cached)
5010cb5f 543{
dba093dd 544 struct repository *repo = opt->repo;
5010cb5f
JH
545 int hit = 0;
546 int nr;
0281e487
BW
547 struct strbuf name = STRBUF_INIT;
548 int name_base_len = 0;
f9ee2fcd
BW
549 if (repo->submodule_prefix) {
550 name_base_len = strlen(repo->submodule_prefix);
551 strbuf_addstr(&name, repo->submodule_prefix);
0281e487
BW
552 }
553
b2aa84c7 554 if (repo_read_index(repo) < 0)
5507067d 555 die(_("index file corrupt"));
5010cb5f 556
f9ee2fcd
BW
557 for (nr = 0; nr < repo->index->cache_nr; nr++) {
558 const struct cache_entry *ce = repo->index->cache[nr];
42d906be
MT
559
560 if (!cached && ce_skip_worktree(ce))
561 continue;
562
0281e487
BW
563 strbuf_setlen(&name, name_base_len);
564 strbuf_addstr(&name, ce->name);
7cae7627
SY
565 if (S_ISSPARSEDIR(ce->ce_mode)) {
566 enum object_type type;
567 struct tree_desc tree;
568 void *data;
569 unsigned long size;
0281e487 570
bc726bd0
ÆAB
571 data = repo_read_object_file(the_repository, &ce->oid,
572 &type, &size);
7cae7627
SY
573 init_tree_desc(&tree, data, size);
574
575 hit |= grep_tree(opt, pathspec, &tree, &name, 0, 0);
576 strbuf_setlen(&name, name_base_len);
577 strbuf_addstr(&name, ce->name);
578 free(data);
579 } else if (S_ISREG(ce->ce_mode) &&
a4009b0b 580 match_pathspec(repo->index, pathspec, name.buf, name.len, 0, NULL,
0281e487
BW
581 S_ISDIR(ce->ce_mode) ||
582 S_ISGITLINK(ce->ce_mode))) {
583 /*
584 * If CE_VALID is on, we assume worktree file and its
585 * cache entry are identical, even if worktree file has
586 * been modified, so use cache version instead
587 */
42d906be 588 if (cached || (ce->ce_flags & CE_VALID)) {
0281e487
BW
589 if (ce_stage(ce) || ce_intent_to_add(ce))
590 continue;
f9ee2fcd
BW
591 hit |= grep_oid(opt, &ce->oid, name.buf,
592 0, name.buf);
0281e487 593 } else {
f9ee2fcd 594 hit |= grep_file(opt, name.buf);
0281e487
BW
595 }
596 } else if (recurse_submodules && S_ISGITLINK(ce->ce_mode) &&
a4009b0b 597 submodule_path_match(repo->index, pathspec, name.buf, NULL)) {
6a289d45
MT
598 hit |= grep_submodule(opt, pathspec, NULL, ce->name,
599 ce->name, cached);
0281e487 600 } else {
5010cb5f 601 continue;
36f2587f 602 }
0281e487 603
36f2587f
JH
604 if (ce_stage(ce)) {
605 do {
606 nr++;
f9ee2fcd
BW
607 } while (nr < repo->index->cache_nr &&
608 !strcmp(ce->name, repo->index->cache[nr]->name));
36f2587f
JH
609 nr--; /* compensate for loop control */
610 }
c8610a2e
JH
611 if (hit && opt->status_only)
612 break;
5010cb5f 613 }
0281e487
BW
614
615 strbuf_release(&name);
5010cb5f
JH
616 return hit;
617}
618
f34bbc15 619static int grep_tree(struct grep_opt *opt, const struct pathspec *pathspec,
55c61688 620 struct tree_desc *tree, struct strbuf *base, int tn_len,
dba093dd 621 int check_attr)
5010cb5f 622{
dba093dd 623 struct repository *repo = opt->repo;
d688cf07
NTND
624 int hit = 0;
625 enum interesting match = entry_not_interesting;
4c068a98 626 struct name_entry entry;
e5e062b6 627 int old_baselen = base->len;
74ed4371
BW
628 struct strbuf name = STRBUF_INIT;
629 int name_base_len = 0;
f9ee2fcd
BW
630 if (repo->submodule_prefix) {
631 strbuf_addstr(&name, repo->submodule_prefix);
74ed4371
BW
632 name_base_len = name.len;
633 }
5010cb5f 634
4c068a98 635 while (tree_entry(tree, &entry)) {
0de16337 636 int te_len = tree_entry_len(&entry);
e5e062b6 637
d688cf07 638 if (match != all_entries_interesting) {
74ed4371 639 strbuf_addstr(&name, base->buf + tn_len);
67022e02
NTND
640 match = tree_entry_interesting(repo->index,
641 &entry, &name,
74ed4371
BW
642 0, pathspec);
643 strbuf_setlen(&name, name_base_len);
644
d688cf07 645 if (match == all_entries_not_interesting)
97d0b74a 646 break;
d688cf07 647 if (match == entry_not_interesting)
1376e507
NTND
648 continue;
649 }
5010cb5f 650
1376e507 651 strbuf_add(base, entry.path, te_len);
e0eb889f 652
1376e507 653 if (S_ISREG(entry.mode)) {
ea82b2a0 654 hit |= grep_oid(opt, &entry.oid, base->buf, tn_len,
55c61688 655 check_attr ? base->buf + tn_len : NULL);
74ed4371 656 } else if (S_ISDIR(entry.mode)) {
21666f1a 657 enum object_type type;
5010cb5f
JH
658 struct tree_desc sub;
659 void *data;
6fda5e51
LT
660 unsigned long size;
661
bc726bd0
ÆAB
662 data = repo_read_object_file(the_repository,
663 &entry.oid, &type, &size);
5010cb5f 664 if (!data)
2fc5f9f1 665 die(_("unable to read tree (%s)"),
ea82b2a0 666 oid_to_hex(&entry.oid));
1376e507
NTND
667
668 strbuf_addch(base, '/');
6fda5e51 669 init_tree_desc(&sub, data, size);
55c61688 670 hit |= grep_tree(opt, pathspec, &sub, base, tn_len,
dba093dd 671 check_attr);
5010cb5f 672 free(data);
74ed4371 673 } else if (recurse_submodules && S_ISGITLINK(entry.mode)) {
7589e636 674 hit |= grep_submodule(opt, pathspec, &entry.oid,
6a289d45
MT
675 base->buf, base->buf + tn_len,
676 1); /* ignored */
5010cb5f 677 }
74ed4371 678
e5e062b6
NTND
679 strbuf_setlen(base, old_baselen);
680
c8610a2e
JH
681 if (hit && opt->status_only)
682 break;
5010cb5f 683 }
74ed4371
BW
684
685 strbuf_release(&name);
5010cb5f
JH
686 return hit;
687}
688
f34bbc15 689static int grep_object(struct grep_opt *opt, const struct pathspec *pathspec,
6856077a 690 struct object *obj, const char *name, const char *path)
5010cb5f 691{
1974632c 692 if (obj->type == OBJ_BLOB)
1db11086 693 return grep_oid(opt, &obj->oid, name, 0, path);
1974632c 694 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
5010cb5f
JH
695 struct tree_desc tree;
696 void *data;
6fda5e51 697 unsigned long size;
e5e062b6
NTND
698 struct strbuf base;
699 int hit, len;
700
d3b4705a 701 data = read_object_with_reference(opt->repo,
6aea6bae 702 &obj->oid, OBJ_TREE,
6fda5e51 703 &size, NULL);
5010cb5f 704 if (!data)
f2fd0760 705 die(_("unable to read tree (%s)"), oid_to_hex(&obj->oid));
e5e062b6
NTND
706
707 len = name ? strlen(name) : 0;
708 strbuf_init(&base, PATH_MAX + len + 1);
709 if (len) {
710 strbuf_add(&base, name, len);
711 strbuf_addch(&base, ':');
712 }
6fda5e51 713 init_tree_desc(&tree, data, size);
55c61688 714 hit = grep_tree(opt, pathspec, &tree, &base, base.len,
dba093dd 715 obj->type == OBJ_COMMIT);
e5e062b6 716 strbuf_release(&base);
5010cb5f
JH
717 free(data);
718 return hit;
719 }
debca9d2 720 die(_("unable to grep from object of type %s"), type_name(obj->type));
5010cb5f
JH
721}
722
f34bbc15 723static int grep_objects(struct grep_opt *opt, const struct pathspec *pathspec,
30d00c39
JN
724 const struct object_array *list)
725{
726 unsigned int i;
727 int hit = 0;
728 const unsigned int nr = list->nr;
729
730 for (i = 0; i < nr; i++) {
731 struct object *real_obj;
d5b0bac5 732
1d1729ca 733 obj_read_lock();
dba093dd 734 real_obj = deref_tag(opt->repo, list->objects[i].item,
a74093da 735 NULL, 0);
1d1729ca 736 obj_read_unlock();
74ed4371 737
e30b1525
RS
738 if (!real_obj) {
739 char hex[GIT_MAX_HEXSZ + 1];
740 const char *name = list->objects[i].name;
741
742 if (!name) {
743 oid_to_hex_r(hex, &list->objects[i].item->oid);
744 name = hex;
745 }
746 die(_("invalid object '%s' given."), name);
747 }
748
74ed4371
BW
749 /* load the gitmodules file for this rev */
750 if (recurse_submodules) {
dba093dd 751 submodule_free(opt->repo);
1d1729ca 752 obj_read_lock();
cd73de47 753 gitmodules_config_oid(&real_obj->oid);
1d1729ca 754 obj_read_unlock();
74ed4371 755 }
6856077a
JT
756 if (grep_object(opt, pathspec, real_obj, list->objects[i].name,
757 list->objects[i].path)) {
30d00c39
JN
758 hit = 1;
759 if (opt->status_only)
760 break;
761 }
762 }
763 return hit;
764}
765
dbfae86a 766static int grep_directory(struct grep_opt *opt, const struct pathspec *pathspec,
85975c0c 767 int exc_std, int use_index)
59332d13 768{
ce93a4c6 769 struct dir_struct dir = DIR_INIT;
59332d13
JH
770 int i, hit = 0;
771
85975c0c
JK
772 if (!use_index)
773 dir.flags |= DIR_NO_GITLINKS;
0a93fb8a
JH
774 if (exc_std)
775 setup_standard_excludes(&dir);
59332d13 776
dba093dd 777 fill_directory(&dir, opt->repo->index, pathspec);
59332d13
JH
778 for (i = 0; i < dir.nr; i++) {
779 hit |= grep_file(opt, dir.entries[i]->name);
780 if (hit && opt->status_only)
781 break;
782 }
eceba532 783 dir_clear(&dir);
59332d13
JH
784 return hit;
785}
786
ff3c7f9a
RS
787static int context_callback(const struct option *opt, const char *arg,
788 int unset)
3e230fa1
RS
789{
790 struct grep_opt *grep_opt = opt->value;
791 int value;
792 const char *endp;
793
794 if (unset) {
795 grep_opt->pre_context = grep_opt->post_context = 0;
796 return 0;
797 }
798 value = strtol(arg, (char **)&endp, 10);
799 if (*endp) {
2fc5f9f1 800 return error(_("switch `%c' expects a numerical value"),
3e230fa1
RS
801 opt->short_name);
802 }
803 grep_opt->pre_context = grep_opt->post_context = value;
804 return 0;
805}
806
ff3c7f9a 807static int file_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
808{
809 struct grep_opt *grep_opt = opt->value;
517fe807 810 int from_stdin;
3e230fa1
RS
811 FILE *patterns;
812 int lno = 0;
cfe370c6 813 struct strbuf sb = STRBUF_INIT;
3e230fa1 814
517fe807
JK
815 BUG_ON_OPT_NEG(unset);
816
817 from_stdin = !strcmp(arg, "-");
c41dd2fd 818 patterns = from_stdin ? stdin : fopen(arg, "r");
3e230fa1 819 if (!patterns)
2fc5f9f1 820 die_errno(_("cannot open '%s'"), arg);
a5518431 821 while (strbuf_getline(&sb, patterns) == 0) {
3e230fa1
RS
822 /* ignore empty line like grep does */
823 if (sb.len == 0)
824 continue;
ed40a095 825
ec830611
RS
826 append_grep_pat(grep_opt, sb.buf, sb.len, arg, ++lno,
827 GREP_PATTERN);
3e230fa1 828 }
c41dd2fd
RS
829 if (!from_stdin)
830 fclose(patterns);
3e230fa1
RS
831 strbuf_release(&sb);
832 return 0;
833}
834
ff3c7f9a 835static int not_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
836{
837 struct grep_opt *grep_opt = opt->value;
517fe807
JK
838 BUG_ON_OPT_NEG(unset);
839 BUG_ON_OPT_ARG(arg);
3e230fa1
RS
840 append_grep_pattern(grep_opt, "--not", "command line", 0, GREP_NOT);
841 return 0;
842}
843
ff3c7f9a 844static int and_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
845{
846 struct grep_opt *grep_opt = opt->value;
517fe807
JK
847 BUG_ON_OPT_NEG(unset);
848 BUG_ON_OPT_ARG(arg);
3e230fa1
RS
849 append_grep_pattern(grep_opt, "--and", "command line", 0, GREP_AND);
850 return 0;
851}
852
ff3c7f9a 853static int open_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
854{
855 struct grep_opt *grep_opt = opt->value;
517fe807
JK
856 BUG_ON_OPT_NEG(unset);
857 BUG_ON_OPT_ARG(arg);
3e230fa1
RS
858 append_grep_pattern(grep_opt, "(", "command line", 0, GREP_OPEN_PAREN);
859 return 0;
860}
861
ff3c7f9a 862static int close_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
863{
864 struct grep_opt *grep_opt = opt->value;
517fe807
JK
865 BUG_ON_OPT_NEG(unset);
866 BUG_ON_OPT_ARG(arg);
3e230fa1
RS
867 append_grep_pattern(grep_opt, ")", "command line", 0, GREP_CLOSE_PAREN);
868 return 0;
869}
870
ff3c7f9a
RS
871static int pattern_callback(const struct option *opt, const char *arg,
872 int unset)
3e230fa1
RS
873{
874 struct grep_opt *grep_opt = opt->value;
517fe807 875 BUG_ON_OPT_NEG(unset);
3e230fa1
RS
876 append_grep_pattern(grep_opt, arg, "-e option", 0, GREP_PATTERN);
877 return 0;
878}
5010cb5f 879
a633fca0 880int cmd_grep(int argc, const char **argv, const char *prefix)
5010cb5f 881{
5010cb5f 882 int hit = 0;
0a93fb8a 883 int cached = 0, untracked = 0, opt_exclude = -1;
5acd64ed 884 int seen_dashdash = 0;
bbc09c22 885 int external_grep_allowed__ignored;
0af88c15 886 const char *show_in_pager = NULL, *default_pager = "dummy";
5010cb5f 887 struct grep_opt opt;
3cd47459 888 struct object_array list = OBJECT_ARRAY_INIT;
f34bbc15 889 struct pathspec pathspec;
b202e51b 890 struct string_list path_list = STRING_LIST_INIT_DUP;
5acd64ed 891 int i;
3e230fa1 892 int dummy;
ff38d1a9 893 int use_index = 1;
131f3c96 894 int allow_revs;
cca2c172 895
3e230fa1 896 struct option options[] = {
d5d09d47 897 OPT_BOOL(0, "cached", &cached,
4b407bc5 898 N_("search in index instead of in the work tree")),
cbb08c2e 899 OPT_NEGBIT(0, "no-index", &use_index,
f63cf8c9 900 N_("find in contents not managed by git"), 1),
d5d09d47 901 OPT_BOOL(0, "untracked", &untracked,
4b407bc5 902 N_("search in both tracked and untracked files")),
0a93fb8a 903 OPT_SET_INT(0, "exclude-standard", &opt_exclude,
77fdb8a8 904 N_("ignore files specified via '.gitignore'"), 1),
0281e487 905 OPT_BOOL(0, "recurse-submodules", &recurse_submodules,
4fb1c6aa 906 N_("recursively search in each submodule")),
3e230fa1 907 OPT_GROUP(""),
d5d09d47 908 OPT_BOOL('v', "invert-match", &opt.invert,
4b407bc5 909 N_("show non-matching lines")),
d5d09d47 910 OPT_BOOL('i', "ignore-case", &opt.ignore_case,
4b407bc5 911 N_("case insensitive matching")),
d5d09d47 912 OPT_BOOL('w', "word-regexp", &opt.word_regexp,
4b407bc5 913 N_("match patterns only at word boundaries")),
3e230fa1 914 OPT_SET_INT('a', "text", &opt.binary,
4b407bc5 915 N_("process binary files as text"), GREP_BINARY_TEXT),
3e230fa1 916 OPT_SET_INT('I', NULL, &opt.binary,
4b407bc5 917 N_("don't match patterns in binary files"),
3e230fa1 918 GREP_BINARY_NOMATCH),
335ec3bf
JK
919 OPT_BOOL(0, "textconv", &opt.allow_textconv,
920 N_("process binary files with textconv filters")),
0a09e5ed
RS
921 OPT_SET_INT('r', "recursive", &opt.max_depth,
922 N_("search in subdirectories (default)"), -1),
4b407bc5
NTND
923 { OPTION_INTEGER, 0, "max-depth", &opt.max_depth, N_("depth"),
924 N_("descend at most <depth> levels"), PARSE_OPT_NONEG,
a91f453f 925 NULL, 1 },
3e230fa1 926 OPT_GROUP(""),
04bf052e 927 OPT_SET_INT('E', "extended-regexp", &opt.pattern_type_option,
4b407bc5 928 N_("use extended POSIX regular expressions"),
84befcd0 929 GREP_PATTERN_TYPE_ERE),
04bf052e 930 OPT_SET_INT('G', "basic-regexp", &opt.pattern_type_option,
4b407bc5 931 N_("use basic POSIX regular expressions (default)"),
84befcd0 932 GREP_PATTERN_TYPE_BRE),
04bf052e 933 OPT_SET_INT('F', "fixed-strings", &opt.pattern_type_option,
4b407bc5 934 N_("interpret patterns as fixed strings"),
84befcd0 935 GREP_PATTERN_TYPE_FIXED),
04bf052e 936 OPT_SET_INT('P', "perl-regexp", &opt.pattern_type_option,
4b407bc5 937 N_("use Perl-compatible regular expressions"),
84befcd0 938 GREP_PATTERN_TYPE_PCRE),
3e230fa1 939 OPT_GROUP(""),
d5d09d47 940 OPT_BOOL('n', "line-number", &opt.linenum, N_("show line numbers")),
a449f27f 941 OPT_BOOL(0, "column", &opt.columnnum, N_("show column number of first match")),
4b407bc5
NTND
942 OPT_NEGBIT('h', NULL, &opt.pathname, N_("don't show filenames"), 1),
943 OPT_BIT('H', NULL, &opt.pathname, N_("show filenames"), 1),
3e230fa1 944 OPT_NEGBIT(0, "full-name", &opt.relative,
4b407bc5 945 N_("show filenames relative to top directory"), 1),
d5d09d47 946 OPT_BOOL('l', "files-with-matches", &opt.name_only,
4b407bc5 947 N_("show only filenames instead of matching lines")),
d5d09d47 948 OPT_BOOL(0, "name-only", &opt.name_only,
4b407bc5 949 N_("synonym for --files-with-matches")),
d5d09d47 950 OPT_BOOL('L', "files-without-match",
3e230fa1 951 &opt.unmatch_name_only,
4b407bc5 952 N_("show only the names of files without match")),
caf2de33
NTND
953 OPT_BOOL_F('z', "null", &opt.null_following_name,
954 N_("print NUL after filenames"),
955 PARSE_OPT_NOCOMPLETE),
9d8db06e
TB
956 OPT_BOOL('o', "only-matching", &opt.only_matching,
957 N_("show only matching parts of a line")),
d5d09d47 958 OPT_BOOL('c', "count", &opt.count,
4b407bc5
NTND
959 N_("show the number of matches instead of matching lines")),
960 OPT__COLOR(&opt.color, N_("highlight matches")),
d5d09d47 961 OPT_BOOL(0, "break", &opt.file_break,
4b407bc5 962 N_("print empty line between matches from different files")),
d5d09d47 963 OPT_BOOL(0, "heading", &opt.heading,
4b407bc5 964 N_("show filename only once above matches from same file")),
3e230fa1 965 OPT_GROUP(""),
4b407bc5
NTND
966 OPT_CALLBACK('C', "context", &opt, N_("n"),
967 N_("show <n> context lines before and after matches"),
3e230fa1 968 context_callback),
317f63c2 969 OPT_INTEGER('B', "before-context", &opt.pre_context,
4b407bc5 970 N_("show <n> context lines before matches")),
317f63c2 971 OPT_INTEGER('A', "after-context", &opt.post_context,
4b407bc5 972 N_("show <n> context lines after matches")),
89f09dd3
VL
973 OPT_INTEGER(0, "threads", &num_threads,
974 N_("use <n> worker threads")),
4b407bc5 975 OPT_NUMBER_CALLBACK(&opt, N_("shortcut for -C NUM"),
3e230fa1 976 context_callback),
d5d09d47 977 OPT_BOOL('p', "show-function", &opt.funcname,
4b407bc5 978 N_("show a line with the function name before matches")),
d5d09d47 979 OPT_BOOL('W', "function-context", &opt.funcbody,
4b407bc5 980 N_("show the surrounding function")),
3e230fa1 981 OPT_GROUP(""),
4b407bc5
NTND
982 OPT_CALLBACK('f', NULL, &opt, N_("file"),
983 N_("read patterns from file"), file_callback),
203c8533
DL
984 OPT_CALLBACK_F('e', NULL, &opt, N_("pattern"),
985 N_("match <pattern>"), PARSE_OPT_NONEG, pattern_callback),
986 OPT_CALLBACK_F(0, "and", &opt, NULL,
987 N_("combine patterns specified with -e"),
988 PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback),
d5d09d47 989 OPT_BOOL(0, "or", &dummy, ""),
203c8533
DL
990 OPT_CALLBACK_F(0, "not", &opt, NULL, "",
991 PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback),
992 OPT_CALLBACK_F('(', NULL, &opt, NULL, "",
993 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
994 open_callback),
995 OPT_CALLBACK_F(')', NULL, &opt, NULL, "",
996 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
997 close_callback),
d52ee6e6 998 OPT__QUIET(&opt.status_only,
4b407bc5 999 N_("indicate hit with exit status without output")),
d5d09d47 1000 OPT_BOOL(0, "all-match", &opt.all_match,
4b407bc5 1001 N_("show only matches from files that match all patterns")),
3e230fa1 1002 OPT_GROUP(""),
0af88c15 1003 { OPTION_STRING, 'O', "open-files-in-pager", &show_in_pager,
4b407bc5 1004 N_("pager"), N_("show matching files in the pager"),
caf2de33
NTND
1005 PARSE_OPT_OPTARG | PARSE_OPT_NOCOMPLETE,
1006 NULL, (intptr_t)default_pager },
1007 OPT_BOOL_F(0, "ext-grep", &external_grep_allowed__ignored,
1008 N_("allow calling of grep(1) (ignored by this build)"),
1009 PARSE_OPT_NOCOMPLETE),
68437ede
CL
1010 OPT_INTEGER('m', "max-count", &opt.max_count,
1011 N_("maximum number of results per file")),
3e230fa1
RS
1012 OPT_END()
1013 };
9725c8dd 1014 grep_prefix = prefix;
5010cb5f 1015
9725c8dd 1016 grep_init(&opt, the_repository);
72365bb4 1017 git_config(grep_cmd_config, &opt);
7e8f59d5 1018
5010cb5f 1019 /*
5acd64ed
JH
1020 * If there is no -- then the paths must exist in the working
1021 * tree. If there is no explicit pattern specified with -e or
1022 * -f, we take the first unrecognized non option to be the
1023 * pattern, but then what follows it must be zero or more
1024 * valid refs up to the -- (if exists), and then existing
1025 * paths. If there is an explicit pattern, then the first
82e5a82f 1026 * unrecognized non option is the beginning of the refs list
5acd64ed 1027 * that continues up to the -- (if exists), and then paths.
5010cb5f 1028 */
37782920 1029 argc = parse_options(argc, argv, prefix, options, grep_usage,
3e230fa1 1030 PARSE_OPT_KEEP_DASHDASH |
44415499 1031 PARSE_OPT_STOP_AT_NON_OPTION);
3e230fa1 1032
7cae7627
SY
1033 if (the_repository->gitdir) {
1034 prepare_repo_settings(the_repository);
1035 the_repository->settings.command_requires_full_index = 0;
1036 }
1037
ecd9ba61
TG
1038 if (use_index && !startup_info->have_repository) {
1039 int fallback = 0;
1040 git_config_get_bool("grep.fallbacktonoindex", &fallback);
1041 if (fallback)
1042 use_index = 0;
1043 else
1044 /* die the same way as if we did it at the beginning */
1045 setup_git_directory();
1046 }
c56c48dd
PB
1047 /* Ignore --recurse-submodules if --no-index is given or implied */
1048 if (!use_index)
1049 recurse_submodules = 0;
59332d13 1050
1123c67c
JK
1051 /*
1052 * skip a -- separator; we know it cannot be
1053 * separating revisions from pathnames if
1054 * we haven't even had any patterns yet
1055 */
1056 if (argc > 0 && !opt.pattern_list && !strcmp(argv[0], "--")) {
1057 argv++;
1058 argc--;
1059 }
1060
3e230fa1
RS
1061 /* First unrecognized non-option token */
1062 if (argc > 0 && !opt.pattern_list) {
1063 append_grep_pattern(&opt, argv[0], "command line", 0,
1064 GREP_PATTERN);
1065 argv++;
1066 argc--;
5010cb5f 1067 }
5acd64ed 1068
0af88c15
JS
1069 if (show_in_pager == default_pager)
1070 show_in_pager = git_pager(1);
678e484b 1071 if (show_in_pager) {
e7b082a4 1072 opt.color = 0;
0af88c15
JS
1073 opt.name_only = 1;
1074 opt.null_following_name = 1;
1075 opt.output_priv = &path_list;
1076 opt.output = append_path;
0c72cead 1077 string_list_append(&path_list, show_in_pager);
678e484b
JS
1078 }
1079
f9b9faf6 1080 if (!opt.pattern_list)
1a07e59c 1081 die(_("no pattern given"));
5b594f45 1082
9d8db06e
TB
1083 /* --only-matching has no effect with --invert. */
1084 if (opt.invert)
1085 opt.only_matching = 0;
1086
b5b81136
JK
1087 /*
1088 * We have to find "--" in a separate pass, because its presence
1089 * influences how we will parse arguments that come before it.
1090 */
1091 for (i = 0; i < argc; i++) {
1092 if (!strcmp(argv[i], "--")) {
1093 seen_dashdash = 1;
1094 break;
1095 }
1096 }
1097
1098 /*
1099 * Resolve any rev arguments. If we have a dashdash, then everything up
1100 * to it must resolve as a rev. If not, then we stop at the first
1101 * non-rev and assume everything else is a path.
1102 */
131f3c96 1103 allow_revs = use_index && !untracked;
3e230fa1 1104 for (i = 0; i < argc; i++) {
5acd64ed 1105 const char *arg = argv[i];
1db11086 1106 struct object_id oid;
afa15f3c 1107 struct object_context oc;
20d6421c
JK
1108 struct object *object;
1109
dca3b5f5
JT
1110 if (!strcmp(arg, "--")) {
1111 i++;
dca3b5f5
JT
1112 break;
1113 }
20d6421c 1114
131f3c96 1115 if (!allow_revs) {
d0ffc069 1116 if (seen_dashdash)
131f3c96 1117 die(_("--no-index or --untracked cannot be used with revs"));
d0ffc069
JK
1118 break;
1119 }
1120
3a7a698e
NTND
1121 if (get_oid_with_context(the_repository, arg,
1122 GET_OID_RECORD_PATH,
e82caf38 1123 &oid, &oc)) {
b5b81136
JK
1124 if (seen_dashdash)
1125 die(_("unable to resolve revision: %s"), arg);
20d6421c 1126 break;
b5b81136 1127 }
20d6421c 1128
c251c83d 1129 object = parse_object_or_die(&oid, arg);
20d6421c
JK
1130 if (!seen_dashdash)
1131 verify_non_filename(prefix, arg);
1132 add_object_array_with_path(object, arg, &list, oc.mode, oc.path);
dc944b65 1133 free(oc.path);
1362671f 1134 }
5acd64ed 1135
b5b81136
JK
1136 /*
1137 * Anything left over is presumed to be a path. But in the non-dashdash
1138 * "do what I mean" case, we verify and complain when that isn't true.
1139 */
a0fe2b0d
JK
1140 if (!seen_dashdash) {
1141 int j;
1142 for (j = i; j < argc; j++)
131f3c96 1143 verify_filename(prefix, argv[j], j == i && allow_revs);
a0fe2b0d
JK
1144 }
1145
1146 parse_pathspec(&pathspec, 0,
1147 PATHSPEC_PREFER_CWD |
1148 (opt.max_depth != -1 ? PATHSPEC_MAXDEPTH_VALID : 0),
1149 prefix, argv + i);
1150 pathspec.max_depth = opt.max_depth;
1151 pathspec.recursive = 1;
eef3df5a 1152 pathspec.recurse_submodules = !!recurse_submodules;
a0fe2b0d 1153
56ceb64e
JH
1154 if (recurse_submodules && untracked)
1155 die(_("--untracked not supported with --recurse-submodules"));
c441ea4e 1156
68437ede
CL
1157 /*
1158 * Optimize out the case where the amount of matches is limited to zero.
1159 * We do this to keep results consistent with GNU grep(1).
1160 */
1161 if (opt.max_count == 0)
1162 return 1;
1163
1184a95e 1164 if (show_in_pager) {
fd6263fb
NTND
1165 if (num_threads > 1)
1166 warning(_("invalid option combination, ignoring --threads"));
1167 num_threads = 1;
1168 } else if (!HAVE_THREADS && num_threads > 1) {
d1edee4a 1169 warning(_("no threads support, ignoring --threads"));
fd6263fb
NTND
1170 num_threads = 1;
1171 } else if (num_threads < 0)
1172 die(_("invalid number of threads specified (%d)"), num_threads);
1173 else if (num_threads == 0)
f1928f04 1174 num_threads = HAVE_THREADS ? online_cpus() : 1;
53b8d931 1175
fd6263fb
NTND
1176 if (num_threads > 1) {
1177 if (!HAVE_THREADS)
1178 BUG("Somebody got num_threads calculation wrong!");
1179 if (!(opt.name_only || opt.unmatch_name_only || opt.count)
1180 && (opt.pre_context || opt.post_context ||
1181 opt.file_break || opt.funcbody))
1182 skip_first_line = 1;
c441ea4e
MT
1183
1184 /*
6c307626
MT
1185 * Pre-read gitmodules (if not read already) and force eager
1186 * initialization of packed_git to prevent racy lazy
1187 * reading/initialization once worker threads are started.
c441ea4e
MT
1188 */
1189 if (recurse_submodules)
1190 repo_read_gitmodules(the_repository, 1);
6c307626
MT
1191 if (startup_info->have_repository)
1192 (void)get_packed_git(the_repository);
c441ea4e 1193
fd6263fb 1194 start_threads(&opt);
4002e87c 1195 } else {
6d423dd5
ÆAB
1196 /*
1197 * The compiled patterns on the main path are only
1198 * used when not using threading. Otherwise
fd6263fb 1199 * start_threads() above calls compile_grep_patterns()
6d423dd5
ÆAB
1200 * for each thread.
1201 */
1202 compile_grep_patterns(&opt);
53b8d931 1203 }
53b8d931 1204
678e484b 1205 if (show_in_pager && (cached || list.nr))
e4fe4ba5 1206 die(_("--open-files-in-pager only works on the worktree"));
678e484b
JS
1207
1208 if (show_in_pager && opt.pattern_list && !opt.pattern_list->next) {
1209 const char *pager = path_list.items[0].string;
1210 int len = strlen(pager);
1211
1212 if (len > 4 && is_dir_sep(pager[len - 5]))
1213 pager += len - 4;
1214
f7febbea
JS
1215 if (opt.ignore_case && !strcmp("less", pager))
1216 string_list_append(&path_list, "-I");
1217
678e484b
JS
1218 if (!strcmp("less", pager) || !strcmp("vi", pager)) {
1219 struct strbuf buf = STRBUF_INIT;
1220 strbuf_addf(&buf, "+/%s%s",
1221 strcmp("less", pager) ? "" : "*",
1222 opt.pattern_list->pattern);
b202e51b
ÆAB
1223 string_list_append_nodup(&path_list,
1224 strbuf_detach(&buf, NULL));
678e484b
JS
1225 }
1226 }
1227
c2048f0b 1228 if (!show_in_pager && !opt.status_only)
678e484b
JS
1229 setup_pager();
1230
a699367b
JNA
1231 die_for_incompatible_opt3(!use_index, "--no-index",
1232 untracked, "--untracked",
1233 cached, "--cached");
0c5d83b2 1234
0a93fb8a 1235 if (!use_index || untracked) {
0a93fb8a 1236 int use_exclude = (opt_exclude < 0) ? use_index : !!opt_exclude;
85975c0c 1237 hit = grep_directory(&opt, &pathspec, use_exclude, use_index);
dbfae86a 1238 } else if (0 <= opt_exclude) {
1a07e59c 1239 die(_("--[no-]exclude-standard cannot be used for tracked contents"));
685359cf 1240 } else if (!list.nr) {
6577f542
NTND
1241 if (!cached)
1242 setup_work_tree();
5b594f45 1243
dba093dd 1244 hit = grep_cache(&opt, &pathspec, cached);
685359cf
JS
1245 } else {
1246 if (cached)
1a07e59c 1247 die(_("both --cached and trees are given"));
f9ee2fcd 1248
6856077a 1249 hit = grep_objects(&opt, &pathspec, &list);
5010cb5f 1250 }
5b594f45 1251
fd6263fb 1252 if (num_threads > 1)
5b594f45 1253 hit |= wait_all();
678e484b
JS
1254 if (hit && show_in_pager)
1255 run_pager(&opt, prefix);
7861fa07 1256 clear_pathspec(&pathspec);
b202e51b 1257 string_list_clear(&path_list, 0);
b48fb5b6 1258 free_grep_patterns(&opt);
96c10125 1259 object_array_clear(&list);
dd45471a 1260 free_repos();
5010cb5f
JH
1261 return !hit;
1262}