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