2 * Mini grep implementation for busybox using libc regex.
4 * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
5 * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <string.h> /* for strerror() */
32 extern int optind; /* in unistd.h */
33 extern void xregcomp(regex_t *preg, const char *regex, int cflags); /* in busybox.h */
36 static int reflags = REG_NOSUB;
37 static int print_filename = 0;
38 static int print_line_num = 0;
39 static int print_match_counts = 0;
40 static int be_quiet = 0;
41 static int invert_search = 0;
42 static int suppress_err_msgs = 0;
43 static int print_files_with_matches = 0;
45 #ifdef CONFIG_FEATURE_GREP_CONTEXT
46 extern char *optarg; /* in getopt.h */
47 static int lines_before = 0;
48 static int lines_after = 0;
49 static char **before_buf = NULL;
50 static int last_line_printed = 0;
51 #endif /* CONFIG_FEATURE_GREP_CONTEXT */
53 /* globals used internally */
54 static regex_t *regexes = NULL; /* growable array of compiled regular expressions */
55 static int nregexes = 0; /* number of elements in above arrary */
56 static int matched; /* keeps track of whether we ever matched */
57 static char *cur_file = NULL; /* the current file we are reading */
60 static void print_line(const char *line, int linenum, char decoration)
62 #ifdef CONFIG_FEATURE_GREP_CONTEXT
63 /* possibly print the little '--' seperator */
64 if ((lines_before || lines_after) && last_line_printed &&
65 last_line_printed < linenum - 1) {
68 last_line_printed = linenum;
71 printf("%s%c", cur_file, decoration);
73 printf("%i%c", linenum, decoration);
78 static void grep_file(FILE *file)
85 #ifdef CONFIG_FEATURE_GREP_CONTEXT
86 int print_n_lines_after = 0;
87 int curpos = 0; /* track where we are in the circular 'before' buffer */
88 int idx = 0; /* used for iteration through the circular buffer */
89 #endif /* CONFIG_FEATURE_GREP_CONTEXT */
91 while ((line = get_line_from_file(file)) != NULL) {
95 for (i = 0; i < nregexes; i++) {
97 * test for a postitive-assertion match (regexec returns success (0)
98 * and the user did not specify invert search), or a negative-assertion
99 * match (regexec returns failure (REG_NOMATCH) and the user specified
102 ret = regexec(®exes[i], line, 0, NULL, 0);
103 if ((ret == 0 && !invert_search) || (ret == REG_NOMATCH && invert_search)) {
105 /* if we found a match but were told to be quiet, stop here and
110 /* keep track of matches */
113 /* if we're just printing filenames, we stop after the first match */
114 if (print_files_with_matches)
117 /* print the matched line */
118 if (print_match_counts == 0) {
119 #ifdef CONFIG_FEATURE_GREP_CONTEXT
120 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
122 /* if we were told to print 'before' lines and there is at least
123 * one line in the circular buffer, print them */
124 if (lines_before && before_buf[prevpos] != NULL) {
125 int first_buf_entry_line_num = linenum - lines_before;
127 /* advance to the first entry in the circular buffer, and
128 * figure out the line number is of the first line in the
131 while (before_buf[idx] == NULL) {
132 idx = (idx + 1) % lines_before;
133 first_buf_entry_line_num++;
136 /* now print each line in the buffer, clearing them as we go */
137 while (before_buf[idx] != NULL) {
138 print_line(before_buf[idx], first_buf_entry_line_num, '-');
139 free(before_buf[idx]);
140 before_buf[idx] = NULL;
141 idx = (idx + 1) % lines_before;
142 first_buf_entry_line_num++;
146 /* make a note that we need to print 'after' lines */
147 print_n_lines_after = lines_after;
148 #endif /* CONFIG_FEATURE_GREP_CONTEXT */
149 print_line(line, linenum, ':');
152 #ifdef CONFIG_FEATURE_GREP_CONTEXT
153 else { /* no match */
154 /* Add the line to the circular 'before' buffer */
156 if(before_buf[curpos])
157 free(before_buf[curpos]);
158 before_buf[curpos] = strdup(line);
159 curpos = (curpos + 1) % lines_before;
163 /* if we need to print some context lines after the last match, do so */
164 if (print_n_lines_after && (last_line_printed != linenum)) {
165 print_line(line, linenum, '-');
166 print_n_lines_after--;
168 #endif /* CONFIG_FEATURE_GREP_CONTEXT */
174 /* special-case file post-processing for options where we don't print line
175 * matches, just filenames and possibly match counts */
177 /* grep -c: print [filename:]count, even if count is zero */
178 if (print_match_counts) {
180 printf("%s:", cur_file);
181 if (print_files_with_matches && nmatches > 0)
184 printf("%d\n", nmatches);
187 /* grep -l: print just the filename, but only if we grepped the line in the file */
188 if (print_files_with_matches && nmatches > 0) {
193 /* remember if we matched */
199 static void add_regex(const char *restr)
201 regexes = xrealloc(regexes, sizeof(regex_t) * (++nregexes));
202 xregcomp(®exes[nregexes-1], restr, reflags);
206 static void load_regexes_from_file(const char *filename)
209 FILE *f = xfopen(filename, "r");
210 while ((line = get_line_from_file(f)) != NULL) {
218 #ifdef CONFIG_FEATURE_CLEAN_UP
219 static void destroy_regexes()
224 /* destroy all the elments in the array */
225 while (--nregexes >= 0) {
226 regfree(®exes[nregexes]);
227 free(®exes[nregexes]);
233 extern int grep_main(int argc, char **argv)
236 #ifdef CONFIG_FEATURE_GREP_CONTEXT
240 #ifdef CONFIG_FEATURE_CLEAN_UP
241 /* destroy command strings on exit */
242 if (atexit(destroy_regexes) == -1)
243 perror_msg_and_die("atexit");
246 #ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS
247 if (strcmp (basename (argv[0]), "egrep") == 0)
248 reflags |= REG_ICASE;
251 /* do normal option parsing */
252 while ((opt = getopt(argc, argv, "iHhlnqvsce:f:"
253 #ifdef CONFIG_FEATURE_GREP_CONTEXT
259 reflags |= REG_ICASE;
262 print_files_with_matches++;
283 print_match_counts++;
289 load_regexes_from_file(optarg);
291 #ifdef CONFIG_FEATURE_GREP_CONTEXT
293 lines_after = strtoul(optarg, &junk, 10);
295 error_msg_and_die("invalid context length argument");
298 lines_before = strtoul(optarg, &junk, 10);
300 error_msg_and_die("invalid context length argument");
301 before_buf = (char **)calloc(lines_before, sizeof(char *));
304 lines_after = lines_before = strtoul(optarg, &junk, 10);
306 error_msg_and_die("invalid context length argument");
307 before_buf = (char **)calloc(lines_before, sizeof(char *));
309 #endif /* CONFIG_FEATURE_GREP_CONTEXT */
315 /* if we didn't get a pattern from a -e and no command file was specified,
316 * argv[optind] should be the pattern. no pattern, no worky */
318 if (argv[optind] == NULL)
321 add_regex(argv[optind]);
327 if (print_match_counts || be_quiet || print_files_with_matches) {
329 #ifdef CONFIG_FEATURE_GREP_CONTEXT
335 /* argv[(optind)..(argc-1)] should be names of file to grep through. If
336 * there is more than one file to grep, we will print the filenames */
337 if ((argc-1) - (optind) > 0)
340 /* If no files were specified, or '-' was specified, take input from
341 * stdin. Otherwise, we grep through all the files specified. */
342 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
348 for (i = optind; i < argc; i++) {
350 file = fopen(cur_file, "r");
352 if (!suppress_err_msgs)
353 perror_msg("%s", cur_file);
362 return !matched; /* invert return value 0 = success, 1 = failed */