4 * Copyright (c) 2006 Junio C Hamano
6 #define USE_THE_INDEX_COMPATIBILITY_MACROS
8 #include "repository.h"
14 #include "tree-walk.h"
16 #include "parse-options.h"
17 #include "string-list.h"
18 #include "run-command.h"
24 #include "submodule.h"
25 #include "submodule-config.h"
26 #include "object-store.h"
29 static const char *grep_prefix
;
31 static char const * const grep_usage
[] = {
32 N_("git grep [<options>] [-e] <pattern> [<rev>...] [[--] <path>...]"),
36 static int recurse_submodules
;
38 static int num_threads
;
40 static pthread_t
*threads
;
42 /* We use one producer thread and THREADS consumer
43 * threads. The producer adds struct work_items to 'todo' and the
44 * consumers pick work items from the same array.
47 struct grep_source source
;
52 /* In the range [todo_done, todo_start) in 'todo' we have work_items
53 * that have been or are processed by a consumer thread. We haven't
54 * written the result for these to stdout yet.
56 * The work_items in [todo_start, todo_end) are waiting to be picked
57 * up by a consumer thread.
59 * The ranges are modulo TODO_SIZE.
62 static struct work_item todo
[TODO_SIZE
];
63 static int todo_start
;
67 /* Has all work items been added? */
68 static int all_work_added
;
70 static struct repository
**repos_to_free
;
71 static size_t repos_to_free_nr
, repos_to_free_alloc
;
73 /* This lock protects all the variables above. */
74 static pthread_mutex_t grep_mutex
;
76 static inline void grep_lock(void)
78 pthread_mutex_lock(&grep_mutex
);
81 static inline void grep_unlock(void)
83 pthread_mutex_unlock(&grep_mutex
);
86 /* Signalled when a new work_item is added to todo. */
87 static pthread_cond_t cond_add
;
89 /* Signalled when the result from one work_item is written to
92 static pthread_cond_t cond_write
;
94 /* Signalled when we are finished with everything. */
95 static pthread_cond_t cond_result
;
97 static int skip_first_line
;
99 static void add_work(struct grep_opt
*opt
, struct grep_source
*gs
)
101 if (opt
->binary
!= GREP_BINARY_TEXT
)
102 grep_source_load_driver(gs
, opt
->repo
->index
);
106 while ((todo_end
+1) % ARRAY_SIZE(todo
) == todo_done
) {
107 pthread_cond_wait(&cond_write
, &grep_mutex
);
110 todo
[todo_end
].source
= *gs
;
111 todo
[todo_end
].done
= 0;
112 strbuf_reset(&todo
[todo_end
].out
);
113 todo_end
= (todo_end
+ 1) % ARRAY_SIZE(todo
);
115 pthread_cond_signal(&cond_add
);
119 static struct work_item
*get_work(void)
121 struct work_item
*ret
;
124 while (todo_start
== todo_end
&& !all_work_added
) {
125 pthread_cond_wait(&cond_add
, &grep_mutex
);
128 if (todo_start
== todo_end
&& all_work_added
) {
131 ret
= &todo
[todo_start
];
132 todo_start
= (todo_start
+ 1) % ARRAY_SIZE(todo
);
138 static void work_done(struct work_item
*w
)
144 old_done
= todo_done
;
145 for(; todo
[todo_done
].done
&& todo_done
!= todo_start
;
146 todo_done
= (todo_done
+1) % ARRAY_SIZE(todo
)) {
147 w
= &todo
[todo_done
];
149 const char *p
= w
->out
.buf
;
150 size_t len
= w
->out
.len
;
152 /* Skip the leading hunk mark of the first file. */
153 if (skip_first_line
) {
162 write_or_die(1, p
, len
);
164 grep_source_clear(&w
->source
);
167 if (old_done
!= todo_done
)
168 pthread_cond_signal(&cond_write
);
170 if (all_work_added
&& todo_done
== todo_end
)
171 pthread_cond_signal(&cond_result
);
176 static void free_repos(void)
180 for (i
= 0; i
< repos_to_free_nr
; i
++) {
181 repo_clear(repos_to_free
[i
]);
182 free(repos_to_free
[i
]);
184 FREE_AND_NULL(repos_to_free
);
185 repos_to_free_nr
= 0;
186 repos_to_free_alloc
= 0;
189 static void *run(void *arg
)
192 struct grep_opt
*opt
= arg
;
195 struct work_item
*w
= get_work();
199 opt
->output_priv
= w
;
200 hit
|= grep_source(opt
, &w
->source
);
201 grep_source_clear_data(&w
->source
);
204 free_grep_patterns(opt
);
207 return (void*) (intptr_t) hit
;
210 static void strbuf_out(struct grep_opt
*opt
, const void *buf
, size_t size
)
212 struct work_item
*w
= opt
->output_priv
;
213 strbuf_add(&w
->out
, buf
, size
);
216 static void start_threads(struct grep_opt
*opt
)
220 pthread_mutex_init(&grep_mutex
, NULL
);
221 pthread_mutex_init(&grep_attr_mutex
, NULL
);
222 pthread_cond_init(&cond_add
, NULL
);
223 pthread_cond_init(&cond_write
, NULL
);
224 pthread_cond_init(&cond_result
, NULL
);
226 enable_obj_read_lock();
228 for (i
= 0; i
< ARRAY_SIZE(todo
); i
++) {
229 strbuf_init(&todo
[i
].out
, 0);
232 CALLOC_ARRAY(threads
, num_threads
);
233 for (i
= 0; i
< num_threads
; i
++) {
235 struct grep_opt
*o
= grep_opt_dup(opt
);
236 o
->output
= strbuf_out
;
237 compile_grep_patterns(o
);
238 err
= pthread_create(&threads
[i
], NULL
, run
, o
);
241 die(_("grep: failed to create thread: %s"),
246 static int wait_all(void)
252 BUG("Never call this function unless you have started threads");
257 /* Wait until all work is done. */
258 while (todo_done
!= todo_end
)
259 pthread_cond_wait(&cond_result
, &grep_mutex
);
261 /* Wake up all the consumer threads so they can see that there
262 * is no more work to do.
264 pthread_cond_broadcast(&cond_add
);
267 for (i
= 0; i
< num_threads
; i
++) {
269 pthread_join(threads
[i
], &h
);
270 hit
|= (int) (intptr_t) h
;
275 pthread_mutex_destroy(&grep_mutex
);
276 pthread_mutex_destroy(&grep_attr_mutex
);
277 pthread_cond_destroy(&cond_add
);
278 pthread_cond_destroy(&cond_write
);
279 pthread_cond_destroy(&cond_result
);
281 disable_obj_read_lock();
286 static int grep_cmd_config(const char *var
, const char *value
, void *cb
)
288 int st
= grep_config(var
, value
, cb
);
289 if (git_color_default_config(var
, value
, NULL
) < 0)
292 if (!strcmp(var
, "grep.threads")) {
293 num_threads
= git_config_int(var
, value
);
295 die(_("invalid number of threads specified (%d) for %s"),
297 else if (!HAVE_THREADS
&& num_threads
> 1) {
299 * TRANSLATORS: %s is the configuration
300 * variable for tweaking threads, currently
303 warning(_("no threads support, ignoring %s"), var
);
308 if (!strcmp(var
, "submodule.recurse"))
309 recurse_submodules
= git_config_bool(var
, value
);
314 static void grep_source_name(struct grep_opt
*opt
, const char *filename
,
315 int tree_name_len
, struct strbuf
*out
)
319 if (opt
->null_following_name
) {
320 if (opt
->relative
&& grep_prefix
) {
321 struct strbuf rel_buf
= STRBUF_INIT
;
322 const char *rel_name
=
323 relative_path(filename
+ tree_name_len
,
324 grep_prefix
, &rel_buf
);
327 strbuf_add(out
, filename
, tree_name_len
);
329 strbuf_addstr(out
, rel_name
);
330 strbuf_release(&rel_buf
);
332 strbuf_addstr(out
, filename
);
337 if (opt
->relative
&& grep_prefix
)
338 quote_path(filename
+ tree_name_len
, grep_prefix
, out
, 0);
340 quote_c_style(filename
+ tree_name_len
, out
, NULL
, 0);
343 strbuf_insert(out
, 0, filename
, tree_name_len
);
346 static int grep_oid(struct grep_opt
*opt
, const struct object_id
*oid
,
347 const char *filename
, int tree_name_len
,
350 struct strbuf pathbuf
= STRBUF_INIT
;
351 struct grep_source gs
;
353 grep_source_name(opt
, filename
, tree_name_len
, &pathbuf
);
354 grep_source_init_oid(&gs
, pathbuf
.buf
, path
, oid
, opt
->repo
);
355 strbuf_release(&pathbuf
);
357 if (num_threads
> 1) {
359 * add_work() copies gs and thus assumes ownership of
360 * its fields, so do not call grep_source_clear()
367 hit
= grep_source(opt
, &gs
);
369 grep_source_clear(&gs
);
374 static int grep_file(struct grep_opt
*opt
, const char *filename
)
376 struct strbuf buf
= STRBUF_INIT
;
377 struct grep_source gs
;
379 grep_source_name(opt
, filename
, 0, &buf
);
380 grep_source_init_file(&gs
, buf
.buf
, filename
);
381 strbuf_release(&buf
);
383 if (num_threads
> 1) {
385 * add_work() copies gs and thus assumes ownership of
386 * its fields, so do not call grep_source_clear()
393 hit
= grep_source(opt
, &gs
);
395 grep_source_clear(&gs
);
400 static void append_path(struct grep_opt
*opt
, const void *data
, size_t len
)
402 struct string_list
*path_list
= opt
->output_priv
;
404 if (len
== 1 && *(const char *)data
== '\0')
406 string_list_append_nodup(path_list
, xstrndup(data
, len
));
409 static void run_pager(struct grep_opt
*opt
, const char *prefix
)
411 struct string_list
*path_list
= opt
->output_priv
;
412 struct child_process child
= CHILD_PROCESS_INIT
;
415 for (i
= 0; i
< path_list
->nr
; i
++)
416 strvec_push(&child
.args
, path_list
->items
[i
].string
);
420 status
= run_command(&child
);
425 static int grep_cache(struct grep_opt
*opt
,
426 const struct pathspec
*pathspec
, int cached
);
427 static int grep_tree(struct grep_opt
*opt
, const struct pathspec
*pathspec
,
428 struct tree_desc
*tree
, struct strbuf
*base
, int tn_len
,
431 static int grep_submodule(struct grep_opt
*opt
,
432 const struct pathspec
*pathspec
,
433 const struct object_id
*oid
,
434 const char *filename
, const char *path
, int cached
)
436 struct repository
*subrepo
;
437 struct repository
*superproject
= opt
->repo
;
438 struct grep_opt subopt
;
441 if (!is_submodule_active(superproject
, path
))
444 subrepo
= xmalloc(sizeof(*subrepo
));
445 if (repo_submodule_init(subrepo
, superproject
, path
, null_oid())) {
449 ALLOC_GROW(repos_to_free
, repos_to_free_nr
+ 1, repos_to_free_alloc
);
450 repos_to_free
[repos_to_free_nr
++] = subrepo
;
453 * NEEDSWORK: repo_read_gitmodules() might call
454 * add_to_alternates_memory() via config_from_gitmodules(). This
455 * operation causes a race condition with concurrent object readings
456 * performed by the worker threads. That's why we need obj_read_lock()
457 * here. It should be removed once it's no longer necessary to add the
458 * subrepo's odbs to the in-memory alternates list.
461 repo_read_gitmodules(subrepo
, 0);
464 * All code paths tested by test code no longer need submodule ODBs to
465 * be added as alternates, but add it to the list just in case.
466 * Submodule ODBs added through add_submodule_odb_by_path() will be
467 * lazily registered as alternates when needed (and except in an
468 * unexpected code interaction, it won't be needed).
470 add_submodule_odb_by_path(subrepo
->objects
->odb
->path
);
473 memcpy(&subopt
, opt
, sizeof(subopt
));
474 subopt
.repo
= subrepo
;
477 enum object_type object_type
;
478 struct tree_desc tree
;
481 struct strbuf base
= STRBUF_INIT
;
484 object_type
= oid_object_info(subrepo
, oid
, NULL
);
486 data
= read_object_with_reference(subrepo
,
490 die(_("unable to read tree (%s)"), oid_to_hex(oid
));
492 strbuf_addstr(&base
, filename
);
493 strbuf_addch(&base
, '/');
495 init_tree_desc(&tree
, data
, size
);
496 hit
= grep_tree(&subopt
, pathspec
, &tree
, &base
, base
.len
,
497 object_type
== OBJ_COMMIT
);
498 strbuf_release(&base
);
501 hit
= grep_cache(&subopt
, pathspec
, cached
);
507 static int grep_cache(struct grep_opt
*opt
,
508 const struct pathspec
*pathspec
, int cached
)
510 struct repository
*repo
= opt
->repo
;
513 struct strbuf name
= STRBUF_INIT
;
514 int name_base_len
= 0;
515 if (repo
->submodule_prefix
) {
516 name_base_len
= strlen(repo
->submodule_prefix
);
517 strbuf_addstr(&name
, repo
->submodule_prefix
);
520 if (repo_read_index(repo
) < 0)
521 die(_("index file corrupt"));
523 /* TODO: audit for interaction with sparse-index. */
524 ensure_full_index(repo
->index
);
525 for (nr
= 0; nr
< repo
->index
->cache_nr
; nr
++) {
526 const struct cache_entry
*ce
= repo
->index
->cache
[nr
];
528 if (!cached
&& ce_skip_worktree(ce
))
531 strbuf_setlen(&name
, name_base_len
);
532 strbuf_addstr(&name
, ce
->name
);
534 if (S_ISREG(ce
->ce_mode
) &&
535 match_pathspec(repo
->index
, pathspec
, name
.buf
, name
.len
, 0, NULL
,
536 S_ISDIR(ce
->ce_mode
) ||
537 S_ISGITLINK(ce
->ce_mode
))) {
539 * If CE_VALID is on, we assume worktree file and its
540 * cache entry are identical, even if worktree file has
541 * been modified, so use cache version instead
543 if (cached
|| (ce
->ce_flags
& CE_VALID
)) {
544 if (ce_stage(ce
) || ce_intent_to_add(ce
))
546 hit
|= grep_oid(opt
, &ce
->oid
, name
.buf
,
549 hit
|= grep_file(opt
, name
.buf
);
551 } else if (recurse_submodules
&& S_ISGITLINK(ce
->ce_mode
) &&
552 submodule_path_match(repo
->index
, pathspec
, name
.buf
, NULL
)) {
553 hit
|= grep_submodule(opt
, pathspec
, NULL
, ce
->name
,
562 } while (nr
< repo
->index
->cache_nr
&&
563 !strcmp(ce
->name
, repo
->index
->cache
[nr
]->name
));
564 nr
--; /* compensate for loop control */
566 if (hit
&& opt
->status_only
)
570 strbuf_release(&name
);
574 static int grep_tree(struct grep_opt
*opt
, const struct pathspec
*pathspec
,
575 struct tree_desc
*tree
, struct strbuf
*base
, int tn_len
,
578 struct repository
*repo
= opt
->repo
;
580 enum interesting match
= entry_not_interesting
;
581 struct name_entry entry
;
582 int old_baselen
= base
->len
;
583 struct strbuf name
= STRBUF_INIT
;
584 int name_base_len
= 0;
585 if (repo
->submodule_prefix
) {
586 strbuf_addstr(&name
, repo
->submodule_prefix
);
587 name_base_len
= name
.len
;
590 while (tree_entry(tree
, &entry
)) {
591 int te_len
= tree_entry_len(&entry
);
593 if (match
!= all_entries_interesting
) {
594 strbuf_addstr(&name
, base
->buf
+ tn_len
);
595 match
= tree_entry_interesting(repo
->index
,
598 strbuf_setlen(&name
, name_base_len
);
600 if (match
== all_entries_not_interesting
)
602 if (match
== entry_not_interesting
)
606 strbuf_add(base
, entry
.path
, te_len
);
608 if (S_ISREG(entry
.mode
)) {
609 hit
|= grep_oid(opt
, &entry
.oid
, base
->buf
, tn_len
,
610 check_attr
? base
->buf
+ tn_len
: NULL
);
611 } else if (S_ISDIR(entry
.mode
)) {
612 enum object_type type
;
613 struct tree_desc sub
;
617 data
= read_object_file(&entry
.oid
, &type
, &size
);
619 die(_("unable to read tree (%s)"),
620 oid_to_hex(&entry
.oid
));
622 strbuf_addch(base
, '/');
623 init_tree_desc(&sub
, data
, size
);
624 hit
|= grep_tree(opt
, pathspec
, &sub
, base
, tn_len
,
627 } else if (recurse_submodules
&& S_ISGITLINK(entry
.mode
)) {
628 hit
|= grep_submodule(opt
, pathspec
, &entry
.oid
,
629 base
->buf
, base
->buf
+ tn_len
,
633 strbuf_setlen(base
, old_baselen
);
635 if (hit
&& opt
->status_only
)
639 strbuf_release(&name
);
643 static int grep_object(struct grep_opt
*opt
, const struct pathspec
*pathspec
,
644 struct object
*obj
, const char *name
, const char *path
)
646 if (obj
->type
== OBJ_BLOB
)
647 return grep_oid(opt
, &obj
->oid
, name
, 0, path
);
648 if (obj
->type
== OBJ_COMMIT
|| obj
->type
== OBJ_TREE
) {
649 struct tree_desc tree
;
655 data
= read_object_with_reference(opt
->repo
,
659 die(_("unable to read tree (%s)"), oid_to_hex(&obj
->oid
));
661 len
= name
? strlen(name
) : 0;
662 strbuf_init(&base
, PATH_MAX
+ len
+ 1);
664 strbuf_add(&base
, name
, len
);
665 strbuf_addch(&base
, ':');
667 init_tree_desc(&tree
, data
, size
);
668 hit
= grep_tree(opt
, pathspec
, &tree
, &base
, base
.len
,
669 obj
->type
== OBJ_COMMIT
);
670 strbuf_release(&base
);
674 die(_("unable to grep from object of type %s"), type_name(obj
->type
));
677 static int grep_objects(struct grep_opt
*opt
, const struct pathspec
*pathspec
,
678 const struct object_array
*list
)
682 const unsigned int nr
= list
->nr
;
684 for (i
= 0; i
< nr
; i
++) {
685 struct object
*real_obj
;
688 real_obj
= deref_tag(opt
->repo
, list
->objects
[i
].item
,
693 char hex
[GIT_MAX_HEXSZ
+ 1];
694 const char *name
= list
->objects
[i
].name
;
697 oid_to_hex_r(hex
, &list
->objects
[i
].item
->oid
);
700 die(_("invalid object '%s' given."), name
);
703 /* load the gitmodules file for this rev */
704 if (recurse_submodules
) {
705 submodule_free(opt
->repo
);
707 gitmodules_config_oid(&real_obj
->oid
);
710 if (grep_object(opt
, pathspec
, real_obj
, list
->objects
[i
].name
,
711 list
->objects
[i
].path
)) {
713 if (opt
->status_only
)
720 static int grep_directory(struct grep_opt
*opt
, const struct pathspec
*pathspec
,
721 int exc_std
, int use_index
)
723 struct dir_struct dir
= DIR_INIT
;
727 dir
.flags
|= DIR_NO_GITLINKS
;
729 setup_standard_excludes(&dir
);
731 fill_directory(&dir
, opt
->repo
->index
, pathspec
);
732 for (i
= 0; i
< dir
.nr
; i
++) {
733 hit
|= grep_file(opt
, dir
.entries
[i
]->name
);
734 if (hit
&& opt
->status_only
)
741 static int context_callback(const struct option
*opt
, const char *arg
,
744 struct grep_opt
*grep_opt
= opt
->value
;
749 grep_opt
->pre_context
= grep_opt
->post_context
= 0;
752 value
= strtol(arg
, (char **)&endp
, 10);
754 return error(_("switch `%c' expects a numerical value"),
757 grep_opt
->pre_context
= grep_opt
->post_context
= value
;
761 static int file_callback(const struct option
*opt
, const char *arg
, int unset
)
763 struct grep_opt
*grep_opt
= opt
->value
;
767 struct strbuf sb
= STRBUF_INIT
;
769 BUG_ON_OPT_NEG(unset
);
771 from_stdin
= !strcmp(arg
, "-");
772 patterns
= from_stdin
? stdin
: fopen(arg
, "r");
774 die_errno(_("cannot open '%s'"), arg
);
775 while (strbuf_getline(&sb
, patterns
) == 0) {
776 /* ignore empty line like grep does */
780 append_grep_pat(grep_opt
, sb
.buf
, sb
.len
, arg
, ++lno
,
789 static int not_callback(const struct option
*opt
, const char *arg
, int unset
)
791 struct grep_opt
*grep_opt
= opt
->value
;
792 BUG_ON_OPT_NEG(unset
);
794 append_grep_pattern(grep_opt
, "--not", "command line", 0, GREP_NOT
);
798 static int and_callback(const struct option
*opt
, const char *arg
, int unset
)
800 struct grep_opt
*grep_opt
= opt
->value
;
801 BUG_ON_OPT_NEG(unset
);
803 append_grep_pattern(grep_opt
, "--and", "command line", 0, GREP_AND
);
807 static int open_callback(const struct option
*opt
, const char *arg
, int unset
)
809 struct grep_opt
*grep_opt
= opt
->value
;
810 BUG_ON_OPT_NEG(unset
);
812 append_grep_pattern(grep_opt
, "(", "command line", 0, GREP_OPEN_PAREN
);
816 static int close_callback(const struct option
*opt
, const char *arg
, int unset
)
818 struct grep_opt
*grep_opt
= opt
->value
;
819 BUG_ON_OPT_NEG(unset
);
821 append_grep_pattern(grep_opt
, ")", "command line", 0, GREP_CLOSE_PAREN
);
825 static int pattern_callback(const struct option
*opt
, const char *arg
,
828 struct grep_opt
*grep_opt
= opt
->value
;
829 BUG_ON_OPT_NEG(unset
);
830 append_grep_pattern(grep_opt
, arg
, "-e option", 0, GREP_PATTERN
);
834 int cmd_grep(int argc
, const char **argv
, const char *prefix
)
837 int cached
= 0, untracked
= 0, opt_exclude
= -1;
838 int seen_dashdash
= 0;
839 int external_grep_allowed__ignored
;
840 const char *show_in_pager
= NULL
, *default_pager
= "dummy";
842 struct object_array list
= OBJECT_ARRAY_INIT
;
843 struct pathspec pathspec
;
844 struct string_list path_list
= STRING_LIST_INIT_DUP
;
850 struct option options
[] = {
851 OPT_BOOL(0, "cached", &cached
,
852 N_("search in index instead of in the work tree")),
853 OPT_NEGBIT(0, "no-index", &use_index
,
854 N_("find in contents not managed by git"), 1),
855 OPT_BOOL(0, "untracked", &untracked
,
856 N_("search in both tracked and untracked files")),
857 OPT_SET_INT(0, "exclude-standard", &opt_exclude
,
858 N_("ignore files specified via '.gitignore'"), 1),
859 OPT_BOOL(0, "recurse-submodules", &recurse_submodules
,
860 N_("recursively search in each submodule")),
862 OPT_BOOL('v', "invert-match", &opt
.invert
,
863 N_("show non-matching lines")),
864 OPT_BOOL('i', "ignore-case", &opt
.ignore_case
,
865 N_("case insensitive matching")),
866 OPT_BOOL('w', "word-regexp", &opt
.word_regexp
,
867 N_("match patterns only at word boundaries")),
868 OPT_SET_INT('a', "text", &opt
.binary
,
869 N_("process binary files as text"), GREP_BINARY_TEXT
),
870 OPT_SET_INT('I', NULL
, &opt
.binary
,
871 N_("don't match patterns in binary files"),
872 GREP_BINARY_NOMATCH
),
873 OPT_BOOL(0, "textconv", &opt
.allow_textconv
,
874 N_("process binary files with textconv filters")),
875 OPT_SET_INT('r', "recursive", &opt
.max_depth
,
876 N_("search in subdirectories (default)"), -1),
877 { OPTION_INTEGER
, 0, "max-depth", &opt
.max_depth
, N_("depth"),
878 N_("descend at most <depth> levels"), PARSE_OPT_NONEG
,
881 OPT_SET_INT('E', "extended-regexp", &opt
.pattern_type_option
,
882 N_("use extended POSIX regular expressions"),
883 GREP_PATTERN_TYPE_ERE
),
884 OPT_SET_INT('G', "basic-regexp", &opt
.pattern_type_option
,
885 N_("use basic POSIX regular expressions (default)"),
886 GREP_PATTERN_TYPE_BRE
),
887 OPT_SET_INT('F', "fixed-strings", &opt
.pattern_type_option
,
888 N_("interpret patterns as fixed strings"),
889 GREP_PATTERN_TYPE_FIXED
),
890 OPT_SET_INT('P', "perl-regexp", &opt
.pattern_type_option
,
891 N_("use Perl-compatible regular expressions"),
892 GREP_PATTERN_TYPE_PCRE
),
894 OPT_BOOL('n', "line-number", &opt
.linenum
, N_("show line numbers")),
895 OPT_BOOL(0, "column", &opt
.columnnum
, N_("show column number of first match")),
896 OPT_NEGBIT('h', NULL
, &opt
.pathname
, N_("don't show filenames"), 1),
897 OPT_BIT('H', NULL
, &opt
.pathname
, N_("show filenames"), 1),
898 OPT_NEGBIT(0, "full-name", &opt
.relative
,
899 N_("show filenames relative to top directory"), 1),
900 OPT_BOOL('l', "files-with-matches", &opt
.name_only
,
901 N_("show only filenames instead of matching lines")),
902 OPT_BOOL(0, "name-only", &opt
.name_only
,
903 N_("synonym for --files-with-matches")),
904 OPT_BOOL('L', "files-without-match",
905 &opt
.unmatch_name_only
,
906 N_("show only the names of files without match")),
907 OPT_BOOL_F('z', "null", &opt
.null_following_name
,
908 N_("print NUL after filenames"),
909 PARSE_OPT_NOCOMPLETE
),
910 OPT_BOOL('o', "only-matching", &opt
.only_matching
,
911 N_("show only matching parts of a line")),
912 OPT_BOOL('c', "count", &opt
.count
,
913 N_("show the number of matches instead of matching lines")),
914 OPT__COLOR(&opt
.color
, N_("highlight matches")),
915 OPT_BOOL(0, "break", &opt
.file_break
,
916 N_("print empty line between matches from different files")),
917 OPT_BOOL(0, "heading", &opt
.heading
,
918 N_("show filename only once above matches from same file")),
920 OPT_CALLBACK('C', "context", &opt
, N_("n"),
921 N_("show <n> context lines before and after matches"),
923 OPT_INTEGER('B', "before-context", &opt
.pre_context
,
924 N_("show <n> context lines before matches")),
925 OPT_INTEGER('A', "after-context", &opt
.post_context
,
926 N_("show <n> context lines after matches")),
927 OPT_INTEGER(0, "threads", &num_threads
,
928 N_("use <n> worker threads")),
929 OPT_NUMBER_CALLBACK(&opt
, N_("shortcut for -C NUM"),
931 OPT_BOOL('p', "show-function", &opt
.funcname
,
932 N_("show a line with the function name before matches")),
933 OPT_BOOL('W', "function-context", &opt
.funcbody
,
934 N_("show the surrounding function")),
936 OPT_CALLBACK('f', NULL
, &opt
, N_("file"),
937 N_("read patterns from file"), file_callback
),
938 OPT_CALLBACK_F('e', NULL
, &opt
, N_("pattern"),
939 N_("match <pattern>"), PARSE_OPT_NONEG
, pattern_callback
),
940 OPT_CALLBACK_F(0, "and", &opt
, NULL
,
941 N_("combine patterns specified with -e"),
942 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, and_callback
),
943 OPT_BOOL(0, "or", &dummy
, ""),
944 OPT_CALLBACK_F(0, "not", &opt
, NULL
, "",
945 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, not_callback
),
946 OPT_CALLBACK_F('(', NULL
, &opt
, NULL
, "",
947 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
| PARSE_OPT_NODASH
,
949 OPT_CALLBACK_F(')', NULL
, &opt
, NULL
, "",
950 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
| PARSE_OPT_NODASH
,
952 OPT__QUIET(&opt
.status_only
,
953 N_("indicate hit with exit status without output")),
954 OPT_BOOL(0, "all-match", &opt
.all_match
,
955 N_("show only matches from files that match all patterns")),
957 { OPTION_STRING
, 'O', "open-files-in-pager", &show_in_pager
,
958 N_("pager"), N_("show matching files in the pager"),
959 PARSE_OPT_OPTARG
| PARSE_OPT_NOCOMPLETE
,
960 NULL
, (intptr_t)default_pager
},
961 OPT_BOOL_F(0, "ext-grep", &external_grep_allowed__ignored
,
962 N_("allow calling of grep(1) (ignored by this build)"),
963 PARSE_OPT_NOCOMPLETE
),
966 grep_prefix
= prefix
;
968 grep_init(&opt
, the_repository
);
969 git_config(grep_cmd_config
, &opt
);
972 * If there is no -- then the paths must exist in the working
973 * tree. If there is no explicit pattern specified with -e or
974 * -f, we take the first unrecognized non option to be the
975 * pattern, but then what follows it must be zero or more
976 * valid refs up to the -- (if exists), and then existing
977 * paths. If there is an explicit pattern, then the first
978 * unrecognized non option is the beginning of the refs list
979 * that continues up to the -- (if exists), and then paths.
981 argc
= parse_options(argc
, argv
, prefix
, options
, grep_usage
,
982 PARSE_OPT_KEEP_DASHDASH
|
983 PARSE_OPT_STOP_AT_NON_OPTION
);
985 if (use_index
&& !startup_info
->have_repository
) {
987 git_config_get_bool("grep.fallbacktonoindex", &fallback
);
991 /* die the same way as if we did it at the beginning */
992 setup_git_directory();
994 /* Ignore --recurse-submodules if --no-index is given or implied */
996 recurse_submodules
= 0;
999 * skip a -- separator; we know it cannot be
1000 * separating revisions from pathnames if
1001 * we haven't even had any patterns yet
1003 if (argc
> 0 && !opt
.pattern_list
&& !strcmp(argv
[0], "--")) {
1008 /* First unrecognized non-option token */
1009 if (argc
> 0 && !opt
.pattern_list
) {
1010 append_grep_pattern(&opt
, argv
[0], "command line", 0,
1016 if (show_in_pager
== default_pager
)
1017 show_in_pager
= git_pager(1);
1018 if (show_in_pager
) {
1021 opt
.null_following_name
= 1;
1022 opt
.output_priv
= &path_list
;
1023 opt
.output
= append_path
;
1024 string_list_append(&path_list
, show_in_pager
);
1027 if (!opt
.pattern_list
)
1028 die(_("no pattern given"));
1030 /* --only-matching has no effect with --invert. */
1032 opt
.only_matching
= 0;
1035 * We have to find "--" in a separate pass, because its presence
1036 * influences how we will parse arguments that come before it.
1038 for (i
= 0; i
< argc
; i
++) {
1039 if (!strcmp(argv
[i
], "--")) {
1046 * Resolve any rev arguments. If we have a dashdash, then everything up
1047 * to it must resolve as a rev. If not, then we stop at the first
1048 * non-rev and assume everything else is a path.
1050 allow_revs
= use_index
&& !untracked
;
1051 for (i
= 0; i
< argc
; i
++) {
1052 const char *arg
= argv
[i
];
1053 struct object_id oid
;
1054 struct object_context oc
;
1055 struct object
*object
;
1057 if (!strcmp(arg
, "--")) {
1064 die(_("--no-index or --untracked cannot be used with revs"));
1068 if (get_oid_with_context(the_repository
, arg
,
1069 GET_OID_RECORD_PATH
,
1072 die(_("unable to resolve revision: %s"), arg
);
1076 object
= parse_object_or_die(&oid
, arg
);
1078 verify_non_filename(prefix
, arg
);
1079 add_object_array_with_path(object
, arg
, &list
, oc
.mode
, oc
.path
);
1084 * Anything left over is presumed to be a path. But in the non-dashdash
1085 * "do what I mean" case, we verify and complain when that isn't true.
1087 if (!seen_dashdash
) {
1089 for (j
= i
; j
< argc
; j
++)
1090 verify_filename(prefix
, argv
[j
], j
== i
&& allow_revs
);
1093 parse_pathspec(&pathspec
, 0,
1094 PATHSPEC_PREFER_CWD
|
1095 (opt
.max_depth
!= -1 ? PATHSPEC_MAXDEPTH_VALID
: 0),
1097 pathspec
.max_depth
= opt
.max_depth
;
1098 pathspec
.recursive
= 1;
1099 pathspec
.recurse_submodules
= !!recurse_submodules
;
1101 if (recurse_submodules
&& untracked
)
1102 die(_("--untracked not supported with --recurse-submodules"));
1104 if (show_in_pager
) {
1105 if (num_threads
> 1)
1106 warning(_("invalid option combination, ignoring --threads"));
1108 } else if (!HAVE_THREADS
&& num_threads
> 1) {
1109 warning(_("no threads support, ignoring --threads"));
1111 } else if (num_threads
< 0)
1112 die(_("invalid number of threads specified (%d)"), num_threads
);
1113 else if (num_threads
== 0)
1114 num_threads
= HAVE_THREADS
? online_cpus() : 1;
1116 if (num_threads
> 1) {
1118 BUG("Somebody got num_threads calculation wrong!");
1119 if (!(opt
.name_only
|| opt
.unmatch_name_only
|| opt
.count
)
1120 && (opt
.pre_context
|| opt
.post_context
||
1121 opt
.file_break
|| opt
.funcbody
))
1122 skip_first_line
= 1;
1125 * Pre-read gitmodules (if not read already) and force eager
1126 * initialization of packed_git to prevent racy lazy
1127 * reading/initialization once worker threads are started.
1129 if (recurse_submodules
)
1130 repo_read_gitmodules(the_repository
, 1);
1131 if (startup_info
->have_repository
)
1132 (void)get_packed_git(the_repository
);
1134 start_threads(&opt
);
1137 * The compiled patterns on the main path are only
1138 * used when not using threading. Otherwise
1139 * start_threads() above calls compile_grep_patterns()
1142 compile_grep_patterns(&opt
);
1145 if (show_in_pager
&& (cached
|| list
.nr
))
1146 die(_("--open-files-in-pager only works on the worktree"));
1148 if (show_in_pager
&& opt
.pattern_list
&& !opt
.pattern_list
->next
) {
1149 const char *pager
= path_list
.items
[0].string
;
1150 int len
= strlen(pager
);
1152 if (len
> 4 && is_dir_sep(pager
[len
- 5]))
1155 if (opt
.ignore_case
&& !strcmp("less", pager
))
1156 string_list_append(&path_list
, "-I");
1158 if (!strcmp("less", pager
) || !strcmp("vi", pager
)) {
1159 struct strbuf buf
= STRBUF_INIT
;
1160 strbuf_addf(&buf
, "+/%s%s",
1161 strcmp("less", pager
) ? "" : "*",
1162 opt
.pattern_list
->pattern
);
1163 string_list_append_nodup(&path_list
,
1164 strbuf_detach(&buf
, NULL
));
1168 if (!show_in_pager
&& !opt
.status_only
)
1171 die_for_incompatible_opt3(!use_index
, "--no-index",
1172 untracked
, "--untracked",
1173 cached
, "--cached");
1175 if (!use_index
|| untracked
) {
1176 int use_exclude
= (opt_exclude
< 0) ? use_index
: !!opt_exclude
;
1177 hit
= grep_directory(&opt
, &pathspec
, use_exclude
, use_index
);
1178 } else if (0 <= opt_exclude
) {
1179 die(_("--[no-]exclude-standard cannot be used for tracked contents"));
1180 } else if (!list
.nr
) {
1184 hit
= grep_cache(&opt
, &pathspec
, cached
);
1187 die(_("both --cached and trees are given"));
1189 hit
= grep_objects(&opt
, &pathspec
, &list
);
1192 if (num_threads
> 1)
1194 if (hit
&& show_in_pager
)
1195 run_pager(&opt
, prefix
);
1196 clear_pathspec(&pathspec
);
1197 string_list_clear(&path_list
, 0);
1198 free_grep_patterns(&opt
);
1199 object_array_clear(&list
);