dpkg improvements, use full package struct, avoid extracting to tmp dir, rename variable.
[oweals/busybox.git] / grep.c
1 /*
2  * Mini grep implementation for busybox using libc regex.
3  *
4  * Copyright (C) 1999,2000,2001 by Lineo, inc.
5  * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
6  *
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.
11  *
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.
16  *
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
20  *
21  */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <getopt.h>
26 #include <regex.h>
27 #include <string.h> /* for strerror() */
28 #include <errno.h>
29 #include "busybox.h"
30
31
32 extern int optind; /* in unistd.h */
33 extern int errno;  /* for use with strerror() */
34 extern void xregcomp(regex_t *preg, const char *regex, int cflags); /* in busybox.h */
35
36 /* options */
37 static int ignore_case       = 0;
38 static int print_filename    = 0;
39 static int print_line_num    = 0;
40 static int print_count_only  = 0;
41 static int be_quiet          = 0;
42 static int invert_search     = 0;
43 static int suppress_err_msgs = 0;
44 static int files_that_match  = 0;
45
46 #ifdef BB_FEATURE_GREP_CONTEXT
47 extern char *optarg; /* in getopt.h */
48 static int lines_before      = 0;
49 static int lines_after       = 0;
50 static char **before_buf     = NULL;
51 static int last_line_printed = 0;
52 #endif /* BB_FEATURE_GREP_CONTEXT */
53
54 /* globals used internally */
55 static regex_t regex; /* storage space for compiled regular expression */
56 static int matched; /* keeps track of whether we ever matched */
57 static char *cur_file = NULL; /* the current file we are reading */
58
59 static void print_line(const char *line, int linenum, char decoration)
60 {
61 #ifdef BB_FEATURE_GREP_CONTEXT
62         /* possibly print the little '--' seperator */
63         if (last_line_printed && last_line_printed < linenum - 1) {
64                 puts("--");
65         }
66         last_line_printed = linenum;
67 #endif
68         if (print_filename)
69                 printf("%s%c", cur_file, decoration);
70         if (print_line_num)
71                 printf("%i%c", linenum, decoration);
72         puts(line);
73 }
74
75 static void grep_file(FILE *file)
76 {
77         char *line = NULL;
78         int ret;
79         int linenum = 0;
80         int nmatches = 0;
81 #ifdef BB_FEATURE_GREP_CONTEXT
82         int print_n_lines_after = 0;
83         int curpos = 0; /* track where we are in the circular 'before' buffer */
84         int idx = 0; /* used for iteration through the circular buffer */
85 #endif /* BB_FEATURE_GREP_CONTEXT */ 
86
87         while ((line = get_line_from_file(file)) != NULL) {
88                 chomp(line);
89                 linenum++;
90
91                 /*
92                  * test for a postitive-assertion match (regexec returns success (0)
93                  * and the user did not specify invert search), or a negative-assertion
94                  * match (regexec returns failure (REG_NOMATCH) and the user specified
95                  * invert search)
96                  */
97                 ret = regexec(&regex, line, 0, NULL, 0);
98                 if ((ret == 0 && !invert_search) || (ret == REG_NOMATCH && invert_search)) {
99
100                         /* if we found a match but were told to be quiet, stop here and
101                          * return success */
102                         if (be_quiet) {
103                                 regfree(&regex);
104                                 exit(0);
105                         }
106
107                         /* otherwise, keep track of matches and print the matched line */
108                         nmatches++;
109                         if (print_count_only==0 && files_that_match==0) {
110 #ifdef BB_FEATURE_GREP_CONTEXT
111                                 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
112
113                                 /* if we were told to print 'before' lines and there is at least
114                                  * one line in the circular buffer, print them */
115                                 if (lines_before && before_buf[prevpos] != NULL)
116                                 {
117                                         int first_buf_entry_line_num = linenum - lines_before;
118
119                                         /* advance to the first entry in the circular buffer, and
120                                          * figure out the line number is of the first line in the
121                                          * buffer */
122                                         idx = curpos;
123                                         while (before_buf[idx] == NULL) {
124                                                 idx = (idx + 1) % lines_before;
125                                                 first_buf_entry_line_num++;
126                                         }
127
128                                         /* now print each line in the buffer, clearing them as we go */
129                                         while (before_buf[idx] != NULL) {
130                                                 print_line(before_buf[idx], first_buf_entry_line_num, '-');
131                                                 free(before_buf[idx]);
132                                                 before_buf[idx] = NULL;
133                                                 idx = (idx + 1) % lines_before;
134                                                 first_buf_entry_line_num++;
135                                         }
136
137                                 }
138
139                                 /* make a note that we need to print 'after' lines */
140                                 print_n_lines_after = lines_after;
141 #endif /* BB_FEATURE_GREP_CONTEXT */ 
142                                 print_line(line, linenum, ':');
143                         }
144                 }
145 #ifdef BB_FEATURE_GREP_CONTEXT
146                 else { /* no match */
147                         /* Add the line to the circular 'before' buffer */
148                         if(lines_before)
149                         {
150                                 if(before_buf[curpos])
151                                         free(before_buf[curpos]);
152                                 before_buf[curpos] = strdup(line);
153                                 curpos = (curpos + 1) % lines_before;
154                         }
155                 }
156
157                 /* if we need to print some context lines after the last match, do so */
158                 if (print_n_lines_after && (last_line_printed != linenum)) {
159                         print_line(line, linenum, '-');
160                         print_n_lines_after--;
161                 }
162 #endif /* BB_FEATURE_GREP_CONTEXT */ 
163                 free(line);
164         }
165
166         /* special-case post processing */
167         if (files_that_match) {
168             if (nmatches > 0) {
169                 printf("%s", cur_file);
170                 if (nmatches)
171                     printf(":%d", nmatches);
172                 printf("\n");
173             }
174         } else if (print_count_only) {
175                 if (print_filename)
176                         printf("%s:", cur_file);
177                 printf("%i\n", nmatches);
178         } 
179
180         /* remember if we matched */
181         if (nmatches != 0)
182                 matched = 1;
183 }
184
185 extern int grep_main(int argc, char **argv)
186 {
187         int opt;
188         int reflags;
189 #ifdef BB_FEATURE_GREP_CONTEXT
190         char *junk;
191 #endif
192
193         /* do normal option parsing */
194         while ((opt = getopt(argc, argv, "iHhlnqvsc"
195 #ifdef BB_FEATURE_GREP_CONTEXT
196 "A:B:C:"
197 #endif
198 )) > 0) {
199                 switch (opt) {
200                         case 'i':
201                                 ignore_case++;
202                                 break;
203                         case 'l':
204                                 files_that_match++;
205                                 break;
206                         case 'H':
207                                 print_filename++;
208                                 break;
209                         case 'h':
210                                 print_filename--;
211                                 break;
212                         case 'n':
213                                 print_line_num++;
214                                 break;
215                         case 'q':
216                                 be_quiet++;
217                                 break;
218                         case 'v':
219                                 invert_search++;
220                                 break;
221                         case 's':
222                                 suppress_err_msgs++;
223                                 break;
224                         case 'c':
225                                 print_count_only++;
226                                 break;
227 #ifdef BB_FEATURE_GREP_CONTEXT
228                         case 'A':
229                                 lines_after = strtoul(optarg, &junk, 10);
230                                 if(*junk != '\0')
231                                         error_msg_and_die("invalid context length argument");
232                                 break;
233                         case 'B':
234                                 lines_before = strtoul(optarg, &junk, 10);
235                                 if(*junk != '\0')
236                                         error_msg_and_die("invalid context length argument");
237                                 before_buf = (char **)calloc(lines_before, sizeof(char *));
238                                 break;
239                         case 'C':
240                                 lines_after = lines_before = strtoul(optarg, &junk, 10);
241                                 if(*junk != '\0')
242                                         error_msg_and_die("invalid context length argument");
243                                 before_buf = (char **)calloc(lines_before, sizeof(char *));
244                                 break;
245 #endif /* BB_FEATURE_GREP_CONTEXT */
246                         default:
247                                 show_usage();
248                 }
249         }
250
251         /* argv[optind] should be the regex pattern; no pattern, no worky */
252         if (argv[optind] == NULL)
253                 show_usage();
254
255         /* sanity check */
256         if (print_count_only || be_quiet || files_that_match) {
257                 print_line_num = 0;
258 #ifdef BB_FEATURE_GREP_CONTEXT
259                 lines_before = 0;
260                 lines_after = 0;
261 #endif
262         }
263
264         /* compile the regular expression
265          * we're not going to mess with sub-expressions, and we need to
266          * treat newlines right. */
267         reflags = REG_NOSUB; 
268         if (ignore_case)
269                 reflags |= REG_ICASE;
270         xregcomp(&regex, argv[optind], reflags);
271
272         /* argv[(optind+1)..(argc-1)] should be names of file to grep through. If
273          * there is more than one file to grep, we will print the filenames */
274         if ((argc-1) - (optind+1) > 0)
275                 print_filename++;
276
277         /* If no files were specified, or '-' was specified, take input from
278          * stdin. Otherwise, we grep through all the files specified. */
279         if (argv[optind+1] == NULL || (strcmp(argv[optind+1], "-") == 0)) {
280                 grep_file(stdin);
281         }
282         else {
283                 int i;
284                 FILE *file;
285                 for (i = optind + 1; i < argc; i++) {
286                         cur_file = argv[i];
287                         file = fopen(cur_file, "r");
288                         if (file == NULL) {
289                                 if (!suppress_err_msgs)
290                                         perror_msg("%s", cur_file);
291                         }
292                         else {
293                                 grep_file(file);
294                                 fclose(file);
295                         }
296                 }
297         }
298
299         regfree(&regex);
300
301         return !matched; /* invert return value 0 = success, 1 = failed */
302 }