3 #include "xdiff-interface.h"
5 void append_grep_pattern(struct grep_opt
*opt
, const char *pat
,
6 const char *origin
, int no
, enum grep_pat_token t
)
8 struct grep_pat
*p
= xcalloc(1, sizeof(*p
));
13 *opt
->pattern_tail
= p
;
14 opt
->pattern_tail
= &p
->next
;
18 static void compile_regexp(struct grep_pat
*p
, struct grep_opt
*opt
)
20 int err
= regcomp(&p
->regexp
, p
->pattern
, opt
->regflags
);
25 sprintf(where
, "In '%s' at %d, ",
28 sprintf(where
, "%s, ", p
->origin
);
31 regerror(err
, &p
->regexp
, errbuf
, 1024);
33 die("%s'%s': %s", where
, p
->pattern
, errbuf
);
37 static struct grep_expr
*compile_pattern_or(struct grep_pat
**);
38 static struct grep_expr
*compile_pattern_atom(struct grep_pat
**list
)
45 case GREP_PATTERN
: /* atom */
46 case GREP_PATTERN_HEAD
:
47 case GREP_PATTERN_BODY
:
48 x
= xcalloc(1, sizeof (struct grep_expr
));
49 x
->node
= GREP_NODE_ATOM
;
55 x
= compile_pattern_or(list
);
58 if (!*list
|| (*list
)->token
!= GREP_CLOSE_PAREN
)
59 die("unmatched parenthesis");
60 *list
= (*list
)->next
;
67 static struct grep_expr
*compile_pattern_not(struct grep_pat
**list
)
76 die("--not not followed by pattern expression");
78 x
= xcalloc(1, sizeof (struct grep_expr
));
79 x
->node
= GREP_NODE_NOT
;
80 x
->u
.unary
= compile_pattern_not(list
);
82 die("--not followed by non pattern expression");
85 return compile_pattern_atom(list
);
89 static struct grep_expr
*compile_pattern_and(struct grep_pat
**list
)
92 struct grep_expr
*x
, *y
, *z
;
94 x
= compile_pattern_not(list
);
96 if (p
&& p
->token
== GREP_AND
) {
98 die("--and not followed by pattern expression");
100 y
= compile_pattern_and(list
);
102 die("--and not followed by pattern expression");
103 z
= xcalloc(1, sizeof (struct grep_expr
));
104 z
->node
= GREP_NODE_AND
;
105 z
->u
.binary
.left
= x
;
106 z
->u
.binary
.right
= y
;
112 static struct grep_expr
*compile_pattern_or(struct grep_pat
**list
)
115 struct grep_expr
*x
, *y
, *z
;
117 x
= compile_pattern_and(list
);
119 if (x
&& p
&& p
->token
!= GREP_CLOSE_PAREN
) {
120 y
= compile_pattern_or(list
);
122 die("not a pattern expression %s", p
->pattern
);
123 z
= xcalloc(1, sizeof (struct grep_expr
));
124 z
->node
= GREP_NODE_OR
;
125 z
->u
.binary
.left
= x
;
126 z
->u
.binary
.right
= y
;
132 static struct grep_expr
*compile_pattern_expr(struct grep_pat
**list
)
134 return compile_pattern_or(list
);
137 void compile_grep_patterns(struct grep_opt
*opt
)
144 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
146 case GREP_PATTERN
: /* atom */
147 case GREP_PATTERN_HEAD
:
148 case GREP_PATTERN_BODY
:
150 compile_regexp(p
, opt
);
161 /* Then bundle them up in an expression.
162 * A classic recursive descent parser would do.
164 p
= opt
->pattern_list
;
165 opt
->pattern_expression
= compile_pattern_expr(&p
);
167 die("incomplete pattern expression: %s", p
->pattern
);
170 static void free_pattern_expr(struct grep_expr
*x
)
176 free_pattern_expr(x
->u
.unary
);
180 free_pattern_expr(x
->u
.binary
.left
);
181 free_pattern_expr(x
->u
.binary
.right
);
187 void free_grep_patterns(struct grep_opt
*opt
)
189 struct grep_pat
*p
, *n
;
191 for (p
= opt
->pattern_list
; p
; p
= n
) {
194 case GREP_PATTERN
: /* atom */
195 case GREP_PATTERN_HEAD
:
196 case GREP_PATTERN_BODY
:
207 free_pattern_expr(opt
->pattern_expression
);
210 static char *end_of_line(char *cp
, unsigned long *left
)
212 unsigned long l
= *left
;
213 while (l
&& *cp
!= '\n') {
221 static int word_char(char ch
)
223 return isalnum(ch
) || ch
== '_';
226 static void show_line(struct grep_opt
*opt
, const char *bol
, const char *eol
,
227 const char *name
, unsigned lno
, char sign
)
230 printf("%s%c", name
, sign
);
232 printf("%d%c", lno
, sign
);
233 printf("%.*s\n", (int)(eol
-bol
), bol
);
236 static int fixmatch(const char *pattern
, char *line
, regmatch_t
*match
)
238 char *hit
= strstr(line
, pattern
);
240 match
->rm_so
= match
->rm_eo
= -1;
244 match
->rm_so
= hit
- line
;
245 match
->rm_eo
= match
->rm_so
+ strlen(pattern
);
250 static int match_one_pattern(struct grep_opt
*opt
, struct grep_pat
*p
, char *bol
, char *eol
, enum grep_context ctx
)
254 regmatch_t pmatch
[10];
256 if ((p
->token
!= GREP_PATTERN
) &&
257 ((p
->token
== GREP_PATTERN_HEAD
) != (ctx
== GREP_CONTEXT_HEAD
)))
262 regex_t
*exp
= &p
->regexp
;
263 hit
= !regexec(exp
, bol
, ARRAY_SIZE(pmatch
),
267 hit
= !fixmatch(p
->pattern
, bol
, pmatch
);
270 if (hit
&& opt
->word_regexp
) {
271 if ((pmatch
[0].rm_so
< 0) ||
272 (eol
- bol
) <= pmatch
[0].rm_so
||
273 (pmatch
[0].rm_eo
< 0) ||
274 (eol
- bol
) < pmatch
[0].rm_eo
)
275 die("regexp returned nonsense");
277 /* Match beginning must be either beginning of the
278 * line, or at word boundary (i.e. the last char must
279 * not be a word char). Similarly, match end must be
280 * either end of the line, or at word boundary
281 * (i.e. the next char must not be a word char).
283 if ( ((pmatch
[0].rm_so
== 0 && at_true_bol
) ||
284 !word_char(bol
[pmatch
[0].rm_so
-1])) &&
285 ((pmatch
[0].rm_eo
== (eol
-bol
)) ||
286 !word_char(bol
[pmatch
[0].rm_eo
])) )
291 if (!hit
&& pmatch
[0].rm_so
+ bol
+ 1 < eol
) {
292 /* There could be more than one match on the
293 * line, and the first match might not be
294 * strict word match. But later ones could be!
296 bol
= pmatch
[0].rm_so
+ bol
+ 1;
304 static int match_expr_eval(struct grep_opt
*o
,
306 char *bol
, char *eol
,
307 enum grep_context ctx
,
314 h
= match_one_pattern(o
, x
->u
.atom
, bol
, eol
, ctx
);
317 h
= !match_expr_eval(o
, x
->u
.unary
, bol
, eol
, ctx
, 0);
321 return (match_expr_eval(o
, x
->u
.binary
.left
,
323 match_expr_eval(o
, x
->u
.binary
.right
,
325 h
= match_expr_eval(o
, x
->u
.binary
.left
, bol
, eol
, ctx
, 0);
326 h
&= match_expr_eval(o
, x
->u
.binary
.right
, bol
, eol
, ctx
, 0);
330 return (match_expr_eval(o
, x
->u
.binary
.left
,
332 match_expr_eval(o
, x
->u
.binary
.right
,
334 h
= match_expr_eval(o
, x
->u
.binary
.left
, bol
, eol
, ctx
, 0);
335 x
->u
.binary
.left
->hit
|= h
;
336 h
|= match_expr_eval(o
, x
->u
.binary
.right
, bol
, eol
, ctx
, 1);
339 die("Unexpected node type (internal error) %d\n", x
->node
);
346 static int match_expr(struct grep_opt
*opt
, char *bol
, char *eol
,
347 enum grep_context ctx
, int collect_hits
)
349 struct grep_expr
*x
= opt
->pattern_expression
;
350 return match_expr_eval(opt
, x
, bol
, eol
, ctx
, collect_hits
);
353 static int match_line(struct grep_opt
*opt
, char *bol
, char *eol
,
354 enum grep_context ctx
, int collect_hits
)
358 return match_expr(opt
, bol
, eol
, ctx
, collect_hits
);
360 /* we do not call with collect_hits without being extended */
361 for (p
= opt
->pattern_list
; p
; p
= p
->next
) {
362 if (match_one_pattern(opt
, p
, bol
, eol
, ctx
))
368 static int grep_buffer_1(struct grep_opt
*opt
, const char *name
,
369 char *buf
, unsigned long size
, int collect_hits
)
372 unsigned long left
= size
;
374 struct pre_context_line
{
377 } *prev
= NULL
, *pcl
;
378 unsigned last_hit
= 0;
379 unsigned last_shown
= 0;
380 int binary_match_only
= 0;
381 const char *hunk_mark
= "";
383 enum grep_context ctx
= GREP_CONTEXT_HEAD
;
385 if (buffer_is_binary(buf
, size
)) {
386 switch (opt
->binary
) {
387 case GREP_BINARY_DEFAULT
:
388 binary_match_only
= 1;
390 case GREP_BINARY_NOMATCH
:
391 return 0; /* Assume unmatch */
398 if (opt
->pre_context
)
399 prev
= xcalloc(opt
->pre_context
, sizeof(*prev
));
400 if (opt
->pre_context
|| opt
->post_context
)
407 eol
= end_of_line(bol
, &left
);
411 if ((ctx
== GREP_CONTEXT_HEAD
) && (eol
== bol
))
412 ctx
= GREP_CONTEXT_BODY
;
414 hit
= match_line(opt
, bol
, eol
, ctx
, collect_hits
);
420 /* "grep -v -e foo -e bla" should list lines
421 * that do not have either, so inversion should
426 if (opt
->unmatch_name_only
) {
433 if (opt
->status_only
)
435 if (binary_match_only
) {
436 printf("Binary file %s matches\n", name
);
439 if (opt
->name_only
) {
440 printf("%s\n", name
);
443 /* Hit at this line. If we haven't shown the
444 * pre-context lines, we would need to show them.
445 * When asked to do "count", this still show
446 * the context which is nonsense, but the user
447 * deserves to get that ;-).
449 if (opt
->pre_context
) {
451 if (opt
->pre_context
< lno
)
452 from
= lno
- opt
->pre_context
;
455 if (from
<= last_shown
)
456 from
= last_shown
+ 1;
457 if (last_shown
&& from
!= last_shown
+ 1)
460 pcl
= &prev
[lno
-from
-1];
461 show_line(opt
, pcl
->bol
, pcl
->eol
,
467 if (last_shown
&& lno
!= last_shown
+ 1)
470 show_line(opt
, bol
, eol
, name
, lno
, ':');
471 last_shown
= last_hit
= lno
;
474 lno
<= last_hit
+ opt
->post_context
) {
475 /* If the last hit is within the post context,
476 * we need to show this line.
478 if (last_shown
&& lno
!= last_shown
+ 1)
480 show_line(opt
, bol
, eol
, name
, lno
, '-');
483 if (opt
->pre_context
) {
484 memmove(prev
+1, prev
,
485 (opt
->pre_context
-1) * sizeof(*prev
));
502 if (opt
->status_only
)
504 if (opt
->unmatch_name_only
) {
505 /* We did not see any hit, so we want to show this */
506 printf("%s\n", name
);
511 * The real "grep -c foo *.c" gives many "bar.c:0" lines,
512 * which feels mostly useless but sometimes useful. Maybe
513 * make it another option? For now suppress them.
515 if (opt
->count
&& count
)
516 printf("%s:%u\n", name
, count
);
520 static void clr_hit_marker(struct grep_expr
*x
)
522 /* All-hit markers are meaningful only at the very top level
527 if (x
->node
!= GREP_NODE_OR
)
529 x
->u
.binary
.left
->hit
= 0;
530 x
= x
->u
.binary
.right
;
534 static int chk_hit_marker(struct grep_expr
*x
)
536 /* Top level nodes have hit markers. See if they all are hits */
538 if (x
->node
!= GREP_NODE_OR
)
540 if (!x
->u
.binary
.left
->hit
)
542 x
= x
->u
.binary
.right
;
546 int grep_buffer(struct grep_opt
*opt
, const char *name
, char *buf
, unsigned long size
)
549 * we do not have to do the two-pass grep when we do not check
550 * buffer-wide "all-match".
553 return grep_buffer_1(opt
, name
, buf
, size
, 0);
555 /* Otherwise the toplevel "or" terms hit a bit differently.
556 * We first clear hit markers from them.
558 clr_hit_marker(opt
->pattern_expression
);
559 grep_buffer_1(opt
, name
, buf
, size
, 1);
561 if (!chk_hit_marker(opt
->pattern_expression
))
564 return grep_buffer_1(opt
, name
, buf
, size
, 0);