1272a464b33c03aa5240ef39beb34aa44885cfff
[oweals/busybox.git] / grep.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini grep implementation for busybox
4  *
5  *
6  * Copyright (C) 1999,2000 by Lineo, inc.
7  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  */
24
25 /*
26         18-Dec-1999     Konstantin Boldyshev <konst@voshod.com>
27
28         + -q option (be quiet) 
29         + exit code depending on grep result (TRUE or FALSE)
30           (useful for scripts)
31 */
32
33 #include "internal.h"
34 #include "regexp.h"
35 #include <stdio.h>
36 #include <dirent.h>
37 #include <errno.h>
38 #include <fcntl.h>
39 #include <signal.h>
40 #include <time.h>
41 #include <ctype.h>
42 #define BB_DECLARE_EXTERN
43 #define bb_need_too_few_args
44 #include "messages.c"
45
46 static const char grep_usage[] =
47         "grep [OPTIONS]... PATTERN [FILE]...\n"
48 #ifndef BB_FEATURE_TRIVIAL_HELP
49         "\nSearch for PATTERN in each FILE or standard input.\n\n"
50         "OPTIONS:\n"
51         "\t-h\tsuppress the prefixing filename on output\n"
52         "\t-i\tignore case distinctions\n"
53         "\t-n\tprint line number with output lines\n"
54         "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n"
55         "\t-v\tselect non-matching lines\n\n"
56 #if defined BB_REGEXP
57         "This version of grep matches full regular expresions.\n";
58 #else
59         "This version of grep matches strings (not regular expresions).\n"
60 #endif
61 #endif
62         ;
63
64 static int match = FALSE, beQuiet = FALSE;
65
66 static void do_grep(FILE * fp, char *needle, char *fileName, int tellName,
67                                         int ignoreCase, int tellLine, int invertSearch)
68 {
69         char *cp;
70         long line = 0;
71         char *haystack;
72         int  truth = !invertSearch;
73
74         while ((haystack = cstring_lineFromFile(fp))) {
75                 line++;
76                 cp = &haystack[strlen(haystack) - 1];
77
78                 if (find_match(haystack, needle, ignoreCase) == truth) {
79                         if (tellName == TRUE)
80                                 printf("%s:", fileName);
81
82                         if (tellLine == TRUE)
83                                 printf("%ld:", line);
84
85                         if (beQuiet == FALSE)
86                                 fputs(haystack, stdout);
87
88                         match = TRUE;
89                 }
90                 free(haystack);
91         }
92 }
93
94
95 extern int grep_main(int argc, char **argv)
96 {
97         FILE *fp;
98         char *needle;
99         char *fileName;
100         int tellName     = TRUE;
101         int ignoreCase   = FALSE;
102         int tellLine     = FALSE;
103         int invertSearch = FALSE;
104
105         if (argc < 1) {
106                 usage(grep_usage);
107         }
108         argv++;
109
110         while (--argc >= 0 && *argv && (**argv == '-')) {
111                 while (*++(*argv)) {
112                         switch (**argv) {
113                         case 'i':
114                                 ignoreCase = TRUE;
115                                 break;
116
117                         case 'h':
118                                 tellName = FALSE;
119                                 break;
120
121                         case 'n':
122                                 tellLine = TRUE;
123                                 break;
124
125                         case 'q':
126                                 beQuiet = TRUE;
127                                 break;
128
129                         case 'v':
130                                 invertSearch = TRUE;
131                                 break;
132
133                         default:
134                                 usage(grep_usage);
135                         }
136                 }
137                 argv++;
138         }
139
140         if (argc == 0 || *argv == NULL) {
141                 fatalError(too_few_args, "grep");
142         }
143
144         needle = *argv++;
145         argc--;
146
147         if (argc == 0) {
148                 do_grep(stdin, needle, "stdin", FALSE, ignoreCase, tellLine, invertSearch);
149         } else {
150                 /* Never print the filename for just one file */
151                 if (argc == 1)
152                         tellName = FALSE;
153                 while (argc-- > 0) {
154                         fileName = *argv++;
155
156                         fp = fopen(fileName, "r");
157                         if (fp == NULL) {
158                                 perror(fileName);
159                                 continue;
160                         }
161
162                         do_grep(fp, needle, fileName, tellName, ignoreCase, tellLine, invertSearch);
163
164                         if (ferror(fp))
165                                 perror(fileName);
166                         fclose(fp);
167                 }
168         }
169         exit(match);
170 }
171
172
173 /* END CODE */