4 #include "object-store.h"
6 #include "xdiff-interface.h"
13 static int grep_source_load(struct grep_source
*gs
);
14 static int grep_source_is_binary(struct grep_source
*gs
,
15 struct index_state
*istate
);
17 static void std_output(struct grep_opt
*opt
, const void *buf
, size_t size
)
19 fwrite(buf
, size
, 1, stdout
);
22 static struct grep_opt grep_defaults
= {
26 .pattern_type_option
= GREP_PATTERN_TYPE_UNSPECIFIED
,
28 [GREP_COLOR_CONTEXT
] = "",
29 [GREP_COLOR_FILENAME
] = GIT_COLOR_MAGENTA
,
30 [GREP_COLOR_FUNCTION
] = "",
31 [GREP_COLOR_LINENO
] = GIT_COLOR_GREEN
,
32 [GREP_COLOR_COLUMNNO
] = GIT_COLOR_GREEN
,
33 [GREP_COLOR_MATCH_CONTEXT
] = GIT_COLOR_BOLD_RED
,
34 [GREP_COLOR_MATCH_SELECTED
] = GIT_COLOR_BOLD_RED
,
35 [GREP_COLOR_SELECTED
] = "",
36 [GREP_COLOR_SEP
] = GIT_COLOR_CYAN
,
43 static const char *color_grep_slots
[] = {
44 [GREP_COLOR_CONTEXT
] = "context",
45 [GREP_COLOR_FILENAME
] = "filename",
46 [GREP_COLOR_FUNCTION
] = "function",
47 [GREP_COLOR_LINENO
] = "lineNumber",
48 [GREP_COLOR_COLUMNNO
] = "column",
49 [GREP_COLOR_MATCH_CONTEXT
] = "matchContext",
50 [GREP_COLOR_MATCH_SELECTED
] = "matchSelected",
51 [GREP_COLOR_SELECTED
] = "selected",
52 [GREP_COLOR_SEP
] = "separator",
55 static int parse_pattern_type_arg(const char *opt
, const char *arg
)
57 if (!strcmp(arg
, "default"))
58 return GREP_PATTERN_TYPE_UNSPECIFIED
;
59 else if (!strcmp(arg
, "basic"))
60 return GREP_PATTERN_TYPE_BRE
;
61 else if (!strcmp(arg
, "extended"))
62 return GREP_PATTERN_TYPE_ERE
;
63 else if (!strcmp(arg
, "fixed"))
64 return GREP_PATTERN_TYPE_FIXED
;
65 else if (!strcmp(arg
, "perl"))
66 return GREP_PATTERN_TYPE_PCRE
;
67 die("bad %s argument: %s", opt
, arg
);
70 define_list_config_array_extra(color_grep_slots
, {"match"});
73 * Read the configuration file once and store it in
74 * the grep_defaults template.
76 int grep_config(const char *var
, const char *value
, void *cb
)
78 struct grep_opt
*opt
= &grep_defaults
;
81 if (userdiff_config(var
, value
) < 0)
85 * The instance of grep_opt that we set up here is copied by
86 * grep_init() to be used by each individual invocation.
87 * When populating a new field of this structure here, be
88 * sure to think about ownership -- e.g., you might need to
89 * override the shallow copy in grep_init() with a deep copy.
92 if (!strcmp(var
, "grep.extendedregexp")) {
93 opt
->extended_regexp_option
= git_config_bool(var
, value
);
97 if (!strcmp(var
, "grep.patterntype")) {
98 opt
->pattern_type_option
= parse_pattern_type_arg(var
, value
);
102 if (!strcmp(var
, "grep.linenumber")) {
103 opt
->linenum
= git_config_bool(var
, value
);
106 if (!strcmp(var
, "grep.column")) {
107 opt
->columnnum
= git_config_bool(var
, value
);
111 if (!strcmp(var
, "grep.fullname")) {
112 opt
->relative
= !git_config_bool(var
, value
);
116 if (!strcmp(var
, "color.grep"))
117 opt
->color
= git_config_colorbool(var
, value
);
118 if (!strcmp(var
, "color.grep.match")) {
119 if (grep_config("color.grep.matchcontext", value
, cb
) < 0)
121 if (grep_config("color.grep.matchselected", value
, cb
) < 0)
123 } else if (skip_prefix(var
, "color.grep.", &slot
)) {
124 int i
= LOOKUP_CONFIG(color_grep_slots
, slot
);
129 color
= opt
->colors
[i
];
131 return config_error_nonbool(var
);
132 return color_parse(value
, color
);
138 * Initialize one instance of grep_opt and copy the
139 * default values from the template we read the configuration
140 * information in an earlier call to git_config(grep_config).
142 void grep_init(struct grep_opt
*opt
, struct repository
*repo
, const char *prefix
)
144 *opt
= grep_defaults
;
147 opt
->prefix
= prefix
;
148 opt
->prefix_length
= (prefix
&& *prefix
) ? strlen(prefix
) : 0;
149 opt
->pattern_tail
= &opt
->pattern_list
;
150 opt
->header_tail
= &opt
->header_list
;
153 static void grep_set_pattern_type_option(enum grep_pattern_type pattern_type
, struct grep_opt
*opt
)
156 * When committing to the pattern type by setting the relevant
157 * fields in grep_opt it's generally not necessary to zero out
158 * the fields we're not choosing, since they won't have been
159 * set by anything. The extended_regexp_option field is the
160 * only exception to this.
162 * This is because in the process of parsing grep.patternType
163 * & grep.extendedRegexp we set opt->pattern_type_option and
164 * opt->extended_regexp_option, respectively. We then
165 * internally use opt->extended_regexp_option to see if we're
166 * compiling an ERE. It must be unset if that's not actually
169 if (pattern_type
!= GREP_PATTERN_TYPE_ERE
&&
170 opt
->extended_regexp_option
)
171 opt
->extended_regexp_option
= 0;
173 switch (pattern_type
) {
174 case GREP_PATTERN_TYPE_UNSPECIFIED
:
177 case GREP_PATTERN_TYPE_BRE
:
180 case GREP_PATTERN_TYPE_ERE
:
181 opt
->extended_regexp_option
= 1;
184 case GREP_PATTERN_TYPE_FIXED
:
188 case GREP_PATTERN_TYPE_PCRE
:
194 void grep_commit_pattern_type(enum grep_pattern_type pattern_type
, struct grep_opt
*opt
)
196 if (pattern_type
!= GREP_PATTERN_TYPE_UNSPECIFIED
)
197 grep_set_pattern_type_option(pattern_type
, opt
);
198 else if (opt
->pattern_type_option
!= GREP_PATTERN_TYPE_UNSPECIFIED
)
199 grep_set_pattern_type_option(opt
->pattern_type_option
, opt
);
200 else if (opt
->extended_regexp_option
)
202 * This branch *must* happen after setting from the
203 * opt->pattern_type_option above, we don't want
204 * grep.extendedRegexp to override grep.patternType!
206 grep_set_pattern_type_option(GREP_PATTERN_TYPE_ERE
, opt
);
209 static struct grep_pat
*create_grep_pat(const char *pat
, size_t patlen
,
210 const char *origin
, int no
,
211 enum grep_pat_token t
,
212 enum grep_header_field field
)
214 struct grep_pat
*p
= xcalloc(1, sizeof(*p
));
215 p
->pattern
= xmemdupz(pat
, patlen
);
216 p
->patternlen
= patlen
;
224 static void do_append_grep_pat(struct grep_pat
***tail
, struct grep_pat
*p
)
231 case GREP_PATTERN
: /* atom */
232 case GREP_PATTERN_HEAD
:
233 case GREP_PATTERN_BODY
:
235 struct grep_pat
*new_pat
;
237 char *cp
= p
->pattern
+ p
->patternlen
, *nl
= NULL
;
238 while (++len
<= p
->patternlen
) {
239 if (*(--cp
) == '\n') {
246 new_pat
= create_grep_pat(nl
+ 1, len
- 1, p
->origin
,
247 p
->no
, p
->token
, p
->field
);
248 new_pat
->next
= p
->next
;
250 *tail
= &new_pat
->next
;
253 p
->patternlen
-= len
;
261 void append_header_grep_pattern(struct grep_opt
*opt
,
262 enum grep_header_field field
, const char *pat
)
264 struct grep_pat
*p
= create_grep_pat(pat
, strlen(pat
), "header", 0,
265 GREP_PATTERN_HEAD
, field
);
266 if (field
== GREP_HEADER_REFLOG
)
267 opt
->use_reflog_filter
= 1;
268 do_append_grep_pat(&opt
->header_tail
, p
);
271 void append_grep_pattern(struct grep_opt
*opt
, const char *pat
,
272 const char *origin
, int no
, enum grep_pat_token t
)
274 append_grep_pat(opt
, pat
, strlen(pat
), origin
, no
, t
);
277 void append_grep_pat(struct grep_opt
*opt
, const char *pat
, size_t patlen
,
278 const char *origin
, int no
, enum grep_pat_token t
)
280 struct grep_pat
*p
= create_grep_pat(pat
, patlen
, origin
, no
, t
, 0);
281 do_append_grep_pat(&opt
->pattern_tail
, p
);
284 struct grep_opt
*grep_opt_dup(const struct grep_opt
*opt
)
286 struct grep_pat
*pat
;
287 struct grep_opt
*ret
= xmalloc(sizeof(struct grep_opt
));
290 ret
->pattern_list
= NULL
;
291 ret
->pattern_tail
= &ret
->pattern_list
;
293 for(pat
= opt
->pattern_list
; pat
!= NULL
; pat
= pat
->next
)
295 if(pat
->token
== GREP_PATTERN_HEAD
)
296 append_header_grep_pattern(ret
, pat
->field
,
299 append_grep_pat(ret
, pat
->pattern
, pat
->patternlen
,
300 pat
->origin
, pat
->no
, pat
->token
);
306 static NORETURN
void compile_regexp_failed(const struct grep_pat
*p
,
312 xsnprintf(where
, sizeof(where
), "In '%s' at %d, ", p
->origin
, p
->no
);
314 xsnprintf(where
, sizeof(where
), "%s, ", p
->origin
);
318 die("%s'%s': %s", where
, p
->pattern
, error
);
321 static int is_fixed(const char *s
, size_t len
)
325 for (i
= 0; i
< len
; i
++) {
326 if (is_regex_special(s
[i
]))
334 #define GREP_PCRE2_DEBUG_MALLOC 0
336 static void *pcre2_malloc(PCRE2_SIZE size
, MAYBE_UNUSED
void *memory_data
)
338 void *pointer
= malloc(size
);
339 #if GREP_PCRE2_DEBUG_MALLOC
340 static int count
= 1;
341 fprintf(stderr
, "PCRE2:%p -> #%02d: alloc(%lu)\n", pointer
, count
++, size
);
346 static void pcre2_free(void *pointer
, MAYBE_UNUSED
void *memory_data
)
348 #if GREP_PCRE2_DEBUG_MALLOC
349 static int count
= 1;
351 fprintf(stderr
, "PCRE2:%p -> #%02d: free()\n", pointer
, count
++);
356 static void compile_pcre2_pattern(struct grep_pat
*p
, const struct grep_opt
*opt
)
359 PCRE2_UCHAR errbuf
[256];
360 PCRE2_SIZE erroffset
;
361 int options
= PCRE2_MULTILINE
;
365 int literal
= !opt
->ignore_case
&& (p
->fixed
|| p
->is_fixed
);
368 * Call pcre2_general_context_create() before calling any
369 * other pcre2_*(). It sets up our malloc()/free() functions
370 * with which everything else is allocated.
372 p
->pcre2_general_context
= pcre2_general_context_create(
373 pcre2_malloc
, pcre2_free
, NULL
);
374 if (!p
->pcre2_general_context
)
375 die("Couldn't allocate PCRE2 general context");
377 if (opt
->ignore_case
) {
378 if (!opt
->ignore_locale
&& has_non_ascii(p
->pattern
)) {
379 p
->pcre2_tables
= pcre2_maketables(p
->pcre2_general_context
);
380 p
->pcre2_compile_context
= pcre2_compile_context_create(p
->pcre2_general_context
);
381 pcre2_set_character_tables(p
->pcre2_compile_context
,
384 options
|= PCRE2_CASELESS
;
386 if (!opt
->ignore_locale
&& is_utf8_locale() && !literal
)
387 options
|= (PCRE2_UTF
| PCRE2_MATCH_INVALID_UTF
);
389 #ifdef GIT_PCRE2_VERSION_10_36_OR_HIGHER
390 /* Work around https://bugs.exim.org/show_bug.cgi?id=2642 fixed in 10.36 */
391 if (PCRE2_MATCH_INVALID_UTF
&& options
& (PCRE2_UTF
| PCRE2_CASELESS
))
392 options
|= PCRE2_NO_START_OPTIMIZE
;
395 p
->pcre2_pattern
= pcre2_compile((PCRE2_SPTR
)p
->pattern
,
396 p
->patternlen
, options
, &error
, &erroffset
,
397 p
->pcre2_compile_context
);
399 if (p
->pcre2_pattern
) {
400 p
->pcre2_match_data
= pcre2_match_data_create_from_pattern(p
->pcre2_pattern
, p
->pcre2_general_context
);
401 if (!p
->pcre2_match_data
)
402 die("Couldn't allocate PCRE2 match data");
404 pcre2_get_error_message(error
, errbuf
, sizeof(errbuf
));
405 compile_regexp_failed(p
, (const char *)&errbuf
);
408 pcre2_config(PCRE2_CONFIG_JIT
, &p
->pcre2_jit_on
);
409 if (p
->pcre2_jit_on
) {
410 jitret
= pcre2_jit_compile(p
->pcre2_pattern
, PCRE2_JIT_COMPLETE
);
412 die("Couldn't JIT the PCRE2 pattern '%s', got '%d'\n", p
->pattern
, jitret
);
415 * The pcre2_config(PCRE2_CONFIG_JIT, ...) call just
416 * tells us whether the library itself supports JIT,
417 * but to see whether we're going to be actually using
418 * JIT we need to extract PCRE2_INFO_JITSIZE from the
419 * pattern *after* we do pcre2_jit_compile() above.
421 * This is because if the pattern contains the
422 * (*NO_JIT) verb (see pcre2syntax(3))
423 * pcre2_jit_compile() will exit early with 0. If we
424 * then proceed to call pcre2_jit_match() further down
425 * the line instead of pcre2_match() we'll either
426 * segfault (pre PCRE 10.31) or run into a fatal error
429 patinforet
= pcre2_pattern_info(p
->pcre2_pattern
, PCRE2_INFO_JITSIZE
, &jitsizearg
);
431 BUG("pcre2_pattern_info() failed: %d", patinforet
);
432 if (jitsizearg
== 0) {
439 static int pcre2match(struct grep_pat
*p
, const char *line
, const char *eol
,
440 regmatch_t
*match
, int eflags
)
444 PCRE2_UCHAR errbuf
[256];
446 if (eflags
& REG_NOTBOL
)
447 flags
|= PCRE2_NOTBOL
;
450 ret
= pcre2_jit_match(p
->pcre2_pattern
, (unsigned char *)line
,
451 eol
- line
, 0, flags
, p
->pcre2_match_data
,
454 ret
= pcre2_match(p
->pcre2_pattern
, (unsigned char *)line
,
455 eol
- line
, 0, flags
, p
->pcre2_match_data
,
458 if (ret
< 0 && ret
!= PCRE2_ERROR_NOMATCH
) {
459 pcre2_get_error_message(ret
, errbuf
, sizeof(errbuf
));
460 die("%s failed with error code %d: %s",
461 (p
->pcre2_jit_on
? "pcre2_jit_match" : "pcre2_match"), ret
,
465 ovector
= pcre2_get_ovector_pointer(p
->pcre2_match_data
);
467 match
->rm_so
= (int)ovector
[0];
468 match
->rm_eo
= (int)ovector
[1];
474 static void free_pcre2_pattern(struct grep_pat
*p
)
476 pcre2_compile_context_free(p
->pcre2_compile_context
);
477 pcre2_code_free(p
->pcre2_pattern
);
478 pcre2_match_data_free(p
->pcre2_match_data
);
479 #ifdef GIT_PCRE2_VERSION_10_34_OR_HIGHER
480 pcre2_maketables_free(p
->pcre2_general_context
, p
->pcre2_tables
);
482 free((void *)p
->pcre2_tables
);
484 pcre2_general_context_free(p
->pcre2_general_context
);
486 #else /* !USE_LIBPCRE2 */
487 static void compile_pcre2_pattern(struct grep_pat
*p
, const struct grep_opt
*opt
)
489 die("cannot use Perl-compatible regexes when not compiled with USE_LIBPCRE");
492 static int pcre2match(struct grep_pat
*p
, const char *line
, const char *eol
,
493 regmatch_t
*match
, int eflags
)
498 static void free_pcre2_pattern(struct grep_pat
*p
)
502 static void compile_fixed_regexp(struct grep_pat
*p
, struct grep_opt
*opt
)
504 struct strbuf sb
= STRBUF_INIT
;
508 basic_regex_quote_buf(&sb
, p
->pattern
);
509 if (opt
->ignore_case
)
510 regflags
|= REG_ICASE
;
511 err
= regcomp(&p
->regexp
, sb
.buf
, regflags
);
515 regerror(err
, &p
->regexp
, errbuf
, sizeof(errbuf
));
516 compile_regexp_failed(p
, errbuf
);
519 #endif /* !USE_LIBPCRE2 */
521 static void compile_regexp(struct grep_pat
*p
, struct grep_opt
*opt
)
524 int regflags
= REG_NEWLINE
;
526 p
->word_regexp
= opt
->word_regexp
;
527 p
->ignore_case
= opt
->ignore_case
;
528 p
->fixed
= opt
->fixed
;
530 if (memchr(p
->pattern
, 0, p
->patternlen
) && !opt
->pcre2
)
531 die(_("given pattern contains NULL byte (via -f <file>). This is only supported with -P under PCRE v2"));
533 p
->is_fixed
= is_fixed(p
->pattern
, p
->patternlen
);
535 if (!p
->fixed
&& !p
->is_fixed
) {
536 const char *no_jit
= "(*NO_JIT)";
537 const int no_jit_len
= strlen(no_jit
);
538 if (starts_with(p
->pattern
, no_jit
) &&
539 is_fixed(p
->pattern
+ no_jit_len
,
540 p
->patternlen
- no_jit_len
))
544 if (p
->fixed
|| p
->is_fixed
) {
547 compile_pcre2_pattern(p
, opt
);
550 * E.g. t7811-grep-open.sh relies on the
551 * pattern being restored.
553 char *old_pattern
= p
->pattern
;
554 size_t old_patternlen
= p
->patternlen
;
555 struct strbuf sb
= STRBUF_INIT
;
558 * There is the PCRE2_LITERAL flag, but it's
559 * only in PCRE v2 10.30 and later. Needing to
560 * ifdef our way around that and dealing with
561 * it + PCRE2_MULTILINE being an error is more
562 * complex than just quoting this ourselves.
564 strbuf_add(&sb
, "\\Q", 2);
565 strbuf_add(&sb
, p
->pattern
, p
->patternlen
);
566 strbuf_add(&sb
, "\\E", 2);
569 p
->patternlen
= sb
.len
;
570 compile_pcre2_pattern(p
, opt
);
571 p
->pattern
= old_pattern
;
572 p
->patternlen
= old_patternlen
;
575 #else /* !USE_LIBPCRE2 */
576 compile_fixed_regexp(p
, opt
);
577 #endif /* !USE_LIBPCRE2 */
582 compile_pcre2_pattern(p
, opt
);
587 regflags
|= REG_ICASE
;
588 if (opt
->extended_regexp_option
)
589 regflags
|= REG_EXTENDED
;
590 err
= regcomp(&p
->regexp
, p
->pattern
, regflags
);
593 regerror(err
, &p
->regexp
, errbuf
, 1024);
594 compile_regexp_failed(p
, errbuf
);
598 static struct grep_expr
*compile_pattern_or(struct grep_pat
**);
599 static struct grep_expr
*compile_pattern_atom(struct grep_pat
**list
)
608 case GREP_PATTERN
: /* atom */
609 case GREP_PATTERN_HEAD
:
610 case GREP_PATTERN_BODY
:
612 x
->node
= GREP_NODE_ATOM
;
616 case GREP_OPEN_PAREN
:
618 x
= compile_pattern_or(list
);
619 if (!*list
|| (*list
)->token
!= GREP_CLOSE_PAREN
)
620 die("unmatched parenthesis");
621 *list
= (*list
)->next
;
628 static struct grep_expr
*compile_pattern_not(struct grep_pat
**list
)
639 die("--not not followed by pattern expression");
642 x
->node
= GREP_NODE_NOT
;
643 x
->u
.unary
= compile_pattern_not(list
);
645 die("--not followed by non pattern expression");
648 return compile_pattern_atom(list
);
652 static struct grep_expr
*compile_pattern_and(struct grep_pat
**list
)
655 struct grep_expr
*x
, *y
, *z
;
657 x
= compile_pattern_not(list
);
659 if (p
&& p
->token
== GREP_AND
) {
661 die("--and not preceded by pattern expression");
663 die("--and not followed by pattern expression");
665 y
= compile_pattern_and(list
);
667 die("--and not followed by pattern expression");
669 z
->node
= GREP_NODE_AND
;
670 z
->u
.binary
.left
= x
;
671 z
->u
.binary
.right
= y
;
677 static struct grep_expr
*compile_pattern_or(struct grep_pat
**list
)
680 struct grep_expr
*x
, *y
, *z
;
682 x
= compile_pattern_and(list
);
684 if (x
&& p
&& p
->token
!= GREP_CLOSE_PAREN
) {
685 y
= compile_pattern_or(list
);
687 die("not a pattern expression %s", p
->pattern
);
689 z
->node
= GREP_NODE_OR
;
690 z
->u
.binary
.left
= x
;
691 z
->u
.binary
.right
= y
;
697 static struct grep_expr
*compile_pattern_expr(struct grep_pat
**list
)
699 return compile_pattern_or(list
);
702 static struct grep_expr
*grep_not_expr(struct grep_expr
*expr
)
704 struct grep_expr
*z
= xcalloc(1, sizeof(*z
));
705 z
->node
= GREP_NODE_NOT
;
710 static struct grep_expr
*grep_true_expr(void)
712 struct grep_expr
*z
= xcalloc(1, sizeof(*z
));
713 z
->node
= GREP_NODE_TRUE
;
717 static struct grep_expr
*grep_or_expr(struct grep_expr
*left
, struct grep_expr
*right
)
719 struct grep_expr
*z
= xcalloc(1, sizeof(*z
));
720 z
->node
= GREP_NODE_OR
;
721 z
->u
.binary
.left
= left
;
722 z
->u
.binary
.right
= right
;
726 static struct grep_expr
*prep_header_patterns(struct grep_opt
*opt
)
729 struct grep_expr
*header_expr
;
730 struct grep_expr
*(header_group
[GREP_HEADER_FIELD_MAX
]);
731 enum grep_header_field fld
;
733 if (!opt
->header_list
)
736 for (p
= opt
->header_list
; p
; p
= p
->next
) {
737 if (p
->token
!= GREP_PATTERN_HEAD
)
738 BUG("a non-header pattern in grep header list.");
739 if (p
->field
< GREP_HEADER_FIELD_MIN
||
740 GREP_HEADER_FIELD_MAX
<= p
->field
)
741 BUG("unknown header field %d", p
->field
);
742 compile_regexp(p
, opt
);
745 for (fld
= 0; fld
< GREP_HEADER_FIELD_MAX
; fld
++)
746 header_group
[fld
] = NULL
;
748 for (p
= opt
->header_list
; p
; p
= p
->next
) {
750 struct grep_pat
*pp
= p
;
752 h
= compile_pattern_atom(&pp
);
753 if (!h
|| pp
!= p
->next
)
754 BUG("malformed header expr");
755 if (!header_group
[p
->field
]) {
756 header_group
[p
->field
] = h
;
759 header_group
[p
->field
] = grep_or_expr(h
, header_group
[p
->field
]);
764 for (fld
= 0; fld
< GREP_HEADER_FIELD_MAX
; fld
++) {
765 if (!header_group
[fld
])
768 header_expr
= grep_true_expr();
769 header_expr
= grep_or_expr(header_group
[fld
], header_expr
);
774 static struct grep_expr
*grep_splice_or(struct grep_expr
*x
, struct grep_expr
*y
)
776 struct grep_expr
*z
= x
;
779 assert(x
->node
== GREP_NODE_OR
);
780 if (x
->u
.binary
.right
&&
781 x
->u
.binary
.right
->node
== GREP_NODE_TRUE
) {
782 x
->u
.binary
.right
= y
;
785 x
= x
->u
.binary
.right
;
790 void compile_grep_patterns(struct grep_opt
*opt
)
793 struct grep_expr
*header_expr
= prep_header_patterns(opt
);
795 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
797 case GREP_PATTERN
: /* atom */
798 case GREP_PATTERN_HEAD
:
799 case GREP_PATTERN_BODY
:
800 compile_regexp(p
, opt
);
808 if (opt
->all_match
|| opt
->no_body_match
|| header_expr
)
810 else if (!opt
->extended
)
813 p
= opt
->pattern_list
;
815 opt
->pattern_expression
= compile_pattern_expr(&p
);
817 die("incomplete pattern expression: %s", p
->pattern
);
819 if (opt
->no_body_match
&& opt
->pattern_expression
)
820 opt
->pattern_expression
= grep_not_expr(opt
->pattern_expression
);
825 if (!opt
->pattern_expression
)
826 opt
->pattern_expression
= header_expr
;
827 else if (opt
->all_match
)
828 opt
->pattern_expression
= grep_splice_or(header_expr
,
829 opt
->pattern_expression
);
831 opt
->pattern_expression
= grep_or_expr(opt
->pattern_expression
,
836 static void free_pattern_expr(struct grep_expr
*x
)
843 free_pattern_expr(x
->u
.unary
);
847 free_pattern_expr(x
->u
.binary
.left
);
848 free_pattern_expr(x
->u
.binary
.right
);
854 void free_grep_patterns(struct grep_opt
*opt
)
856 struct grep_pat
*p
, *n
;
858 for (p
= opt
->pattern_list
; p
; p
= n
) {
861 case GREP_PATTERN
: /* atom */
862 case GREP_PATTERN_HEAD
:
863 case GREP_PATTERN_BODY
:
864 if (p
->pcre2_pattern
)
865 free_pcre2_pattern(p
);
878 free_pattern_expr(opt
->pattern_expression
);
881 static const char *end_of_line(const char *cp
, unsigned long *left
)
883 unsigned long l
= *left
;
884 while (l
&& *cp
!= '\n') {
892 static int word_char(char ch
)
894 return isalnum(ch
) || ch
== '_';
897 static void output_color(struct grep_opt
*opt
, const void *data
, size_t size
,
900 if (want_color(opt
->color
) && color
&& color
[0]) {
901 opt
->output(opt
, color
, strlen(color
));
902 opt
->output(opt
, data
, size
);
903 opt
->output(opt
, GIT_COLOR_RESET
, strlen(GIT_COLOR_RESET
));
905 opt
->output(opt
, data
, size
);
908 static void output_sep(struct grep_opt
*opt
, char sign
)
910 if (opt
->null_following_name
)
911 opt
->output(opt
, "\0", 1);
913 output_color(opt
, &sign
, 1, opt
->colors
[GREP_COLOR_SEP
]);
916 static void show_name(struct grep_opt
*opt
, const char *name
)
918 output_color(opt
, name
, strlen(name
), opt
->colors
[GREP_COLOR_FILENAME
]);
919 opt
->output(opt
, opt
->null_following_name
? "\0" : "\n", 1);
922 static int patmatch(struct grep_pat
*p
,
923 const char *line
, const char *eol
,
924 regmatch_t
*match
, int eflags
)
928 if (p
->pcre2_pattern
)
929 hit
= !pcre2match(p
, line
, eol
, match
, eflags
);
931 hit
= !regexec_buf(&p
->regexp
, line
, eol
- line
, 1, match
,
937 static void strip_timestamp(const char *bol
, const char **eol_p
)
939 const char *eol
= *eol_p
;
941 while (bol
< --eol
) {
954 { "committer ", 10 },
958 static int headerless_match_one_pattern(struct grep_pat
*p
,
959 const char *bol
, const char *eol
,
960 enum grep_context ctx
,
961 regmatch_t
*pmatch
, int eflags
)
964 const char *start
= bol
;
966 if ((p
->token
!= GREP_PATTERN
) &&
967 ((p
->token
== GREP_PATTERN_HEAD
) != (ctx
== GREP_CONTEXT_HEAD
)))
971 hit
= patmatch(p
, bol
, eol
, pmatch
, eflags
);
973 if (hit
&& p
->word_regexp
) {
974 if ((pmatch
[0].rm_so
< 0) ||
975 (eol
- bol
) < pmatch
[0].rm_so
||
976 (pmatch
[0].rm_eo
< 0) ||
977 (eol
- bol
) < pmatch
[0].rm_eo
)
978 die("regexp returned nonsense");
980 /* Match beginning must be either beginning of the
981 * line, or at word boundary (i.e. the last char must
982 * not be a word char). Similarly, match end must be
983 * either end of the line, or at word boundary
984 * (i.e. the next char must not be a word char).
986 if ( ((pmatch
[0].rm_so
== 0) ||
987 !word_char(bol
[pmatch
[0].rm_so
-1])) &&
988 ((pmatch
[0].rm_eo
== (eol
-bol
)) ||
989 !word_char(bol
[pmatch
[0].rm_eo
])) )
994 /* Words consist of at least one character. */
995 if (pmatch
->rm_so
== pmatch
->rm_eo
)
998 if (!hit
&& pmatch
[0].rm_so
+ bol
+ 1 < eol
) {
999 /* There could be more than one match on the
1000 * line, and the first match might not be
1001 * strict word match. But later ones could be!
1002 * Forward to the next possible start, i.e. the
1003 * next position following a non-word char.
1005 bol
= pmatch
[0].rm_so
+ bol
+ 1;
1006 while (word_char(bol
[-1]) && bol
< eol
)
1008 eflags
|= REG_NOTBOL
;
1014 pmatch
[0].rm_so
+= bol
- start
;
1015 pmatch
[0].rm_eo
+= bol
- start
;
1020 static int match_one_pattern(struct grep_pat
*p
,
1021 const char *bol
, const char *eol
,
1022 enum grep_context ctx
, regmatch_t
*pmatch
,
1028 if (p
->token
== GREP_PATTERN_HEAD
) {
1029 assert(p
->field
< ARRAY_SIZE(header_field
));
1030 field
= header_field
[p
->field
].field
;
1031 len
= header_field
[p
->field
].len
;
1032 if (strncmp(bol
, field
, len
))
1037 case GREP_HEADER_AUTHOR
:
1038 case GREP_HEADER_COMMITTER
:
1039 strip_timestamp(bol
, &eol
);
1046 return headerless_match_one_pattern(p
, bol
, eol
, ctx
, pmatch
, eflags
);
1050 static int match_expr_eval(struct grep_opt
*opt
, struct grep_expr
*x
,
1051 const char *bol
, const char *eol
,
1052 enum grep_context ctx
, ssize_t
*col
,
1053 ssize_t
*icol
, int collect_hits
)
1058 die("Not a valid grep expression");
1060 case GREP_NODE_TRUE
:
1063 case GREP_NODE_ATOM
:
1066 h
= match_one_pattern(x
->u
.atom
, bol
, eol
, ctx
,
1068 if (h
&& (*col
< 0 || tmp
.rm_so
< *col
))
1071 if (x
->u
.atom
->token
== GREP_PATTERN_BODY
)
1076 * Upon visiting a GREP_NODE_NOT, col and icol become swapped.
1078 h
= !match_expr_eval(opt
, x
->u
.unary
, bol
, eol
, ctx
, icol
, col
,
1082 h
= match_expr_eval(opt
, x
->u
.binary
.left
, bol
, eol
, ctx
, col
,
1084 if (h
|| opt
->columnnum
) {
1086 * Don't short-circuit AND when given --column, since a
1087 * NOT earlier in the tree may turn this into an OR. In
1088 * this case, see the below comment.
1090 h
&= match_expr_eval(opt
, x
->u
.binary
.right
, bol
, eol
,
1095 if (!(collect_hits
|| opt
->columnnum
)) {
1097 * Don't short-circuit OR when given --column (or
1098 * collecting hits) to ensure we don't skip a later
1099 * child that would produce an earlier match.
1101 return (match_expr_eval(opt
, x
->u
.binary
.left
, bol
, eol
,
1102 ctx
, col
, icol
, 0) ||
1103 match_expr_eval(opt
, x
->u
.binary
.right
, bol
,
1104 eol
, ctx
, col
, icol
, 0));
1106 h
= match_expr_eval(opt
, x
->u
.binary
.left
, bol
, eol
, ctx
, col
,
1109 x
->u
.binary
.left
->hit
|= h
;
1110 h
|= match_expr_eval(opt
, x
->u
.binary
.right
, bol
, eol
, ctx
, col
,
1111 icol
, collect_hits
);
1114 die("Unexpected node type (internal error) %d", x
->node
);
1121 static int match_expr(struct grep_opt
*opt
,
1122 const char *bol
, const char *eol
,
1123 enum grep_context ctx
, ssize_t
*col
,
1124 ssize_t
*icol
, int collect_hits
)
1126 struct grep_expr
*x
= opt
->pattern_expression
;
1127 return match_expr_eval(opt
, x
, bol
, eol
, ctx
, col
, icol
, collect_hits
);
1130 static int match_line(struct grep_opt
*opt
,
1131 const char *bol
, const char *eol
,
1132 ssize_t
*col
, ssize_t
*icol
,
1133 enum grep_context ctx
, int collect_hits
)
1139 return match_expr(opt
, bol
, eol
, ctx
, col
, icol
,
1142 /* we do not call with collect_hits without being extended */
1143 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
1145 if (match_one_pattern(p
, bol
, eol
, ctx
, &tmp
, 0)) {
1147 if (!opt
->columnnum
) {
1149 * Without --column, any single match on a line
1150 * is enough to know that it needs to be
1151 * printed. With --column, scan _all_ patterns
1152 * to find the earliest.
1156 if (*col
< 0 || tmp
.rm_so
< *col
)
1163 static int match_next_pattern(struct grep_pat
*p
,
1164 const char *bol
, const char *eol
,
1165 enum grep_context ctx
,
1166 regmatch_t
*pmatch
, int eflags
)
1170 if (!headerless_match_one_pattern(p
, bol
, eol
, ctx
, &match
, eflags
))
1172 if (match
.rm_so
< 0 || match
.rm_eo
< 0)
1174 if (pmatch
->rm_so
>= 0 && pmatch
->rm_eo
>= 0) {
1175 if (match
.rm_so
> pmatch
->rm_so
)
1177 if (match
.rm_so
== pmatch
->rm_so
&& match
.rm_eo
< pmatch
->rm_eo
)
1180 pmatch
->rm_so
= match
.rm_so
;
1181 pmatch
->rm_eo
= match
.rm_eo
;
1185 int grep_next_match(struct grep_opt
*opt
,
1186 const char *bol
, const char *eol
,
1187 enum grep_context ctx
, regmatch_t
*pmatch
,
1188 enum grep_header_field field
, int eflags
)
1193 pmatch
->rm_so
= pmatch
->rm_eo
= -1;
1195 for (p
= ((ctx
== GREP_CONTEXT_HEAD
)
1196 ? opt
->header_list
: opt
->pattern_list
);
1199 case GREP_PATTERN_HEAD
:
1200 if ((field
!= GREP_HEADER_FIELD_MAX
) &&
1201 (p
->field
!= field
))
1204 case GREP_PATTERN
: /* atom */
1205 case GREP_PATTERN_BODY
:
1206 hit
|= match_next_pattern(p
, bol
, eol
, ctx
,
1217 static void show_line_header(struct grep_opt
*opt
, const char *name
,
1218 unsigned lno
, ssize_t cno
, char sign
)
1220 if (opt
->heading
&& opt
->last_shown
== 0) {
1221 output_color(opt
, name
, strlen(name
), opt
->colors
[GREP_COLOR_FILENAME
]);
1222 opt
->output(opt
, "\n", 1);
1224 opt
->last_shown
= lno
;
1226 if (!opt
->heading
&& opt
->pathname
) {
1227 output_color(opt
, name
, strlen(name
), opt
->colors
[GREP_COLOR_FILENAME
]);
1228 output_sep(opt
, sign
);
1232 xsnprintf(buf
, sizeof(buf
), "%d", lno
);
1233 output_color(opt
, buf
, strlen(buf
), opt
->colors
[GREP_COLOR_LINENO
]);
1234 output_sep(opt
, sign
);
1237 * Treat 'cno' as the 1-indexed offset from the start of a non-context
1238 * line to its first match. Otherwise, 'cno' is 0 indicating that we are
1239 * being called with a context line.
1241 if (opt
->columnnum
&& cno
) {
1243 xsnprintf(buf
, sizeof(buf
), "%"PRIuMAX
, (uintmax_t)cno
);
1244 output_color(opt
, buf
, strlen(buf
), opt
->colors
[GREP_COLOR_COLUMNNO
]);
1245 output_sep(opt
, sign
);
1249 static void show_line(struct grep_opt
*opt
,
1250 const char *bol
, const char *eol
,
1251 const char *name
, unsigned lno
, ssize_t cno
, char sign
)
1253 int rest
= eol
- bol
;
1254 const char *match_color
= NULL
;
1255 const char *line_color
= NULL
;
1257 if (opt
->file_break
&& opt
->last_shown
== 0) {
1258 if (opt
->show_hunk_mark
)
1259 opt
->output(opt
, "\n", 1);
1260 } else if (opt
->pre_context
|| opt
->post_context
|| opt
->funcbody
) {
1261 if (opt
->last_shown
== 0) {
1262 if (opt
->show_hunk_mark
) {
1263 output_color(opt
, "--", 2, opt
->colors
[GREP_COLOR_SEP
]);
1264 opt
->output(opt
, "\n", 1);
1266 } else if (lno
> opt
->last_shown
+ 1) {
1267 output_color(opt
, "--", 2, opt
->colors
[GREP_COLOR_SEP
]);
1268 opt
->output(opt
, "\n", 1);
1271 if (!opt
->only_matching
) {
1273 * In case the line we're being called with contains more than
1274 * one match, leave printing each header to the loop below.
1276 show_line_header(opt
, name
, lno
, cno
, sign
);
1278 if (opt
->color
|| opt
->only_matching
) {
1280 enum grep_context ctx
= GREP_CONTEXT_BODY
;
1285 match_color
= opt
->colors
[GREP_COLOR_MATCH_SELECTED
];
1287 match_color
= opt
->colors
[GREP_COLOR_MATCH_CONTEXT
];
1289 line_color
= opt
->colors
[GREP_COLOR_SELECTED
];
1290 else if (sign
== '-')
1291 line_color
= opt
->colors
[GREP_COLOR_CONTEXT
];
1292 else if (sign
== '=')
1293 line_color
= opt
->colors
[GREP_COLOR_FUNCTION
];
1295 while (grep_next_match(opt
, bol
, eol
, ctx
, &match
,
1296 GREP_HEADER_FIELD_MAX
, eflags
)) {
1297 if (match
.rm_so
== match
.rm_eo
)
1300 if (opt
->only_matching
)
1301 show_line_header(opt
, name
, lno
, cno
, sign
);
1303 output_color(opt
, bol
, match
.rm_so
, line_color
);
1304 output_color(opt
, bol
+ match
.rm_so
,
1305 match
.rm_eo
- match
.rm_so
, match_color
);
1306 if (opt
->only_matching
)
1307 opt
->output(opt
, "\n", 1);
1310 rest
-= match
.rm_eo
;
1311 eflags
= REG_NOTBOL
;
1314 if (!opt
->only_matching
) {
1315 output_color(opt
, bol
, rest
, line_color
);
1316 opt
->output(opt
, "\n", 1);
1323 * This lock protects access to the gitattributes machinery, which is
1326 pthread_mutex_t grep_attr_mutex
;
1328 static inline void grep_attr_lock(void)
1331 pthread_mutex_lock(&grep_attr_mutex
);
1334 static inline void grep_attr_unlock(void)
1337 pthread_mutex_unlock(&grep_attr_mutex
);
1340 static int match_funcname(struct grep_opt
*opt
, struct grep_source
*gs
,
1341 const char *bol
, const char *eol
)
1343 xdemitconf_t
*xecfg
= opt
->priv
;
1344 if (xecfg
&& !xecfg
->find_func
) {
1345 grep_source_load_driver(gs
, opt
->repo
->index
);
1346 if (gs
->driver
->funcname
.pattern
) {
1347 const struct userdiff_funcname
*pe
= &gs
->driver
->funcname
;
1348 xdiff_set_find_func(xecfg
, pe
->pattern
, pe
->cflags
);
1350 xecfg
= opt
->priv
= NULL
;
1356 return xecfg
->find_func(bol
, eol
- bol
, buf
, 1,
1357 xecfg
->find_func_priv
) >= 0;
1362 if (isalpha(*bol
) || *bol
== '_' || *bol
== '$')
1367 static void show_funcname_line(struct grep_opt
*opt
, struct grep_source
*gs
,
1368 const char *bol
, unsigned lno
)
1370 while (bol
> gs
->buf
) {
1371 const char *eol
= --bol
;
1373 while (bol
> gs
->buf
&& bol
[-1] != '\n')
1377 if (lno
<= opt
->last_shown
)
1380 if (match_funcname(opt
, gs
, bol
, eol
)) {
1381 show_line(opt
, bol
, eol
, gs
->name
, lno
, 0, '=');
1387 static int is_empty_line(const char *bol
, const char *eol
);
1389 static void show_pre_context(struct grep_opt
*opt
, struct grep_source
*gs
,
1390 const char *bol
, const char *end
, unsigned lno
)
1392 unsigned cur
= lno
, from
= 1, funcname_lno
= 0, orig_from
;
1393 int funcname_needed
= !!opt
->funcname
, comment_needed
= 0;
1395 if (opt
->pre_context
< lno
)
1396 from
= lno
- opt
->pre_context
;
1397 if (from
<= opt
->last_shown
)
1398 from
= opt
->last_shown
+ 1;
1400 if (opt
->funcbody
) {
1401 if (match_funcname(opt
, gs
, bol
, end
))
1404 funcname_needed
= 1;
1405 from
= opt
->last_shown
+ 1;
1409 while (bol
> gs
->buf
&& cur
> from
) {
1410 const char *next_bol
= bol
;
1411 const char *eol
= --bol
;
1413 while (bol
> gs
->buf
&& bol
[-1] != '\n')
1416 if (comment_needed
&& (is_empty_line(bol
, eol
) ||
1417 match_funcname(opt
, gs
, bol
, eol
))) {
1426 if (funcname_needed
&& match_funcname(opt
, gs
, bol
, eol
)) {
1428 funcname_needed
= 0;
1436 /* We need to look even further back to find a function signature. */
1437 if (opt
->funcname
&& funcname_needed
)
1438 show_funcname_line(opt
, gs
, bol
, cur
);
1442 const char *eol
= bol
, sign
= (cur
== funcname_lno
) ? '=' : '-';
1444 while (*eol
!= '\n')
1446 show_line(opt
, bol
, eol
, gs
->name
, cur
, 0, sign
);
1452 static int should_lookahead(struct grep_opt
*opt
)
1457 return 0; /* punt for too complex stuff */
1460 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
1461 if (p
->token
!= GREP_PATTERN
)
1462 return 0; /* punt for "header only" and stuff */
1467 static int look_ahead(struct grep_opt
*opt
,
1468 unsigned long *left_p
,
1472 unsigned lno
= *lno_p
;
1473 const char *bol
= *bol_p
;
1475 const char *sp
, *last_bol
;
1476 regoff_t earliest
= -1;
1478 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
1482 hit
= patmatch(p
, bol
, bol
+ *left_p
, &m
, 0);
1483 if (!hit
|| m
.rm_so
< 0 || m
.rm_eo
< 0)
1485 if (earliest
< 0 || m
.rm_so
< earliest
)
1490 *bol_p
= bol
+ *left_p
;
1494 for (sp
= bol
+ earliest
; bol
< sp
&& sp
[-1] != '\n'; sp
--)
1495 ; /* find the beginning of the line */
1498 for (sp
= bol
; sp
< last_bol
; sp
++) {
1502 *left_p
-= last_bol
- bol
;
1508 static int fill_textconv_grep(struct repository
*r
,
1509 struct userdiff_driver
*driver
,
1510 struct grep_source
*gs
)
1512 struct diff_filespec
*df
;
1516 if (!driver
|| !driver
->textconv
)
1517 return grep_source_load(gs
);
1520 * The textconv interface is intimately tied to diff_filespecs, so we
1521 * have to pretend to be one. If we could unify the grep_source
1522 * and diff_filespec structs, this mess could just go away.
1524 df
= alloc_filespec(gs
->path
);
1526 case GREP_SOURCE_OID
:
1527 fill_filespec(df
, gs
->identifier
, 1, 0100644);
1529 case GREP_SOURCE_FILE
:
1530 fill_filespec(df
, null_oid(), 0, 0100644);
1533 BUG("attempt to textconv something without a path?");
1537 * fill_textconv is not remotely thread-safe; it modifies the global
1538 * diff tempfile structure, writes to the_repo's odb and might
1539 * internally call thread-unsafe functions such as the
1540 * prepare_packed_git() lazy-initializator. Because of the last two, we
1541 * must ensure mutual exclusion between this call and the object reading
1542 * API, thus we use obj_read_lock() here.
1544 * TODO: allowing text conversion to run in parallel with object
1545 * reading operations might increase performance in the multithreaded
1546 * non-worktreee git-grep with --textconv.
1549 size
= fill_textconv(r
, driver
, df
, &buf
);
1554 * The normal fill_textconv usage by the diff machinery would just keep
1555 * the textconv'd buf separate from the diff_filespec. But much of the
1556 * grep code passes around a grep_source and assumes that its "buf"
1557 * pointer is the beginning of the thing we are searching. So let's
1558 * install our textconv'd version into the grep_source, taking care not
1559 * to leak any existing buffer.
1561 grep_source_clear_data(gs
);
1568 static int is_empty_line(const char *bol
, const char *eol
)
1570 while (bol
< eol
&& isspace(*bol
))
1575 static int grep_source_1(struct grep_opt
*opt
, struct grep_source
*gs
, int collect_hits
)
1578 const char *peek_bol
= NULL
;
1581 unsigned last_hit
= 0;
1582 int binary_match_only
= 0;
1584 int try_lookahead
= 0;
1585 int show_function
= 0;
1586 struct userdiff_driver
*textconv
= NULL
;
1587 enum grep_context ctx
= GREP_CONTEXT_HEAD
;
1590 if (!opt
->status_only
&& gs
->name
== NULL
)
1591 BUG("grep call which could print a name requires "
1592 "grep_source.name be non-NULL");
1595 opt
->output
= std_output
;
1597 if (opt
->pre_context
|| opt
->post_context
|| opt
->file_break
||
1599 /* Show hunk marks, except for the first file. */
1600 if (opt
->last_shown
)
1601 opt
->show_hunk_mark
= 1;
1603 * If we're using threads then we can't easily identify
1604 * the first file. Always put hunk marks in that case
1605 * and skip the very first one later in work_done().
1607 if (opt
->output
!= std_output
)
1608 opt
->show_hunk_mark
= 1;
1610 opt
->last_shown
= 0;
1612 if (opt
->allow_textconv
) {
1613 grep_source_load_driver(gs
, opt
->repo
->index
);
1615 * We might set up the shared textconv cache data here, which
1616 * is not thread-safe. Also, get_oid_with_context() and
1617 * parse_object() might be internally called. As they are not
1618 * currently thread-safe and might be racy with object reading,
1619 * obj_read_lock() must be called.
1623 textconv
= userdiff_get_textconv(opt
->repo
, gs
->driver
);
1629 * We know the result of a textconv is text, so we only have to care
1630 * about binary handling if we are not using it.
1633 switch (opt
->binary
) {
1634 case GREP_BINARY_DEFAULT
:
1635 if (grep_source_is_binary(gs
, opt
->repo
->index
))
1636 binary_match_only
= 1;
1638 case GREP_BINARY_NOMATCH
:
1639 if (grep_source_is_binary(gs
, opt
->repo
->index
))
1640 return 0; /* Assume unmatch */
1642 case GREP_BINARY_TEXT
:
1645 BUG("unknown binary handling mode");
1649 memset(&xecfg
, 0, sizeof(xecfg
));
1652 try_lookahead
= should_lookahead(opt
);
1654 if (fill_textconv_grep(opt
->repo
, textconv
, gs
) < 0)
1663 ssize_t col
= -1, icol
= -1;
1666 * look_ahead() skips quickly to the line that possibly
1667 * has the next hit; don't call it if we need to do
1668 * something more than just skipping the current line
1669 * in response to an unmatch for the current line. E.g.
1670 * inside a post-context window, we will show the current
1671 * line as a context around the previous hit when it
1676 && (show_function
||
1677 lno
<= last_hit
+ opt
->post_context
))
1678 && look_ahead(opt
, &left
, &lno
, &bol
))
1680 eol
= end_of_line(bol
, &left
);
1682 if ((ctx
== GREP_CONTEXT_HEAD
) && (eol
== bol
))
1683 ctx
= GREP_CONTEXT_BODY
;
1685 hit
= match_line(opt
, bol
, eol
, &col
, &icol
, ctx
, collect_hits
);
1690 /* "grep -v -e foo -e bla" should list lines
1691 * that do not have either, so inversion should
1696 if (opt
->unmatch_name_only
) {
1703 if (opt
->status_only
)
1705 if (opt
->name_only
) {
1706 show_name(opt
, gs
->name
);
1711 if (binary_match_only
) {
1712 opt
->output(opt
, "Binary file ", 12);
1713 output_color(opt
, gs
->name
, strlen(gs
->name
),
1714 opt
->colors
[GREP_COLOR_FILENAME
]);
1715 opt
->output(opt
, " matches\n", 9);
1718 /* Hit at this line. If we haven't shown the
1719 * pre-context lines, we would need to show them.
1721 if (opt
->pre_context
|| opt
->funcbody
)
1722 show_pre_context(opt
, gs
, bol
, eol
, lno
);
1723 else if (opt
->funcname
)
1724 show_funcname_line(opt
, gs
, bol
, lno
);
1725 cno
= opt
->invert
? icol
: col
;
1728 * A negative cno indicates that there was no
1729 * match on the line. We are thus inverted and
1730 * being asked to show all lines that _don't_
1731 * match a given expression. Therefore, set cno
1732 * to 0 to suggest the whole line matches.
1736 show_line(opt
, bol
, eol
, gs
->name
, lno
, cno
+ 1, ':');
1742 if (show_function
&& (!peek_bol
|| peek_bol
< bol
)) {
1743 unsigned long peek_left
= left
;
1744 const char *peek_eol
= eol
;
1747 * Trailing empty lines are not interesting.
1748 * Peek past them to see if they belong to the
1749 * body of the current function.
1752 while (is_empty_line(peek_bol
, peek_eol
)) {
1753 peek_bol
= peek_eol
+ 1;
1754 peek_eol
= end_of_line(peek_bol
, &peek_left
);
1757 if (match_funcname(opt
, gs
, peek_bol
, peek_eol
))
1760 if (show_function
||
1761 (last_hit
&& lno
<= last_hit
+ opt
->post_context
)) {
1762 /* If the last hit is within the post context,
1763 * we need to show this line.
1765 show_line(opt
, bol
, eol
, gs
->name
, lno
, col
+ 1, '-');
1779 if (opt
->status_only
)
1780 return opt
->unmatch_name_only
;
1781 if (opt
->unmatch_name_only
) {
1782 /* We did not see any hit, so we want to show this */
1783 show_name(opt
, gs
->name
);
1787 xdiff_clear_find_func(&xecfg
);
1791 * The real "grep -c foo *.c" gives many "bar.c:0" lines,
1792 * which feels mostly useless but sometimes useful. Maybe
1793 * make it another option? For now suppress them.
1795 if (opt
->count
&& count
) {
1797 if (opt
->pathname
) {
1798 output_color(opt
, gs
->name
, strlen(gs
->name
),
1799 opt
->colors
[GREP_COLOR_FILENAME
]);
1800 output_sep(opt
, ':');
1802 xsnprintf(buf
, sizeof(buf
), "%u\n", count
);
1803 opt
->output(opt
, buf
, strlen(buf
));
1809 static void clr_hit_marker(struct grep_expr
*x
)
1811 /* All-hit markers are meaningful only at the very top level
1816 if (x
->node
!= GREP_NODE_OR
)
1818 x
->u
.binary
.left
->hit
= 0;
1819 x
= x
->u
.binary
.right
;
1823 static int chk_hit_marker(struct grep_expr
*x
)
1825 /* Top level nodes have hit markers. See if they all are hits */
1827 if (x
->node
!= GREP_NODE_OR
)
1829 if (!x
->u
.binary
.left
->hit
)
1831 x
= x
->u
.binary
.right
;
1835 int grep_source(struct grep_opt
*opt
, struct grep_source
*gs
)
1838 * we do not have to do the two-pass grep when we do not check
1839 * buffer-wide "all-match".
1841 if (!opt
->all_match
&& !opt
->no_body_match
)
1842 return grep_source_1(opt
, gs
, 0);
1844 /* Otherwise the toplevel "or" terms hit a bit differently.
1845 * We first clear hit markers from them.
1847 clr_hit_marker(opt
->pattern_expression
);
1849 grep_source_1(opt
, gs
, 1);
1851 if (opt
->all_match
&& !chk_hit_marker(opt
->pattern_expression
))
1853 if (opt
->no_body_match
&& opt
->body_hit
)
1856 return grep_source_1(opt
, gs
, 0);
1859 static void grep_source_init_buf(struct grep_source
*gs
,
1863 gs
->type
= GREP_SOURCE_BUF
;
1869 gs
->identifier
= NULL
;
1872 int grep_buffer(struct grep_opt
*opt
, const char *buf
, unsigned long size
)
1874 struct grep_source gs
;
1877 grep_source_init_buf(&gs
, buf
, size
);
1879 r
= grep_source(opt
, &gs
);
1881 grep_source_clear(&gs
);
1885 void grep_source_init_file(struct grep_source
*gs
, const char *name
,
1888 gs
->type
= GREP_SOURCE_FILE
;
1889 gs
->name
= xstrdup_or_null(name
);
1890 gs
->path
= xstrdup_or_null(path
);
1894 gs
->identifier
= xstrdup(path
);
1897 void grep_source_init_oid(struct grep_source
*gs
, const char *name
,
1898 const char *path
, const struct object_id
*oid
,
1899 struct repository
*repo
)
1901 gs
->type
= GREP_SOURCE_OID
;
1902 gs
->name
= xstrdup_or_null(name
);
1903 gs
->path
= xstrdup_or_null(path
);
1907 gs
->identifier
= oiddup(oid
);
1911 void grep_source_clear(struct grep_source
*gs
)
1913 FREE_AND_NULL(gs
->name
);
1914 FREE_AND_NULL(gs
->path
);
1915 FREE_AND_NULL(gs
->identifier
);
1916 grep_source_clear_data(gs
);
1919 void grep_source_clear_data(struct grep_source
*gs
)
1922 case GREP_SOURCE_FILE
:
1923 case GREP_SOURCE_OID
:
1924 /* these types own the buffer */
1925 free((char *)gs
->buf
);
1929 case GREP_SOURCE_BUF
:
1930 /* leave user-provided buf intact */
1935 static int grep_source_load_oid(struct grep_source
*gs
)
1937 enum object_type type
;
1939 gs
->buf
= repo_read_object_file(gs
->repo
, gs
->identifier
, &type
,
1942 return error(_("'%s': unable to read %s"),
1944 oid_to_hex(gs
->identifier
));
1948 static int grep_source_load_file(struct grep_source
*gs
)
1950 const char *filename
= gs
->identifier
;
1956 if (lstat(filename
, &st
) < 0) {
1958 if (errno
!= ENOENT
)
1959 error_errno(_("failed to stat '%s'"), filename
);
1962 if (!S_ISREG(st
.st_mode
))
1964 size
= xsize_t(st
.st_size
);
1965 i
= open(filename
, O_RDONLY
);
1968 data
= xmallocz(size
);
1969 if (st
.st_size
!= read_in_full(i
, data
, size
)) {
1970 error_errno(_("'%s': short read"), filename
);
1982 static int grep_source_load(struct grep_source
*gs
)
1988 case GREP_SOURCE_FILE
:
1989 return grep_source_load_file(gs
);
1990 case GREP_SOURCE_OID
:
1991 return grep_source_load_oid(gs
);
1992 case GREP_SOURCE_BUF
:
1993 return gs
->buf
? 0 : -1;
1995 BUG("invalid grep_source type to load");
1998 void grep_source_load_driver(struct grep_source
*gs
,
1999 struct index_state
*istate
)
2006 gs
->driver
= userdiff_find_by_path(istate
, gs
->path
);
2008 gs
->driver
= userdiff_find_by_name("default");
2012 static int grep_source_is_binary(struct grep_source
*gs
,
2013 struct index_state
*istate
)
2015 grep_source_load_driver(gs
, istate
);
2016 if (gs
->driver
->binary
!= -1)
2017 return gs
->driver
->binary
;
2019 if (!grep_source_load(gs
))
2020 return buffer_is_binary(gs
->buf
, gs
->size
);