blob: 003dae98ed92a03fa5b76e8240aba84bffbf0260 [file] [log] [blame]
Eric Andersencc8ed391999-10-05 16:24:54 +00001/*
Mark Whitleyd3721892000-06-28 22:00:26 +00002 * Mini grep implementation for busybox using libc regex.
Eric Andersenc4996011999-10-20 22:08:37 +00003 *
Erik Andersen61677fe2000-04-13 01:18:56 +00004 * Copyright (C) 1999,2000 by Lineo, inc.
Mark Whitleyd3721892000-06-28 22:00:26 +00005 * Written by Mark Whitley <markw@lineo.com>, <markw@enol.com>
Eric Andersencc8ed391999-10-05 16:24:54 +00006 *
Eric Andersen3e0fbae1999-10-19 06:02:44 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
Eric Andersencc8ed391999-10-05 16:24:54 +000021 */
22
Eric Andersencc8ed391999-10-05 16:24:54 +000023#include <stdio.h>
Mark Whitleyd3721892000-06-28 22:00:26 +000024#include <stdlib.h>
Eric Andersene9b527a2000-07-09 05:56:14 +000025#include <getopt.h>
Mark Whitleyd3721892000-06-28 22:00:26 +000026#include <regex.h>
27#include <string.h> /* for strerror() */
Eric Andersencc8ed391999-10-05 16:24:54 +000028#include <errno.h>
Eric Andersen3570a342000-09-25 21:45:58 +000029#include "busybox.h"
Mark Whitleyd3721892000-06-28 22:00:26 +000030
31extern int optind; /* in unistd.h */
32extern int errno; /* for use with strerror() */
Eric Andersencc8ed391999-10-05 16:24:54 +000033
Mark Whitleyd3721892000-06-28 22:00:26 +000034/* options */
35static int ignore_case = 0;
36static int print_filename = 0;
37static int print_line_num = 0;
Mark Whitley8f122432000-07-18 18:37:01 +000038static int print_count_only = 0;
Mark Whitleyd3721892000-06-28 22:00:26 +000039static int be_quiet = 0;
40static int invert_search = 0;
41static int suppress_err_msgs = 0;
42
43/* globals */
44static regex_t regex; /* storage space for compiled regular expression */
Matt Kraaideb95f62000-08-06 15:25:53 +000045static int matched; /* keeps track of whether we ever matched */
Mark Whitleyd3721892000-06-28 22:00:26 +000046static char *cur_file = NULL; /* the current file we are reading */
47
48
Mark Whitleyd3721892000-06-28 22:00:26 +000049static void print_matched_line(char *line, int linenum)
50{
Mark Whitley2ef880b2000-07-18 21:02:06 +000051 if (print_count_only)
52 return;
53
Mark Whitleyd3721892000-06-28 22:00:26 +000054 if (print_filename)
55 printf("%s:", cur_file);
56 if (print_line_num)
57 printf("%i:", linenum);
58
59 printf("%s", line);
60}
61
62static void grep_file(FILE *file)
63{
64 char *line = NULL;
65 int ret;
66 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +000067 int nmatches = 0;
Mark Whitleyd3721892000-06-28 22:00:26 +000068
69 while ((line = get_line_from_file(file)) != NULL) {
70 linenum++;
71 ret = regexec(&regex, line, 0, NULL, 0);
72 if (ret == 0 && !invert_search) { /* match */
73
74 /* if we found a match but were told to be quiet, stop here and
75 * return success */
76 if (be_quiet) {
77 regfree(&regex);
78 exit(0);
79 }
80
81 nmatches++;
Mark Whitley2ef880b2000-07-18 21:02:06 +000082 print_matched_line(line, linenum);
Mark Whitleyd3721892000-06-28 22:00:26 +000083
Mark Whitley2ef880b2000-07-18 21:02:06 +000084 }
85 else if (ret == REG_NOMATCH && invert_search) {
Mark Whitley8f122432000-07-18 18:37:01 +000086 nmatches++;
Mark Whitley2ef880b2000-07-18 21:02:06 +000087 print_matched_line(line, linenum);
Mark Whitleyd3721892000-06-28 22:00:26 +000088 }
89
90 free(line);
91 }
Mark Whitley8f122432000-07-18 18:37:01 +000092
93 /* special-case post processing */
94 if (print_count_only) {
95 if (print_filename)
96 printf("%s:", cur_file);
97 printf("%i\n", nmatches);
98 }
99
Matt Kraaideb95f62000-08-06 15:25:53 +0000100 /* record if we matched */
101 if (nmatches != 0)
102 matched = 1;
Mark Whitleyd3721892000-06-28 22:00:26 +0000103}
Eric Andersencc8ed391999-10-05 16:24:54 +0000104
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105extern int grep_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000106{
Mark Whitleyd3721892000-06-28 22:00:26 +0000107 int opt;
108 int reflags;
Eric Andersencc8ed391999-10-05 16:24:54 +0000109
Mark Whitleyd3721892000-06-28 22:00:26 +0000110 /* do normal option parsing */
Mark Whitley8f122432000-07-18 18:37:01 +0000111 while ((opt = getopt(argc, argv, "iHhnqvsc")) > 0) {
Mark Whitleyd3721892000-06-28 22:00:26 +0000112 switch (opt) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000113 case 'i':
Mark Whitleyd3721892000-06-28 22:00:26 +0000114 ignore_case++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000115 break;
Mark Whitleyd3721892000-06-28 22:00:26 +0000116 case 'H':
117 print_filename++;
118 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119 case 'h':
Mark Whitleyd3721892000-06-28 22:00:26 +0000120 print_filename--;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000121 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000122 case 'n':
Mark Whitleyd3721892000-06-28 22:00:26 +0000123 print_line_num++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000124 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125 case 'q':
Mark Whitleyd3721892000-06-28 22:00:26 +0000126 be_quiet++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000127 break;
John Beppuf93a95d2000-04-24 18:07:30 +0000128 case 'v':
Mark Whitleyd3721892000-06-28 22:00:26 +0000129 invert_search++;
John Beppuf93a95d2000-04-24 18:07:30 +0000130 break;
Mark Whitleyd3721892000-06-28 22:00:26 +0000131 case 's':
132 suppress_err_msgs++;
133 break;
Mark Whitley8f122432000-07-18 18:37:01 +0000134 case 'c':
135 print_count_only++;
136 break;
Eric Andersen053b1462000-06-13 06:24:53 +0000137 }
Eric Andersen053b1462000-06-13 06:24:53 +0000138 }
139
Mark Whitleyd3721892000-06-28 22:00:26 +0000140 /* argv[optind] should be the regex pattern; no pattern, no worky */
141 if (argv[optind] == NULL)
142 usage(grep_usage);
143
Mark Whitley44735f82000-07-10 15:50:26 +0000144 /* compile the regular expression
145 * we're not going to mess with sub-expressions, and we need to
146 * treat newlines right. */
147 reflags = REG_NOSUB | REG_NEWLINE;
Mark Whitleyd3721892000-06-28 22:00:26 +0000148 if (ignore_case)
149 reflags |= REG_ICASE;
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000150 xregcomp(&regex, argv[optind], reflags);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000151
Mark Whitleyd3721892000-06-28 22:00:26 +0000152 /* argv[(optind+1)..(argc-1)] should be names of file to grep through. If
153 * there is more than one file to grep, we will print the filenames */
154 if ((argc-1) - (optind+1) > 0)
155 print_filename++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000156
Mark Whitley2e1148b2000-06-28 22:59:30 +0000157 /* If no files were specified, or '-' was specified, take input from
158 * stdin. Otherwise, we grep through all the files specified. */
Mark Whitley8bd891c2000-06-28 22:55:59 +0000159 if (argv[optind+1] == NULL || (strcmp(argv[optind+1], "-") == 0)) {
Mark Whitleyd3721892000-06-28 22:00:26 +0000160 grep_file(stdin);
Mark Whitley2ef880b2000-07-18 21:02:06 +0000161 }
162 else {
Mark Whitleyd3721892000-06-28 22:00:26 +0000163 int i;
164 FILE *file;
165 for (i = optind + 1; i < argc; i++) {
166 cur_file = argv[i];
167 file = fopen(cur_file, "r");
168 if (file == NULL) {
169 if (!suppress_err_msgs)
Matt Kraaid537a952000-07-14 01:51:25 +0000170 errorMsg("%s: %s\n", cur_file, strerror(errno));
Mark Whitley2ef880b2000-07-18 21:02:06 +0000171 }
172 else {
Mark Whitleyd3721892000-06-28 22:00:26 +0000173 grep_file(file);
174 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000175 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000176 }
177 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000178
179 regfree(&regex);
180
Matt Kraaideb95f62000-08-06 15:25:53 +0000181 if (!matched)
Mark Whitleyd3721892000-06-28 22:00:26 +0000182 return 1;
183
184 return 0;
Eric Andersencc8ed391999-10-05 16:24:54 +0000185}