blob: 5edcd482babcf43ccb3e61d661471e2c8e182067 [file] [log] [blame]
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001/*
Mark Whitley6315ce62000-07-10 22:55:51 +00002 * sed.c - very minimalist version of sed
Eric Andersen6b6b3f61999-10-28 16:06:25 +00003 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00004 * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
5 * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
Matt Kraai5ed78ad2002-01-03 21:12:34 +00006 * Copyright (C) 2002 Matt Kraai
Erik Andersen1266a131999-12-29 22:19:46 +00007 *
Eric Andersen6b6b3f61999-10-28 16:06:25 +00008 * 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 *
22 */
23
Mark Whitley6315ce62000-07-10 22:55:51 +000024/*
25 Supported features and commands in this version of sed:
26
27 - comments ('#')
Mark Whitley94074a92000-07-14 00:00:15 +000028 - address matching: num|/matchstr/[,num|/matchstr/|$]command
29 - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags)
30 - edit commands: (a)ppend, (i)nsert, (c)hange
Mark Whitley1f3b9f22001-05-11 22:27:13 +000031 - file commands: (r)ead
Mark Whitley97562bd2000-07-17 20:06:42 +000032 - backreferences in substitution expressions (\1, \2...\9)
Mark Whitley6315ce62000-07-10 22:55:51 +000033
34 (Note: Specifying an address (range) to match is *optional*; commands
35 default to the whole pattern space if no specific address match was
36 requested.)
37
38 Unsupported features:
39
40 - transliteration (y/source-chars/dest-chars/) (use 'tr')
Mark Whitley6315ce62000-07-10 22:55:51 +000041 - no pattern space hold space storing / swapping (x, etc.)
42 - no labels / branching (: label, b, t, and friends)
43 - and lots, lots more.
Mark Whitley6315ce62000-07-10 22:55:51 +000044*/
45
Eric Andersen6b6b3f61999-10-28 16:06:25 +000046#include <stdio.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000047#include <unistd.h> /* for getopt() */
48#include <regex.h>
49#include <string.h> /* for strdup() */
Eric Andersen6b6b3f61999-10-28 16:06:25 +000050#include <errno.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000051#include <ctype.h> /* for isspace() */
Eric Andersened3ef502001-01-27 08:24:39 +000052#include <stdlib.h>
Eric Andersen3570a342000-09-25 21:45:58 +000053#include "busybox.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000054
Mark Whitley6315ce62000-07-10 22:55:51 +000055/* externs */
Eric Andersened3ef502001-01-27 08:24:39 +000056extern void xregcomp(regex_t *preg, const char *regex, int cflags);
Mark Whitley6315ce62000-07-10 22:55:51 +000057extern int optind; /* in unistd.h */
58extern char *optarg; /* ditto */
59
60/* options */
61static int be_quiet = 0;
62
Mark Whitley0e4cec02000-08-21 21:29:20 +000063
Mark Whitley6315ce62000-07-10 22:55:51 +000064struct sed_cmd {
Eric Andersenc52a6b02001-11-10 10:49:42 +000065 /* Order by alignment requirements */
Mark Whitley2dc192f2000-11-03 19:47:00 +000066
Mark Whitley6315ce62000-07-10 22:55:51 +000067 /* address storage */
Mark Whitley6315ce62000-07-10 22:55:51 +000068 regex_t *beg_match; /* sed -e '/match/cmd' */
69 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
70
Mark Whitley2dc192f2000-11-03 19:47:00 +000071 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
72
73 /* sed -e 's/sub_match/replace/' */
74 regex_t *sub_match;
75 char *replace;
Eric Andersenc52a6b02001-11-10 10:49:42 +000076
77 /* EDIT COMMAND (a,i,c) SPECIFIC FIELDS */
78 char *editline;
79
80 /* FILE COMMAND (r) SPECIFIC FIELDS */
81 char *filename;
82
83 /* address storage */
84 int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */
85 int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
86 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
87
Mark Whitley97562bd2000-07-17 20:06:42 +000088 unsigned int num_backrefs:4; /* how many back references (\1..\9) */
89 /* Note: GNU/POSIX sed does not save more than nine backrefs, so
90 * we only use 4 bits to hold the number */
Mark Whitley2dc192f2000-11-03 19:47:00 +000091 unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */
92 unsigned int sub_p:2; /* sed -e 's/foo/bar/p' (print substitution) */
Mark Whitley94074a92000-07-14 00:00:15 +000093
Eric Andersenc52a6b02001-11-10 10:49:42 +000094 /* GENERAL FIELDS */
95 char delimiter; /* The delimiter used to separate regexps */
Mark Whitley2dc192f2000-11-03 19:47:00 +000096
Eric Andersenc52a6b02001-11-10 10:49:42 +000097 /* the command */
98 char cmd; /* p,d,s (add more at your leisure :-) */
Mark Whitley6315ce62000-07-10 22:55:51 +000099};
100
101/* globals */
102static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
103static int ncmds = 0; /* number of sed commands */
104
105/*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000106
Eric Andersenc52a6b02001-11-10 10:49:42 +0000107const char * const semicolon_whitespace = "; \n\r\t\v\0";
108
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000109#ifdef CONFIG_FEATURE_CLEAN_UP
Matt Kraai0c390a72001-11-20 16:00:19 +0000110static void destroy_cmd_strs(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000111{
112 if (sed_cmds == NULL)
113 return;
114
115 /* destroy all the elements in the array */
116 while (--ncmds >= 0) {
117
118 if (sed_cmds[ncmds].beg_match) {
119 regfree(sed_cmds[ncmds].beg_match);
120 free(sed_cmds[ncmds].beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000121 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000122 if (sed_cmds[ncmds].end_match) {
123 regfree(sed_cmds[ncmds].end_match);
124 free(sed_cmds[ncmds].end_match);
125 }
126 if (sed_cmds[ncmds].sub_match) {
127 regfree(sed_cmds[ncmds].sub_match);
128 free(sed_cmds[ncmds].sub_match);
129 }
130 if (sed_cmds[ncmds].replace)
131 free(sed_cmds[ncmds].replace);
132 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000133
Mark Whitley6315ce62000-07-10 22:55:51 +0000134 /* destroy the array */
135 free(sed_cmds);
136 sed_cmds = NULL;
137}
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000138#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000139
Mark Whitley6315ce62000-07-10 22:55:51 +0000140
141/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000142 * index_of_next_unescaped_regexp_delim - walks left to right through a string
143 * beginning at a specified index and returns the index of the next regular
144 * expression delimiter (typically a forward * slash ('/')) not preceeded by
145 * a backslash ('\').
Mark Whitley6315ce62000-07-10 22:55:51 +0000146 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000147static int index_of_next_unescaped_regexp_delim(const struct sed_cmd * const sed_cmd, const char *str, int idx)
Mark Whitley6315ce62000-07-10 22:55:51 +0000148{
Matt Kraaia0065d52001-08-24 14:45:50 +0000149 int bracket = -1;
150 int escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000151 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000152
Eric Andersenc52a6b02001-11-10 10:49:42 +0000153 for ( ; (ch = str[idx]); idx++) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000154 if (bracket != -1) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000155 if (ch == ']' && !(bracket == idx - 1 ||
Matt Kraaia0065d52001-08-24 14:45:50 +0000156 (bracket == idx - 2 && str[idx-1] == '^')))
157 bracket = -1;
158 } else if (escaped)
159 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000160 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000161 escaped = 1;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000162 else if (ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000163 bracket = idx;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000164 else if (ch == sed_cmd->delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000165 return idx;
166 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000167
Mark Whitley97562bd2000-07-17 20:06:42 +0000168 /* if we make it to here, we've hit the end of the string */
169 return -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000170}
171
172/*
173 * returns the index in the string just past where the address ends.
174 */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000175static int get_address(struct sed_cmd *sed_cmd, const char *str, int *linenum, regex_t **regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000176{
Matt Kraaic8227632001-11-12 16:57:27 +0000177 char *my_str = xstrdup(str);
Mark Whitley6315ce62000-07-10 22:55:51 +0000178 int idx = 0;
Mark Whitley038c8eb2001-03-14 21:11:49 +0000179 char olddelimiter;
180 olddelimiter = sed_cmd->delimiter;
181 sed_cmd->delimiter = '/';
Mark Whitley6315ce62000-07-10 22:55:51 +0000182
183 if (isdigit(my_str[idx])) {
184 do {
185 idx++;
186 } while (isdigit(my_str[idx]));
187 my_str[idx] = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000188 *linenum = atoi(my_str);
Mark Whitley6315ce62000-07-10 22:55:51 +0000189 }
190 else if (my_str[idx] == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000191 *linenum = -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000192 idx++;
193 }
194 else if (my_str[idx] == '/') {
Eric Andersen28b3c532001-01-02 11:01:31 +0000195 idx = index_of_next_unescaped_regexp_delim(sed_cmd, my_str, ++idx);
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000196 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000197 error_msg_and_die("unterminated match expression");
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000198 my_str[idx] = '\0';
199 *regex = (regex_t *)xmalloc(sizeof(regex_t));
Mark Whitley452cc1f2001-05-14 19:23:02 +0000200 xregcomp(*regex, my_str+1, REG_NEWLINE);
Mark Whitley496e33f2000-07-13 22:52:02 +0000201 idx++; /* so it points to the next character after the last '/' */
Mark Whitley6315ce62000-07-10 22:55:51 +0000202 }
203 else {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000204 error_msg("get_address: no address found in string\n"
Matt Kraaidd19c692001-01-31 19:00:21 +0000205 "\t(you probably didn't check the string you passed me)");
Mark Whitley6315ce62000-07-10 22:55:51 +0000206 idx = -1;
207 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000208
Mark Whitley6315ce62000-07-10 22:55:51 +0000209 free(my_str);
Mark Whitley038c8eb2001-03-14 21:11:49 +0000210 sed_cmd->delimiter = olddelimiter;
Mark Whitley6315ce62000-07-10 22:55:51 +0000211 return idx;
212}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000213
Eric Andersenc52a6b02001-11-10 10:49:42 +0000214static int parse_subst_cmd(struct sed_cmd * const sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000215{
216 int oldidx, cflags = REG_NEWLINE;
217 char *match;
218 int idx = 0;
Mark Whitley97562bd2000-07-17 20:06:42 +0000219 int j;
Mark Whitley06f35292000-07-13 19:58:04 +0000220
221 /*
222 * the string that gets passed to this function should look like this:
Mark Whitley0e4cec02000-08-21 21:29:20 +0000223 * s/match/replace/gIp
224 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000225 * mandatory optional
226 *
227 * (all three of the '/' slashes are mandatory)
228 */
229
Eric Andersen28b3c532001-01-02 11:01:31 +0000230 /* verify that the 's' is followed by something. That something
231 * (typically a 'slash') is now our regexp delimiter... */
232 if (!substr[++idx])
Matt Kraaidd19c692001-01-31 19:00:21 +0000233 error_msg_and_die("bad format in substitution expression");
Eric Andersen28b3c532001-01-02 11:01:31 +0000234 else
235 sed_cmd->delimiter=substr[idx];
Mark Whitley06f35292000-07-13 19:58:04 +0000236
237 /* save the match string */
238 oldidx = idx+1;
Eric Andersen28b3c532001-01-02 11:01:31 +0000239 idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000240 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000241 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000242 match = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000243
Mark Whitley97562bd2000-07-17 20:06:42 +0000244 /* determine the number of back references in the match string */
245 /* Note: we compute this here rather than in the do_subst_command()
246 * function to save processor time, at the expense of a little more memory
247 * (4 bits) per sed_cmd */
248
249 /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */
250 for (j = 0; match[j]; j++) {
251 /* GNU/POSIX sed does not save more than nine backrefs */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000252 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
Mark Whitley97562bd2000-07-17 20:06:42 +0000253 sed_cmd->num_backrefs++;
254 }
255
Mark Whitley06f35292000-07-13 19:58:04 +0000256 /* save the replacement string */
257 oldidx = idx+1;
Eric Andersen28b3c532001-01-02 11:01:31 +0000258 idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000259 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000260 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000261 sed_cmd->replace = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000262
263 /* process the flags */
264 while (substr[++idx]) {
265 switch (substr[idx]) {
Mark Whitley70705d72000-07-14 19:06:30 +0000266 case 'g':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000267 sed_cmd->sub_g = 1;
Mark Whitley70705d72000-07-14 19:06:30 +0000268 break;
269 case 'I':
270 cflags |= REG_ICASE;
271 break;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000272 case 'p':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000273 sed_cmd->sub_p = 1;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000274 break;
Mark Whitley70705d72000-07-14 19:06:30 +0000275 default:
276 /* any whitespace or semicolon trailing after a s/// is ok */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000277 if (strchr(semicolon_whitespace, substr[idx]))
Mark Whitley70705d72000-07-14 19:06:30 +0000278 goto out;
279 /* else */
Matt Kraaidd19c692001-01-31 19:00:21 +0000280 error_msg_and_die("bad option in substitution expression");
Mark Whitley06f35292000-07-13 19:58:04 +0000281 }
282 }
Mark Whitley70705d72000-07-14 19:06:30 +0000283
284out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000285 /* compile the match string into a regex */
Mark Whitley06f35292000-07-13 19:58:04 +0000286 sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
287 xregcomp(sed_cmd->sub_match, match, cflags);
288 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000289
290 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000291}
292
Eric Andersenc52a6b02001-11-10 10:49:42 +0000293static void move_back(char *str, int offset)
294{
295 memmove(str, str + offset, strlen(str + offset) + 1);
296}
297
Mark Whitley70705d72000-07-14 19:06:30 +0000298static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr)
Mark Whitley94074a92000-07-14 00:00:15 +0000299{
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000300 int i, j;
Mark Whitley94074a92000-07-14 00:00:15 +0000301
302 /*
303 * the string that gets passed to this function should look like this:
304 *
305 * need one of these
306 * |
307 * | this backslash (immediately following the edit command) is mandatory
308 * | |
309 * [aic]\
310 * TEXT1\
311 * TEXT2\
312 * TEXTN
313 *
314 * as soon as we hit a TEXT line that has no trailing '\', we're done.
315 * this means a command like:
316 *
317 * i\
318 * INSERTME
319 *
320 * is a-ok.
321 *
322 */
323
Matt Kraaid21735d2002-01-02 17:56:38 +0000324 if (editstr[1] != '\\' || (editstr[2] != '\n' && editstr[2] != '\r'))
Matt Kraaidd19c692001-01-31 19:00:21 +0000325 error_msg_and_die("bad format in edit expression");
Mark Whitley94074a92000-07-14 00:00:15 +0000326
327 /* store the edit line text */
Mark Whitley34623db2000-07-14 00:49:59 +0000328 sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2);
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000329 for (i = 3, j = 0; editstr[i] != '\0' && strchr("\r\n", editstr[i]) == NULL;
330 i++, j++) {
331 if (editstr[i] == '\\' && strchr("\n\r", editstr[i+1]) != NULL) {
332 sed_cmd->editline[j] = '\n';
333 i++;
334 } else
335 sed_cmd->editline[j] = editstr[i];
Mark Whitley94074a92000-07-14 00:00:15 +0000336 }
Mark Whitley70705d72000-07-14 19:06:30 +0000337
Mark Whitley56c14a62001-04-20 23:41:44 +0000338 /* figure out if we need to add a newline */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000339 if (sed_cmd->editline[j-1] != '\n')
340 sed_cmd->editline[j++] = '\n';
Mark Whitley56c14a62001-04-20 23:41:44 +0000341
342 /* terminate string */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000343 sed_cmd->editline[j] = '\0';
Mark Whitley464c5de2000-07-14 23:24:00 +0000344
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000345 return i;
Mark Whitley94074a92000-07-14 00:00:15 +0000346}
347
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000348
349static int parse_file_cmd(struct sed_cmd *sed_cmd, const char *filecmdstr)
350{
351 int idx = 0;
352 int filenamelen = 0;
353
354 /*
355 * the string that gets passed to this function should look like this:
356 * '[ ]filename'
357 * | |
358 * | a filename
359 * |
360 * optional whitespace
361
362 * re: the file to be read, the GNU manual says the following: "Note that
363 * if filename cannot be read, it is treated as if it were an empty file,
364 * without any error indication." Thus, all of the following commands are
365 * perfectly leagal:
366 *
367 * sed -e '1r noexist'
368 * sed -e '1r ;'
369 * sed -e '1r'
370 */
371
372 /* the file command may be followed by whitespace; move past it. */
373 while (isspace(filecmdstr[++idx]))
374 { ; }
375
376 /* the first non-whitespace we get is a filename. the filename ends when we
377 * hit a normal sed command terminator or end of string */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000378 filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace);
Matt Kraai6e9e1362001-05-27 14:11:52 +0000379 sed_cmd->filename = xmalloc(filenamelen + 1);
380 safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000381
382 return idx + filenamelen;
383}
384
385
Eric Andersenc52a6b02001-11-10 10:49:42 +0000386static char *parse_cmd_str(struct sed_cmd * const sed_cmd, const char *const cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000387{
388 int idx = 0;
389
390 /* parse the command
391 * format is: [addr][,addr]cmd
392 * |----||-----||-|
393 * part1 part2 part3
394 */
395
396 /* first part (if present) is an address: either a number or a /regex/ */
397 if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/')
Eric Andersen28b3c532001-01-02 11:01:31 +0000398 idx = get_address(sed_cmd, cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000399
400 /* second part (if present) will begin with a comma */
401 if (cmdstr[idx] == ',')
Eric Andersen28b3c532001-01-02 11:01:31 +0000402 idx += get_address(sed_cmd, &cmdstr[++idx], &sed_cmd->end_line, &sed_cmd->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000403
Matt Kraai70624842001-12-21 16:04:12 +0000404 /* skip whitespace before the command */
405 while (isspace(cmdstr[idx]))
406 idx++;
407
Mark Whitley6315ce62000-07-10 22:55:51 +0000408 /* last part (mandatory) will be a command */
409 if (cmdstr[idx] == '\0')
Matt Kraaidd19c692001-01-31 19:00:21 +0000410 error_msg_and_die("missing command");
Mark Whitley6315ce62000-07-10 22:55:51 +0000411 sed_cmd->cmd = cmdstr[idx];
Mark Whitley6315ce62000-07-10 22:55:51 +0000412
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000413 /* if it was a single-letter command that takes no arguments (such as 'p'
414 * or 'd') all we need to do is increment the index past that command */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000415 if (strchr("pd", sed_cmd->cmd)) {
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000416 idx++;
417 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000418 /* handle (s)ubstitution command */
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000419 else if (sed_cmd->cmd == 's') {
Mark Whitley70705d72000-07-14 19:06:30 +0000420 idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]);
421 }
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000422 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000423 else if (strchr("aic", sed_cmd->cmd)) {
424 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
Matt Kraaidd19c692001-01-31 19:00:21 +0000425 error_msg_and_die("only a beginning address can be specified for edit commands");
Mark Whitley70705d72000-07-14 19:06:30 +0000426 idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]);
Mark Whitley02008342000-07-14 00:13:52 +0000427 }
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000428 /* handle file cmds: (r)ead */
429 else if (sed_cmd->cmd == 'r') {
430 if (sed_cmd->end_line || sed_cmd->end_match)
431 error_msg_and_die("Command only uses one address");
432 idx += parse_file_cmd(sed_cmd, &cmdstr[idx]);
433 }
434 else {
435 error_msg_and_die("invalid command");
436 }
Mark Whitley70705d72000-07-14 19:06:30 +0000437
438 /* give back whatever's left over */
Mark Whitley464c5de2000-07-14 23:24:00 +0000439 return (char *)&cmdstr[idx];
Eric Andersen50d63601999-11-09 01:47:36 +0000440}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000441
Eric Andersenc52a6b02001-11-10 10:49:42 +0000442static void add_cmd_str(const char * const cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000443{
Mark Whitley70705d72000-07-14 19:06:30 +0000444 char *mystr = (char *)cmdstr;
Erik Andersen1266a131999-12-29 22:19:46 +0000445
Mark Whitley70705d72000-07-14 19:06:30 +0000446 do {
Mark Whitley6315ce62000-07-10 22:55:51 +0000447
Mark Whitley70705d72000-07-14 19:06:30 +0000448 /* trim leading whitespace and semicolons */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000449 move_back(mystr, strspn(mystr, semicolon_whitespace));
Mark Whitley70705d72000-07-14 19:06:30 +0000450 /* if we ate the whole thing, that means there was just trailing
Mark Whitley464c5de2000-07-14 23:24:00 +0000451 * whitespace or a final / no-op semicolon. either way, get out */
Mark Whitley70705d72000-07-14 19:06:30 +0000452 if (strlen(mystr) == 0)
453 return;
454 /* if this is a comment, jump past it and keep going */
455 if (mystr[0] == '#') {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000456 mystr = strpbrk(mystr, "\n\r");
Mark Whitley70705d72000-07-14 19:06:30 +0000457 continue;
458 }
459 /* grow the array */
Matt Kraai322ae932000-09-13 02:46:14 +0000460 sed_cmds = xrealloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds));
Mark Whitley70705d72000-07-14 19:06:30 +0000461 /* zero new element */
462 memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd));
463 /* load command string into new array element, get remainder */
464 mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr);
465
Mark Whitley464c5de2000-07-14 23:24:00 +0000466 } while (mystr && strlen(mystr));
Mark Whitley6315ce62000-07-10 22:55:51 +0000467}
468
469
470static void load_cmd_file(char *filename)
471{
472 FILE *cmdfile;
473 char *line;
Mark Whitley94074a92000-07-14 00:00:15 +0000474 char *nextline;
Mark Whitley6315ce62000-07-10 22:55:51 +0000475
Matt Kraaibbaef662000-09-27 02:43:35 +0000476 cmdfile = xfopen(filename, "r");
Mark Whitley6315ce62000-07-10 22:55:51 +0000477
478 while ((line = get_line_from_file(cmdfile)) != NULL) {
Mark Whitley94074a92000-07-14 00:00:15 +0000479 /* if a line ends with '\' it needs the next line appended to it */
480 while (line[strlen(line)-2] == '\\' &&
481 (nextline = get_line_from_file(cmdfile)) != NULL) {
Matt Kraai322ae932000-09-13 02:46:14 +0000482 line = xrealloc(line, strlen(line) + strlen(nextline) + 1);
Mark Whitley94074a92000-07-14 00:00:15 +0000483 strcat(line, nextline);
Mark Whitley464c5de2000-07-14 23:24:00 +0000484 free(nextline);
Mark Whitley94074a92000-07-14 00:00:15 +0000485 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000486 /* eat trailing newline (if any) --if I don't do this, edit commands
487 * (aic) will print an extra newline */
Matt Kraai05e782d2001-02-01 16:49:30 +0000488 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000489 add_cmd_str(line);
490 free(line);
491 }
492}
493
Eric Andersenc52a6b02001-11-10 10:49:42 +0000494struct pipeline {
495 char *buf;
496 int idx;
497 int len;
498};
499
Eric Andersenb76cb682001-08-22 05:58:16 +0000500#define PIPE_MAGIC 0x7f
501#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000502
503void pipe_putc(struct pipeline *const pipeline, char c)
504{
505 if (pipeline->buf[pipeline->idx] == PIPE_MAGIC) {
506 pipeline->buf =
507 xrealloc(pipeline->buf, pipeline->len + PIPE_GROW);
508 memset(pipeline->buf + pipeline->len, 0, PIPE_GROW);
509 pipeline->len += PIPE_GROW;
510 pipeline->buf[pipeline->len - 1] = PIPE_MAGIC;
511 }
512 pipeline->buf[pipeline->idx++] = (c);
513}
514
515#define pipeputc(c) pipe_putc(pipeline, c)
516
517#if 0
Eric Andersenb76cb682001-08-22 05:58:16 +0000518{ if (pipeline[pipeline_idx] == PIPE_MAGIC) { \
519 pipeline = xrealloc(pipeline, pipeline_len+PIPE_GROW); \
520 memset(pipeline+pipeline_len, 0, PIPE_GROW); \
521 pipeline_len += PIPE_GROW; \
522 pipeline[pipeline_len-1] = PIPE_MAGIC; } \
523 pipeline[pipeline_idx++] = (c); }
Eric Andersenc52a6b02001-11-10 10:49:42 +0000524#endif
Eric Andersenb76cb682001-08-22 05:58:16 +0000525
526static void print_subst_w_backrefs(const char *line, const char *replace,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000527 regmatch_t *regmatch, struct pipeline *const pipeline, int matches)
Mark Whitley97562bd2000-07-17 20:06:42 +0000528{
529 int i;
530
531 /* go through the replacement string */
532 for (i = 0; replace[i]; i++) {
533 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
534 if (replace[i] == '\\' && isdigit(replace[i+1])) {
535 int j;
536 char tmpstr[2];
537 int backref;
538 ++i; /* i now indexes the backref number, instead of the leading slash */
539 tmpstr[0] = replace[i];
540 tmpstr[1] = 0;
541 backref = atoi(tmpstr);
542 /* print out the text held in regmatch[backref] */
Matt Kraaia3e4f452001-08-20 21:21:06 +0000543 if (backref <= matches && regmatch[backref].rm_so != -1)
544 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000545 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000546 }
547
Mark Whitley83e85f62000-07-25 20:48:44 +0000548 /* if we find a backslash escaped character, print the character */
549 else if (replace[i] == '\\') {
550 ++i;
Eric Andersenb76cb682001-08-22 05:58:16 +0000551 pipeputc(replace[i]);
Mark Whitley83e85f62000-07-25 20:48:44 +0000552 }
553
Mark Whitley97562bd2000-07-17 20:06:42 +0000554 /* if we find an unescaped '&' print out the whole matched text.
555 * fortunately, regmatch[0] contains the indicies to the whole matched
556 * expression (kinda seems like it was designed for just such a
557 * purpose...) */
558 else if (replace[i] == '&' && replace[i-1] != '\\') {
559 int j;
560 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000561 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000562 }
563 /* nothing special, just print this char of the replacement string to stdout */
564 else
Eric Andersenb76cb682001-08-22 05:58:16 +0000565 pipeputc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000566 }
567}
568
Eric Andersenb76cb682001-08-22 05:58:16 +0000569static int do_subst_command(const struct sed_cmd *sed_cmd, char **line)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000570{
Eric Andersenb76cb682001-08-22 05:58:16 +0000571 char *hackline = *line;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000572 struct pipeline thepipe = { NULL, 0 , 0};
573 struct pipeline *const pipeline = &thepipe;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000574 int altered = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000575 regmatch_t *regmatch = NULL;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000576
Mark Whitley2dc192f2000-11-03 19:47:00 +0000577 /* we only proceed if the substitution 'search' expression matches */
Eric Andersenb76cb682001-08-22 05:58:16 +0000578 if (regexec(sed_cmd->sub_match, hackline, 0, NULL, 0) == REG_NOMATCH)
Mark Whitley2dc192f2000-11-03 19:47:00 +0000579 return 0;
580
581 /* whaddaya know, it matched. get the number of back references */
582 regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
583
Eric Andersenb76cb682001-08-22 05:58:16 +0000584 /* allocate more PIPE_GROW bytes
585 if replaced string is larger than original */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000586 thepipe.len = strlen(hackline)+PIPE_GROW;
587 thepipe.buf = xcalloc(1, thepipe.len);
Eric Andersenb76cb682001-08-22 05:58:16 +0000588 /* buffer magic */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000589 thepipe.buf[thepipe.len-1] = PIPE_MAGIC;
Eric Andersenb76cb682001-08-22 05:58:16 +0000590
Mark Whitley2dc192f2000-11-03 19:47:00 +0000591 /* and now, as long as we've got a line to try matching and if we can match
592 * the search string, we make substitutions */
Matt Kraai8470b9a2001-10-23 21:12:07 +0000593 while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline,
594 sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000595 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000596
Mark Whitley2dc192f2000-11-03 19:47:00 +0000597 /* print everything before the match */
598 for (i = 0; i < regmatch[0].rm_so; i++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000599 pipeputc(hackline[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000600
Mark Whitley2dc192f2000-11-03 19:47:00 +0000601 /* then print the substitution string */
Eric Andersenb76cb682001-08-22 05:58:16 +0000602 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000603 pipeline, sed_cmd->num_backrefs);
Mark Whitley97562bd2000-07-17 20:06:42 +0000604
Mark Whitley2dc192f2000-11-03 19:47:00 +0000605 /* advance past the match */
606 hackline += regmatch[0].rm_eo;
607 /* flag that something has changed */
608 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000609
Mark Whitley2dc192f2000-11-03 19:47:00 +0000610 /* if we're not doing this globally, get out now */
611 if (!sed_cmd->sub_g)
612 break;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000613 }
614
Eric Andersenb76cb682001-08-22 05:58:16 +0000615 for (; *hackline; hackline++) pipeputc(*hackline);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000616 if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) thepipe.buf[thepipe.idx] = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000617
618 /* cleanup */
619 free(regmatch);
620
Eric Andersenb76cb682001-08-22 05:58:16 +0000621 free(*line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000622 *line = thepipe.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000623 return altered;
624}
Mark Whitley6315ce62000-07-10 22:55:51 +0000625
Mark Whitley6315ce62000-07-10 22:55:51 +0000626
627static void process_file(FILE *file)
628{
629 char *line = NULL;
630 static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
631 unsigned int still_in_range = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000632 int altered;
Mark Whitley6315ce62000-07-10 22:55:51 +0000633 int i;
634
635 /* go through every line in the file */
636 while ((line = get_line_from_file(file)) != NULL) {
637
Mark Whitley9de26592001-05-14 19:44:44 +0000638 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000639 linenum++;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000640 altered = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000641
642 /* for every line, go through all the commands */
643 for (i = 0; i < ncmds; i++) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000644 struct sed_cmd *sed_cmd = &sed_cmds[i];
Mark Whitley6315ce62000-07-10 22:55:51 +0000645
Mark Whitley0915c4b2001-06-11 23:50:06 +0000646
647 /*
648 * entry point into sedding...
649 */
650 if (
Matt Kraai02c40a72001-06-21 13:57:51 +0000651 /* no range necessary */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000652 (sed_cmd->beg_line == 0 && sed_cmd->end_line == 0 &&
653 sed_cmd->beg_match == NULL &&
654 sed_cmd->end_match == NULL) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000655 /* this line number is the first address we're looking for */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000656 (sed_cmd->beg_line && (sed_cmd->beg_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000657 /* this line matches our first address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000658 (sed_cmd->beg_match && (regexec(sed_cmd->beg_match, line, 0, NULL, 0) == 0)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000659 /* we are currently within the beginning & ending address range */
660 still_in_range
661 ) {
Matt Kraai5c69cd82002-04-01 16:17:37 +0000662 int deleted = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000663
664 /*
665 * actual sedding
666 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000667 switch (sed_cmd->cmd) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000668
669 case 'p':
670 puts(line);
671 break;
672
673 case 'd':
674 altered++;
Matt Kraai5c69cd82002-04-01 16:17:37 +0000675 deleted = 1;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000676 break;
677
678 case 's':
679
680 /*
681 * Some special cases for 's' printing to make it compliant with
682 * GNU sed printing behavior (aka "The -n | s///p Matrix"):
683 *
684 * -n ONLY = never print anything regardless of any successful
685 * substitution
686 *
687 * s///p ONLY = always print successful substitutions, even if
688 * the line is going to be printed anyway (line will be printed
689 * twice).
690 *
691 * -n AND s///p = print ONLY a successful substitution ONE TIME;
692 * no other lines are printed - this is the reason why the 'p'
693 * flag exists in the first place.
694 */
695
696 /* if the user specified that they didn't want anything printed (i.e., a -n
697 * flag and no 'p' flag after the s///), then there's really no point doing
698 * anything here. */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000699 if (be_quiet && !sed_cmd->sub_p)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000700 break;
701
702 /* we print the line once, unless we were told to be quiet */
703 if (!be_quiet)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000704 altered |= do_subst_command(sed_cmd, &line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000705
706 /* we also print the line if we were given the 'p' flag
707 * (this is quite possibly the second printing) */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000708 if (sed_cmd->sub_p)
709 altered |= do_subst_command(sed_cmd, &line);
Eric Andersenb76cb682001-08-22 05:58:16 +0000710 if (altered && (i+1 >= ncmds || sed_cmds[i+1].cmd != 's'))
711 puts(line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000712
713 break;
714
715 case 'a':
716 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000717 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000718 altered++;
719 break;
720
721 case 'i':
Eric Andersenc52a6b02001-11-10 10:49:42 +0000722 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000723 break;
724
725 case 'c':
726 /* single-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000727 if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000728 /* multi-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000729 /* - matching text */
730 || (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
731 /* - matching line numbers */
732 || (sed_cmd->end_line > 0 && sed_cmd->end_line == linenum))
733 {
734 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000735 }
736 altered++;
737
738 break;
739
740 case 'r': {
741 FILE *outfile;
742 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000743 outfile = fopen(sed_cmd->filename, "r");
Mark Whitley0915c4b2001-06-11 23:50:06 +0000744 if (outfile)
745 print_file(outfile);
746 /* else if we couldn't open the output file,
747 * no biggie, just don't print anything */
748 altered++;
749 }
750 break;
751 }
752
753 /*
754 * exit point from sedding...
755 */
756 if (
757 /* this is a single-address command or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000758 (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) || (
Mark Whitley0915c4b2001-06-11 23:50:06 +0000759 /* we were in the middle of our address range (this
760 * isn't the first time through) and.. */
761 (still_in_range == 1) && (
762 /* this line number is the last address we're looking for or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000763 (sed_cmd->end_line && (sed_cmd->end_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000764 /* this line matches our last address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000765 (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
Mark Whitley0915c4b2001-06-11 23:50:06 +0000766 )
767 )
768 ) {
769 /* we're out of our address range */
770 still_in_range = 0;
771 }
772
773 /* didn't hit the exit? then we're still in the middle of an address range */
774 else {
775 still_in_range = 1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000776 }
Matt Kraai5c69cd82002-04-01 16:17:37 +0000777
778 if (deleted)
779 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000780 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000781 }
Erik Andersen1266a131999-12-29 22:19:46 +0000782
Mark Whitley2dc192f2000-11-03 19:47:00 +0000783 /* we will print the line unless we were told to be quiet or if the
784 * line was altered (via a 'd'elete or 's'ubstitution), in which case
785 * the altered line was already printed */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000786 if (!be_quiet && !altered)
Mark Whitleydd527d32001-05-14 19:53:08 +0000787 puts(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000788
789 free(line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000790 }
Erik Andersen1266a131999-12-29 22:19:46 +0000791}
792
793extern int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000794{
Matt Kraaia5f09c62001-11-12 16:44:55 +0000795 int opt, status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000796
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000797#ifdef CONFIG_FEATURE_CLEAN_UP
Mark Whitley858c1ad2000-07-11 21:38:47 +0000798 /* destroy command strings on exit */
Matt Kraaia9819b22000-12-22 01:48:07 +0000799 if (atexit(destroy_cmd_strs) == -1)
800 perror_msg_and_die("atexit");
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000801#endif
Mark Whitley858c1ad2000-07-11 21:38:47 +0000802
Mark Whitley6315ce62000-07-10 22:55:51 +0000803 /* do normal option parsing */
Eric Andersenb50da532001-02-17 16:52:35 +0000804 while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000805 switch (opt) {
Erik Andersene916d242000-03-06 19:20:35 +0000806 case 'n':
Mark Whitley6315ce62000-07-10 22:55:51 +0000807 be_quiet++;
Erik Andersene916d242000-03-06 19:20:35 +0000808 break;
809 case 'e':
Mark Whitley6315ce62000-07-10 22:55:51 +0000810 add_cmd_str(optarg);
Erik Andersene916d242000-03-06 19:20:35 +0000811 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000812 case 'f':
813 load_cmd_file(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000814 break;
Eric Andersenb50da532001-02-17 16:52:35 +0000815 default:
816 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000817 }
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000818 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000819
820 /* if we didn't get a pattern from a -e and no command file was specified,
821 * argv[optind] should be the pattern. no pattern, no worky */
822 if (ncmds == 0) {
823 if (argv[optind] == NULL)
Eric Andersen67991cf2001-02-14 21:23:06 +0000824 show_usage();
Mark Whitley6315ce62000-07-10 22:55:51 +0000825 else {
826 add_cmd_str(argv[optind]);
827 optind++;
828 }
829 }
830
831
832 /* argv[(optind)..(argc-1)] should be names of file to process. If no
833 * files were specified or '-' was specified, take input from stdin.
834 * Otherwise, we process all the files specified. */
835 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
836 process_file(stdin);
837 }
838 else {
839 int i;
840 FILE *file;
841 for (i = optind; i < argc; i++) {
Eric Andersen9c6b5fc2001-11-17 07:23:46 +0000842 file = wfopen(argv[i], "r");
843 if (file) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000844 process_file(file);
845 fclose(file);
Matt Kraaia5f09c62001-11-12 16:44:55 +0000846 } else
847 status = EXIT_FAILURE;
Mark Whitley6315ce62000-07-10 22:55:51 +0000848 }
849 }
850
Matt Kraaia5f09c62001-11-12 16:44:55 +0000851 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000852}