+ removed some cruft left over from when lines could be too long.
[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         long line = 0;
70         char *haystack;
71         int  truth = !invertSearch;
72
73         while ((haystack = cstring_lineFromFile(fp))) {
74                 line++;
75                 if (find_match(haystack, needle, ignoreCase) == truth) {
76                         if (tellName == TRUE)
77                                 printf("%s:", fileName);
78
79                         if (tellLine == TRUE)
80                                 printf("%ld:", line);
81
82                         if (beQuiet == FALSE)
83                                 fputs(haystack, stdout);
84
85                         match = TRUE;
86                 }
87                 free(haystack);
88         }
89 }
90
91
92 extern int grep_main(int argc, char **argv)
93 {
94         FILE *fp;
95         char *needle;
96         char *fileName;
97         int tellName     = TRUE;
98         int ignoreCase   = FALSE;
99         int tellLine     = FALSE;
100         int invertSearch = FALSE;
101
102         if (argc < 1) {
103                 usage(grep_usage);
104         }
105         argv++;
106
107         while (--argc >= 0 && *argv && (**argv == '-')) {
108                 while (*++(*argv)) {
109                         switch (**argv) {
110                         case 'i':
111                                 ignoreCase = TRUE;
112                                 break;
113
114                         case 'h':
115                                 tellName = FALSE;
116                                 break;
117
118                         case 'n':
119                                 tellLine = TRUE;
120                                 break;
121
122                         case 'q':
123                                 beQuiet = TRUE;
124                                 break;
125
126                         case 'v':
127                                 invertSearch = TRUE;
128                                 break;
129
130                         default:
131                                 usage(grep_usage);
132                         }
133                 }
134                 argv++;
135         }
136
137         if (argc == 0 || *argv == NULL) {
138                 fatalError(too_few_args, "grep");
139         }
140
141         needle = *argv++;
142         argc--;
143
144         if (argc == 0) {
145                 do_grep(stdin, needle, "stdin", FALSE, ignoreCase, tellLine, invertSearch);
146         } else {
147                 /* Never print the filename for just one file */
148                 if (argc == 1)
149                         tellName = FALSE;
150                 while (argc-- > 0) {
151                         fileName = *argv++;
152
153                         fp = fopen(fileName, "r");
154                         if (fp == NULL) {
155                                 perror(fileName);
156                                 continue;
157                         }
158
159                         do_grep(fp, needle, fileName, tellName, ignoreCase, tellLine, invertSearch);
160
161                         if (ferror(fp))
162                                 perror(fileName);
163                         fclose(fp);
164                 }
165         }
166         exit(match);
167 }
168
169
170 /* END CODE */