Minor fixes to being a standalone shell.
[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
43 static const char grep_usage[] =
44         "grep [OPTIONS]... PATTERN [FILE]...\n"
45 #ifndef BB_FEATURE_TRIVIAL_HELP
46         "\nSearch for PATTERN in each FILE or standard input.\n\n"
47         "OPTIONS:\n"
48         "\t-h\tsuppress the prefixing filename on output\n"
49         "\t-i\tignore case distinctions\n"
50         "\t-n\tprint line number with output lines\n"
51         "\t-q\tbe quiet. Returns 0 if result was found, 1 otherwise\n"
52         "\t-v\tselect non-matching lines\n\n"
53 #if defined BB_REGEXP
54         "This version of grep matches full regular expresions.\n";
55 #else
56         "This version of grep matches strings (not regular expresions).\n"
57 #endif
58 #endif
59         ;
60
61 static int match = FALSE, beQuiet = FALSE;
62
63 static void do_grep(FILE * fp, char *needle, char *fileName, int tellName,
64                                         int ignoreCase, int tellLine, int invertSearch)
65 {
66         char *cp;
67         long line = 0;
68         char haystack[BUF_SIZE];
69         int  truth = !invertSearch;
70
71         while (fgets(haystack, sizeof(haystack), fp)) {
72                 line++;
73                 cp = &haystack[strlen(haystack) - 1];
74
75                 if (*cp != '\n')
76                         fprintf(stderr, "%s: Line too long\n", fileName);
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         }
91 }
92
93
94 extern int grep_main(int argc, char **argv)
95 {
96         FILE *fp;
97         char *cp;
98         char *needle;
99         char *fileName;
100         int tellName     = TRUE;
101         int ignoreCase   = FALSE;
102         int tellLine     = FALSE;
103         int invertSearch = FALSE;
104
105         argc--;
106         argv++;
107         if (argc < 1) {
108                 usage(grep_usage);
109         }
110
111         if (**argv == '-') {
112                 argc--;
113                 cp = *argv++;
114
115                 while (*++cp)
116                         switch (*cp) {
117                         case 'i':
118                                 ignoreCase = TRUE;
119                                 break;
120
121                         case 'h':
122                                 tellName = FALSE;
123                                 break;
124
125                         case 'n':
126                                 tellLine = TRUE;
127                                 break;
128
129                         case 'q':
130                                 beQuiet = TRUE;
131                                 break;
132
133                         case 'v':
134                                 invertSearch = TRUE;
135                                 break;
136
137                         default:
138                                 usage(grep_usage);
139                         }
140         }
141
142         needle = *argv++;
143         argc--;
144
145         if (argc == 0) {
146                 do_grep(stdin, needle, "stdin", FALSE, ignoreCase, tellLine, invertSearch);
147         } else {
148                 /* Never print the filename for just one file */
149                 if (argc == 1)
150                         tellName = FALSE;
151                 while (argc-- > 0) {
152                         fileName = *argv++;
153
154                         fp = fopen(fileName, "r");
155                         if (fp == NULL) {
156                                 perror(fileName);
157                                 continue;
158                         }
159
160                         do_grep(fp, needle, fileName, tellName, ignoreCase, tellLine, invertSearch);
161
162                         if (ferror(fp))
163                                 perror(fileName);
164                         fclose(fp);
165                 }
166         }
167         exit(match);
168 }
169
170
171 /* END CODE */