blob: 23e9d545bd47dfe48b16e96a384c1b79658036b1 [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 :-) */
Robert Griebl47abc492002-06-11 23:43:27 +000099
100 /* inversion flag */
101 int invert; /* the '!' after the address */
Mark Whitley6315ce62000-07-10 22:55:51 +0000102};
103
104/* globals */
105static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
106static int ncmds = 0; /* number of sed commands */
107
108/*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000109
Eric Andersenc52a6b02001-11-10 10:49:42 +0000110const char * const semicolon_whitespace = "; \n\r\t\v\0";
111
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000112#ifdef CONFIG_FEATURE_CLEAN_UP
Matt Kraai0c390a72001-11-20 16:00:19 +0000113static void destroy_cmd_strs(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000114{
115 if (sed_cmds == NULL)
116 return;
117
118 /* destroy all the elements in the array */
119 while (--ncmds >= 0) {
120
121 if (sed_cmds[ncmds].beg_match) {
122 regfree(sed_cmds[ncmds].beg_match);
123 free(sed_cmds[ncmds].beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000124 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000125 if (sed_cmds[ncmds].end_match) {
126 regfree(sed_cmds[ncmds].end_match);
127 free(sed_cmds[ncmds].end_match);
128 }
129 if (sed_cmds[ncmds].sub_match) {
130 regfree(sed_cmds[ncmds].sub_match);
131 free(sed_cmds[ncmds].sub_match);
132 }
133 if (sed_cmds[ncmds].replace)
134 free(sed_cmds[ncmds].replace);
135 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000136
Mark Whitley6315ce62000-07-10 22:55:51 +0000137 /* destroy the array */
138 free(sed_cmds);
139 sed_cmds = NULL;
140}
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000141#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000142
Mark Whitley6315ce62000-07-10 22:55:51 +0000143
144/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000145 * index_of_next_unescaped_regexp_delim - walks left to right through a string
146 * beginning at a specified index and returns the index of the next regular
147 * expression delimiter (typically a forward * slash ('/')) not preceeded by
148 * a backslash ('\').
Mark Whitley6315ce62000-07-10 22:55:51 +0000149 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000150static 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 +0000151{
Matt Kraaia0065d52001-08-24 14:45:50 +0000152 int bracket = -1;
153 int escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000154 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000155
Eric Andersenc52a6b02001-11-10 10:49:42 +0000156 for ( ; (ch = str[idx]); idx++) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000157 if (bracket != -1) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000158 if (ch == ']' && !(bracket == idx - 1 ||
Matt Kraaia0065d52001-08-24 14:45:50 +0000159 (bracket == idx - 2 && str[idx-1] == '^')))
160 bracket = -1;
161 } else if (escaped)
162 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000163 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000164 escaped = 1;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000165 else if (ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000166 bracket = idx;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000167 else if (ch == sed_cmd->delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000168 return idx;
169 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000170
Mark Whitley97562bd2000-07-17 20:06:42 +0000171 /* if we make it to here, we've hit the end of the string */
172 return -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000173}
174
175/*
176 * returns the index in the string just past where the address ends.
177 */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000178static int get_address(struct sed_cmd *sed_cmd, const char *str, int *linenum, regex_t **regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000179{
Matt Kraaic8227632001-11-12 16:57:27 +0000180 char *my_str = xstrdup(str);
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000181 int idx = 0, idx_start = 1;
Mark Whitley038c8eb2001-03-14 21:11:49 +0000182 char olddelimiter;
183 olddelimiter = sed_cmd->delimiter;
184 sed_cmd->delimiter = '/';
Mark Whitley6315ce62000-07-10 22:55:51 +0000185
186 if (isdigit(my_str[idx])) {
187 do {
188 idx++;
189 } while (isdigit(my_str[idx]));
190 my_str[idx] = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000191 *linenum = atoi(my_str);
Mark Whitley6315ce62000-07-10 22:55:51 +0000192 }
193 else if (my_str[idx] == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000194 *linenum = -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000195 idx++;
196 }
Robert Griebl79401472002-08-06 21:07:17 +0000197 else if (my_str[idx] == '/' || my_str[idx] == '\\') {
198 if (my_str[idx] == '\\') {
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000199 idx_start++;
Robert Griebl79401472002-08-06 21:07:17 +0000200 sed_cmd-> delimiter = my_str[++idx];
201 }
Eric Andersen28b3c532001-01-02 11:01:31 +0000202 idx = index_of_next_unescaped_regexp_delim(sed_cmd, my_str, ++idx);
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000203 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000204 error_msg_and_die("unterminated match expression");
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000205 my_str[idx] = '\0';
206 *regex = (regex_t *)xmalloc(sizeof(regex_t));
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000207 xregcomp(*regex, my_str+idx_start, REG_NEWLINE);
Mark Whitley496e33f2000-07-13 22:52:02 +0000208 idx++; /* so it points to the next character after the last '/' */
Mark Whitley6315ce62000-07-10 22:55:51 +0000209 }
210 else {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000211 error_msg("get_address: no address found in string\n"
Matt Kraaidd19c692001-01-31 19:00:21 +0000212 "\t(you probably didn't check the string you passed me)");
Mark Whitley6315ce62000-07-10 22:55:51 +0000213 idx = -1;
214 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000215
Mark Whitley6315ce62000-07-10 22:55:51 +0000216 free(my_str);
Mark Whitley038c8eb2001-03-14 21:11:49 +0000217 sed_cmd->delimiter = olddelimiter;
Mark Whitley6315ce62000-07-10 22:55:51 +0000218 return idx;
219}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000220
Eric Andersenc52a6b02001-11-10 10:49:42 +0000221static int parse_subst_cmd(struct sed_cmd * const sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000222{
223 int oldidx, cflags = REG_NEWLINE;
224 char *match;
225 int idx = 0;
Mark Whitley97562bd2000-07-17 20:06:42 +0000226 int j;
Mark Whitley06f35292000-07-13 19:58:04 +0000227
228 /*
229 * the string that gets passed to this function should look like this:
Mark Whitley0e4cec02000-08-21 21:29:20 +0000230 * s/match/replace/gIp
231 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000232 * mandatory optional
233 *
234 * (all three of the '/' slashes are mandatory)
235 */
236
Eric Andersen28b3c532001-01-02 11:01:31 +0000237 /* verify that the 's' is followed by something. That something
238 * (typically a 'slash') is now our regexp delimiter... */
239 if (!substr[++idx])
Matt Kraaidd19c692001-01-31 19:00:21 +0000240 error_msg_and_die("bad format in substitution expression");
Eric Andersen28b3c532001-01-02 11:01:31 +0000241 else
242 sed_cmd->delimiter=substr[idx];
Mark Whitley06f35292000-07-13 19:58:04 +0000243
244 /* save the match string */
245 oldidx = idx+1;
Eric Andersen28b3c532001-01-02 11:01:31 +0000246 idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000247 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000248 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000249 match = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000250
Mark Whitley97562bd2000-07-17 20:06:42 +0000251 /* determine the number of back references in the match string */
252 /* Note: we compute this here rather than in the do_subst_command()
253 * function to save processor time, at the expense of a little more memory
254 * (4 bits) per sed_cmd */
255
256 /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */
257 for (j = 0; match[j]; j++) {
258 /* GNU/POSIX sed does not save more than nine backrefs */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000259 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
Mark Whitley97562bd2000-07-17 20:06:42 +0000260 sed_cmd->num_backrefs++;
261 }
262
Mark Whitley06f35292000-07-13 19:58:04 +0000263 /* save the replacement string */
264 oldidx = idx+1;
Eric Andersen28b3c532001-01-02 11:01:31 +0000265 idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000266 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000267 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000268 sed_cmd->replace = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000269
270 /* process the flags */
271 while (substr[++idx]) {
272 switch (substr[idx]) {
Mark Whitley70705d72000-07-14 19:06:30 +0000273 case 'g':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000274 sed_cmd->sub_g = 1;
Mark Whitley70705d72000-07-14 19:06:30 +0000275 break;
276 case 'I':
277 cflags |= REG_ICASE;
278 break;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000279 case 'p':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000280 sed_cmd->sub_p = 1;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000281 break;
Mark Whitley70705d72000-07-14 19:06:30 +0000282 default:
283 /* any whitespace or semicolon trailing after a s/// is ok */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000284 if (strchr(semicolon_whitespace, substr[idx]))
Mark Whitley70705d72000-07-14 19:06:30 +0000285 goto out;
286 /* else */
Matt Kraaidd19c692001-01-31 19:00:21 +0000287 error_msg_and_die("bad option in substitution expression");
Mark Whitley06f35292000-07-13 19:58:04 +0000288 }
289 }
Mark Whitley70705d72000-07-14 19:06:30 +0000290
291out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000292 /* compile the match string into a regex */
Mark Whitley06f35292000-07-13 19:58:04 +0000293 sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
294 xregcomp(sed_cmd->sub_match, match, cflags);
295 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000296
297 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000298}
299
Eric Andersenc52a6b02001-11-10 10:49:42 +0000300static void move_back(char *str, int offset)
301{
302 memmove(str, str + offset, strlen(str + offset) + 1);
303}
304
Mark Whitley70705d72000-07-14 19:06:30 +0000305static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr)
Mark Whitley94074a92000-07-14 00:00:15 +0000306{
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000307 int i, j;
Mark Whitley94074a92000-07-14 00:00:15 +0000308
309 /*
310 * the string that gets passed to this function should look like this:
311 *
312 * need one of these
313 * |
314 * | this backslash (immediately following the edit command) is mandatory
315 * | |
316 * [aic]\
317 * TEXT1\
318 * TEXT2\
319 * TEXTN
320 *
321 * as soon as we hit a TEXT line that has no trailing '\', we're done.
322 * this means a command like:
323 *
324 * i\
325 * INSERTME
326 *
327 * is a-ok.
328 *
329 */
330
Matt Kraaid21735d2002-01-02 17:56:38 +0000331 if (editstr[1] != '\\' || (editstr[2] != '\n' && editstr[2] != '\r'))
Matt Kraaidd19c692001-01-31 19:00:21 +0000332 error_msg_and_die("bad format in edit expression");
Mark Whitley94074a92000-07-14 00:00:15 +0000333
334 /* store the edit line text */
Mark Whitley34623db2000-07-14 00:49:59 +0000335 sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2);
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000336 for (i = 3, j = 0; editstr[i] != '\0' && strchr("\r\n", editstr[i]) == NULL;
337 i++, j++) {
338 if (editstr[i] == '\\' && strchr("\n\r", editstr[i+1]) != NULL) {
339 sed_cmd->editline[j] = '\n';
340 i++;
341 } else
342 sed_cmd->editline[j] = editstr[i];
Mark Whitley94074a92000-07-14 00:00:15 +0000343 }
Mark Whitley70705d72000-07-14 19:06:30 +0000344
Mark Whitley56c14a62001-04-20 23:41:44 +0000345 /* figure out if we need to add a newline */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000346 if (sed_cmd->editline[j-1] != '\n')
347 sed_cmd->editline[j++] = '\n';
Mark Whitley56c14a62001-04-20 23:41:44 +0000348
349 /* terminate string */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000350 sed_cmd->editline[j] = '\0';
Mark Whitley464c5de2000-07-14 23:24:00 +0000351
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000352 return i;
Mark Whitley94074a92000-07-14 00:00:15 +0000353}
354
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000355
356static int parse_file_cmd(struct sed_cmd *sed_cmd, const char *filecmdstr)
357{
358 int idx = 0;
359 int filenamelen = 0;
360
361 /*
362 * the string that gets passed to this function should look like this:
363 * '[ ]filename'
364 * | |
365 * | a filename
366 * |
367 * optional whitespace
368
369 * re: the file to be read, the GNU manual says the following: "Note that
370 * if filename cannot be read, it is treated as if it were an empty file,
371 * without any error indication." Thus, all of the following commands are
372 * perfectly leagal:
373 *
374 * sed -e '1r noexist'
375 * sed -e '1r ;'
376 * sed -e '1r'
377 */
378
379 /* the file command may be followed by whitespace; move past it. */
380 while (isspace(filecmdstr[++idx]))
381 { ; }
382
383 /* the first non-whitespace we get is a filename. the filename ends when we
384 * hit a normal sed command terminator or end of string */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000385 filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace);
Matt Kraai6e9e1362001-05-27 14:11:52 +0000386 sed_cmd->filename = xmalloc(filenamelen + 1);
387 safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000388
389 return idx + filenamelen;
390}
391
392
Eric Andersenc52a6b02001-11-10 10:49:42 +0000393static char *parse_cmd_str(struct sed_cmd * const sed_cmd, const char *const cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000394{
395 int idx = 0;
396
397 /* parse the command
398 * format is: [addr][,addr]cmd
399 * |----||-----||-|
400 * part1 part2 part3
401 */
402
403 /* first part (if present) is an address: either a number or a /regex/ */
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000404 if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/' || ( cmdstr[idx] == '\\' && cmdstr[idx+1] != '\\'))
Eric Andersen28b3c532001-01-02 11:01:31 +0000405 idx = get_address(sed_cmd, cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000406
407 /* second part (if present) will begin with a comma */
Eric Andersen2276d832002-07-11 11:11:56 +0000408 if (cmdstr[idx] == ',') {
409 idx++;
410 idx += get_address(sed_cmd, &cmdstr[idx], &sed_cmd->end_line, &sed_cmd->end_match);
411 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000412
Matt Kraai70624842001-12-21 16:04:12 +0000413 /* skip whitespace before the command */
414 while (isspace(cmdstr[idx]))
415 idx++;
416
Robert Griebl47abc492002-06-11 23:43:27 +0000417 /* there my be the inversion flag between part2 and part3 */
418 sed_cmd->invert = 0;
419 if (cmdstr[idx] == '!') {
420 sed_cmd->invert = 1;
421 idx++;
422
423 /* skip whitespace before the command */
424 while (isspace(cmdstr[idx]))
425 idx++;
426 }
427
Mark Whitley6315ce62000-07-10 22:55:51 +0000428 /* last part (mandatory) will be a command */
429 if (cmdstr[idx] == '\0')
Matt Kraaidd19c692001-01-31 19:00:21 +0000430 error_msg_and_die("missing command");
Mark Whitley6315ce62000-07-10 22:55:51 +0000431 sed_cmd->cmd = cmdstr[idx];
Mark Whitley6315ce62000-07-10 22:55:51 +0000432
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000433 /* if it was a single-letter command that takes no arguments (such as 'p'
434 * or 'd') all we need to do is increment the index past that command */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000435 if (strchr("pd", sed_cmd->cmd)) {
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000436 idx++;
437 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000438 /* handle (s)ubstitution command */
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000439 else if (sed_cmd->cmd == 's') {
Mark Whitley70705d72000-07-14 19:06:30 +0000440 idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]);
441 }
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000442 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000443 else if (strchr("aic", sed_cmd->cmd)) {
444 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
Matt Kraaidd19c692001-01-31 19:00:21 +0000445 error_msg_and_die("only a beginning address can be specified for edit commands");
Mark Whitley70705d72000-07-14 19:06:30 +0000446 idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]);
Mark Whitley02008342000-07-14 00:13:52 +0000447 }
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000448 /* handle file cmds: (r)ead */
449 else if (sed_cmd->cmd == 'r') {
450 if (sed_cmd->end_line || sed_cmd->end_match)
451 error_msg_and_die("Command only uses one address");
452 idx += parse_file_cmd(sed_cmd, &cmdstr[idx]);
453 }
454 else {
455 error_msg_and_die("invalid command");
456 }
Mark Whitley70705d72000-07-14 19:06:30 +0000457
458 /* give back whatever's left over */
Mark Whitley464c5de2000-07-14 23:24:00 +0000459 return (char *)&cmdstr[idx];
Eric Andersen50d63601999-11-09 01:47:36 +0000460}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000461
Eric Andersenc52a6b02001-11-10 10:49:42 +0000462static void add_cmd_str(const char * const cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000463{
Mark Whitley70705d72000-07-14 19:06:30 +0000464 char *mystr = (char *)cmdstr;
Erik Andersen1266a131999-12-29 22:19:46 +0000465
Mark Whitley70705d72000-07-14 19:06:30 +0000466 do {
Mark Whitley6315ce62000-07-10 22:55:51 +0000467
Mark Whitley70705d72000-07-14 19:06:30 +0000468 /* trim leading whitespace and semicolons */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000469 move_back(mystr, strspn(mystr, semicolon_whitespace));
Mark Whitley70705d72000-07-14 19:06:30 +0000470 /* if we ate the whole thing, that means there was just trailing
Mark Whitley464c5de2000-07-14 23:24:00 +0000471 * whitespace or a final / no-op semicolon. either way, get out */
Mark Whitley70705d72000-07-14 19:06:30 +0000472 if (strlen(mystr) == 0)
473 return;
474 /* if this is a comment, jump past it and keep going */
475 if (mystr[0] == '#') {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000476 mystr = strpbrk(mystr, "\n\r");
Mark Whitley70705d72000-07-14 19:06:30 +0000477 continue;
478 }
479 /* grow the array */
Matt Kraai322ae932000-09-13 02:46:14 +0000480 sed_cmds = xrealloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds));
Mark Whitley70705d72000-07-14 19:06:30 +0000481 /* zero new element */
482 memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd));
483 /* load command string into new array element, get remainder */
484 mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr);
485
Mark Whitley464c5de2000-07-14 23:24:00 +0000486 } while (mystr && strlen(mystr));
Mark Whitley6315ce62000-07-10 22:55:51 +0000487}
488
489
490static void load_cmd_file(char *filename)
491{
492 FILE *cmdfile;
493 char *line;
Mark Whitley94074a92000-07-14 00:00:15 +0000494 char *nextline;
Mark Whitley6315ce62000-07-10 22:55:51 +0000495
Matt Kraaibbaef662000-09-27 02:43:35 +0000496 cmdfile = xfopen(filename, "r");
Mark Whitley6315ce62000-07-10 22:55:51 +0000497
498 while ((line = get_line_from_file(cmdfile)) != NULL) {
Mark Whitley94074a92000-07-14 00:00:15 +0000499 /* if a line ends with '\' it needs the next line appended to it */
500 while (line[strlen(line)-2] == '\\' &&
501 (nextline = get_line_from_file(cmdfile)) != NULL) {
Matt Kraai322ae932000-09-13 02:46:14 +0000502 line = xrealloc(line, strlen(line) + strlen(nextline) + 1);
Mark Whitley94074a92000-07-14 00:00:15 +0000503 strcat(line, nextline);
Mark Whitley464c5de2000-07-14 23:24:00 +0000504 free(nextline);
Mark Whitley94074a92000-07-14 00:00:15 +0000505 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000506 /* eat trailing newline (if any) --if I don't do this, edit commands
507 * (aic) will print an extra newline */
Matt Kraai05e782d2001-02-01 16:49:30 +0000508 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000509 add_cmd_str(line);
510 free(line);
511 }
512}
513
Eric Andersenc52a6b02001-11-10 10:49:42 +0000514struct pipeline {
515 char *buf;
516 int idx;
517 int len;
518};
519
Eric Andersenb76cb682001-08-22 05:58:16 +0000520#define PIPE_MAGIC 0x7f
521#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000522
523void pipe_putc(struct pipeline *const pipeline, char c)
524{
525 if (pipeline->buf[pipeline->idx] == PIPE_MAGIC) {
526 pipeline->buf =
527 xrealloc(pipeline->buf, pipeline->len + PIPE_GROW);
528 memset(pipeline->buf + pipeline->len, 0, PIPE_GROW);
529 pipeline->len += PIPE_GROW;
530 pipeline->buf[pipeline->len - 1] = PIPE_MAGIC;
531 }
532 pipeline->buf[pipeline->idx++] = (c);
533}
534
535#define pipeputc(c) pipe_putc(pipeline, c)
536
537#if 0
Eric Andersenb76cb682001-08-22 05:58:16 +0000538{ if (pipeline[pipeline_idx] == PIPE_MAGIC) { \
539 pipeline = xrealloc(pipeline, pipeline_len+PIPE_GROW); \
540 memset(pipeline+pipeline_len, 0, PIPE_GROW); \
541 pipeline_len += PIPE_GROW; \
542 pipeline[pipeline_len-1] = PIPE_MAGIC; } \
543 pipeline[pipeline_idx++] = (c); }
Eric Andersenc52a6b02001-11-10 10:49:42 +0000544#endif
Eric Andersenb76cb682001-08-22 05:58:16 +0000545
546static void print_subst_w_backrefs(const char *line, const char *replace,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000547 regmatch_t *regmatch, struct pipeline *const pipeline, int matches)
Mark Whitley97562bd2000-07-17 20:06:42 +0000548{
549 int i;
550
551 /* go through the replacement string */
552 for (i = 0; replace[i]; i++) {
553 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
554 if (replace[i] == '\\' && isdigit(replace[i+1])) {
555 int j;
556 char tmpstr[2];
557 int backref;
558 ++i; /* i now indexes the backref number, instead of the leading slash */
559 tmpstr[0] = replace[i];
560 tmpstr[1] = 0;
561 backref = atoi(tmpstr);
562 /* print out the text held in regmatch[backref] */
Matt Kraaia3e4f452001-08-20 21:21:06 +0000563 if (backref <= matches && regmatch[backref].rm_so != -1)
564 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000565 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000566 }
567
Mark Whitley83e85f62000-07-25 20:48:44 +0000568 /* if we find a backslash escaped character, print the character */
569 else if (replace[i] == '\\') {
570 ++i;
Eric Andersenb76cb682001-08-22 05:58:16 +0000571 pipeputc(replace[i]);
Mark Whitley83e85f62000-07-25 20:48:44 +0000572 }
573
Mark Whitley97562bd2000-07-17 20:06:42 +0000574 /* if we find an unescaped '&' print out the whole matched text.
575 * fortunately, regmatch[0] contains the indicies to the whole matched
576 * expression (kinda seems like it was designed for just such a
577 * purpose...) */
578 else if (replace[i] == '&' && replace[i-1] != '\\') {
579 int j;
580 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000581 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000582 }
583 /* nothing special, just print this char of the replacement string to stdout */
584 else
Eric Andersenb76cb682001-08-22 05:58:16 +0000585 pipeputc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000586 }
587}
588
Eric Andersenb76cb682001-08-22 05:58:16 +0000589static int do_subst_command(const struct sed_cmd *sed_cmd, char **line)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000590{
Eric Andersenb76cb682001-08-22 05:58:16 +0000591 char *hackline = *line;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000592 struct pipeline thepipe = { NULL, 0 , 0};
593 struct pipeline *const pipeline = &thepipe;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000594 int altered = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000595 regmatch_t *regmatch = NULL;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000596
Mark Whitley2dc192f2000-11-03 19:47:00 +0000597 /* we only proceed if the substitution 'search' expression matches */
Eric Andersenb76cb682001-08-22 05:58:16 +0000598 if (regexec(sed_cmd->sub_match, hackline, 0, NULL, 0) == REG_NOMATCH)
Mark Whitley2dc192f2000-11-03 19:47:00 +0000599 return 0;
600
601 /* whaddaya know, it matched. get the number of back references */
602 regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
603
Eric Andersenb76cb682001-08-22 05:58:16 +0000604 /* allocate more PIPE_GROW bytes
605 if replaced string is larger than original */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000606 thepipe.len = strlen(hackline)+PIPE_GROW;
607 thepipe.buf = xcalloc(1, thepipe.len);
Eric Andersenb76cb682001-08-22 05:58:16 +0000608 /* buffer magic */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000609 thepipe.buf[thepipe.len-1] = PIPE_MAGIC;
Eric Andersenb76cb682001-08-22 05:58:16 +0000610
Mark Whitley2dc192f2000-11-03 19:47:00 +0000611 /* and now, as long as we've got a line to try matching and if we can match
612 * the search string, we make substitutions */
Matt Kraai8470b9a2001-10-23 21:12:07 +0000613 while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline,
614 sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000615 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000616
Mark Whitley2dc192f2000-11-03 19:47:00 +0000617 /* print everything before the match */
618 for (i = 0; i < regmatch[0].rm_so; i++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000619 pipeputc(hackline[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000620
Mark Whitley2dc192f2000-11-03 19:47:00 +0000621 /* then print the substitution string */
Eric Andersenb76cb682001-08-22 05:58:16 +0000622 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000623 pipeline, sed_cmd->num_backrefs);
Mark Whitley97562bd2000-07-17 20:06:42 +0000624
Mark Whitley2dc192f2000-11-03 19:47:00 +0000625 /* advance past the match */
626 hackline += regmatch[0].rm_eo;
627 /* flag that something has changed */
628 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000629
Mark Whitley2dc192f2000-11-03 19:47:00 +0000630 /* if we're not doing this globally, get out now */
631 if (!sed_cmd->sub_g)
632 break;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000633 }
634
Eric Andersenb76cb682001-08-22 05:58:16 +0000635 for (; *hackline; hackline++) pipeputc(*hackline);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000636 if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) thepipe.buf[thepipe.idx] = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000637
638 /* cleanup */
639 free(regmatch);
640
Eric Andersenb76cb682001-08-22 05:58:16 +0000641 free(*line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000642 *line = thepipe.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000643 return altered;
644}
Mark Whitley6315ce62000-07-10 22:55:51 +0000645
Mark Whitley6315ce62000-07-10 22:55:51 +0000646
647static void process_file(FILE *file)
648{
649 char *line = NULL;
650 static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
651 unsigned int still_in_range = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000652 int altered;
Mark Whitley6315ce62000-07-10 22:55:51 +0000653 int i;
654
655 /* go through every line in the file */
656 while ((line = get_line_from_file(file)) != NULL) {
657
Mark Whitley9de26592001-05-14 19:44:44 +0000658 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000659 linenum++;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000660 altered = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000661
662 /* for every line, go through all the commands */
663 for (i = 0; i < ncmds; i++) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000664 struct sed_cmd *sed_cmd = &sed_cmds[i];
Robert Griebl47abc492002-06-11 23:43:27 +0000665 int deleted = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000666
667 /*
668 * entry point into sedding...
669 */
Robert Griebl47abc492002-06-11 23:43:27 +0000670 int matched = (
Matt Kraai02c40a72001-06-21 13:57:51 +0000671 /* no range necessary */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000672 (sed_cmd->beg_line == 0 && sed_cmd->end_line == 0 &&
673 sed_cmd->beg_match == NULL &&
674 sed_cmd->end_match == NULL) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000675 /* this line number is the first address we're looking for */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000676 (sed_cmd->beg_line && (sed_cmd->beg_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000677 /* this line matches our first address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000678 (sed_cmd->beg_match && (regexec(sed_cmd->beg_match, line, 0, NULL, 0) == 0)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000679 /* we are currently within the beginning & ending address range */
680 still_in_range
Robert Griebl47abc492002-06-11 23:43:27 +0000681 );
682
683 if (sed_cmd->invert ^ matched) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000684
685 /*
686 * actual sedding
687 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000688 switch (sed_cmd->cmd) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000689
690 case 'p':
691 puts(line);
692 break;
693
694 case 'd':
695 altered++;
Matt Kraai5c69cd82002-04-01 16:17:37 +0000696 deleted = 1;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000697 break;
698
699 case 's':
700
701 /*
702 * Some special cases for 's' printing to make it compliant with
703 * GNU sed printing behavior (aka "The -n | s///p Matrix"):
704 *
705 * -n ONLY = never print anything regardless of any successful
706 * substitution
707 *
708 * s///p ONLY = always print successful substitutions, even if
709 * the line is going to be printed anyway (line will be printed
710 * twice).
711 *
712 * -n AND s///p = print ONLY a successful substitution ONE TIME;
713 * no other lines are printed - this is the reason why the 'p'
714 * flag exists in the first place.
715 */
716
717 /* if the user specified that they didn't want anything printed (i.e., a -n
718 * flag and no 'p' flag after the s///), then there's really no point doing
719 * anything here. */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000720 if (be_quiet && !sed_cmd->sub_p)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000721 break;
722
723 /* we print the line once, unless we were told to be quiet */
724 if (!be_quiet)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000725 altered |= do_subst_command(sed_cmd, &line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000726
727 /* we also print the line if we were given the 'p' flag
728 * (this is quite possibly the second printing) */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000729 if (sed_cmd->sub_p)
730 altered |= do_subst_command(sed_cmd, &line);
Eric Andersenb76cb682001-08-22 05:58:16 +0000731 if (altered && (i+1 >= ncmds || sed_cmds[i+1].cmd != 's'))
732 puts(line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000733
734 break;
735
736 case 'a':
737 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000738 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000739 altered++;
740 break;
741
742 case 'i':
Eric Andersenc52a6b02001-11-10 10:49:42 +0000743 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000744 break;
745
746 case 'c':
747 /* single-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000748 if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000749 /* multi-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000750 /* - matching text */
751 || (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
752 /* - matching line numbers */
753 || (sed_cmd->end_line > 0 && sed_cmd->end_line == linenum))
754 {
755 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000756 }
757 altered++;
758
759 break;
760
761 case 'r': {
762 FILE *outfile;
763 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000764 outfile = fopen(sed_cmd->filename, "r");
Mark Whitley0915c4b2001-06-11 23:50:06 +0000765 if (outfile)
766 print_file(outfile);
767 /* else if we couldn't open the output file,
768 * no biggie, just don't print anything */
769 altered++;
Robert Griebl47abc492002-06-11 23:43:27 +0000770 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000771 break;
772 }
Robert Griebl47abc492002-06-11 23:43:27 +0000773 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000774
Robert Griebl47abc492002-06-11 23:43:27 +0000775 /*
776 * exit point from sedding...
777 */
778 if (matched) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000779 if (
780 /* this is a single-address command or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000781 (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) || (
Mark Whitley0915c4b2001-06-11 23:50:06 +0000782 /* we were in the middle of our address range (this
783 * isn't the first time through) and.. */
784 (still_in_range == 1) && (
785 /* this line number is the last address we're looking for or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000786 (sed_cmd->end_line && (sed_cmd->end_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000787 /* this line matches our last address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000788 (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
Mark Whitley0915c4b2001-06-11 23:50:06 +0000789 )
790 )
791 ) {
792 /* we're out of our address range */
793 still_in_range = 0;
794 }
795
796 /* didn't hit the exit? then we're still in the middle of an address range */
797 else {
798 still_in_range = 1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000799 }
800 }
Robert Griebl47abc492002-06-11 23:43:27 +0000801
802 if (deleted)
803 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000804 }
Erik Andersen1266a131999-12-29 22:19:46 +0000805
Mark Whitley2dc192f2000-11-03 19:47:00 +0000806 /* we will print the line unless we were told to be quiet or if the
807 * line was altered (via a 'd'elete or 's'ubstitution), in which case
808 * the altered line was already printed */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000809 if (!be_quiet && !altered)
Mark Whitleydd527d32001-05-14 19:53:08 +0000810 puts(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000811
812 free(line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000813 }
Erik Andersen1266a131999-12-29 22:19:46 +0000814}
815
816extern int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000817{
Matt Kraaia5f09c62001-11-12 16:44:55 +0000818 int opt, status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000819
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000820#ifdef CONFIG_FEATURE_CLEAN_UP
Mark Whitley858c1ad2000-07-11 21:38:47 +0000821 /* destroy command strings on exit */
Matt Kraaia9819b22000-12-22 01:48:07 +0000822 if (atexit(destroy_cmd_strs) == -1)
823 perror_msg_and_die("atexit");
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000824#endif
Mark Whitley858c1ad2000-07-11 21:38:47 +0000825
Mark Whitley6315ce62000-07-10 22:55:51 +0000826 /* do normal option parsing */
Eric Andersenb50da532001-02-17 16:52:35 +0000827 while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000828 switch (opt) {
Erik Andersene916d242000-03-06 19:20:35 +0000829 case 'n':
Mark Whitley6315ce62000-07-10 22:55:51 +0000830 be_quiet++;
Erik Andersene916d242000-03-06 19:20:35 +0000831 break;
832 case 'e':
Mark Whitley6315ce62000-07-10 22:55:51 +0000833 add_cmd_str(optarg);
Erik Andersene916d242000-03-06 19:20:35 +0000834 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000835 case 'f':
836 load_cmd_file(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000837 break;
Eric Andersenb50da532001-02-17 16:52:35 +0000838 default:
839 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000840 }
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000841 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000842
843 /* if we didn't get a pattern from a -e and no command file was specified,
844 * argv[optind] should be the pattern. no pattern, no worky */
845 if (ncmds == 0) {
846 if (argv[optind] == NULL)
Eric Andersen67991cf2001-02-14 21:23:06 +0000847 show_usage();
Mark Whitley6315ce62000-07-10 22:55:51 +0000848 else {
849 add_cmd_str(argv[optind]);
850 optind++;
851 }
852 }
853
854
855 /* argv[(optind)..(argc-1)] should be names of file to process. If no
856 * files were specified or '-' was specified, take input from stdin.
857 * Otherwise, we process all the files specified. */
858 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
859 process_file(stdin);
860 }
861 else {
862 int i;
863 FILE *file;
864 for (i = optind; i < argc; i++) {
Eric Andersen9c6b5fc2001-11-17 07:23:46 +0000865 file = wfopen(argv[i], "r");
866 if (file) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000867 process_file(file);
868 fclose(file);
Matt Kraaia5f09c62001-11-12 16:44:55 +0000869 } else
870 status = EXIT_FAILURE;
Mark Whitley6315ce62000-07-10 22:55:51 +0000871 }
872 }
873
Matt Kraaia5f09c62001-11-12 16:44:55 +0000874 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000875}