]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/grep.c
grep: move the configuration parsing logic to grep.[ch]
[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"
7#include "blob.h"
8#include "tree.h"
9#include "commit.h"
10#include "tag.h"
1362671f 11#include "tree-walk.h"
5010cb5f 12#include "builtin.h"
3e230fa1 13#include "parse-options.h"
678e484b
JS
14#include "string-list.h"
15#include "run-command.h"
60ecac98 16#include "userdiff.h"
83b5d2f5 17#include "grep.h"
493b7a08 18#include "quote.h"
59332d13 19#include "dir.h"
5b594f45 20
3e230fa1 21static char const * const grep_usage[] = {
4b407bc5 22 N_("git grep [options] [-e] <pattern> [<rev>...] [[--] <path>...]"),
3e230fa1
RS
23 NULL
24};
25
5b594f45
FK
26static int use_threads = 1;
27
28#ifndef NO_PTHREADS
29#define THREADS 8
30static pthread_t threads[THREADS];
31
5b594f45
FK
32/* We use one producer thread and THREADS consumer
33 * threads. The producer adds struct work_items to 'todo' and the
34 * consumers pick work items from the same array.
35 */
9cba13ca 36struct work_item {
8f24a632 37 struct grep_source source;
5b594f45
FK
38 char done;
39 struct strbuf out;
40};
41
42/* In the range [todo_done, todo_start) in 'todo' we have work_items
43 * that have been or are processed by a consumer thread. We haven't
44 * written the result for these to stdout yet.
45 *
46 * The work_items in [todo_start, todo_end) are waiting to be picked
47 * up by a consumer thread.
48 *
49 * The ranges are modulo TODO_SIZE.
50 */
51#define TODO_SIZE 128
52static struct work_item todo[TODO_SIZE];
53static int todo_start;
54static int todo_end;
55static int todo_done;
56
57/* Has all work items been added? */
58static int all_work_added;
59
60/* This lock protects all the variables above. */
61static pthread_mutex_t grep_mutex;
62
1487a12b
JH
63static inline void grep_lock(void)
64{
65 if (use_threads)
66 pthread_mutex_lock(&grep_mutex);
67}
68
69static inline void grep_unlock(void)
70{
71 if (use_threads)
72 pthread_mutex_unlock(&grep_mutex);
73}
74
5b594f45
FK
75/* Signalled when a new work_item is added to todo. */
76static pthread_cond_t cond_add;
77
78/* Signalled when the result from one work_item is written to
79 * stdout.
80 */
81static pthread_cond_t cond_write;
82
83/* Signalled when we are finished with everything. */
84static pthread_cond_t cond_result;
85
08303c36 86static int skip_first_line;
431d6e7b 87
9dd5245c
JK
88static void add_work(struct grep_opt *opt, enum grep_source_type type,
89 const char *name, const void *id)
5b594f45
FK
90{
91 grep_lock();
92
93 while ((todo_end+1) % ARRAY_SIZE(todo) == todo_done) {
94 pthread_cond_wait(&cond_write, &grep_mutex);
95 }
96
8f24a632 97 grep_source_init(&todo[todo_end].source, type, name, id);
9dd5245c
JK
98 if (opt->binary != GREP_BINARY_TEXT)
99 grep_source_load_driver(&todo[todo_end].source);
5b594f45
FK
100 todo[todo_end].done = 0;
101 strbuf_reset(&todo[todo_end].out);
102 todo_end = (todo_end + 1) % ARRAY_SIZE(todo);
103
104 pthread_cond_signal(&cond_add);
105 grep_unlock();
106}
107
108static struct work_item *get_work(void)
109{
110 struct work_item *ret;
111
112 grep_lock();
113 while (todo_start == todo_end && !all_work_added) {
114 pthread_cond_wait(&cond_add, &grep_mutex);
115 }
116
117 if (todo_start == todo_end && all_work_added) {
118 ret = NULL;
119 } else {
120 ret = &todo[todo_start];
121 todo_start = (todo_start + 1) % ARRAY_SIZE(todo);
122 }
123 grep_unlock();
124 return ret;
125}
126
5b594f45
FK
127static void work_done(struct work_item *w)
128{
129 int old_done;
130
131 grep_lock();
132 w->done = 1;
133 old_done = todo_done;
134 for(; todo[todo_done].done && todo_done != todo_start;
135 todo_done = (todo_done+1) % ARRAY_SIZE(todo)) {
136 w = &todo[todo_done];
431d6e7b 137 if (w->out.len) {
08303c36
RS
138 const char *p = w->out.buf;
139 size_t len = w->out.len;
140
141 /* Skip the leading hunk mark of the first file. */
142 if (skip_first_line) {
143 while (len) {
144 len--;
145 if (*p++ == '\n')
146 break;
147 }
148 skip_first_line = 0;
149 }
150
151 write_or_die(1, p, len);
431d6e7b 152 }
8f24a632 153 grep_source_clear(&w->source);
5b594f45
FK
154 }
155
156 if (old_done != todo_done)
157 pthread_cond_signal(&cond_write);
158
159 if (all_work_added && todo_done == todo_end)
160 pthread_cond_signal(&cond_result);
161
162 grep_unlock();
163}
164
165static void *run(void *arg)
166{
167 int hit = 0;
168 struct grep_opt *opt = arg;
169
170 while (1) {
171 struct work_item *w = get_work();
172 if (!w)
173 break;
174
175 opt->output_priv = w;
8f24a632
JK
176 hit |= grep_source(opt, &w->source);
177 grep_source_clear_data(&w->source);
5b594f45
FK
178 work_done(w);
179 }
bfac23d9
DM
180 free_grep_patterns(arg);
181 free(arg);
5b594f45
FK
182
183 return (void*) (intptr_t) hit;
184}
185
186static void strbuf_out(struct grep_opt *opt, const void *buf, size_t size)
187{
188 struct work_item *w = opt->output_priv;
189 strbuf_add(&w->out, buf, size);
190}
191
192static void start_threads(struct grep_opt *opt)
193{
194 int i;
195
196 pthread_mutex_init(&grep_mutex, NULL);
b3aeb285 197 pthread_mutex_init(&grep_read_mutex, NULL);
0579f91d 198 pthread_mutex_init(&grep_attr_mutex, NULL);
5b594f45
FK
199 pthread_cond_init(&cond_add, NULL);
200 pthread_cond_init(&cond_write, NULL);
201 pthread_cond_init(&cond_result, NULL);
78db6ea9 202 grep_use_locks = 1;
5b594f45
FK
203
204 for (i = 0; i < ARRAY_SIZE(todo); i++) {
205 strbuf_init(&todo[i].out, 0);
206 }
207
208 for (i = 0; i < ARRAY_SIZE(threads); i++) {
209 int err;
210 struct grep_opt *o = grep_opt_dup(opt);
211 o->output = strbuf_out;
208f5aa4 212 o->debug = 0;
5b594f45
FK
213 compile_grep_patterns(o);
214 err = pthread_create(&threads[i], NULL, run, o);
215
216 if (err)
2fc5f9f1 217 die(_("grep: failed to create thread: %s"),
5b594f45
FK
218 strerror(err));
219 }
220}
221
222static int wait_all(void)
223{
224 int hit = 0;
225 int i;
226
227 grep_lock();
228 all_work_added = 1;
229
230 /* Wait until all work is done. */
231 while (todo_done != todo_end)
232 pthread_cond_wait(&cond_result, &grep_mutex);
233
234 /* Wake up all the consumer threads so they can see that there
235 * is no more work to do.
236 */
237 pthread_cond_broadcast(&cond_add);
238 grep_unlock();
239
240 for (i = 0; i < ARRAY_SIZE(threads); i++) {
241 void *h;
242 pthread_join(threads[i], &h);
243 hit |= (int) (intptr_t) h;
244 }
245
246 pthread_mutex_destroy(&grep_mutex);
b3aeb285 247 pthread_mutex_destroy(&grep_read_mutex);
0579f91d 248 pthread_mutex_destroy(&grep_attr_mutex);
5b594f45
FK
249 pthread_cond_destroy(&cond_add);
250 pthread_cond_destroy(&cond_write);
251 pthread_cond_destroy(&cond_result);
78db6ea9 252 grep_use_locks = 0;
5b594f45
FK
253
254 return hit;
255}
256#else /* !NO_PTHREADS */
5b594f45
FK
257
258static int wait_all(void)
259{
260 return 0;
261}
262#endif
263
84befcd0
S
264static void grep_pattern_type_options(const int pattern_type, struct grep_opt *opt)
265{
266 switch (pattern_type) {
267 case GREP_PATTERN_TYPE_UNSPECIFIED:
268 /* fall through */
269
270 case GREP_PATTERN_TYPE_BRE:
271 opt->fixed = 0;
272 opt->pcre = 0;
273 opt->regflags &= ~REG_EXTENDED;
274 break;
275
276 case GREP_PATTERN_TYPE_ERE:
277 opt->fixed = 0;
278 opt->pcre = 0;
279 opt->regflags |= REG_EXTENDED;
280 break;
281
282 case GREP_PATTERN_TYPE_FIXED:
283 opt->fixed = 1;
284 opt->pcre = 0;
285 opt->regflags &= ~REG_EXTENDED;
286 break;
287
288 case GREP_PATTERN_TYPE_PCRE:
289 opt->fixed = 0;
290 opt->pcre = 1;
291 opt->regflags &= ~REG_EXTENDED;
292 break;
293 }
294}
295
15fabd1b
JH
296static int grep_cmd_config(const char *var, const char *value, void *cb)
297{
298 int st = grep_config(var, value, cb);
299 if (git_color_default_config(var, value, cb) < 0)
300 st = -1;
301 return st;
302}
303
5f02d315
JH
304static void *lock_and_read_sha1_file(const unsigned char *sha1, enum object_type *type, unsigned long *size)
305{
306 void *data;
307
b3aeb285 308 grep_read_lock();
76416139 309 data = read_sha1_file(sha1, type, size);
b3aeb285 310 grep_read_unlock();
5b594f45
FK
311 return data;
312}
313
314static int grep_sha1(struct grep_opt *opt, const unsigned char *sha1,
315 const char *filename, int tree_name_len)
316{
317 struct strbuf pathbuf = STRBUF_INIT;
5b594f45 318
0d042fec 319 if (opt->relative && opt->prefix_length) {
5b594f45
FK
320 quote_path_relative(filename + tree_name_len, -1, &pathbuf,
321 opt->prefix);
322 strbuf_insert(&pathbuf, 0, filename, tree_name_len);
323 } else {
324 strbuf_addstr(&pathbuf, filename);
325 }
326
5b594f45
FK
327#ifndef NO_PTHREADS
328 if (use_threads) {
9dd5245c 329 add_work(opt, GREP_SOURCE_SHA1, pathbuf.buf, sha1);
8f24a632 330 strbuf_release(&pathbuf);
5b594f45
FK
331 return 0;
332 } else
333#endif
334 {
8f24a632 335 struct grep_source gs;
5b594f45 336 int hit;
5010cb5f 337
8f24a632
JK
338 grep_source_init(&gs, GREP_SOURCE_SHA1, pathbuf.buf, sha1);
339 strbuf_release(&pathbuf);
340 hit = grep_source(opt, &gs);
dc49cd76 341
8f24a632
JK
342 grep_source_clear(&gs);
343 return hit;
5010cb5f 344 }
5b594f45
FK
345}
346
347static int grep_file(struct grep_opt *opt, const char *filename)
348{
349 struct strbuf buf = STRBUF_INIT;
5b594f45 350
0d042fec 351 if (opt->relative && opt->prefix_length)
5b594f45
FK
352 quote_path_relative(filename, -1, &buf, opt->prefix);
353 else
354 strbuf_addstr(&buf, filename);
5b594f45
FK
355
356#ifndef NO_PTHREADS
357 if (use_threads) {
9dd5245c 358 add_work(opt, GREP_SOURCE_FILE, buf.buf, filename);
8f24a632 359 strbuf_release(&buf);
5b594f45
FK
360 return 0;
361 } else
362#endif
363 {
8f24a632 364 struct grep_source gs;
5b594f45 365 int hit;
5b594f45 366
8f24a632
JK
367 grep_source_init(&gs, GREP_SOURCE_FILE, buf.buf, filename);
368 strbuf_release(&buf);
369 hit = grep_source(opt, &gs);
370
371 grep_source_clear(&gs);
5b594f45
FK
372 return hit;
373 }
5010cb5f
JH
374}
375
678e484b
JS
376static void append_path(struct grep_opt *opt, const void *data, size_t len)
377{
378 struct string_list *path_list = opt->output_priv;
379
380 if (len == 1 && *(const char *)data == '\0')
381 return;
0c72cead 382 string_list_append(path_list, xstrndup(data, len));
678e484b
JS
383}
384
385static void run_pager(struct grep_opt *opt, const char *prefix)
386{
387 struct string_list *path_list = opt->output_priv;
388 const char **argv = xmalloc(sizeof(const char *) * (path_list->nr + 1));
389 int i, status;
390
391 for (i = 0; i < path_list->nr; i++)
392 argv[i] = path_list->items[i].string;
393 argv[path_list->nr] = NULL;
394
395 if (prefix && chdir(prefix))
2fc5f9f1 396 die(_("Failed to chdir: %s"), prefix);
678e484b
JS
397 status = run_command_v_opt(argv, RUN_USING_SHELL);
398 if (status)
399 exit(status);
400 free(argv);
401}
402
f34bbc15 403static int grep_cache(struct grep_opt *opt, const struct pathspec *pathspec, int cached)
5010cb5f
JH
404{
405 int hit = 0;
406 int nr;
407 read_cache();
408
409 for (nr = 0; nr < active_nr; nr++) {
410 struct cache_entry *ce = active_cache[nr];
7a51ed66 411 if (!S_ISREG(ce->ce_mode))
5010cb5f 412 continue;
2ed2437a 413 if (!match_pathspec_depth(pathspec, ce->name, ce_namelen(ce), 0, NULL))
5010cb5f 414 continue;
57d43466
NTND
415 /*
416 * If CE_VALID is on, we assume worktree file and its cache entry
417 * are identical, even if worktree file has been modified, so use
418 * cache version instead
419 */
b4d1690d 420 if (cached || (ce->ce_flags & CE_VALID) || ce_skip_worktree(ce)) {
36f2587f
JH
421 if (ce_stage(ce))
422 continue;
0d042fec 423 hit |= grep_sha1(opt, ce->sha1, ce->name, 0);
36f2587f 424 }
5010cb5f
JH
425 else
426 hit |= grep_file(opt, ce->name);
36f2587f
JH
427 if (ce_stage(ce)) {
428 do {
429 nr++;
430 } while (nr < active_nr &&
431 !strcmp(ce->name, active_cache[nr]->name));
432 nr--; /* compensate for loop control */
433 }
c8610a2e
JH
434 if (hit && opt->status_only)
435 break;
5010cb5f
JH
436 }
437 return hit;
438}
439
f34bbc15 440static int grep_tree(struct grep_opt *opt, const struct pathspec *pathspec,
e5e062b6 441 struct tree_desc *tree, struct strbuf *base, int tn_len)
5010cb5f 442{
d688cf07
NTND
443 int hit = 0;
444 enum interesting match = entry_not_interesting;
4c068a98 445 struct name_entry entry;
e5e062b6 446 int old_baselen = base->len;
5010cb5f 447
4c068a98 448 while (tree_entry(tree, &entry)) {
0de16337 449 int te_len = tree_entry_len(&entry);
e5e062b6 450
d688cf07 451 if (match != all_entries_interesting) {
97d0b74a 452 match = tree_entry_interesting(&entry, base, tn_len, pathspec);
d688cf07 453 if (match == all_entries_not_interesting)
97d0b74a 454 break;
d688cf07 455 if (match == entry_not_interesting)
1376e507
NTND
456 continue;
457 }
5010cb5f 458
1376e507 459 strbuf_add(base, entry.path, te_len);
e0eb889f 460
1376e507 461 if (S_ISREG(entry.mode)) {
e5e062b6
NTND
462 hit |= grep_sha1(opt, entry.sha1, base->buf, tn_len);
463 }
4c068a98 464 else if (S_ISDIR(entry.mode)) {
21666f1a 465 enum object_type type;
5010cb5f
JH
466 struct tree_desc sub;
467 void *data;
6fda5e51
LT
468 unsigned long size;
469
5f02d315 470 data = lock_and_read_sha1_file(entry.sha1, &type, &size);
5010cb5f 471 if (!data)
2fc5f9f1 472 die(_("unable to read tree (%s)"),
4c068a98 473 sha1_to_hex(entry.sha1));
1376e507
NTND
474
475 strbuf_addch(base, '/');
6fda5e51 476 init_tree_desc(&sub, data, size);
e5e062b6 477 hit |= grep_tree(opt, pathspec, &sub, base, tn_len);
5010cb5f
JH
478 free(data);
479 }
e5e062b6
NTND
480 strbuf_setlen(base, old_baselen);
481
c8610a2e
JH
482 if (hit && opt->status_only)
483 break;
5010cb5f
JH
484 }
485 return hit;
486}
487
f34bbc15 488static int grep_object(struct grep_opt *opt, const struct pathspec *pathspec,
5010cb5f
JH
489 struct object *obj, const char *name)
490{
1974632c 491 if (obj->type == OBJ_BLOB)
0d042fec 492 return grep_sha1(opt, obj->sha1, name, 0);
1974632c 493 if (obj->type == OBJ_COMMIT || obj->type == OBJ_TREE) {
5010cb5f
JH
494 struct tree_desc tree;
495 void *data;
6fda5e51 496 unsigned long size;
e5e062b6
NTND
497 struct strbuf base;
498 int hit, len;
499
b3aeb285 500 grep_read_lock();
5010cb5f 501 data = read_object_with_reference(obj->sha1, tree_type,
6fda5e51 502 &size, NULL);
b3aeb285 503 grep_read_unlock();
8cb5775b 504
5010cb5f 505 if (!data)
2fc5f9f1 506 die(_("unable to read tree (%s)"), sha1_to_hex(obj->sha1));
e5e062b6
NTND
507
508 len = name ? strlen(name) : 0;
509 strbuf_init(&base, PATH_MAX + len + 1);
510 if (len) {
511 strbuf_add(&base, name, len);
512 strbuf_addch(&base, ':');
513 }
6fda5e51 514 init_tree_desc(&tree, data, size);
e5e062b6
NTND
515 hit = grep_tree(opt, pathspec, &tree, &base, base.len);
516 strbuf_release(&base);
5010cb5f
JH
517 free(data);
518 return hit;
519 }
2fc5f9f1 520 die(_("unable to grep from object of type %s"), typename(obj->type));
5010cb5f
JH
521}
522
f34bbc15 523static int grep_objects(struct grep_opt *opt, const struct pathspec *pathspec,
30d00c39
JN
524 const struct object_array *list)
525{
526 unsigned int i;
527 int hit = 0;
528 const unsigned int nr = list->nr;
529
530 for (i = 0; i < nr; i++) {
531 struct object *real_obj;
532 real_obj = deref_tag(list->objects[i].item, NULL, 0);
f34bbc15 533 if (grep_object(opt, pathspec, real_obj, list->objects[i].name)) {
30d00c39
JN
534 hit = 1;
535 if (opt->status_only)
536 break;
537 }
538 }
539 return hit;
540}
541
dbfae86a
JH
542static int grep_directory(struct grep_opt *opt, const struct pathspec *pathspec,
543 int exc_std)
59332d13
JH
544{
545 struct dir_struct dir;
546 int i, hit = 0;
547
548 memset(&dir, 0, sizeof(dir));
0a93fb8a
JH
549 if (exc_std)
550 setup_standard_excludes(&dir);
59332d13 551
f34bbc15 552 fill_directory(&dir, pathspec->raw);
59332d13 553 for (i = 0; i < dir.nr; i++) {
9d8b831b
JH
554 const char *name = dir.entries[i]->name;
555 int namelen = strlen(name);
556 if (!match_pathspec_depth(pathspec, name, namelen, 0, NULL))
557 continue;
59332d13
JH
558 hit |= grep_file(opt, dir.entries[i]->name);
559 if (hit && opt->status_only)
560 break;
561 }
59332d13
JH
562 return hit;
563}
564
ff3c7f9a
RS
565static int context_callback(const struct option *opt, const char *arg,
566 int unset)
3e230fa1
RS
567{
568 struct grep_opt *grep_opt = opt->value;
569 int value;
570 const char *endp;
571
572 if (unset) {
573 grep_opt->pre_context = grep_opt->post_context = 0;
574 return 0;
575 }
576 value = strtol(arg, (char **)&endp, 10);
577 if (*endp) {
2fc5f9f1 578 return error(_("switch `%c' expects a numerical value"),
3e230fa1
RS
579 opt->short_name);
580 }
581 grep_opt->pre_context = grep_opt->post_context = value;
582 return 0;
583}
584
ff3c7f9a 585static int file_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
586{
587 struct grep_opt *grep_opt = opt->value;
c41dd2fd 588 int from_stdin = !strcmp(arg, "-");
3e230fa1
RS
589 FILE *patterns;
590 int lno = 0;
cfe370c6 591 struct strbuf sb = STRBUF_INIT;
3e230fa1 592
c41dd2fd 593 patterns = from_stdin ? stdin : fopen(arg, "r");
3e230fa1 594 if (!patterns)
2fc5f9f1 595 die_errno(_("cannot open '%s'"), arg);
3e230fa1
RS
596 while (strbuf_getline(&sb, patterns, '\n') == 0) {
597 /* ignore empty line like grep does */
598 if (sb.len == 0)
599 continue;
ed40a095 600
ec830611
RS
601 append_grep_pat(grep_opt, sb.buf, sb.len, arg, ++lno,
602 GREP_PATTERN);
3e230fa1 603 }
c41dd2fd
RS
604 if (!from_stdin)
605 fclose(patterns);
3e230fa1
RS
606 strbuf_release(&sb);
607 return 0;
608}
609
ff3c7f9a 610static int not_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
611{
612 struct grep_opt *grep_opt = opt->value;
613 append_grep_pattern(grep_opt, "--not", "command line", 0, GREP_NOT);
614 return 0;
615}
616
ff3c7f9a 617static int and_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
618{
619 struct grep_opt *grep_opt = opt->value;
620 append_grep_pattern(grep_opt, "--and", "command line", 0, GREP_AND);
621 return 0;
622}
623
ff3c7f9a 624static int open_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
625{
626 struct grep_opt *grep_opt = opt->value;
627 append_grep_pattern(grep_opt, "(", "command line", 0, GREP_OPEN_PAREN);
628 return 0;
629}
630
ff3c7f9a 631static int close_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
632{
633 struct grep_opt *grep_opt = opt->value;
634 append_grep_pattern(grep_opt, ")", "command line", 0, GREP_CLOSE_PAREN);
635 return 0;
636}
637
ff3c7f9a
RS
638static int pattern_callback(const struct option *opt, const char *arg,
639 int unset)
3e230fa1
RS
640{
641 struct grep_opt *grep_opt = opt->value;
642 append_grep_pattern(grep_opt, arg, "-e option", 0, GREP_PATTERN);
643 return 0;
644}
5010cb5f 645
ff3c7f9a 646static int help_callback(const struct option *opt, const char *arg, int unset)
3e230fa1
RS
647{
648 return -1;
649}
088b084b 650
a633fca0 651int cmd_grep(int argc, const char **argv, const char *prefix)
5010cb5f 652{
5010cb5f 653 int hit = 0;
0a93fb8a 654 int cached = 0, untracked = 0, opt_exclude = -1;
5acd64ed 655 int seen_dashdash = 0;
bbc09c22 656 int external_grep_allowed__ignored;
0af88c15 657 const char *show_in_pager = NULL, *default_pager = "dummy";
5010cb5f 658 struct grep_opt opt;
3cd47459 659 struct object_array list = OBJECT_ARRAY_INIT;
1362671f 660 const char **paths = NULL;
f34bbc15 661 struct pathspec pathspec;
183113a5 662 struct string_list path_list = STRING_LIST_INIT_NODUP;
5acd64ed 663 int i;
3e230fa1 664 int dummy;
ff38d1a9 665 int use_index = 1;
84befcd0 666 int pattern_type_arg = GREP_PATTERN_TYPE_UNSPECIFIED;
cca2c172 667
3e230fa1
RS
668 struct option options[] = {
669 OPT_BOOLEAN(0, "cached", &cached,
4b407bc5 670 N_("search in index instead of in the work tree")),
cbb08c2e 671 OPT_NEGBIT(0, "no-index", &use_index,
f63cf8c9 672 N_("find in contents not managed by git"), 1),
0a93fb8a 673 OPT_BOOLEAN(0, "untracked", &untracked,
4b407bc5 674 N_("search in both tracked and untracked files")),
0a93fb8a 675 OPT_SET_INT(0, "exclude-standard", &opt_exclude,
4b407bc5 676 N_("search also in ignored files"), 1),
3e230fa1
RS
677 OPT_GROUP(""),
678 OPT_BOOLEAN('v', "invert-match", &opt.invert,
4b407bc5 679 N_("show non-matching lines")),
5183bf67 680 OPT_BOOLEAN('i', "ignore-case", &opt.ignore_case,
4b407bc5 681 N_("case insensitive matching")),
3e230fa1 682 OPT_BOOLEAN('w', "word-regexp", &opt.word_regexp,
4b407bc5 683 N_("match patterns only at word boundaries")),
3e230fa1 684 OPT_SET_INT('a', "text", &opt.binary,
4b407bc5 685 N_("process binary files as text"), GREP_BINARY_TEXT),
3e230fa1 686 OPT_SET_INT('I', NULL, &opt.binary,
4b407bc5 687 N_("don't match patterns in binary files"),
3e230fa1 688 GREP_BINARY_NOMATCH),
4b407bc5
NTND
689 { OPTION_INTEGER, 0, "max-depth", &opt.max_depth, N_("depth"),
690 N_("descend at most <depth> levels"), PARSE_OPT_NONEG,
a91f453f 691 NULL, 1 },
3e230fa1 692 OPT_GROUP(""),
84befcd0 693 OPT_SET_INT('E', "extended-regexp", &pattern_type_arg,
4b407bc5 694 N_("use extended POSIX regular expressions"),
84befcd0
S
695 GREP_PATTERN_TYPE_ERE),
696 OPT_SET_INT('G', "basic-regexp", &pattern_type_arg,
4b407bc5 697 N_("use basic POSIX regular expressions (default)"),
84befcd0
S
698 GREP_PATTERN_TYPE_BRE),
699 OPT_SET_INT('F', "fixed-strings", &pattern_type_arg,
4b407bc5 700 N_("interpret patterns as fixed strings"),
84befcd0
S
701 GREP_PATTERN_TYPE_FIXED),
702 OPT_SET_INT('P', "perl-regexp", &pattern_type_arg,
4b407bc5 703 N_("use Perl-compatible regular expressions"),
84befcd0 704 GREP_PATTERN_TYPE_PCRE),
3e230fa1 705 OPT_GROUP(""),
4b407bc5
NTND
706 OPT_BOOLEAN('n', "line-number", &opt.linenum, N_("show line numbers")),
707 OPT_NEGBIT('h', NULL, &opt.pathname, N_("don't show filenames"), 1),
708 OPT_BIT('H', NULL, &opt.pathname, N_("show filenames"), 1),
3e230fa1 709 OPT_NEGBIT(0, "full-name", &opt.relative,
4b407bc5 710 N_("show filenames relative to top directory"), 1),
3e230fa1 711 OPT_BOOLEAN('l', "files-with-matches", &opt.name_only,
4b407bc5 712 N_("show only filenames instead of matching lines")),
3e230fa1 713 OPT_BOOLEAN(0, "name-only", &opt.name_only,
4b407bc5 714 N_("synonym for --files-with-matches")),
3e230fa1
RS
715 OPT_BOOLEAN('L', "files-without-match",
716 &opt.unmatch_name_only,
4b407bc5 717 N_("show only the names of files without match")),
3e230fa1 718 OPT_BOOLEAN('z', "null", &opt.null_following_name,
4b407bc5 719 N_("print NUL after filenames")),
3e230fa1 720 OPT_BOOLEAN('c', "count", &opt.count,
4b407bc5
NTND
721 N_("show the number of matches instead of matching lines")),
722 OPT__COLOR(&opt.color, N_("highlight matches")),
a8f0e764 723 OPT_BOOLEAN(0, "break", &opt.file_break,
4b407bc5 724 N_("print empty line between matches from different files")),
1d84f72e 725 OPT_BOOLEAN(0, "heading", &opt.heading,
4b407bc5 726 N_("show filename only once above matches from same file")),
3e230fa1 727 OPT_GROUP(""),
4b407bc5
NTND
728 OPT_CALLBACK('C', "context", &opt, N_("n"),
729 N_("show <n> context lines before and after matches"),
3e230fa1 730 context_callback),
317f63c2 731 OPT_INTEGER('B', "before-context", &opt.pre_context,
4b407bc5 732 N_("show <n> context lines before matches")),
317f63c2 733 OPT_INTEGER('A', "after-context", &opt.post_context,
4b407bc5
NTND
734 N_("show <n> context lines after matches")),
735 OPT_NUMBER_CALLBACK(&opt, N_("shortcut for -C NUM"),
3e230fa1 736 context_callback),
2944e4e6 737 OPT_BOOLEAN('p', "show-function", &opt.funcname,
4b407bc5 738 N_("show a line with the function name before matches")),
317f63c2 739 OPT_BOOLEAN('W', "function-context", &opt.funcbody,
4b407bc5 740 N_("show the surrounding function")),
3e230fa1 741 OPT_GROUP(""),
4b407bc5
NTND
742 OPT_CALLBACK('f', NULL, &opt, N_("file"),
743 N_("read patterns from file"), file_callback),
744 { OPTION_CALLBACK, 'e', NULL, &opt, N_("pattern"),
745 N_("match <pattern>"), PARSE_OPT_NONEG, pattern_callback },
3e230fa1 746 { OPTION_CALLBACK, 0, "and", &opt, NULL,
4b407bc5 747 N_("combine patterns specified with -e"),
3e230fa1
RS
748 PARSE_OPT_NOARG | PARSE_OPT_NONEG, and_callback },
749 OPT_BOOLEAN(0, "or", &dummy, ""),
750 { OPTION_CALLBACK, 0, "not", &opt, NULL, "",
751 PARSE_OPT_NOARG | PARSE_OPT_NONEG, not_callback },
752 { OPTION_CALLBACK, '(', NULL, &opt, NULL, "",
753 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
754 open_callback },
755 { OPTION_CALLBACK, ')', NULL, &opt, NULL, "",
756 PARSE_OPT_NOARG | PARSE_OPT_NONEG | PARSE_OPT_NODASH,
757 close_callback },
d52ee6e6 758 OPT__QUIET(&opt.status_only,
4b407bc5 759 N_("indicate hit with exit status without output")),
3e230fa1 760 OPT_BOOLEAN(0, "all-match", &opt.all_match,
4b407bc5 761 N_("show only matches from files that match all patterns")),
17bf35a3 762 { OPTION_SET_INT, 0, "debug", &opt.debug, NULL,
3d7535e4 763 N_("show parse tree for grep expression"),
17bf35a3 764 PARSE_OPT_NOARG | PARSE_OPT_HIDDEN, NULL, 1 },
3e230fa1 765 OPT_GROUP(""),
0af88c15 766 { OPTION_STRING, 'O', "open-files-in-pager", &show_in_pager,
4b407bc5 767 N_("pager"), N_("show matching files in the pager"),
0af88c15 768 PARSE_OPT_OPTARG, NULL, (intptr_t)default_pager },
bbc09c22 769 OPT_BOOLEAN(0, "ext-grep", &external_grep_allowed__ignored,
4b407bc5
NTND
770 N_("allow calling of grep(1) (ignored by this build)")),
771 { OPTION_CALLBACK, 0, "help-all", &options, NULL, N_("show usage"),
3e230fa1
RS
772 PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, help_callback },
773 OPT_END()
774 };
5010cb5f 775
9c855c31
JN
776 /*
777 * 'git grep -h', unlike 'git grep -h <pattern>', is a request
778 * to show usage information and exit.
779 */
780 if (argc == 2 && !strcmp(argv[1], "-h"))
781 usage_with_options(grep_usage, options);
782
15fabd1b
JH
783 init_grep_defaults();
784 git_config(grep_cmd_config, NULL);
785 grep_init(&opt, prefix);
7e8f59d5 786
5010cb5f 787 /*
5acd64ed
JH
788 * If there is no -- then the paths must exist in the working
789 * tree. If there is no explicit pattern specified with -e or
790 * -f, we take the first unrecognized non option to be the
791 * pattern, but then what follows it must be zero or more
792 * valid refs up to the -- (if exists), and then existing
793 * paths. If there is an explicit pattern, then the first
82e5a82f 794 * unrecognized non option is the beginning of the refs list
5acd64ed 795 * that continues up to the -- (if exists), and then paths.
5010cb5f 796 */
37782920 797 argc = parse_options(argc, argv, prefix, options, grep_usage,
3e230fa1
RS
798 PARSE_OPT_KEEP_DASHDASH |
799 PARSE_OPT_STOP_AT_NON_OPTION |
800 PARSE_OPT_NO_INTERNAL_HELP);
84befcd0
S
801
802 if (pattern_type_arg != GREP_PATTERN_TYPE_UNSPECIFIED)
803 grep_pattern_type_options(pattern_type_arg, &opt);
804 else if (opt.pattern_type_option != GREP_PATTERN_TYPE_UNSPECIFIED)
805 grep_pattern_type_options(opt.pattern_type_option, &opt);
806 else if (opt.extended_regexp_option)
807 grep_pattern_type_options(GREP_PATTERN_TYPE_ERE, &opt);
3e230fa1 808
ff38d1a9 809 if (use_index && !startup_info->have_repository)
59332d13
JH
810 /* die the same way as if we did it at the beginning */
811 setup_git_directory();
812
1123c67c
JK
813 /*
814 * skip a -- separator; we know it cannot be
815 * separating revisions from pathnames if
816 * we haven't even had any patterns yet
817 */
818 if (argc > 0 && !opt.pattern_list && !strcmp(argv[0], "--")) {
819 argv++;
820 argc--;
821 }
822
3e230fa1
RS
823 /* First unrecognized non-option token */
824 if (argc > 0 && !opt.pattern_list) {
825 append_grep_pattern(&opt, argv[0], "command line", 0,
826 GREP_PATTERN);
827 argv++;
828 argc--;
5010cb5f 829 }
5acd64ed 830
0af88c15
JS
831 if (show_in_pager == default_pager)
832 show_in_pager = git_pager(1);
678e484b 833 if (show_in_pager) {
e7b082a4 834 opt.color = 0;
0af88c15
JS
835 opt.name_only = 1;
836 opt.null_following_name = 1;
837 opt.output_priv = &path_list;
838 opt.output = append_path;
0c72cead 839 string_list_append(&path_list, show_in_pager);
0af88c15 840 use_threads = 0;
678e484b
JS
841 }
842
f9b9faf6 843 if (!opt.pattern_list)
2fc5f9f1 844 die(_("no pattern given."));
5183bf67
BC
845 if (!opt.fixed && opt.ignore_case)
846 opt.regflags |= REG_ICASE;
5b594f45 847
83b5d2f5 848 compile_grep_patterns(&opt);
5acd64ed
JH
849
850 /* Check revs and then paths */
3e230fa1 851 for (i = 0; i < argc; i++) {
5acd64ed 852 const char *arg = argv[i];
1362671f 853 unsigned char sha1[20];
5acd64ed
JH
854 /* Is it a rev? */
855 if (!get_sha1(arg, sha1)) {
856 struct object *object = parse_object(sha1);
5acd64ed 857 if (!object)
2fc5f9f1 858 die(_("bad object %s"), arg);
1f1e895f 859 add_object_array(object, arg, &list);
5acd64ed
JH
860 continue;
861 }
862 if (!strcmp(arg, "--")) {
863 i++;
864 seen_dashdash = 1;
865 }
866 break;
1362671f 867 }
5acd64ed 868
53b8d931
TR
869#ifndef NO_PTHREADS
870 if (list.nr || cached || online_cpus() == 1)
871 use_threads = 0;
872#else
873 use_threads = 0;
874#endif
875
53b8d931
TR
876#ifndef NO_PTHREADS
877 if (use_threads) {
50dd0f2f
AY
878 if (!(opt.name_only || opt.unmatch_name_only || opt.count)
879 && (opt.pre_context || opt.post_context ||
880 opt.file_break || opt.funcbody))
53b8d931
TR
881 skip_first_line = 1;
882 start_threads(&opt);
883 }
884#endif
885
5acd64ed
JH
886 /* The rest are paths */
887 if (!seen_dashdash) {
888 int j;
c39c4f47 889 for (j = i; j < argc; j++)
023e37c3 890 verify_filename(prefix, argv[j], j == i);
5acd64ed
JH
891 }
892
7c5f3cc4 893 paths = get_pathspec(prefix, argv + i);
f34bbc15 894 init_pathspec(&pathspec, paths);
1376e507
NTND
895 pathspec.max_depth = opt.max_depth;
896 pathspec.recursive = 1;
5010cb5f 897
678e484b 898 if (show_in_pager && (cached || list.nr))
e4fe4ba5 899 die(_("--open-files-in-pager only works on the worktree"));
678e484b
JS
900
901 if (show_in_pager && opt.pattern_list && !opt.pattern_list->next) {
902 const char *pager = path_list.items[0].string;
903 int len = strlen(pager);
904
905 if (len > 4 && is_dir_sep(pager[len - 5]))
906 pager += len - 4;
907
908 if (!strcmp("less", pager) || !strcmp("vi", pager)) {
909 struct strbuf buf = STRBUF_INIT;
910 strbuf_addf(&buf, "+/%s%s",
911 strcmp("less", pager) ? "" : "*",
912 opt.pattern_list->pattern);
0c72cead 913 string_list_append(&path_list, buf.buf);
678e484b
JS
914 strbuf_detach(&buf, NULL);
915 }
916 }
917
918 if (!show_in_pager)
919 setup_pager();
920
0a93fb8a 921 if (!use_index && (untracked || cached))
dbfae86a 922 die(_("--cached or --untracked cannot be used with --no-index."));
678e484b 923
0a93fb8a 924 if (!use_index || untracked) {
0a93fb8a 925 int use_exclude = (opt_exclude < 0) ? use_index : !!opt_exclude;
59332d13 926 if (list.nr)
dbfae86a
JH
927 die(_("--no-index or --untracked cannot be used with revs."));
928 hit = grep_directory(&opt, &pathspec, use_exclude);
929 } else if (0 <= opt_exclude) {
9fddaf78 930 die(_("--[no-]exclude-standard cannot be used for tracked contents."));
685359cf 931 } else if (!list.nr) {
6577f542
NTND
932 if (!cached)
933 setup_work_tree();
5b594f45 934
f34bbc15 935 hit = grep_cache(&opt, &pathspec, cached);
685359cf
JS
936 } else {
937 if (cached)
2fc5f9f1 938 die(_("both --cached and trees are given."));
f34bbc15 939 hit = grep_objects(&opt, &pathspec, &list);
5010cb5f 940 }
5b594f45
FK
941
942 if (use_threads)
943 hit |= wait_all();
678e484b
JS
944 if (hit && show_in_pager)
945 run_pager(&opt, prefix);
b48fb5b6 946 free_grep_patterns(&opt);
5010cb5f
JH
947 return !hit;
948}