3 #include "xdiff-interface.h"
5 void append_header_grep_pattern(struct grep_opt *opt, enum grep_header_field field, const char *pat)
7 struct grep_pat *p = xcalloc(1, sizeof(*p));
11 p->token = GREP_PATTERN_HEAD;
13 *opt->pattern_tail = p;
14 opt->pattern_tail = &p->next;
18 void append_grep_pattern(struct grep_opt *opt, const char *pat,
19 const char *origin, int no, enum grep_pat_token t)
21 struct grep_pat *p = xcalloc(1, sizeof(*p));
26 *opt->pattern_tail = p;
27 opt->pattern_tail = &p->next;
31 static void compile_regexp(struct grep_pat *p, struct grep_opt *opt)
33 int err = regcomp(&p->regexp, p->pattern, opt->regflags);
38 sprintf(where, "In '%s' at %d, ",
41 sprintf(where, "%s, ", p->origin);
44 regerror(err, &p->regexp, errbuf, 1024);
46 die("%s'%s': %s", where, p->pattern, errbuf);
50 static struct grep_expr *compile_pattern_or(struct grep_pat **);
51 static struct grep_expr *compile_pattern_atom(struct grep_pat **list)
58 case GREP_PATTERN: /* atom */
59 case GREP_PATTERN_HEAD:
60 case GREP_PATTERN_BODY:
61 x = xcalloc(1, sizeof (struct grep_expr));
62 x->node = GREP_NODE_ATOM;
68 x = compile_pattern_or(list);
71 if (!*list || (*list)->token != GREP_CLOSE_PAREN)
72 die("unmatched parenthesis");
73 *list = (*list)->next;
80 static struct grep_expr *compile_pattern_not(struct grep_pat **list)
89 die("--not not followed by pattern expression");
91 x = xcalloc(1, sizeof (struct grep_expr));
92 x->node = GREP_NODE_NOT;
93 x->u.unary = compile_pattern_not(list);
95 die("--not followed by non pattern expression");
98 return compile_pattern_atom(list);
102 static struct grep_expr *compile_pattern_and(struct grep_pat **list)
105 struct grep_expr *x, *y, *z;
107 x = compile_pattern_not(list);
109 if (p && p->token == GREP_AND) {
111 die("--and not followed by pattern expression");
113 y = compile_pattern_and(list);
115 die("--and not followed by pattern expression");
116 z = xcalloc(1, sizeof (struct grep_expr));
117 z->node = GREP_NODE_AND;
118 z->u.binary.left = x;
119 z->u.binary.right = y;
125 static struct grep_expr *compile_pattern_or(struct grep_pat **list)
128 struct grep_expr *x, *y, *z;
130 x = compile_pattern_and(list);
132 if (x && p && p->token != GREP_CLOSE_PAREN) {
133 y = compile_pattern_or(list);
135 die("not a pattern expression %s", p->pattern);
136 z = xcalloc(1, sizeof (struct grep_expr));
137 z->node = GREP_NODE_OR;
138 z->u.binary.left = x;
139 z->u.binary.right = y;
145 static struct grep_expr *compile_pattern_expr(struct grep_pat **list)
147 return compile_pattern_or(list);
150 void compile_grep_patterns(struct grep_opt *opt)
157 for (p = opt->pattern_list; p; p = p->next) {
159 case GREP_PATTERN: /* atom */
160 case GREP_PATTERN_HEAD:
161 case GREP_PATTERN_BODY:
163 compile_regexp(p, opt);
174 /* Then bundle them up in an expression.
175 * A classic recursive descent parser would do.
177 p = opt->pattern_list;
178 opt->pattern_expression = compile_pattern_expr(&p);
180 die("incomplete pattern expression: %s", p->pattern);
183 static void free_pattern_expr(struct grep_expr *x)
189 free_pattern_expr(x->u.unary);
193 free_pattern_expr(x->u.binary.left);
194 free_pattern_expr(x->u.binary.right);
200 void free_grep_patterns(struct grep_opt *opt)
202 struct grep_pat *p, *n;
204 for (p = opt->pattern_list; p; p = n) {
207 case GREP_PATTERN: /* atom */
208 case GREP_PATTERN_HEAD:
209 case GREP_PATTERN_BODY:
220 free_pattern_expr(opt->pattern_expression);
223 static char *end_of_line(char *cp, unsigned long *left)
225 unsigned long l = *left;
226 while (l && *cp != '\n') {
234 static int word_char(char ch)
236 return isalnum(ch) || ch == '_';
239 static void show_line(struct grep_opt *opt, const char *bol, const char *eol,
240 const char *name, unsigned lno, char sign)
242 if (opt->null_following_name)
245 printf("%s%c", name, sign);
247 printf("%d%c", lno, sign);
248 printf("%.*s\n", (int)(eol-bol), bol);
251 static void show_name(struct grep_opt *opt, const char *name)
253 printf("%s%c", name, opt->null_following_name ? '\0' : '\n');
256 static int fixmatch(const char *pattern, char *line, regmatch_t *match)
258 char *hit = strstr(line, pattern);
260 match->rm_so = match->rm_eo = -1;
264 match->rm_so = hit - line;
265 match->rm_eo = match->rm_so + strlen(pattern);
270 static int strip_timestamp(char *bol, char **eol_p)
275 while (bol < --eol) {
291 { "committer ", 10 },
294 static int match_one_pattern(struct grep_opt *opt, struct grep_pat *p, char *bol, char *eol, enum grep_context ctx)
299 regmatch_t pmatch[10];
301 if ((p->token != GREP_PATTERN) &&
302 ((p->token == GREP_PATTERN_HEAD) != (ctx == GREP_CONTEXT_HEAD)))
305 if (p->token == GREP_PATTERN_HEAD) {
308 assert(p->field < ARRAY_SIZE(header_field));
309 field = header_field[p->field].field;
310 len = header_field[p->field].len;
311 if (strncmp(bol, field, len))
314 saved_ch = strip_timestamp(bol, &eol);
319 regex_t *exp = &p->regexp;
320 hit = !regexec(exp, bol, ARRAY_SIZE(pmatch),
324 hit = !fixmatch(p->pattern, bol, pmatch);
327 if (hit && opt->word_regexp) {
328 if ((pmatch[0].rm_so < 0) ||
329 (eol - bol) <= pmatch[0].rm_so ||
330 (pmatch[0].rm_eo < 0) ||
331 (eol - bol) < pmatch[0].rm_eo)
332 die("regexp returned nonsense");
334 /* Match beginning must be either beginning of the
335 * line, or at word boundary (i.e. the last char must
336 * not be a word char). Similarly, match end must be
337 * either end of the line, or at word boundary
338 * (i.e. the next char must not be a word char).
340 if ( ((pmatch[0].rm_so == 0 && at_true_bol) ||
341 !word_char(bol[pmatch[0].rm_so-1])) &&
342 ((pmatch[0].rm_eo == (eol-bol)) ||
343 !word_char(bol[pmatch[0].rm_eo])) )
348 if (!hit && pmatch[0].rm_so + bol + 1 < eol) {
349 /* There could be more than one match on the
350 * line, and the first match might not be
351 * strict word match. But later ones could be!
353 bol = pmatch[0].rm_so + bol + 1;
358 if (p->token == GREP_PATTERN_HEAD && saved_ch)
363 static int match_expr_eval(struct grep_opt *o,
365 char *bol, char *eol,
366 enum grep_context ctx,
373 h = match_one_pattern(o, x->u.atom, bol, eol, ctx);
376 h = !match_expr_eval(o, x->u.unary, bol, eol, ctx, 0);
380 return (match_expr_eval(o, x->u.binary.left,
382 match_expr_eval(o, x->u.binary.right,
384 h = match_expr_eval(o, x->u.binary.left, bol, eol, ctx, 0);
385 h &= match_expr_eval(o, x->u.binary.right, bol, eol, ctx, 0);
389 return (match_expr_eval(o, x->u.binary.left,
391 match_expr_eval(o, x->u.binary.right,
393 h = match_expr_eval(o, x->u.binary.left, bol, eol, ctx, 0);
394 x->u.binary.left->hit |= h;
395 h |= match_expr_eval(o, x->u.binary.right, bol, eol, ctx, 1);
398 die("Unexpected node type (internal error) %d\n", x->node);
405 static int match_expr(struct grep_opt *opt, char *bol, char *eol,
406 enum grep_context ctx, int collect_hits)
408 struct grep_expr *x = opt->pattern_expression;
409 return match_expr_eval(opt, x, bol, eol, ctx, collect_hits);
412 static int match_line(struct grep_opt *opt, char *bol, char *eol,
413 enum grep_context ctx, int collect_hits)
417 return match_expr(opt, bol, eol, ctx, collect_hits);
419 /* we do not call with collect_hits without being extended */
420 for (p = opt->pattern_list; p; p = p->next) {
421 if (match_one_pattern(opt, p, bol, eol, ctx))
427 static int grep_buffer_1(struct grep_opt *opt, const char *name,
428 char *buf, unsigned long size, int collect_hits)
431 unsigned long left = size;
433 struct pre_context_line {
436 } *prev = NULL, *pcl;
437 unsigned last_hit = 0;
438 unsigned last_shown = 0;
439 int binary_match_only = 0;
440 const char *hunk_mark = "";
442 enum grep_context ctx = GREP_CONTEXT_HEAD;
444 if (buffer_is_binary(buf, size)) {
445 switch (opt->binary) {
446 case GREP_BINARY_DEFAULT:
447 binary_match_only = 1;
449 case GREP_BINARY_NOMATCH:
450 return 0; /* Assume unmatch */
457 if (opt->pre_context)
458 prev = xcalloc(opt->pre_context, sizeof(*prev));
459 if (opt->pre_context || opt->post_context)
466 eol = end_of_line(bol, &left);
470 if ((ctx == GREP_CONTEXT_HEAD) && (eol == bol))
471 ctx = GREP_CONTEXT_BODY;
473 hit = match_line(opt, bol, eol, ctx, collect_hits);
479 /* "grep -v -e foo -e bla" should list lines
480 * that do not have either, so inversion should
485 if (opt->unmatch_name_only) {
492 if (opt->status_only)
494 if (binary_match_only) {
495 printf("Binary file %s matches\n", name);
498 if (opt->name_only) {
499 show_name(opt, name);
502 /* Hit at this line. If we haven't shown the
503 * pre-context lines, we would need to show them.
504 * When asked to do "count", this still show
505 * the context which is nonsense, but the user
506 * deserves to get that ;-).
508 if (opt->pre_context) {
510 if (opt->pre_context < lno)
511 from = lno - opt->pre_context;
514 if (from <= last_shown)
515 from = last_shown + 1;
516 if (last_shown && from != last_shown + 1)
517 fputs(hunk_mark, stdout);
519 pcl = &prev[lno-from-1];
520 show_line(opt, pcl->bol, pcl->eol,
526 if (last_shown && lno != last_shown + 1)
527 fputs(hunk_mark, stdout);
529 show_line(opt, bol, eol, name, lno, ':');
530 last_shown = last_hit = lno;
533 lno <= last_hit + opt->post_context) {
534 /* If the last hit is within the post context,
535 * we need to show this line.
537 if (last_shown && lno != last_shown + 1)
538 fputs(hunk_mark, stdout);
539 show_line(opt, bol, eol, name, lno, '-');
542 if (opt->pre_context) {
543 memmove(prev+1, prev,
544 (opt->pre_context-1) * sizeof(*prev));
561 if (opt->status_only)
563 if (opt->unmatch_name_only) {
564 /* We did not see any hit, so we want to show this */
565 show_name(opt, name);
570 * The real "grep -c foo *.c" gives many "bar.c:0" lines,
571 * which feels mostly useless but sometimes useful. Maybe
572 * make it another option? For now suppress them.
574 if (opt->count && count)
575 printf("%s%c%u\n", name,
576 opt->null_following_name ? '\0' : ':', count);
580 static void clr_hit_marker(struct grep_expr *x)
582 /* All-hit markers are meaningful only at the very top level
587 if (x->node != GREP_NODE_OR)
589 x->u.binary.left->hit = 0;
590 x = x->u.binary.right;
594 static int chk_hit_marker(struct grep_expr *x)
596 /* Top level nodes have hit markers. See if they all are hits */
598 if (x->node != GREP_NODE_OR)
600 if (!x->u.binary.left->hit)
602 x = x->u.binary.right;
606 int grep_buffer(struct grep_opt *opt, const char *name, char *buf, unsigned long size)
609 * we do not have to do the two-pass grep when we do not check
610 * buffer-wide "all-match".
613 return grep_buffer_1(opt, name, buf, size, 0);
615 /* Otherwise the toplevel "or" terms hit a bit differently.
616 * We first clear hit markers from them.
618 clr_hit_marker(opt->pattern_expression);
619 grep_buffer_1(opt, name, buf, size, 1);
621 if (!chk_hit_marker(opt->pattern_expression))
624 return grep_buffer_1(opt, name, buf, size, 0);