4 #include "xdiff-interface.h"
6 static int grep_source_load(struct grep_source
*gs
);
7 static int grep_source_is_binary(struct grep_source
*gs
);
10 static struct grep_pat
*create_grep_pat(const char *pat
, size_t patlen
,
11 const char *origin
, int no
,
12 enum grep_pat_token t
,
13 enum grep_header_field field
)
15 struct grep_pat
*p
= xcalloc(1, sizeof(*p
));
16 p
->pattern
= xmemdupz(pat
, patlen
);
17 p
->patternlen
= patlen
;
25 static void do_append_grep_pat(struct grep_pat
***tail
, struct grep_pat
*p
)
32 case GREP_PATTERN
: /* atom */
33 case GREP_PATTERN_HEAD
:
34 case GREP_PATTERN_BODY
:
36 struct grep_pat
*new_pat
;
38 char *cp
= p
->pattern
+ p
->patternlen
, *nl
= NULL
;
39 while (++len
<= p
->patternlen
) {
40 if (*(--cp
) == '\n') {
47 new_pat
= create_grep_pat(nl
+ 1, len
- 1, p
->origin
,
48 p
->no
, p
->token
, p
->field
);
49 new_pat
->next
= p
->next
;
51 *tail
= &new_pat
->next
;
62 void append_header_grep_pattern(struct grep_opt
*opt
,
63 enum grep_header_field field
, const char *pat
)
65 struct grep_pat
*p
= create_grep_pat(pat
, strlen(pat
), "header", 0,
66 GREP_PATTERN_HEAD
, field
);
67 do_append_grep_pat(&opt
->header_tail
, p
);
70 void append_grep_pattern(struct grep_opt
*opt
, const char *pat
,
71 const char *origin
, int no
, enum grep_pat_token t
)
73 append_grep_pat(opt
, pat
, strlen(pat
), origin
, no
, t
);
76 void append_grep_pat(struct grep_opt
*opt
, const char *pat
, size_t patlen
,
77 const char *origin
, int no
, enum grep_pat_token t
)
79 struct grep_pat
*p
= create_grep_pat(pat
, patlen
, origin
, no
, t
, 0);
80 do_append_grep_pat(&opt
->pattern_tail
, p
);
83 struct grep_opt
*grep_opt_dup(const struct grep_opt
*opt
)
86 struct grep_opt
*ret
= xmalloc(sizeof(struct grep_opt
));
89 ret
->pattern_list
= NULL
;
90 ret
->pattern_tail
= &ret
->pattern_list
;
92 for(pat
= opt
->pattern_list
; pat
!= NULL
; pat
= pat
->next
)
94 if(pat
->token
== GREP_PATTERN_HEAD
)
95 append_header_grep_pattern(ret
, pat
->field
,
98 append_grep_pat(ret
, pat
->pattern
, pat
->patternlen
,
99 pat
->origin
, pat
->no
, pat
->token
);
105 static NORETURN
void compile_regexp_failed(const struct grep_pat
*p
,
111 sprintf(where
, "In '%s' at %d, ", p
->origin
, p
->no
);
113 sprintf(where
, "%s, ", p
->origin
);
117 die("%s'%s': %s", where
, p
->pattern
, error
);
121 static void compile_pcre_regexp(struct grep_pat
*p
, const struct grep_opt
*opt
)
125 int options
= PCRE_MULTILINE
;
127 if (opt
->ignore_case
)
128 options
|= PCRE_CASELESS
;
130 p
->pcre_regexp
= pcre_compile(p
->pattern
, options
, &error
, &erroffset
,
133 compile_regexp_failed(p
, error
);
135 p
->pcre_extra_info
= pcre_study(p
->pcre_regexp
, 0, &error
);
136 if (!p
->pcre_extra_info
&& error
)
140 static int pcrematch(struct grep_pat
*p
, const char *line
, const char *eol
,
141 regmatch_t
*match
, int eflags
)
143 int ovector
[30], ret
, flags
= 0;
145 if (eflags
& REG_NOTBOL
)
146 flags
|= PCRE_NOTBOL
;
148 ret
= pcre_exec(p
->pcre_regexp
, p
->pcre_extra_info
, line
, eol
- line
,
149 0, flags
, ovector
, ARRAY_SIZE(ovector
));
150 if (ret
< 0 && ret
!= PCRE_ERROR_NOMATCH
)
151 die("pcre_exec failed with error code %d", ret
);
154 match
->rm_so
= ovector
[0];
155 match
->rm_eo
= ovector
[1];
161 static void free_pcre_regexp(struct grep_pat
*p
)
163 pcre_free(p
->pcre_regexp
);
164 pcre_free(p
->pcre_extra_info
);
166 #else /* !USE_LIBPCRE */
167 static void compile_pcre_regexp(struct grep_pat
*p
, const struct grep_opt
*opt
)
169 die("cannot use Perl-compatible regexes when not compiled with USE_LIBPCRE");
172 static int pcrematch(struct grep_pat
*p
, const char *line
, const char *eol
,
173 regmatch_t
*match
, int eflags
)
178 static void free_pcre_regexp(struct grep_pat
*p
)
181 #endif /* !USE_LIBPCRE */
183 static int is_fixed(const char *s
, size_t len
)
187 /* regcomp cannot accept patterns with NULs so we
188 * consider any pattern containing a NUL fixed.
190 if (memchr(s
, 0, len
))
193 for (i
= 0; i
< len
; i
++) {
194 if (is_regex_special(s
[i
]))
201 static void compile_regexp(struct grep_pat
*p
, struct grep_opt
*opt
)
205 p
->word_regexp
= opt
->word_regexp
;
206 p
->ignore_case
= opt
->ignore_case
;
208 if (opt
->fixed
|| is_fixed(p
->pattern
, p
->patternlen
))
214 if (opt
->regflags
& REG_ICASE
|| p
->ignore_case
)
215 p
->kws
= kwsalloc(tolower_trans_tbl
);
217 p
->kws
= kwsalloc(NULL
);
218 kwsincr(p
->kws
, p
->pattern
, p
->patternlen
);
224 compile_pcre_regexp(p
, opt
);
228 err
= regcomp(&p
->regexp
, p
->pattern
, opt
->regflags
);
231 regerror(err
, &p
->regexp
, errbuf
, 1024);
233 compile_regexp_failed(p
, errbuf
);
237 static struct grep_expr
*compile_pattern_or(struct grep_pat
**);
238 static struct grep_expr
*compile_pattern_atom(struct grep_pat
**list
)
247 case GREP_PATTERN
: /* atom */
248 case GREP_PATTERN_HEAD
:
249 case GREP_PATTERN_BODY
:
250 x
= xcalloc(1, sizeof (struct grep_expr
));
251 x
->node
= GREP_NODE_ATOM
;
255 case GREP_OPEN_PAREN
:
257 x
= compile_pattern_or(list
);
258 if (!*list
|| (*list
)->token
!= GREP_CLOSE_PAREN
)
259 die("unmatched parenthesis");
260 *list
= (*list
)->next
;
267 static struct grep_expr
*compile_pattern_not(struct grep_pat
**list
)
278 die("--not not followed by pattern expression");
280 x
= xcalloc(1, sizeof (struct grep_expr
));
281 x
->node
= GREP_NODE_NOT
;
282 x
->u
.unary
= compile_pattern_not(list
);
284 die("--not followed by non pattern expression");
287 return compile_pattern_atom(list
);
291 static struct grep_expr
*compile_pattern_and(struct grep_pat
**list
)
294 struct grep_expr
*x
, *y
, *z
;
296 x
= compile_pattern_not(list
);
298 if (p
&& p
->token
== GREP_AND
) {
300 die("--and not followed by pattern expression");
302 y
= compile_pattern_and(list
);
304 die("--and not followed by pattern expression");
305 z
= xcalloc(1, sizeof (struct grep_expr
));
306 z
->node
= GREP_NODE_AND
;
307 z
->u
.binary
.left
= x
;
308 z
->u
.binary
.right
= y
;
314 static struct grep_expr
*compile_pattern_or(struct grep_pat
**list
)
317 struct grep_expr
*x
, *y
, *z
;
319 x
= compile_pattern_and(list
);
321 if (x
&& p
&& p
->token
!= GREP_CLOSE_PAREN
) {
322 y
= compile_pattern_or(list
);
324 die("not a pattern expression %s", p
->pattern
);
325 z
= xcalloc(1, sizeof (struct grep_expr
));
326 z
->node
= GREP_NODE_OR
;
327 z
->u
.binary
.left
= x
;
328 z
->u
.binary
.right
= y
;
334 static struct grep_expr
*compile_pattern_expr(struct grep_pat
**list
)
336 return compile_pattern_or(list
);
339 static void indent(int in
)
345 static void dump_grep_pat(struct grep_pat
*p
)
348 case GREP_AND
: fprintf(stderr
, "*and*"); break;
349 case GREP_OPEN_PAREN
: fprintf(stderr
, "*(*"); break;
350 case GREP_CLOSE_PAREN
: fprintf(stderr
, "*)*"); break;
351 case GREP_NOT
: fprintf(stderr
, "*not*"); break;
352 case GREP_OR
: fprintf(stderr
, "*or*"); break;
354 case GREP_PATTERN
: fprintf(stderr
, "pattern"); break;
355 case GREP_PATTERN_HEAD
: fprintf(stderr
, "pattern_head"); break;
356 case GREP_PATTERN_BODY
: fprintf(stderr
, "pattern_body"); break;
361 case GREP_PATTERN_HEAD
:
362 fprintf(stderr
, "<head %d>", p
->field
); break;
363 case GREP_PATTERN_BODY
:
364 fprintf(stderr
, "<body>"); break;
368 case GREP_PATTERN_HEAD
:
369 case GREP_PATTERN_BODY
:
371 fprintf(stderr
, "%.*s", (int)p
->patternlen
, p
->pattern
);
377 static void dump_grep_expression_1(struct grep_expr
*x
, int in
)
382 fprintf(stderr
, "true\n");
385 dump_grep_pat(x
->u
.atom
);
388 fprintf(stderr
, "(not\n");
389 dump_grep_expression_1(x
->u
.unary
, in
+1);
391 fprintf(stderr
, ")\n");
394 fprintf(stderr
, "(and\n");
395 dump_grep_expression_1(x
->u
.binary
.left
, in
+1);
396 dump_grep_expression_1(x
->u
.binary
.right
, in
+1);
398 fprintf(stderr
, ")\n");
401 fprintf(stderr
, "(or\n");
402 dump_grep_expression_1(x
->u
.binary
.left
, in
+1);
403 dump_grep_expression_1(x
->u
.binary
.right
, in
+1);
405 fprintf(stderr
, ")\n");
410 static void dump_grep_expression(struct grep_opt
*opt
)
412 struct grep_expr
*x
= opt
->pattern_expression
;
415 fprintf(stderr
, "[all-match]\n");
416 dump_grep_expression_1(x
, 0);
420 static struct grep_expr
*grep_true_expr(void)
422 struct grep_expr
*z
= xcalloc(1, sizeof(*z
));
423 z
->node
= GREP_NODE_TRUE
;
427 static struct grep_expr
*grep_or_expr(struct grep_expr
*left
, struct grep_expr
*right
)
429 struct grep_expr
*z
= xcalloc(1, sizeof(*z
));
430 z
->node
= GREP_NODE_OR
;
431 z
->u
.binary
.left
= left
;
432 z
->u
.binary
.right
= right
;
436 static struct grep_expr
*prep_header_patterns(struct grep_opt
*opt
)
439 struct grep_expr
*header_expr
;
440 struct grep_expr
*(header_group
[GREP_HEADER_FIELD_MAX
]);
441 enum grep_header_field fld
;
443 if (!opt
->header_list
)
446 for (p
= opt
->header_list
; p
; p
= p
->next
) {
447 if (p
->token
!= GREP_PATTERN_HEAD
)
448 die("bug: a non-header pattern in grep header list.");
449 if (p
->field
< 0 || GREP_HEADER_FIELD_MAX
<= p
->field
)
450 die("bug: unknown header field %d", p
->field
);
451 compile_regexp(p
, opt
);
454 for (fld
= 0; fld
< GREP_HEADER_FIELD_MAX
; fld
++)
455 header_group
[fld
] = NULL
;
457 for (p
= opt
->header_list
; p
; p
= p
->next
) {
459 struct grep_pat
*pp
= p
;
461 h
= compile_pattern_atom(&pp
);
462 if (!h
|| pp
!= p
->next
)
463 die("bug: malformed header expr");
464 if (!header_group
[p
->field
]) {
465 header_group
[p
->field
] = h
;
468 header_group
[p
->field
] = grep_or_expr(h
, header_group
[p
->field
]);
473 for (fld
= 0; fld
< GREP_HEADER_FIELD_MAX
; fld
++) {
474 if (!header_group
[fld
])
477 header_expr
= grep_true_expr();
478 header_expr
= grep_or_expr(header_group
[fld
], header_expr
);
483 static struct grep_expr
*grep_splice_or(struct grep_expr
*x
, struct grep_expr
*y
)
485 struct grep_expr
*z
= x
;
488 assert(x
->node
== GREP_NODE_OR
);
489 if (x
->u
.binary
.right
&&
490 x
->u
.binary
.right
->node
== GREP_NODE_TRUE
) {
491 x
->u
.binary
.right
= y
;
494 x
= x
->u
.binary
.right
;
499 static void compile_grep_patterns_real(struct grep_opt
*opt
)
502 struct grep_expr
*header_expr
= prep_header_patterns(opt
);
504 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
506 case GREP_PATTERN
: /* atom */
507 case GREP_PATTERN_HEAD
:
508 case GREP_PATTERN_BODY
:
509 compile_regexp(p
, opt
);
517 if (opt
->all_match
|| header_expr
)
519 else if (!opt
->extended
&& !opt
->debug
)
522 p
= opt
->pattern_list
;
524 opt
->pattern_expression
= compile_pattern_expr(&p
);
526 die("incomplete pattern expression: %s", p
->pattern
);
531 if (!opt
->pattern_expression
)
532 opt
->pattern_expression
= header_expr
;
533 else if (opt
->all_match
)
534 opt
->pattern_expression
= grep_splice_or(header_expr
,
535 opt
->pattern_expression
);
537 opt
->pattern_expression
= grep_or_expr(opt
->pattern_expression
,
542 void compile_grep_patterns(struct grep_opt
*opt
)
544 compile_grep_patterns_real(opt
);
546 dump_grep_expression(opt
);
549 static void free_pattern_expr(struct grep_expr
*x
)
556 free_pattern_expr(x
->u
.unary
);
560 free_pattern_expr(x
->u
.binary
.left
);
561 free_pattern_expr(x
->u
.binary
.right
);
567 void free_grep_patterns(struct grep_opt
*opt
)
569 struct grep_pat
*p
, *n
;
571 for (p
= opt
->pattern_list
; p
; p
= n
) {
574 case GREP_PATTERN
: /* atom */
575 case GREP_PATTERN_HEAD
:
576 case GREP_PATTERN_BODY
:
579 else if (p
->pcre_regexp
)
593 free_pattern_expr(opt
->pattern_expression
);
596 static char *end_of_line(char *cp
, unsigned long *left
)
598 unsigned long l
= *left
;
599 while (l
&& *cp
!= '\n') {
607 static int word_char(char ch
)
609 return isalnum(ch
) || ch
== '_';
612 static void output_color(struct grep_opt
*opt
, const void *data
, size_t size
,
615 if (want_color(opt
->color
) && color
&& color
[0]) {
616 opt
->output(opt
, color
, strlen(color
));
617 opt
->output(opt
, data
, size
);
618 opt
->output(opt
, GIT_COLOR_RESET
, strlen(GIT_COLOR_RESET
));
620 opt
->output(opt
, data
, size
);
623 static void output_sep(struct grep_opt
*opt
, char sign
)
625 if (opt
->null_following_name
)
626 opt
->output(opt
, "\0", 1);
628 output_color(opt
, &sign
, 1, opt
->color_sep
);
631 static void show_name(struct grep_opt
*opt
, const char *name
)
633 output_color(opt
, name
, strlen(name
), opt
->color_filename
);
634 opt
->output(opt
, opt
->null_following_name
? "\0" : "\n", 1);
637 static int fixmatch(struct grep_pat
*p
, char *line
, char *eol
,
640 struct kwsmatch kwsm
;
641 size_t offset
= kwsexec(p
->kws
, line
, eol
- line
, &kwsm
);
643 match
->rm_so
= match
->rm_eo
= -1;
646 match
->rm_so
= offset
;
647 match
->rm_eo
= match
->rm_so
+ kwsm
.size
[0];
652 static int regmatch(const regex_t
*preg
, char *line
, char *eol
,
653 regmatch_t
*match
, int eflags
)
657 match
->rm_eo
= eol
- line
;
658 eflags
|= REG_STARTEND
;
660 return regexec(preg
, line
, 1, match
, eflags
);
663 static int patmatch(struct grep_pat
*p
, char *line
, char *eol
,
664 regmatch_t
*match
, int eflags
)
669 hit
= !fixmatch(p
, line
, eol
, match
);
670 else if (p
->pcre_regexp
)
671 hit
= !pcrematch(p
, line
, eol
, match
, eflags
);
673 hit
= !regmatch(&p
->regexp
, line
, eol
, match
, eflags
);
678 static int strip_timestamp(char *bol
, char **eol_p
)
683 while (bol
< --eol
) {
699 { "committer ", 10 },
702 static int match_one_pattern(struct grep_pat
*p
, char *bol
, char *eol
,
703 enum grep_context ctx
,
704 regmatch_t
*pmatch
, int eflags
)
708 const char *start
= bol
;
710 if ((p
->token
!= GREP_PATTERN
) &&
711 ((p
->token
== GREP_PATTERN_HEAD
) != (ctx
== GREP_CONTEXT_HEAD
)))
714 if (p
->token
== GREP_PATTERN_HEAD
) {
717 assert(p
->field
< ARRAY_SIZE(header_field
));
718 field
= header_field
[p
->field
].field
;
719 len
= header_field
[p
->field
].len
;
720 if (strncmp(bol
, field
, len
))
723 saved_ch
= strip_timestamp(bol
, &eol
);
727 hit
= patmatch(p
, bol
, eol
, pmatch
, eflags
);
729 if (hit
&& p
->word_regexp
) {
730 if ((pmatch
[0].rm_so
< 0) ||
731 (eol
- bol
) < pmatch
[0].rm_so
||
732 (pmatch
[0].rm_eo
< 0) ||
733 (eol
- bol
) < pmatch
[0].rm_eo
)
734 die("regexp returned nonsense");
736 /* Match beginning must be either beginning of the
737 * line, or at word boundary (i.e. the last char must
738 * not be a word char). Similarly, match end must be
739 * either end of the line, or at word boundary
740 * (i.e. the next char must not be a word char).
742 if ( ((pmatch
[0].rm_so
== 0) ||
743 !word_char(bol
[pmatch
[0].rm_so
-1])) &&
744 ((pmatch
[0].rm_eo
== (eol
-bol
)) ||
745 !word_char(bol
[pmatch
[0].rm_eo
])) )
750 /* Words consist of at least one character. */
751 if (pmatch
->rm_so
== pmatch
->rm_eo
)
754 if (!hit
&& pmatch
[0].rm_so
+ bol
+ 1 < eol
) {
755 /* There could be more than one match on the
756 * line, and the first match might not be
757 * strict word match. But later ones could be!
758 * Forward to the next possible start, i.e. the
759 * next position following a non-word char.
761 bol
= pmatch
[0].rm_so
+ bol
+ 1;
762 while (word_char(bol
[-1]) && bol
< eol
)
764 eflags
|= REG_NOTBOL
;
769 if (p
->token
== GREP_PATTERN_HEAD
&& saved_ch
)
772 pmatch
[0].rm_so
+= bol
- start
;
773 pmatch
[0].rm_eo
+= bol
- start
;
778 static int match_expr_eval(struct grep_expr
*x
, char *bol
, char *eol
,
779 enum grep_context ctx
, int collect_hits
)
785 die("Not a valid grep expression");
791 h
= match_one_pattern(x
->u
.atom
, bol
, eol
, ctx
, &match
, 0);
794 h
= !match_expr_eval(x
->u
.unary
, bol
, eol
, ctx
, 0);
797 if (!match_expr_eval(x
->u
.binary
.left
, bol
, eol
, ctx
, 0))
799 h
= match_expr_eval(x
->u
.binary
.right
, bol
, eol
, ctx
, 0);
803 return (match_expr_eval(x
->u
.binary
.left
,
805 match_expr_eval(x
->u
.binary
.right
,
807 h
= match_expr_eval(x
->u
.binary
.left
, bol
, eol
, ctx
, 0);
808 x
->u
.binary
.left
->hit
|= h
;
809 h
|= match_expr_eval(x
->u
.binary
.right
, bol
, eol
, ctx
, 1);
812 die("Unexpected node type (internal error) %d", x
->node
);
819 static int match_expr(struct grep_opt
*opt
, char *bol
, char *eol
,
820 enum grep_context ctx
, int collect_hits
)
822 struct grep_expr
*x
= opt
->pattern_expression
;
823 return match_expr_eval(x
, bol
, eol
, ctx
, collect_hits
);
826 static int match_line(struct grep_opt
*opt
, char *bol
, char *eol
,
827 enum grep_context ctx
, int collect_hits
)
833 return match_expr(opt
, bol
, eol
, ctx
, collect_hits
);
835 /* we do not call with collect_hits without being extended */
836 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
837 if (match_one_pattern(p
, bol
, eol
, ctx
, &match
, 0))
843 static int match_next_pattern(struct grep_pat
*p
, char *bol
, char *eol
,
844 enum grep_context ctx
,
845 regmatch_t
*pmatch
, int eflags
)
849 if (!match_one_pattern(p
, bol
, eol
, ctx
, &match
, eflags
))
851 if (match
.rm_so
< 0 || match
.rm_eo
< 0)
853 if (pmatch
->rm_so
>= 0 && pmatch
->rm_eo
>= 0) {
854 if (match
.rm_so
> pmatch
->rm_so
)
856 if (match
.rm_so
== pmatch
->rm_so
&& match
.rm_eo
< pmatch
->rm_eo
)
859 pmatch
->rm_so
= match
.rm_so
;
860 pmatch
->rm_eo
= match
.rm_eo
;
864 static int next_match(struct grep_opt
*opt
, char *bol
, char *eol
,
865 enum grep_context ctx
, regmatch_t
*pmatch
, int eflags
)
870 pmatch
->rm_so
= pmatch
->rm_eo
= -1;
872 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
874 case GREP_PATTERN
: /* atom */
875 case GREP_PATTERN_HEAD
:
876 case GREP_PATTERN_BODY
:
877 hit
|= match_next_pattern(p
, bol
, eol
, ctx
,
888 static void show_line(struct grep_opt
*opt
, char *bol
, char *eol
,
889 const char *name
, unsigned lno
, char sign
)
891 int rest
= eol
- bol
;
892 char *line_color
= NULL
;
894 if (opt
->file_break
&& opt
->last_shown
== 0) {
895 if (opt
->show_hunk_mark
)
896 opt
->output(opt
, "\n", 1);
897 } else if (opt
->pre_context
|| opt
->post_context
|| opt
->funcbody
) {
898 if (opt
->last_shown
== 0) {
899 if (opt
->show_hunk_mark
) {
900 output_color(opt
, "--", 2, opt
->color_sep
);
901 opt
->output(opt
, "\n", 1);
903 } else if (lno
> opt
->last_shown
+ 1) {
904 output_color(opt
, "--", 2, opt
->color_sep
);
905 opt
->output(opt
, "\n", 1);
908 if (opt
->heading
&& opt
->last_shown
== 0) {
909 output_color(opt
, name
, strlen(name
), opt
->color_filename
);
910 opt
->output(opt
, "\n", 1);
912 opt
->last_shown
= lno
;
914 if (!opt
->heading
&& opt
->pathname
) {
915 output_color(opt
, name
, strlen(name
), opt
->color_filename
);
916 output_sep(opt
, sign
);
920 snprintf(buf
, sizeof(buf
), "%d", lno
);
921 output_color(opt
, buf
, strlen(buf
), opt
->color_lineno
);
922 output_sep(opt
, sign
);
926 enum grep_context ctx
= GREP_CONTEXT_BODY
;
931 line_color
= opt
->color_selected
;
932 else if (sign
== '-')
933 line_color
= opt
->color_context
;
934 else if (sign
== '=')
935 line_color
= opt
->color_function
;
937 while (next_match(opt
, bol
, eol
, ctx
, &match
, eflags
)) {
938 if (match
.rm_so
== match
.rm_eo
)
941 output_color(opt
, bol
, match
.rm_so
, line_color
);
942 output_color(opt
, bol
+ match
.rm_so
,
943 match
.rm_eo
- match
.rm_so
,
951 output_color(opt
, bol
, rest
, line_color
);
952 opt
->output(opt
, "\n", 1);
959 * This lock protects access to the gitattributes machinery, which is
962 pthread_mutex_t grep_attr_mutex
;
964 static inline void grep_attr_lock(void)
967 pthread_mutex_lock(&grep_attr_mutex
);
970 static inline void grep_attr_unlock(void)
973 pthread_mutex_unlock(&grep_attr_mutex
);
977 * Same as git_attr_mutex, but protecting the thread-unsafe object db access.
979 pthread_mutex_t grep_read_mutex
;
982 #define grep_attr_lock()
983 #define grep_attr_unlock()
986 static int match_funcname(struct grep_opt
*opt
, struct grep_source
*gs
, char *bol
, char *eol
)
988 xdemitconf_t
*xecfg
= opt
->priv
;
989 if (xecfg
&& !xecfg
->find_func
) {
990 grep_source_load_driver(gs
);
991 if (gs
->driver
->funcname
.pattern
) {
992 const struct userdiff_funcname
*pe
= &gs
->driver
->funcname
;
993 xdiff_set_find_func(xecfg
, pe
->pattern
, pe
->cflags
);
995 xecfg
= opt
->priv
= NULL
;
1001 return xecfg
->find_func(bol
, eol
- bol
, buf
, 1,
1002 xecfg
->find_func_priv
) >= 0;
1007 if (isalpha(*bol
) || *bol
== '_' || *bol
== '$')
1012 static void show_funcname_line(struct grep_opt
*opt
, struct grep_source
*gs
,
1013 char *bol
, unsigned lno
)
1015 while (bol
> gs
->buf
) {
1018 while (bol
> gs
->buf
&& bol
[-1] != '\n')
1022 if (lno
<= opt
->last_shown
)
1025 if (match_funcname(opt
, gs
, bol
, eol
)) {
1026 show_line(opt
, bol
, eol
, gs
->name
, lno
, '=');
1032 static void show_pre_context(struct grep_opt
*opt
, struct grep_source
*gs
,
1033 char *bol
, char *end
, unsigned lno
)
1035 unsigned cur
= lno
, from
= 1, funcname_lno
= 0;
1036 int funcname_needed
= !!opt
->funcname
;
1038 if (opt
->funcbody
&& !match_funcname(opt
, gs
, bol
, end
))
1039 funcname_needed
= 2;
1041 if (opt
->pre_context
< lno
)
1042 from
= lno
- opt
->pre_context
;
1043 if (from
<= opt
->last_shown
)
1044 from
= opt
->last_shown
+ 1;
1047 while (bol
> gs
->buf
&&
1048 cur
> (funcname_needed
== 2 ? opt
->last_shown
+ 1 : from
)) {
1051 while (bol
> gs
->buf
&& bol
[-1] != '\n')
1054 if (funcname_needed
&& match_funcname(opt
, gs
, bol
, eol
)) {
1056 funcname_needed
= 0;
1060 /* We need to look even further back to find a function signature. */
1061 if (opt
->funcname
&& funcname_needed
)
1062 show_funcname_line(opt
, gs
, bol
, cur
);
1066 char *eol
= bol
, sign
= (cur
== funcname_lno
) ? '=' : '-';
1068 while (*eol
!= '\n')
1070 show_line(opt
, bol
, eol
, gs
->name
, cur
, sign
);
1076 static int should_lookahead(struct grep_opt
*opt
)
1081 return 0; /* punt for too complex stuff */
1084 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
1085 if (p
->token
!= GREP_PATTERN
)
1086 return 0; /* punt for "header only" and stuff */
1091 static int look_ahead(struct grep_opt
*opt
,
1092 unsigned long *left_p
,
1096 unsigned lno
= *lno_p
;
1099 char *sp
, *last_bol
;
1100 regoff_t earliest
= -1;
1102 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
1106 hit
= patmatch(p
, bol
, bol
+ *left_p
, &m
, 0);
1107 if (!hit
|| m
.rm_so
< 0 || m
.rm_eo
< 0)
1109 if (earliest
< 0 || m
.rm_so
< earliest
)
1114 *bol_p
= bol
+ *left_p
;
1118 for (sp
= bol
+ earliest
; bol
< sp
&& sp
[-1] != '\n'; sp
--)
1119 ; /* find the beginning of the line */
1122 for (sp
= bol
; sp
< last_bol
; sp
++) {
1126 *left_p
-= last_bol
- bol
;
1132 static void std_output(struct grep_opt
*opt
, const void *buf
, size_t size
)
1134 fwrite(buf
, size
, 1, stdout
);
1137 static int grep_source_1(struct grep_opt
*opt
, struct grep_source
*gs
, int collect_hits
)
1142 unsigned last_hit
= 0;
1143 int binary_match_only
= 0;
1145 int try_lookahead
= 0;
1146 int show_function
= 0;
1147 enum grep_context ctx
= GREP_CONTEXT_HEAD
;
1151 opt
->output
= std_output
;
1153 if (opt
->pre_context
|| opt
->post_context
|| opt
->file_break
||
1155 /* Show hunk marks, except for the first file. */
1156 if (opt
->last_shown
)
1157 opt
->show_hunk_mark
= 1;
1159 * If we're using threads then we can't easily identify
1160 * the first file. Always put hunk marks in that case
1161 * and skip the very first one later in work_done().
1163 if (opt
->output
!= std_output
)
1164 opt
->show_hunk_mark
= 1;
1166 opt
->last_shown
= 0;
1168 switch (opt
->binary
) {
1169 case GREP_BINARY_DEFAULT
:
1170 if (grep_source_is_binary(gs
))
1171 binary_match_only
= 1;
1173 case GREP_BINARY_NOMATCH
:
1174 if (grep_source_is_binary(gs
))
1175 return 0; /* Assume unmatch */
1177 case GREP_BINARY_TEXT
:
1180 die("bug: unknown binary handling mode");
1183 memset(&xecfg
, 0, sizeof(xecfg
));
1186 try_lookahead
= should_lookahead(opt
);
1188 if (grep_source_load(gs
) < 0)
1198 * look_ahead() skips quickly to the line that possibly
1199 * has the next hit; don't call it if we need to do
1200 * something more than just skipping the current line
1201 * in response to an unmatch for the current line. E.g.
1202 * inside a post-context window, we will show the current
1203 * line as a context around the previous hit when it
1208 && (show_function
||
1209 lno
<= last_hit
+ opt
->post_context
))
1210 && look_ahead(opt
, &left
, &lno
, &bol
))
1212 eol
= end_of_line(bol
, &left
);
1216 if ((ctx
== GREP_CONTEXT_HEAD
) && (eol
== bol
))
1217 ctx
= GREP_CONTEXT_BODY
;
1219 hit
= match_line(opt
, bol
, eol
, ctx
, collect_hits
);
1225 /* "grep -v -e foo -e bla" should list lines
1226 * that do not have either, so inversion should
1231 if (opt
->unmatch_name_only
) {
1238 if (opt
->status_only
)
1240 if (opt
->name_only
) {
1241 show_name(opt
, gs
->name
);
1246 if (binary_match_only
) {
1247 opt
->output(opt
, "Binary file ", 12);
1248 output_color(opt
, gs
->name
, strlen(gs
->name
),
1249 opt
->color_filename
);
1250 opt
->output(opt
, " matches\n", 9);
1253 /* Hit at this line. If we haven't shown the
1254 * pre-context lines, we would need to show them.
1256 if (opt
->pre_context
|| opt
->funcbody
)
1257 show_pre_context(opt
, gs
, bol
, eol
, lno
);
1258 else if (opt
->funcname
)
1259 show_funcname_line(opt
, gs
, bol
, lno
);
1260 show_line(opt
, bol
, eol
, gs
->name
, lno
, ':');
1266 if (show_function
&& match_funcname(opt
, gs
, bol
, eol
))
1268 if (show_function
||
1269 (last_hit
&& lno
<= last_hit
+ opt
->post_context
)) {
1270 /* If the last hit is within the post context,
1271 * we need to show this line.
1273 show_line(opt
, bol
, eol
, gs
->name
, lno
, '-');
1287 if (opt
->status_only
)
1289 if (opt
->unmatch_name_only
) {
1290 /* We did not see any hit, so we want to show this */
1291 show_name(opt
, gs
->name
);
1295 xdiff_clear_find_func(&xecfg
);
1299 * The real "grep -c foo *.c" gives many "bar.c:0" lines,
1300 * which feels mostly useless but sometimes useful. Maybe
1301 * make it another option? For now suppress them.
1303 if (opt
->count
&& count
) {
1305 output_color(opt
, gs
->name
, strlen(gs
->name
), opt
->color_filename
);
1306 output_sep(opt
, ':');
1307 snprintf(buf
, sizeof(buf
), "%u\n", count
);
1308 opt
->output(opt
, buf
, strlen(buf
));
1314 static void clr_hit_marker(struct grep_expr
*x
)
1316 /* All-hit markers are meaningful only at the very top level
1321 if (x
->node
!= GREP_NODE_OR
)
1323 x
->u
.binary
.left
->hit
= 0;
1324 x
= x
->u
.binary
.right
;
1328 static int chk_hit_marker(struct grep_expr
*x
)
1330 /* Top level nodes have hit markers. See if they all are hits */
1332 if (x
->node
!= GREP_NODE_OR
)
1334 if (!x
->u
.binary
.left
->hit
)
1336 x
= x
->u
.binary
.right
;
1340 int grep_source(struct grep_opt
*opt
, struct grep_source
*gs
)
1343 * we do not have to do the two-pass grep when we do not check
1344 * buffer-wide "all-match".
1346 if (!opt
->all_match
)
1347 return grep_source_1(opt
, gs
, 0);
1349 /* Otherwise the toplevel "or" terms hit a bit differently.
1350 * We first clear hit markers from them.
1352 clr_hit_marker(opt
->pattern_expression
);
1353 grep_source_1(opt
, gs
, 1);
1355 if (!chk_hit_marker(opt
->pattern_expression
))
1358 return grep_source_1(opt
, gs
, 0);
1361 int grep_buffer(struct grep_opt
*opt
, char *buf
, unsigned long size
)
1363 struct grep_source gs
;
1366 grep_source_init(&gs
, GREP_SOURCE_BUF
, NULL
, NULL
);
1370 r
= grep_source(opt
, &gs
);
1372 grep_source_clear(&gs
);
1376 void grep_source_init(struct grep_source
*gs
, enum grep_source_type type
,
1377 const char *name
, const void *identifier
)
1380 gs
->name
= name
? xstrdup(name
) : NULL
;
1386 case GREP_SOURCE_FILE
:
1387 gs
->identifier
= xstrdup(identifier
);
1389 case GREP_SOURCE_SHA1
:
1390 gs
->identifier
= xmalloc(20);
1391 memcpy(gs
->identifier
, identifier
, 20);
1393 case GREP_SOURCE_BUF
:
1394 gs
->identifier
= NULL
;
1398 void grep_source_clear(struct grep_source
*gs
)
1402 free(gs
->identifier
);
1403 gs
->identifier
= NULL
;
1404 grep_source_clear_data(gs
);
1407 void grep_source_clear_data(struct grep_source
*gs
)
1410 case GREP_SOURCE_FILE
:
1411 case GREP_SOURCE_SHA1
:
1416 case GREP_SOURCE_BUF
:
1417 /* leave user-provided buf intact */
1422 static int grep_source_load_sha1(struct grep_source
*gs
)
1424 enum object_type type
;
1427 gs
->buf
= read_sha1_file(gs
->identifier
, &type
, &gs
->size
);
1431 return error(_("'%s': unable to read %s"),
1433 sha1_to_hex(gs
->identifier
));
1437 static int grep_source_load_file(struct grep_source
*gs
)
1439 const char *filename
= gs
->identifier
;
1445 if (lstat(filename
, &st
) < 0) {
1447 if (errno
!= ENOENT
)
1448 error(_("'%s': %s"), filename
, strerror(errno
));
1451 if (!S_ISREG(st
.st_mode
))
1453 size
= xsize_t(st
.st_size
);
1454 i
= open(filename
, O_RDONLY
);
1457 data
= xmalloc(size
+ 1);
1458 if (st
.st_size
!= read_in_full(i
, data
, size
)) {
1459 error(_("'%s': short read %s"), filename
, strerror(errno
));
1472 int grep_source_load(struct grep_source
*gs
)
1478 case GREP_SOURCE_FILE
:
1479 return grep_source_load_file(gs
);
1480 case GREP_SOURCE_SHA1
:
1481 return grep_source_load_sha1(gs
);
1482 case GREP_SOURCE_BUF
:
1483 return gs
->buf
? 0 : -1;
1485 die("BUG: invalid grep_source type");
1488 void grep_source_load_driver(struct grep_source
*gs
)
1494 gs
->driver
= userdiff_find_by_path(gs
->name
);
1496 gs
->driver
= userdiff_find_by_name("default");
1500 int grep_source_is_binary(struct grep_source
*gs
)
1502 grep_source_load_driver(gs
);
1503 if (gs
->driver
->binary
!= -1)
1504 return gs
->driver
->binary
;
1506 if (!grep_source_load(gs
))
1507 return buffer_is_binary(gs
->buf
, gs
->size
);