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