| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 1 | /* |
| Eric Andersen | 3e0fbae | 1999-10-19 06:02:44 +0000 | [diff] [blame] | 2 | * Mini grep implementation for busybox |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 3 | * |
| Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 1999 by Lineo, inc. |
| 6 | * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 7 | * |
| Eric Andersen | 3e0fbae | 1999-10-19 06:02:44 +0000 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
| 24 | #include "internal.h" |
| Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 25 | #include "regexp.h" |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 26 | #include <stdio.h> |
| 27 | #include <dirent.h> |
| 28 | #include <errno.h> |
| 29 | #include <fcntl.h> |
| 30 | #include <signal.h> |
| 31 | #include <time.h> |
| 32 | #include <ctype.h> |
| 33 | |
| Eric Andersen | e77ae3a | 1999-10-19 20:03:34 +0000 | [diff] [blame] | 34 | static const char grep_usage[] = |
| Eric Andersen | 3e0fbae | 1999-10-19 06:02:44 +0000 | [diff] [blame] | 35 | "grep [-ihn]... PATTERN [FILE]...\n" |
| 36 | "Search for PATTERN in each FILE or standard input.\n\n" |
| 37 | "\t-h\tsuppress the prefixing filename on output\n" |
| 38 | "\t-i\tignore case distinctions\n" |
| 39 | "\t-n\tprint line number with output lines\n\n" |
| Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 40 | #if defined BB_REGEXP |
| 41 | "This version of grep matches full regexps.\n"; |
| 42 | #else |
| Eric Andersen | 3e0fbae | 1999-10-19 06:02:44 +0000 | [diff] [blame] | 43 | "This version of grep matches strings (not full regexps).\n"; |
| Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 44 | #endif |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 45 | |
| Eric Andersen | fbb39c8 | 1999-11-08 17:00:52 +0000 | [diff] [blame^] | 46 | int tellName=TRUE; |
| 47 | int ignoreCase=FALSE; |
| 48 | int tellLine=FALSE; |
| 49 | |
| 50 | static do_grep(char* needle, char* haystack ) |
| 51 | { |
| 52 | line = 0; |
| 53 | |
| 54 | while (fgets (haystack, sizeof (haystack), fp)) { |
| 55 | line++; |
| 56 | cp = &haystack[strlen (haystack) - 1]; |
| 57 | |
| 58 | if (*cp != '\n') |
| 59 | fprintf (stderr, "%s: Line too long\n", name); |
| 60 | |
| 61 | if (find_match(haystack, needle, ignoreCase) == TRUE) { |
| 62 | if (tellName==TRUE) |
| 63 | printf ("%s: ", name); |
| 64 | |
| 65 | if (tellLine==TRUE) |
| 66 | printf ("%ld: ", line); |
| 67 | |
| 68 | fputs (haystack, stdout); |
| 69 | } |
| 70 | } |
| 71 | } |
| 72 | |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 73 | |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 74 | extern int grep_main (int argc, char **argv) |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 75 | { |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 76 | FILE *fp; |
| Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 77 | char *needle; |
| 78 | char *name; |
| 79 | char *cp; |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 80 | long line; |
| Eric Andersen | aa0765e | 1999-10-22 04:30:20 +0000 | [diff] [blame] | 81 | char haystack[BUF_SIZE]; |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 82 | |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 83 | ignoreCase = FALSE; |
| 84 | tellLine = FALSE; |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 85 | |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 86 | argc--; |
| 87 | argv++; |
| 88 | if (argc < 1) { |
| Eric Andersen | 3e0fbae | 1999-10-19 06:02:44 +0000 | [diff] [blame] | 89 | usage(grep_usage); |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | if (**argv == '-') { |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 93 | argc--; |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 94 | cp = *argv++; |
| 95 | |
| 96 | while (*++cp) |
| 97 | switch (*cp) { |
| 98 | case 'i': |
| 99 | ignoreCase = TRUE; |
| 100 | break; |
| 101 | |
| Eric Andersen | 3e0fbae | 1999-10-19 06:02:44 +0000 | [diff] [blame] | 102 | case 'h': |
| 103 | tellName = FALSE; |
| 104 | break; |
| 105 | |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 106 | case 'n': |
| 107 | tellLine = TRUE; |
| 108 | break; |
| 109 | |
| 110 | default: |
| Eric Andersen | 3e0fbae | 1999-10-19 06:02:44 +0000 | [diff] [blame] | 111 | usage(grep_usage); |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 112 | } |
| 113 | } |
| 114 | |
| Eric Andersen | 3e0fbae | 1999-10-19 06:02:44 +0000 | [diff] [blame] | 115 | needle = *argv++; |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 116 | argc--; |
| 117 | |
| Eric Andersen | fbb39c8 | 1999-11-08 17:00:52 +0000 | [diff] [blame^] | 118 | |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 119 | while (argc-- > 0) { |
| Eric Andersen | fbb39c8 | 1999-11-08 17:00:52 +0000 | [diff] [blame^] | 120 | |
| 121 | if (argc==0) { |
| 122 | file = stdin; |
| 123 | } |
| 124 | else |
| 125 | file = fopen(*argv, "r"); |
| 126 | |
| 127 | |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 128 | name = *argv++; |
| 129 | |
| 130 | fp = fopen (name, "r"); |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 131 | if (fp == NULL) { |
| 132 | perror (name); |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 133 | continue; |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 134 | } |
| 135 | |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 136 | if (ferror (fp)) |
| 137 | perror (name); |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 138 | |
| Eric Andersen | 596e546 | 1999-10-07 08:30:23 +0000 | [diff] [blame] | 139 | fclose (fp); |
| 140 | } |
| Eric Andersen | 3e0fbae | 1999-10-19 06:02:44 +0000 | [diff] [blame] | 141 | exit( TRUE); |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | |
| Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 145 | /* END CODE */ |
| Eric Andersen | 3cf52d1 | 1999-10-12 22:26:06 +0000 | [diff] [blame] | 146 | |
| 147 | |