blob: ac765c83f3e67be5d0a8d6c700b16f9fb466e5e5 [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)
Glenn L McGrathf50ce312003-03-09 15:12:24 +000033 - grouped commands: {cmd1;cmd2}
34
Mark Whitley6315ce62000-07-10 22:55:51 +000035 (Note: Specifying an address (range) to match is *optional*; commands
36 default to the whole pattern space if no specific address match was
37 requested.)
38
39 Unsupported features:
40
41 - transliteration (y/source-chars/dest-chars/) (use 'tr')
Mark Whitley6315ce62000-07-10 22:55:51 +000042 - no pattern space hold space storing / swapping (x, etc.)
43 - no labels / branching (: label, b, t, and friends)
44 - and lots, lots more.
Glenn L McGrathd5eadea2003-03-09 02:39:29 +000045
46 Reference http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html
Mark Whitley6315ce62000-07-10 22:55:51 +000047*/
48
Eric Andersen6b6b3f61999-10-28 16:06:25 +000049#include <stdio.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000050#include <unistd.h> /* for getopt() */
51#include <regex.h>
52#include <string.h> /* for strdup() */
Eric Andersen6b6b3f61999-10-28 16:06:25 +000053#include <errno.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000054#include <ctype.h> /* for isspace() */
Eric Andersened3ef502001-01-27 08:24:39 +000055#include <stdlib.h>
Eric Andersen3570a342000-09-25 21:45:58 +000056#include "busybox.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000057
Mark Whitley6315ce62000-07-10 22:55:51 +000058/* externs */
Eric Andersened3ef502001-01-27 08:24:39 +000059extern void xregcomp(regex_t *preg, const char *regex, int cflags);
Mark Whitley6315ce62000-07-10 22:55:51 +000060extern int optind; /* in unistd.h */
61extern char *optarg; /* ditto */
62
63/* options */
64static int be_quiet = 0;
65
Mark Whitley0e4cec02000-08-21 21:29:20 +000066
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +000067typedef struct sed_cmd_s {
Eric Andersenc52a6b02001-11-10 10:49:42 +000068 /* Order by alignment requirements */
Mark Whitley2dc192f2000-11-03 19:47:00 +000069
Mark Whitley6315ce62000-07-10 22:55:51 +000070 /* address storage */
Mark Whitley6315ce62000-07-10 22:55:51 +000071 regex_t *beg_match; /* sed -e '/match/cmd' */
72 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
73
Mark Whitley2dc192f2000-11-03 19:47:00 +000074 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
75
76 /* sed -e 's/sub_match/replace/' */
77 regex_t *sub_match;
78 char *replace;
Eric Andersenc52a6b02001-11-10 10:49:42 +000079
80 /* EDIT COMMAND (a,i,c) SPECIFIC FIELDS */
81 char *editline;
82
83 /* FILE COMMAND (r) SPECIFIC FIELDS */
84 char *filename;
85
86 /* address storage */
87 int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */
88 int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
89 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
90
Mark Whitley97562bd2000-07-17 20:06:42 +000091 unsigned int num_backrefs:4; /* how many back references (\1..\9) */
92 /* Note: GNU/POSIX sed does not save more than nine backrefs, so
93 * we only use 4 bits to hold the number */
Mark Whitley2dc192f2000-11-03 19:47:00 +000094 unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */
95 unsigned int sub_p:2; /* sed -e 's/foo/bar/p' (print substitution) */
Mark Whitley94074a92000-07-14 00:00:15 +000096
Eric Andersenc52a6b02001-11-10 10:49:42 +000097 /* GENERAL FIELDS */
98 char delimiter; /* The delimiter used to separate regexps */
Mark Whitley2dc192f2000-11-03 19:47:00 +000099
Eric Andersenc52a6b02001-11-10 10:49:42 +0000100 /* the command */
101 char cmd; /* p,d,s (add more at your leisure :-) */
Robert Griebl47abc492002-06-11 23:43:27 +0000102
103 /* inversion flag */
104 int invert; /* the '!' after the address */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000105} sed_cmd_t;
Mark Whitley6315ce62000-07-10 22:55:51 +0000106
107/* globals */
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000108static sed_cmd_t **sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
Mark Whitley6315ce62000-07-10 22:55:51 +0000109static int ncmds = 0; /* number of sed commands */
110
111/*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000112
Eric Andersenc52a6b02001-11-10 10:49:42 +0000113const char * const semicolon_whitespace = "; \n\r\t\v\0";
114
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000115#ifdef CONFIG_FEATURE_CLEAN_UP
Matt Kraai0c390a72001-11-20 16:00:19 +0000116static void destroy_cmd_strs(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000117{
118 if (sed_cmds == NULL)
119 return;
120
121 /* destroy all the elements in the array */
122 while (--ncmds >= 0) {
123
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000124 if (sed_cmds[ncmds]->beg_match) {
125 regfree(sed_cmds[ncmds]->beg_match);
126 free(sed_cmds[ncmds]->beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000127 }
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000128 if (sed_cmds[ncmds]->end_match) {
129 regfree(sed_cmds[ncmds]->end_match);
130 free(sed_cmds[ncmds]->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000131 }
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000132 if (sed_cmds[ncmds]->sub_match) {
133 regfree(sed_cmds[ncmds]->sub_match);
134 free(sed_cmds[ncmds]->sub_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000135 }
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000136 free(sed_cmds[ncmds]->replace);
Mark Whitley6315ce62000-07-10 22:55:51 +0000137 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138
Mark Whitley6315ce62000-07-10 22:55:51 +0000139 /* destroy the array */
140 free(sed_cmds);
141 sed_cmds = NULL;
142}
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000143#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000144
Mark Whitley6315ce62000-07-10 22:55:51 +0000145
146/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000147 * index_of_next_unescaped_regexp_delim - walks left to right through a string
148 * beginning at a specified index and returns the index of the next regular
149 * expression delimiter (typically a forward * slash ('/')) not preceeded by
150 * a backslash ('\').
Mark Whitley6315ce62000-07-10 22:55:51 +0000151 */
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000152static int index_of_next_unescaped_regexp_delim(const char delimiter, const char *str, int idx)
Mark Whitley6315ce62000-07-10 22:55:51 +0000153{
Matt Kraaia0065d52001-08-24 14:45:50 +0000154 int bracket = -1;
155 int escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000156 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000157
Eric Andersenc52a6b02001-11-10 10:49:42 +0000158 for ( ; (ch = str[idx]); idx++) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000159 if (bracket != -1) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000160 if (ch == ']' && !(bracket == idx - 1 ||
Matt Kraaia0065d52001-08-24 14:45:50 +0000161 (bracket == idx - 2 && str[idx-1] == '^')))
162 bracket = -1;
163 } else if (escaped)
164 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000165 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000166 escaped = 1;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000167 else if (ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000168 bracket = idx;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000169 else if (ch == delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000170 return idx;
171 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000172
Mark Whitley97562bd2000-07-17 20:06:42 +0000173 /* if we make it to here, we've hit the end of the string */
174 return -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000175}
176
177/*
178 * returns the index in the string just past where the address ends.
179 */
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000180static int get_address(char *delimiter, char *my_str, int *linenum, regex_t **regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000181{
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000182 int idx = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000183 if (isdigit(my_str[idx])) {
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000184 char *endstr;
185 *linenum = strtol(my_str, &endstr, 10);
186 /* endstr shouldnt ever equal NULL */
187 idx = endstr - my_str;
Mark Whitley6315ce62000-07-10 22:55:51 +0000188 }
189 else if (my_str[idx] == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000190 *linenum = -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000191 idx++;
192 }
Robert Griebl79401472002-08-06 21:07:17 +0000193 else if (my_str[idx] == '/' || my_str[idx] == '\\') {
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000194 int idx_start = 1;
195
Robert Griebl79401472002-08-06 21:07:17 +0000196 if (my_str[idx] == '\\') {
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000197 idx_start++;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000198 *delimiter = my_str[++idx];
Robert Griebl79401472002-08-06 21:07:17 +0000199 }
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000200 idx = index_of_next_unescaped_regexp_delim(*delimiter, my_str, ++idx);
201 if (idx == -1) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000202 error_msg_and_die("unterminated match expression");
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000203 }
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000204 my_str[idx] = '\0';
205 *regex = (regex_t *)xmalloc(sizeof(regex_t));
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000206 xregcomp(*regex, my_str+idx_start, REG_NEWLINE);
Mark Whitley496e33f2000-07-13 22:52:02 +0000207 idx++; /* so it points to the next character after the last '/' */
Mark Whitley6315ce62000-07-10 22:55:51 +0000208 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000209 return idx;
210}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000211
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000212static int parse_subst_cmd(sed_cmd_t * const sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000213{
214 int oldidx, cflags = REG_NEWLINE;
215 char *match;
216 int idx = 0;
Mark Whitley97562bd2000-07-17 20:06:42 +0000217 int j;
Mark Whitley06f35292000-07-13 19:58:04 +0000218
219 /*
220 * the string that gets passed to this function should look like this:
Mark Whitley0e4cec02000-08-21 21:29:20 +0000221 * s/match/replace/gIp
222 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000223 * mandatory optional
224 *
225 * (all three of the '/' slashes are mandatory)
226 */
227
Eric Andersen28b3c532001-01-02 11:01:31 +0000228 /* verify that the 's' is followed by something. That something
229 * (typically a 'slash') is now our regexp delimiter... */
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000230 if (substr[idx] == '\0')
Matt Kraaidd19c692001-01-31 19:00:21 +0000231 error_msg_and_die("bad format in substitution expression");
Eric Andersen28b3c532001-01-02 11:01:31 +0000232 else
233 sed_cmd->delimiter=substr[idx];
Mark Whitley06f35292000-07-13 19:58:04 +0000234
235 /* save the match string */
236 oldidx = idx+1;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000237 idx = index_of_next_unescaped_regexp_delim(sed_cmd->delimiter, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000238 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000239 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000240 match = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000241
Mark Whitley97562bd2000-07-17 20:06:42 +0000242 /* determine the number of back references in the match string */
243 /* Note: we compute this here rather than in the do_subst_command()
244 * function to save processor time, at the expense of a little more memory
245 * (4 bits) per sed_cmd */
246
247 /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */
248 for (j = 0; match[j]; j++) {
249 /* GNU/POSIX sed does not save more than nine backrefs */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000250 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
Mark Whitley97562bd2000-07-17 20:06:42 +0000251 sed_cmd->num_backrefs++;
252 }
253
Mark Whitley06f35292000-07-13 19:58:04 +0000254 /* save the replacement string */
255 oldidx = idx+1;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000256 idx = index_of_next_unescaped_regexp_delim(sed_cmd->delimiter, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000257 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000258 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000259 sed_cmd->replace = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000260
261 /* process the flags */
262 while (substr[++idx]) {
263 switch (substr[idx]) {
Mark Whitley70705d72000-07-14 19:06:30 +0000264 case 'g':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000265 sed_cmd->sub_g = 1;
Mark Whitley70705d72000-07-14 19:06:30 +0000266 break;
267 case 'I':
268 cflags |= REG_ICASE;
269 break;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000270 case 'p':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000271 sed_cmd->sub_p = 1;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000272 break;
Mark Whitley70705d72000-07-14 19:06:30 +0000273 default:
274 /* any whitespace or semicolon trailing after a s/// is ok */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000275 if (strchr(semicolon_whitespace, substr[idx]))
Mark Whitley70705d72000-07-14 19:06:30 +0000276 goto out;
277 /* else */
Matt Kraaidd19c692001-01-31 19:00:21 +0000278 error_msg_and_die("bad option in substitution expression");
Mark Whitley06f35292000-07-13 19:58:04 +0000279 }
280 }
Mark Whitley70705d72000-07-14 19:06:30 +0000281
282out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000283 /* compile the match string into a regex */
Mark Whitley06f35292000-07-13 19:58:04 +0000284 sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
285 xregcomp(sed_cmd->sub_match, match, cflags);
286 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000287
288 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000289}
290
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000291static int parse_edit_cmd(sed_cmd_t *sed_cmd, const char *editstr)
Mark Whitley94074a92000-07-14 00:00:15 +0000292{
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000293 int i, j;
Mark Whitley94074a92000-07-14 00:00:15 +0000294
295 /*
296 * the string that gets passed to this function should look like this:
297 *
298 * need one of these
299 * |
300 * | this backslash (immediately following the edit command) is mandatory
301 * | |
302 * [aic]\
303 * TEXT1\
304 * TEXT2\
305 * TEXTN
306 *
307 * as soon as we hit a TEXT line that has no trailing '\', we're done.
308 * this means a command like:
309 *
310 * i\
311 * INSERTME
312 *
313 * is a-ok.
314 *
315 */
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000316 if ((*editstr != '\\') || ((editstr[1] != '\n') && (editstr[1] != '\r'))) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000317 error_msg_and_die("bad format in edit expression");
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000318 }
Mark Whitley94074a92000-07-14 00:00:15 +0000319
320 /* store the edit line text */
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000321 sed_cmd->editline = xmalloc(strlen(&editstr[2]) + 2);
322 for (i = 2, j = 0; editstr[i] != '\0' && strchr("\r\n", editstr[i]) == NULL;
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000323 i++, j++) {
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000324 if ((editstr[i] == '\\') && strchr("\n\r", editstr[i+1]) != NULL) {
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000325 sed_cmd->editline[j] = '\n';
326 i++;
327 } else
328 sed_cmd->editline[j] = editstr[i];
Mark Whitley94074a92000-07-14 00:00:15 +0000329 }
Mark Whitley70705d72000-07-14 19:06:30 +0000330
Mark Whitley56c14a62001-04-20 23:41:44 +0000331 /* figure out if we need to add a newline */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000332 if (sed_cmd->editline[j-1] != '\n')
333 sed_cmd->editline[j++] = '\n';
Mark Whitley56c14a62001-04-20 23:41:44 +0000334
335 /* terminate string */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000336 sed_cmd->editline[j] = '\0';
Mark Whitley464c5de2000-07-14 23:24:00 +0000337
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000338 return i;
Mark Whitley94074a92000-07-14 00:00:15 +0000339}
340
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000341
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000342static int parse_file_cmd(sed_cmd_t *sed_cmd, const char *filecmdstr)
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000343{
344 int idx = 0;
345 int filenamelen = 0;
346
347 /*
348 * the string that gets passed to this function should look like this:
349 * '[ ]filename'
350 * | |
351 * | a filename
352 * |
353 * optional whitespace
354
355 * re: the file to be read, the GNU manual says the following: "Note that
356 * if filename cannot be read, it is treated as if it were an empty file,
357 * without any error indication." Thus, all of the following commands are
358 * perfectly leagal:
359 *
360 * sed -e '1r noexist'
361 * sed -e '1r ;'
362 * sed -e '1r'
363 */
364
365 /* the file command may be followed by whitespace; move past it. */
366 while (isspace(filecmdstr[++idx]))
367 { ; }
368
369 /* the first non-whitespace we get is a filename. the filename ends when we
370 * hit a normal sed command terminator or end of string */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000371 filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace);
Matt Kraai6e9e1362001-05-27 14:11:52 +0000372 sed_cmd->filename = xmalloc(filenamelen + 1);
373 safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000374
375 return idx + filenamelen;
376}
377
378
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000379static char *parse_cmd_str(sed_cmd_t * const sed_cmd, char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000380{
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000381 /* if it was a single-letter command that takes no arguments (such as 'p'
382 * or 'd') all we need to do is increment the index past that command */
383 if (strchr("pd=", sed_cmd->cmd)) {
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000384 cmdstr++;
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000385 }
386 /* handle (s)ubstitution command */
387 else if (sed_cmd->cmd == 's') {
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000388 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000389 }
390 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
391 else if (strchr("aic", sed_cmd->cmd)) {
392 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
393 error_msg_and_die("only a beginning address can be specified for edit commands");
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000394 cmdstr += parse_edit_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000395 }
396 /* handle file cmds: (r)ead */
397 else if (sed_cmd->cmd == 'r') {
398 if (sed_cmd->end_line || sed_cmd->end_match)
399 error_msg_and_die("Command only uses one address");
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000400 cmdstr += parse_file_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000401 }
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000402 /* handle grouped commands */
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000403 else {
404 error_msg_and_die("Unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000405 }
Mark Whitley70705d72000-07-14 19:06:30 +0000406
407 /* give back whatever's left over */
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000408 return(cmdstr);
Eric Andersen50d63601999-11-09 01:47:36 +0000409}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000410
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000411static char *add_cmd(sed_cmd_t *sed_cmd, char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000412{
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000413
414 /* Skip over leading whitespace and semicolons */
415 cmdstr += strspn(cmdstr, semicolon_whitespace);
Erik Andersen1266a131999-12-29 22:19:46 +0000416
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000417 /* if we ate the whole thing, that means there was just trailing
418 * whitespace or a final / no-op semicolon. either way, get out */
419 if (*cmdstr == '\0') {
420 return(NULL);
421 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000422
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000423 /* if this is a comment, jump past it and keep going */
424 if (*cmdstr == '#') {
425 return(strpbrk(cmdstr, "\n\r"));
426 }
427
428 /* parse the command
429 * format is: [addr][,addr]cmd
430 * |----||-----||-|
431 * part1 part2 part3
432 */
433
434 /* first part (if present) is an address: either a '$', a number or a /regex/ */
435 cmdstr += get_address(&(sed_cmd->delimiter), cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
436
437 /* second part (if present) will begin with a comma */
438 if (*cmdstr == ',') {
439 int idx;
440 cmdstr++;
441 idx = get_address(&(sed_cmd->delimiter), cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
442 if (idx == 0) {
443 error_msg_and_die("get_address: no address found in string\n"
444 "\t(you probably didn't check the string you passed me)");
Mark Whitley70705d72000-07-14 19:06:30 +0000445 }
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000446 cmdstr += idx;
447 }
Mark Whitley70705d72000-07-14 19:06:30 +0000448
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000449 /* skip whitespace before the command */
450 while (isspace(*cmdstr)) {
451 cmdstr++;
452 }
453
454 /* there my be the inversion flag between part2 and part3 */
455 if (*cmdstr == '!') {
456 sed_cmd->invert = 1;
457 cmdstr++;
458
459#ifdef SED_FEATURE_STRICT_CHECKING
460 /* According to the spec
461 * It is unspecified whether <blank>s can follow a '!' character,
462 * and conforming applications shall not follow a '!' character
463 * with <blank>s.
464 */
465 if (isblank(cmdstr[idx]) {
466 error_msg_and_die("blank follows '!'");
467 }
468#else
469 /* skip whitespace before the command */
470 while (isspace(*cmdstr)) {
471 cmdstr++;
472 }
473#endif
474
475 }
476
477 /* last part (mandatory) will be a command */
478 if (*cmdstr == '\0')
479 error_msg_and_die("missing command");
480
481 sed_cmd->cmd = *cmdstr;
482 cmdstr++;
483
484 if (sed_cmd->cmd == '{') {
485 do {
486 char *end_ptr = strpbrk(cmdstr, ";}");
487 *end_ptr = '\0';
488 add_cmd(sed_cmd, cmdstr);
489 cmdstr = end_ptr + 1;
490 } while (*cmdstr != '\0');
491 } else {
492
493 cmdstr = parse_cmd_str(sed_cmd, cmdstr);
494
495 /* Add the command to the command array */
496 sed_cmds = xrealloc(sed_cmds, sizeof(sed_cmd_t) * (++ncmds));
497 sed_cmds[ncmds-1] = xmalloc(sizeof(sed_cmd_t));
498 memcpy(sed_cmds[ncmds-1], sed_cmd, sizeof(sed_cmd_t));
499 }
500 return(cmdstr);
501}
502
503static void add_cmd_str(char *cmdstr)
504{
505 do {
506 sed_cmd_t *sed_cmd;
507 sed_cmd = xcalloc(1, sizeof(sed_cmd_t));
508 cmdstr = add_cmd(sed_cmd, cmdstr);
509 } while (cmdstr && strlen(cmdstr));
Mark Whitley6315ce62000-07-10 22:55:51 +0000510}
511
512
513static void load_cmd_file(char *filename)
514{
515 FILE *cmdfile;
516 char *line;
Mark Whitley94074a92000-07-14 00:00:15 +0000517 char *nextline;
Mark Whitley6315ce62000-07-10 22:55:51 +0000518
Matt Kraaibbaef662000-09-27 02:43:35 +0000519 cmdfile = xfopen(filename, "r");
Mark Whitley6315ce62000-07-10 22:55:51 +0000520
521 while ((line = get_line_from_file(cmdfile)) != NULL) {
Mark Whitley94074a92000-07-14 00:00:15 +0000522 /* if a line ends with '\' it needs the next line appended to it */
523 while (line[strlen(line)-2] == '\\' &&
524 (nextline = get_line_from_file(cmdfile)) != NULL) {
Matt Kraai322ae932000-09-13 02:46:14 +0000525 line = xrealloc(line, strlen(line) + strlen(nextline) + 1);
Mark Whitley94074a92000-07-14 00:00:15 +0000526 strcat(line, nextline);
Mark Whitley464c5de2000-07-14 23:24:00 +0000527 free(nextline);
Mark Whitley94074a92000-07-14 00:00:15 +0000528 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000529 /* eat trailing newline (if any) --if I don't do this, edit commands
530 * (aic) will print an extra newline */
Matt Kraai05e782d2001-02-01 16:49:30 +0000531 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000532 add_cmd_str(line);
533 free(line);
534 }
535}
536
Eric Andersenc52a6b02001-11-10 10:49:42 +0000537struct pipeline {
538 char *buf;
539 int idx;
540 int len;
541};
542
Eric Andersenb76cb682001-08-22 05:58:16 +0000543#define PIPE_MAGIC 0x7f
544#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000545
546void pipe_putc(struct pipeline *const pipeline, char c)
547{
548 if (pipeline->buf[pipeline->idx] == PIPE_MAGIC) {
549 pipeline->buf =
550 xrealloc(pipeline->buf, pipeline->len + PIPE_GROW);
551 memset(pipeline->buf + pipeline->len, 0, PIPE_GROW);
552 pipeline->len += PIPE_GROW;
553 pipeline->buf[pipeline->len - 1] = PIPE_MAGIC;
554 }
555 pipeline->buf[pipeline->idx++] = (c);
556}
557
558#define pipeputc(c) pipe_putc(pipeline, c)
559
560#if 0
Eric Andersenb76cb682001-08-22 05:58:16 +0000561{ if (pipeline[pipeline_idx] == PIPE_MAGIC) { \
562 pipeline = xrealloc(pipeline, pipeline_len+PIPE_GROW); \
563 memset(pipeline+pipeline_len, 0, PIPE_GROW); \
564 pipeline_len += PIPE_GROW; \
565 pipeline[pipeline_len-1] = PIPE_MAGIC; } \
566 pipeline[pipeline_idx++] = (c); }
Eric Andersenc52a6b02001-11-10 10:49:42 +0000567#endif
Eric Andersenb76cb682001-08-22 05:58:16 +0000568
569static void print_subst_w_backrefs(const char *line, const char *replace,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000570 regmatch_t *regmatch, struct pipeline *const pipeline, int matches)
Mark Whitley97562bd2000-07-17 20:06:42 +0000571{
572 int i;
573
574 /* go through the replacement string */
575 for (i = 0; replace[i]; i++) {
576 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
577 if (replace[i] == '\\' && isdigit(replace[i+1])) {
578 int j;
579 char tmpstr[2];
580 int backref;
581 ++i; /* i now indexes the backref number, instead of the leading slash */
582 tmpstr[0] = replace[i];
583 tmpstr[1] = 0;
584 backref = atoi(tmpstr);
585 /* print out the text held in regmatch[backref] */
Matt Kraaia3e4f452001-08-20 21:21:06 +0000586 if (backref <= matches && regmatch[backref].rm_so != -1)
587 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000588 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000589 }
590
Mark Whitley83e85f62000-07-25 20:48:44 +0000591 /* if we find a backslash escaped character, print the character */
592 else if (replace[i] == '\\') {
593 ++i;
Eric Andersenb76cb682001-08-22 05:58:16 +0000594 pipeputc(replace[i]);
Mark Whitley83e85f62000-07-25 20:48:44 +0000595 }
596
Mark Whitley97562bd2000-07-17 20:06:42 +0000597 /* if we find an unescaped '&' print out the whole matched text.
598 * fortunately, regmatch[0] contains the indicies to the whole matched
599 * expression (kinda seems like it was designed for just such a
600 * purpose...) */
601 else if (replace[i] == '&' && replace[i-1] != '\\') {
602 int j;
603 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000604 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000605 }
606 /* nothing special, just print this char of the replacement string to stdout */
607 else
Eric Andersenb76cb682001-08-22 05:58:16 +0000608 pipeputc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000609 }
610}
611
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000612static int do_subst_command(const sed_cmd_t *sed_cmd, char **line)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000613{
Eric Andersenb76cb682001-08-22 05:58:16 +0000614 char *hackline = *line;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000615 struct pipeline thepipe = { NULL, 0 , 0};
616 struct pipeline *const pipeline = &thepipe;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000617 int altered = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000618 regmatch_t *regmatch = NULL;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000619
Mark Whitley2dc192f2000-11-03 19:47:00 +0000620 /* we only proceed if the substitution 'search' expression matches */
Eric Andersenb76cb682001-08-22 05:58:16 +0000621 if (regexec(sed_cmd->sub_match, hackline, 0, NULL, 0) == REG_NOMATCH)
Mark Whitley2dc192f2000-11-03 19:47:00 +0000622 return 0;
623
624 /* whaddaya know, it matched. get the number of back references */
625 regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
626
Eric Andersenb76cb682001-08-22 05:58:16 +0000627 /* allocate more PIPE_GROW bytes
628 if replaced string is larger than original */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000629 thepipe.len = strlen(hackline)+PIPE_GROW;
630 thepipe.buf = xcalloc(1, thepipe.len);
Eric Andersenb76cb682001-08-22 05:58:16 +0000631 /* buffer magic */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000632 thepipe.buf[thepipe.len-1] = PIPE_MAGIC;
Eric Andersenb76cb682001-08-22 05:58:16 +0000633
Mark Whitley2dc192f2000-11-03 19:47:00 +0000634 /* and now, as long as we've got a line to try matching and if we can match
635 * the search string, we make substitutions */
Matt Kraai8470b9a2001-10-23 21:12:07 +0000636 while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline,
637 sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000638 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000639
Mark Whitley2dc192f2000-11-03 19:47:00 +0000640 /* print everything before the match */
641 for (i = 0; i < regmatch[0].rm_so; i++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000642 pipeputc(hackline[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000643
Mark Whitley2dc192f2000-11-03 19:47:00 +0000644 /* then print the substitution string */
Eric Andersenb76cb682001-08-22 05:58:16 +0000645 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000646 pipeline, sed_cmd->num_backrefs);
Mark Whitley97562bd2000-07-17 20:06:42 +0000647
Mark Whitley2dc192f2000-11-03 19:47:00 +0000648 /* advance past the match */
649 hackline += regmatch[0].rm_eo;
650 /* flag that something has changed */
651 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000652
Mark Whitley2dc192f2000-11-03 19:47:00 +0000653 /* if we're not doing this globally, get out now */
654 if (!sed_cmd->sub_g)
655 break;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000656 }
657
Eric Andersenb76cb682001-08-22 05:58:16 +0000658 for (; *hackline; hackline++) pipeputc(*hackline);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000659 if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) thepipe.buf[thepipe.idx] = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000660
661 /* cleanup */
662 free(regmatch);
663
Eric Andersenb76cb682001-08-22 05:58:16 +0000664 free(*line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000665 *line = thepipe.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000666 return altered;
667}
Mark Whitley6315ce62000-07-10 22:55:51 +0000668
Mark Whitley6315ce62000-07-10 22:55:51 +0000669
670static void process_file(FILE *file)
671{
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000672 char *line;
Mark Whitley6315ce62000-07-10 22:55:51 +0000673 static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
674 unsigned int still_in_range = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000675 int altered;
Mark Whitley6315ce62000-07-10 22:55:51 +0000676 int i;
677
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000678 line = get_line_from_file(file);
679 if (line == NULL) {
680 return;
681 }
682
Mark Whitley6315ce62000-07-10 22:55:51 +0000683 /* go through every line in the file */
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000684 do {
685 char *next_line;
686
687 /* Read one line in advance so we can act on the last line, the '$' address */
688 next_line = get_line_from_file(file);
Mark Whitley6315ce62000-07-10 22:55:51 +0000689
Mark Whitley9de26592001-05-14 19:44:44 +0000690 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000691 linenum++;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000692 altered = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000693
694 /* for every line, go through all the commands */
695 for (i = 0; i < ncmds; i++) {
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000696 sed_cmd_t *sed_cmd = sed_cmds[i];
Robert Griebl47abc492002-06-11 23:43:27 +0000697 int deleted = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000698
699 /*
700 * entry point into sedding...
701 */
Robert Griebl47abc492002-06-11 23:43:27 +0000702 int matched = (
Matt Kraai02c40a72001-06-21 13:57:51 +0000703 /* no range necessary */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000704 (sed_cmd->beg_line == 0 && sed_cmd->end_line == 0 &&
705 sed_cmd->beg_match == NULL &&
706 sed_cmd->end_match == NULL) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000707 /* this line number is the first address we're looking for */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000708 (sed_cmd->beg_line && (sed_cmd->beg_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000709 /* this line matches our first address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000710 (sed_cmd->beg_match && (regexec(sed_cmd->beg_match, line, 0, NULL, 0) == 0)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000711 /* we are currently within the beginning & ending address range */
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000712 still_in_range || ((sed_cmd->beg_line == -1) && (next_line == NULL))
Robert Griebl47abc492002-06-11 23:43:27 +0000713 );
714
715 if (sed_cmd->invert ^ matched) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000716
717 /*
718 * actual sedding
719 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000720 switch (sed_cmd->cmd) {
Glenn L McGrath0a65e192002-12-23 10:16:12 +0000721 case '=':
722 printf("%d\n", linenum);
723 break;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000724 case 'p':
725 puts(line);
726 break;
727
728 case 'd':
729 altered++;
Matt Kraai5c69cd82002-04-01 16:17:37 +0000730 deleted = 1;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000731 break;
732
733 case 's':
734
735 /*
736 * Some special cases for 's' printing to make it compliant with
737 * GNU sed printing behavior (aka "The -n | s///p Matrix"):
738 *
739 * -n ONLY = never print anything regardless of any successful
740 * substitution
741 *
742 * s///p ONLY = always print successful substitutions, even if
743 * the line is going to be printed anyway (line will be printed
744 * twice).
745 *
746 * -n AND s///p = print ONLY a successful substitution ONE TIME;
747 * no other lines are printed - this is the reason why the 'p'
748 * flag exists in the first place.
749 */
750
751 /* if the user specified that they didn't want anything printed (i.e., a -n
752 * flag and no 'p' flag after the s///), then there's really no point doing
753 * anything here. */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000754 if (be_quiet && !sed_cmd->sub_p)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000755 break;
756
757 /* we print the line once, unless we were told to be quiet */
758 if (!be_quiet)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000759 altered |= do_subst_command(sed_cmd, &line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000760
761 /* we also print the line if we were given the 'p' flag
762 * (this is quite possibly the second printing) */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000763 if (sed_cmd->sub_p)
764 altered |= do_subst_command(sed_cmd, &line);
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000765 if (altered && (i+1 >= ncmds || sed_cmds[i+1]->cmd != 's'))
Eric Andersenb76cb682001-08-22 05:58:16 +0000766 puts(line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000767
768 break;
769
770 case 'a':
771 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000772 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000773 altered++;
774 break;
775
776 case 'i':
Eric Andersenc52a6b02001-11-10 10:49:42 +0000777 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000778 break;
779
780 case 'c':
781 /* single-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000782 if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000783 /* multi-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000784 /* - matching text */
785 || (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
786 /* - matching line numbers */
787 || (sed_cmd->end_line > 0 && sed_cmd->end_line == linenum))
788 {
789 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000790 }
791 altered++;
792
793 break;
794
795 case 'r': {
796 FILE *outfile;
797 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000798 outfile = fopen(sed_cmd->filename, "r");
Mark Whitley0915c4b2001-06-11 23:50:06 +0000799 if (outfile)
800 print_file(outfile);
801 /* else if we couldn't open the output file,
802 * no biggie, just don't print anything */
803 altered++;
Robert Griebl47abc492002-06-11 23:43:27 +0000804 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000805 break;
806 }
Robert Griebl47abc492002-06-11 23:43:27 +0000807 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000808
Robert Griebl47abc492002-06-11 23:43:27 +0000809 /*
810 * exit point from sedding...
811 */
812 if (matched) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000813 if (
814 /* this is a single-address command or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000815 (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) || (
Mark Whitley0915c4b2001-06-11 23:50:06 +0000816 /* we were in the middle of our address range (this
817 * isn't the first time through) and.. */
818 (still_in_range == 1) && (
819 /* this line number is the last address we're looking for or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000820 (sed_cmd->end_line && (sed_cmd->end_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000821 /* this line matches our last address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000822 (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
Mark Whitley0915c4b2001-06-11 23:50:06 +0000823 )
824 )
825 ) {
826 /* we're out of our address range */
827 still_in_range = 0;
828 }
829
830 /* didn't hit the exit? then we're still in the middle of an address range */
831 else {
832 still_in_range = 1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000833 }
834 }
Robert Griebl47abc492002-06-11 23:43:27 +0000835
836 if (deleted)
837 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000838 }
Erik Andersen1266a131999-12-29 22:19:46 +0000839
Mark Whitley2dc192f2000-11-03 19:47:00 +0000840 /* we will print the line unless we were told to be quiet or if the
841 * line was altered (via a 'd'elete or 's'ubstitution), in which case
842 * the altered line was already printed */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000843 if (!be_quiet && !altered)
Mark Whitleydd527d32001-05-14 19:53:08 +0000844 puts(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000845
846 free(line);
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000847 line = next_line;
848 } while (line);
Erik Andersen1266a131999-12-29 22:19:46 +0000849}
850
851extern int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000852{
Matt Kraaia5f09c62001-11-12 16:44:55 +0000853 int opt, status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000854
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000855#ifdef CONFIG_FEATURE_CLEAN_UP
Mark Whitley858c1ad2000-07-11 21:38:47 +0000856 /* destroy command strings on exit */
Matt Kraaia9819b22000-12-22 01:48:07 +0000857 if (atexit(destroy_cmd_strs) == -1)
858 perror_msg_and_die("atexit");
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000859#endif
Mark Whitley858c1ad2000-07-11 21:38:47 +0000860
Mark Whitley6315ce62000-07-10 22:55:51 +0000861 /* do normal option parsing */
Eric Andersenb50da532001-02-17 16:52:35 +0000862 while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000863 switch (opt) {
Erik Andersene916d242000-03-06 19:20:35 +0000864 case 'n':
Mark Whitley6315ce62000-07-10 22:55:51 +0000865 be_quiet++;
Erik Andersene916d242000-03-06 19:20:35 +0000866 break;
867 case 'e':
Mark Whitley6315ce62000-07-10 22:55:51 +0000868 add_cmd_str(optarg);
Erik Andersene916d242000-03-06 19:20:35 +0000869 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000870 case 'f':
871 load_cmd_file(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000872 break;
Eric Andersenb50da532001-02-17 16:52:35 +0000873 default:
874 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000875 }
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000876 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000877
878 /* if we didn't get a pattern from a -e and no command file was specified,
879 * argv[optind] should be the pattern. no pattern, no worky */
880 if (ncmds == 0) {
881 if (argv[optind] == NULL)
Eric Andersen67991cf2001-02-14 21:23:06 +0000882 show_usage();
Mark Whitley6315ce62000-07-10 22:55:51 +0000883 else {
884 add_cmd_str(argv[optind]);
885 optind++;
886 }
887 }
888
Mark Whitley6315ce62000-07-10 22:55:51 +0000889 /* argv[(optind)..(argc-1)] should be names of file to process. If no
890 * files were specified or '-' was specified, take input from stdin.
891 * Otherwise, we process all the files specified. */
892 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
893 process_file(stdin);
894 }
895 else {
896 int i;
897 FILE *file;
898 for (i = optind; i < argc; i++) {
Eric Andersen9c6b5fc2001-11-17 07:23:46 +0000899 file = wfopen(argv[i], "r");
900 if (file) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000901 process_file(file);
902 fclose(file);
Matt Kraaia5f09c62001-11-12 16:44:55 +0000903 } else
904 status = EXIT_FAILURE;
Mark Whitley6315ce62000-07-10 22:55:51 +0000905 }
906 }
907
Matt Kraaia5f09c62001-11-12 16:44:55 +0000908 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000909}