fec8d0913c7dafc4e2b6248a6ac567557b475ad5
[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 extern void xregcomp(regex_t *preg, const char *regex, int cflags);
32
33 extern int optind; /* in unistd.h */
34 extern int errno;  /* for use with strerror() */
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
45 /* globals */
46 static regex_t regex; /* storage space for compiled regular expression */
47 static int matched; /* keeps track of whether we ever matched */
48 static char *cur_file = NULL; /* the current file we are reading */
49
50
51 static void print_matched_line(char *line, int linenum)
52 {
53         if (print_count_only)
54                 return;
55
56         if (print_filename)
57                 printf("%s:", cur_file);
58         if (print_line_num)
59                 printf("%i:", linenum);
60
61         puts(line);
62 }
63
64 static void grep_file(FILE *file)
65 {
66         char *line = NULL;
67         int ret;
68         int linenum = 0;
69         int nmatches = 0;
70
71         while ((line = get_line_from_file(file)) != NULL) {
72                 chomp(line);
73                 linenum++;
74                 ret = regexec(&regex, line, 0, NULL, 0);
75                 if (ret == 0 && !invert_search) { /* match */
76
77                         /* if we found a match but were told to be quiet, stop here and
78                          * return success */
79                         if (be_quiet) {
80                                 regfree(&regex);
81                                 exit(0);
82                         }
83
84                         nmatches++;
85                         print_matched_line(line, linenum);
86
87                 }
88                 else if (ret == REG_NOMATCH && invert_search) {
89                         if (be_quiet) {
90                                 regfree(&regex);
91                                 exit(0);
92                         }
93
94                         nmatches++;
95                         print_matched_line(line, linenum);
96                 }
97
98                 free(line);
99         }
100
101         /* special-case post processing */
102         if (print_count_only) {
103                 if (print_filename)
104                         printf("%s:", cur_file);
105                 printf("%i\n", nmatches);
106         }
107
108         /* record if we matched */
109         if (nmatches != 0)
110                 matched = 1;
111 }
112
113 extern int grep_main(int argc, char **argv)
114 {
115         int opt;
116         int reflags;
117
118         /* do normal option parsing */
119         while ((opt = getopt(argc, argv, "iHhnqvsc")) > 0) {
120                 switch (opt) {
121                         case 'i':
122                                 ignore_case++;
123                                 break;
124                         case 'H':
125                                 print_filename++;
126                                 break;
127                         case 'h':
128                                 print_filename--;
129                                 break;
130                         case 'n':
131                                 print_line_num++;
132                                 break;
133                         case 'q':
134                                 be_quiet++;
135                                 break;
136                         case 'v':
137                                 invert_search++;
138                                 break;
139                         case 's':
140                                 suppress_err_msgs++;
141                                 break;
142                         case 'c':
143                                 print_count_only++;
144                                 break;
145                 }
146         }
147
148         /* argv[optind] should be the regex pattern; no pattern, no worky */
149         if (argv[optind] == NULL)
150                 usage(grep_usage);
151
152         /* compile the regular expression
153          * we're not going to mess with sub-expressions, and we need to
154          * treat newlines right. */
155         reflags = REG_NOSUB; 
156         if (ignore_case)
157                 reflags |= REG_ICASE;
158         xregcomp(&regex, argv[optind], reflags);
159
160         /* argv[(optind+1)..(argc-1)] should be names of file to grep through. If
161          * there is more than one file to grep, we will print the filenames */
162         if ((argc-1) - (optind+1) > 0)
163                 print_filename++;
164
165         /* If no files were specified, or '-' was specified, take input from
166          * stdin. Otherwise, we grep through all the files specified. */
167         if (argv[optind+1] == NULL || (strcmp(argv[optind+1], "-") == 0)) {
168                 grep_file(stdin);
169         }
170         else {
171                 int i;
172                 FILE *file;
173                 for (i = optind + 1; i < argc; i++) {
174                         cur_file = argv[i];
175                         file = fopen(cur_file, "r");
176                         if (file == NULL) {
177                                 if (!suppress_err_msgs)
178                                         perror_msg("%s", cur_file);
179                         }
180                         else {
181                                 grep_file(file);
182                                 fclose(file);
183                         }
184                 }
185         }
186
187         regfree(&regex);
188
189         if (!matched)
190                 return 1;
191
192         return 0;
193 }