blob: 665471913d72f03fdedb2b1e664d1eab2024286d [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 *
Erik Andersen61677fe2000-04-13 01:18:56 +00004 * Copyright (C) 1999,2000 by Lineo, inc.
Mark Whitley6315ce62000-07-10 22:55:51 +00005 * Written by Mark Whitley <markw@lineo.com>, <markw@enol.com>
Erik Andersen1266a131999-12-29 22:19:46 +00006 *
Eric Andersen6b6b3f61999-10-28 16:06:25 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Mark Whitley6315ce62000-07-10 22:55:51 +000023/*
24 Supported features and commands in this version of sed:
25
26 - comments ('#')
Mark Whitley94074a92000-07-14 00:00:15 +000027 - address matching: num|/matchstr/[,num|/matchstr/|$]command
28 - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags)
29 - edit commands: (a)ppend, (i)nsert, (c)hange
Mark Whitley97562bd2000-07-17 20:06:42 +000030 - backreferences in substitution expressions (\1, \2...\9)
Mark Whitley6315ce62000-07-10 22:55:51 +000031
32 (Note: Specifying an address (range) to match is *optional*; commands
33 default to the whole pattern space if no specific address match was
34 requested.)
35
36 Unsupported features:
37
38 - transliteration (y/source-chars/dest-chars/) (use 'tr')
39 - no support for characters other than the '/' character for regex matches
40 - no pattern space hold space storing / swapping (x, etc.)
41 - no labels / branching (: label, b, t, and friends)
42 - and lots, lots more.
43
44*/
45
Eric Andersen6b6b3f61999-10-28 16:06:25 +000046#include <stdio.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000047#include <stdlib.h> /* for realloc() */
48#include <unistd.h> /* for getopt() */
49#include <regex.h>
50#include <string.h> /* for strdup() */
Eric Andersen6b6b3f61999-10-28 16:06:25 +000051#include <errno.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000052#include <ctype.h> /* for isspace() */
53#include "internal.h"
54
Pavel Roskin9c5fcc32000-07-17 23:45:12 +000055#define bb_need_full_version
56#define BB_DECLARE_EXTERN
57#include "messages.c"
Mark Whitley6315ce62000-07-10 22:55:51 +000058
59/* externs */
60extern int optind; /* in unistd.h */
61extern char *optarg; /* ditto */
62
63/* options */
64static int be_quiet = 0;
65
66struct sed_cmd {
67
68 /* address storage */
69 int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */
70 int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
71 regex_t *beg_match; /* sed -e '/match/cmd' */
72 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
73
74 /* the command */
75 char cmd; /* p,d,s (add more at your leisure :-) */
76
77 /* substitution command specific fields */
78 regex_t *sub_match; /* sed -e 's/sub_match/replace/' */
79 char *replace; /* sed -e 's/sub_match/replace/' XXX: who will hold the \1 \2 \3s? */
Mark Whitley97562bd2000-07-17 20:06:42 +000080 unsigned int num_backrefs:4; /* how many back references (\1..\9) */
81 /* Note: GNU/POSIX sed does not save more than nine backrefs, so
82 * we only use 4 bits to hold the number */
Mark Whitley6315ce62000-07-10 22:55:51 +000083 unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */
Mark Whitley94074a92000-07-14 00:00:15 +000084
85 /* edit command (a,i,c) speicific field */
86 char *editline;
Mark Whitley6315ce62000-07-10 22:55:51 +000087};
88
89/* globals */
90static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
91static int ncmds = 0; /* number of sed commands */
92
93/*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
Eric Andersen6b6b3f61999-10-28 16:06:25 +000094
Eric Andersenb040d4f2000-07-25 18:01:20 +000095#ifdef BB_FEATURE_CLEAN_UP
Mark Whitley6315ce62000-07-10 22:55:51 +000096static void destroy_cmd_strs()
97{
98 if (sed_cmds == NULL)
99 return;
100
101 /* destroy all the elements in the array */
102 while (--ncmds >= 0) {
103
104 if (sed_cmds[ncmds].beg_match) {
105 regfree(sed_cmds[ncmds].beg_match);
106 free(sed_cmds[ncmds].beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000107 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000108 if (sed_cmds[ncmds].end_match) {
109 regfree(sed_cmds[ncmds].end_match);
110 free(sed_cmds[ncmds].end_match);
111 }
112 if (sed_cmds[ncmds].sub_match) {
113 regfree(sed_cmds[ncmds].sub_match);
114 free(sed_cmds[ncmds].sub_match);
115 }
116 if (sed_cmds[ncmds].replace)
117 free(sed_cmds[ncmds].replace);
118 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000119
Mark Whitley6315ce62000-07-10 22:55:51 +0000120 /* destroy the array */
121 free(sed_cmds);
122 sed_cmds = NULL;
123}
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000124#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000125
Mark Whitley70705d72000-07-14 19:06:30 +0000126#if 0
Mark Whitley6315ce62000-07-10 22:55:51 +0000127/*
128 * trim_str - trims leading and trailing space from a string
129 *
130 * Note: This returns a malloc'ed string so you must store and free it
131 * XXX: This should be in the utility.c file.
Mark Whitley70705d72000-07-14 19:06:30 +0000132 * XXX: This is now obsolete. Maybe it belongs nowhere.
Mark Whitley6315ce62000-07-10 22:55:51 +0000133 */
134static char *trim_str(const char *str)
135{
136 int i;
137 char *retstr = strdup(str);
138
139 /* trim leading whitespace */
140 memmove(retstr, &retstr[strspn(retstr, " \n\t\v")], strlen(retstr));
141
142 /* trim trailing whitespace */
143 i = strlen(retstr) - 1;
144 while (isspace(retstr[i]))
145 i--;
146 retstr[++i] = 0;
147
148 /* Aside:
149 *
150 * you know, a strrspn() would really be nice cuz then we could say:
151 *
Mark Whitley70705d72000-07-14 19:06:30 +0000152 * retstr[strrspn(retstr, " \n\t\v") + 1] = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000153 */
154
155 return retstr;
156}
Mark Whitley70705d72000-07-14 19:06:30 +0000157#endif
158
159#if 0
160/*
161 * strrspn - works just like strspn() but goes from right to left instead of
162 * left to right
163 */
164static size_t strrspn(const char *s, const char *accept)
165{
166 size_t i = strlen(s);
167
168 while (strchr(accept, s[--i]))
169 ;
170
171 return i;
172}
173#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000174
175/*
Mark Whitley97562bd2000-07-17 20:06:42 +0000176 * index_of_next_unescaped_slash - walks left to right through a string
177 * beginning at a specified index and returns the index of the next forward
178 * slash ('/') not preceeded by a backslash ('\').
Mark Whitley6315ce62000-07-10 22:55:51 +0000179 */
Mark Whitley06f35292000-07-13 19:58:04 +0000180static int index_of_next_unescaped_slash(const char *str, int idx)
Mark Whitley6315ce62000-07-10 22:55:51 +0000181{
Mark Whitley97562bd2000-07-17 20:06:42 +0000182 for ( ; str[idx]; idx++) {
183 if (str[idx] == '/' && str[idx-1] != '\\')
184 return idx;
185 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000186
Mark Whitley97562bd2000-07-17 20:06:42 +0000187 /* if we make it to here, we've hit the end of the string */
188 return -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000189}
190
191/*
192 * returns the index in the string just past where the address ends.
193 */
194static int get_address(const char *str, int *line, regex_t **regex)
195{
196 char *my_str = strdup(str);
197 int idx = 0;
198
199 if (isdigit(my_str[idx])) {
200 do {
201 idx++;
202 } while (isdigit(my_str[idx]));
203 my_str[idx] = 0;
204 *line = atoi(my_str);
Mark Whitley6315ce62000-07-10 22:55:51 +0000205 }
206 else if (my_str[idx] == '$') {
207 *line = -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000208 idx++;
209 }
210 else if (my_str[idx] == '/') {
Mark Whitley97562bd2000-07-17 20:06:42 +0000211 idx = index_of_next_unescaped_slash(my_str, ++idx);
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000212 if (idx == -1)
Matt Kraaibe84cd42000-07-12 17:02:35 +0000213 fatalError("unterminated match expression\n");
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000214 my_str[idx] = '\0';
215 *regex = (regex_t *)xmalloc(sizeof(regex_t));
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000216 xregcomp(*regex, my_str+1, REG_NEWLINE);
Mark Whitley496e33f2000-07-13 22:52:02 +0000217 idx++; /* so it points to the next character after the last '/' */
Mark Whitley6315ce62000-07-10 22:55:51 +0000218 }
219 else {
Matt Kraaid537a952000-07-14 01:51:25 +0000220 errorMsg("get_address: no address found in string\n"
221 "\t(you probably didn't check the string you passed me)\n");
Mark Whitley6315ce62000-07-10 22:55:51 +0000222 idx = -1;
223 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000224
Mark Whitley6315ce62000-07-10 22:55:51 +0000225 free(my_str);
226 return idx;
227}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000228
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000229static char *strdup_substr(const char *str, int start, int end)
230{
231 int size = end - start + 1;
232 char *newstr = xmalloc(size);
233 memcpy(newstr, str+start, size-1);
234 newstr[size-1] = '\0';
235 return newstr;
236}
237
Mark Whitley70705d72000-07-14 19:06:30 +0000238static int parse_subst_cmd(struct sed_cmd *sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000239{
240 int oldidx, cflags = REG_NEWLINE;
241 char *match;
242 int idx = 0;
Mark Whitley97562bd2000-07-17 20:06:42 +0000243 int j;
Mark Whitley06f35292000-07-13 19:58:04 +0000244
245 /*
246 * the string that gets passed to this function should look like this:
247 * s/match/replace/gI
248 * || | ||
249 * mandatory optional
250 *
251 * (all three of the '/' slashes are mandatory)
252 */
253
254 /* verify that the 's' is followed by a 'slash' */
255 if (substr[++idx] != '/')
256 fatalError("bad format in substitution expression\n");
257
258 /* save the match string */
259 oldidx = idx+1;
Mark Whitley97562bd2000-07-17 20:06:42 +0000260 idx = index_of_next_unescaped_slash(substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000261 if (idx == -1)
262 fatalError("bad format in substitution expression\n");
263 match = strdup_substr(substr, oldidx, idx);
264
Mark Whitley97562bd2000-07-17 20:06:42 +0000265 /* determine the number of back references in the match string */
266 /* Note: we compute this here rather than in the do_subst_command()
267 * function to save processor time, at the expense of a little more memory
268 * (4 bits) per sed_cmd */
269
270 /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */
271 for (j = 0; match[j]; j++) {
272 /* GNU/POSIX sed does not save more than nine backrefs */
273 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs < 9)
274 sed_cmd->num_backrefs++;
275 }
276
Mark Whitley06f35292000-07-13 19:58:04 +0000277 /* save the replacement string */
278 oldidx = idx+1;
Mark Whitley97562bd2000-07-17 20:06:42 +0000279 idx = index_of_next_unescaped_slash(substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000280 if (idx == -1)
281 fatalError("bad format in substitution expression\n");
282 sed_cmd->replace = strdup_substr(substr, oldidx, idx);
283
284 /* process the flags */
285 while (substr[++idx]) {
286 switch (substr[idx]) {
Mark Whitley70705d72000-07-14 19:06:30 +0000287 case 'g':
288 sed_cmd->sub_g = 1;
289 break;
290 case 'I':
291 cflags |= REG_ICASE;
292 break;
293 default:
294 /* any whitespace or semicolon trailing after a s/// is ok */
295 if (strchr("; \t\v\n\r", substr[idx]))
296 goto out;
297 /* else */
298 fatalError("bad option in substitution expression\n");
Mark Whitley06f35292000-07-13 19:58:04 +0000299 }
300 }
Mark Whitley70705d72000-07-14 19:06:30 +0000301
302out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000303 /* compile the match string into a regex */
Mark Whitley06f35292000-07-13 19:58:04 +0000304 sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
305 xregcomp(sed_cmd->sub_match, match, cflags);
306 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000307
308 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000309}
310
Mark Whitley70705d72000-07-14 19:06:30 +0000311static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr)
Mark Whitley94074a92000-07-14 00:00:15 +0000312{
313 int idx = 0;
Mark Whitley464c5de2000-07-14 23:24:00 +0000314 int slashes_eaten = 0;
Mark Whitley94074a92000-07-14 00:00:15 +0000315 char *ptr; /* shorthand */
316
317 /*
318 * the string that gets passed to this function should look like this:
319 *
320 * need one of these
321 * |
322 * | this backslash (immediately following the edit command) is mandatory
323 * | |
324 * [aic]\
325 * TEXT1\
326 * TEXT2\
327 * TEXTN
328 *
329 * as soon as we hit a TEXT line that has no trailing '\', we're done.
330 * this means a command like:
331 *
332 * i\
333 * INSERTME
334 *
335 * is a-ok.
336 *
337 */
338
339 if (editstr[1] != '\\' && (editstr[2] != '\n' || editstr[2] != '\r'))
340 fatalError("bad format in edit expression\n");
341
342 /* store the edit line text */
Mark Whitley34623db2000-07-14 00:49:59 +0000343 /* make editline big enough to accomodate the extra '\n' we will tack on
344 * to the end */
345 sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2);
346 strcpy(sed_cmd->editline, &editstr[3]);
Mark Whitley94074a92000-07-14 00:00:15 +0000347 ptr = sed_cmd->editline;
348
349 /* now we need to go through * and: s/\\[\r\n]$/\n/g on the edit line */
350 while (ptr[idx]) {
351 while (ptr[idx] != '\\' && (ptr[idx+1] != '\n' || ptr[idx+1] != '\r')) {
352 idx++;
353 if (!ptr[idx]) {
Mark Whitley464c5de2000-07-14 23:24:00 +0000354 goto out;
Mark Whitley94074a92000-07-14 00:00:15 +0000355 }
356 }
357 /* move the newline over the '\' before it (effectively eats the '\') */
358 memmove(&ptr[idx], &ptr[idx+1], strlen(&ptr[idx+1]));
359 ptr[strlen(ptr)-1] = 0;
Mark Whitley464c5de2000-07-14 23:24:00 +0000360 slashes_eaten++;
Mark Whitley94074a92000-07-14 00:00:15 +0000361 /* substitue \r for \n if needed */
362 if (ptr[idx] == '\r')
363 ptr[idx] = '\n';
364 }
Mark Whitley70705d72000-07-14 19:06:30 +0000365
Mark Whitley464c5de2000-07-14 23:24:00 +0000366out:
367 ptr[idx] = '\n';
368 ptr[idx+1] = 0;
369
370 /* this accounts for discrepancies between the modified string and the
371 * original string passed in to this function */
372 idx += slashes_eaten;
373
374 /* this accounts for the fact that A) we started at index 3, not at index
375 * 0 and B) that we added an extra '\n' at the end (if you think the next
376 * line should read 'idx += 4' remember, arrays are zero-based) */
377
378 idx += 3;
379
Mark Whitley70705d72000-07-14 19:06:30 +0000380 return idx;
Mark Whitley94074a92000-07-14 00:00:15 +0000381}
382
Mark Whitley70705d72000-07-14 19:06:30 +0000383static char *parse_cmd_str(struct sed_cmd *sed_cmd, const char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000384{
385 int idx = 0;
386
387 /* parse the command
388 * format is: [addr][,addr]cmd
389 * |----||-----||-|
390 * part1 part2 part3
391 */
392
Mark Whitley70705d72000-07-14 19:06:30 +0000393
Mark Whitley6315ce62000-07-10 22:55:51 +0000394 /* first part (if present) is an address: either a number or a /regex/ */
395 if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/')
396 idx = get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
397
398 /* second part (if present) will begin with a comma */
399 if (cmdstr[idx] == ',')
400 idx += get_address(&cmdstr[++idx], &sed_cmd->end_line, &sed_cmd->end_match);
401
402 /* last part (mandatory) will be a command */
403 if (cmdstr[idx] == '\0')
Matt Kraaibe84cd42000-07-12 17:02:35 +0000404 fatalError("missing command\n");
Mark Whitley94074a92000-07-14 00:00:15 +0000405 if (!strchr("pdsaic", cmdstr[idx])) /* <-- XXX add new commands here */
Matt Kraaibe84cd42000-07-12 17:02:35 +0000406 fatalError("invalid command\n");
Mark Whitley6315ce62000-07-10 22:55:51 +0000407 sed_cmd->cmd = cmdstr[idx];
Mark Whitley6315ce62000-07-10 22:55:51 +0000408
Mark Whitley06f35292000-07-13 19:58:04 +0000409 /* special-case handling for (s)ubstitution */
Mark Whitley70705d72000-07-14 19:06:30 +0000410 if (sed_cmd->cmd == 's') {
411 idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]);
412 }
Mark Whitley94074a92000-07-14 00:00:15 +0000413 /* special-case handling for (a)ppend, (i)nsert, and (c)hange */
Mark Whitley70705d72000-07-14 19:06:30 +0000414 else if (strchr("aic", cmdstr[idx])) {
Mark Whitley02008342000-07-14 00:13:52 +0000415 if (sed_cmd->end_line || sed_cmd->end_match)
416 fatalError("only a beginning address can be specified for edit commands\n");
Mark Whitley70705d72000-07-14 19:06:30 +0000417 idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]);
Mark Whitley02008342000-07-14 00:13:52 +0000418 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000419 /* if it was a single-letter command (such as 'p' or 'd') we need to
420 * increment the index past that command */
421 else
422 idx++;
Mark Whitley70705d72000-07-14 19:06:30 +0000423
424 /* give back whatever's left over */
Mark Whitley464c5de2000-07-14 23:24:00 +0000425 return (char *)&cmdstr[idx];
Eric Andersen50d63601999-11-09 01:47:36 +0000426}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000427
Mark Whitley6315ce62000-07-10 22:55:51 +0000428static void add_cmd_str(const char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000429{
Mark Whitley70705d72000-07-14 19:06:30 +0000430 char *mystr = (char *)cmdstr;
Erik Andersen1266a131999-12-29 22:19:46 +0000431
Mark Whitley70705d72000-07-14 19:06:30 +0000432 do {
Mark Whitley6315ce62000-07-10 22:55:51 +0000433
Mark Whitley70705d72000-07-14 19:06:30 +0000434 /* trim leading whitespace and semicolons */
435 memmove(mystr, &mystr[strspn(mystr, "; \n\r\t\v")], strlen(mystr));
436 /* if we ate the whole thing, that means there was just trailing
Mark Whitley464c5de2000-07-14 23:24:00 +0000437 * whitespace or a final / no-op semicolon. either way, get out */
Mark Whitley70705d72000-07-14 19:06:30 +0000438 if (strlen(mystr) == 0)
439 return;
440 /* if this is a comment, jump past it and keep going */
441 if (mystr[0] == '#') {
442 mystr = strpbrk(mystr, ";\n\r");
443 continue;
444 }
445 /* grow the array */
446 sed_cmds = realloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds));
447 /* zero new element */
448 memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd));
449 /* load command string into new array element, get remainder */
450 mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr);
451
Mark Whitley464c5de2000-07-14 23:24:00 +0000452 } while (mystr && strlen(mystr));
Mark Whitley6315ce62000-07-10 22:55:51 +0000453}
454
455
456static void load_cmd_file(char *filename)
457{
458 FILE *cmdfile;
459 char *line;
Mark Whitley94074a92000-07-14 00:00:15 +0000460 char *nextline;
Mark Whitley6315ce62000-07-10 22:55:51 +0000461
462 cmdfile = fopen(filename, "r");
463 if (cmdfile == NULL)
Mark Whitley858c1ad2000-07-11 21:38:47 +0000464 fatalError(strerror(errno));
Mark Whitley6315ce62000-07-10 22:55:51 +0000465
466 while ((line = get_line_from_file(cmdfile)) != NULL) {
Mark Whitley94074a92000-07-14 00:00:15 +0000467 /* if a line ends with '\' it needs the next line appended to it */
468 while (line[strlen(line)-2] == '\\' &&
469 (nextline = get_line_from_file(cmdfile)) != NULL) {
470 line = realloc(line, strlen(line) + strlen(nextline) + 1);
471 strcat(line, nextline);
Mark Whitley464c5de2000-07-14 23:24:00 +0000472 free(nextline);
Mark Whitley94074a92000-07-14 00:00:15 +0000473 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000474 /* eat trailing newline (if any) --if I don't do this, edit commands
475 * (aic) will print an extra newline */
476 if (line[strlen(line)-1] == '\n')
477 line[strlen(line)-1] = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000478 add_cmd_str(line);
479 free(line);
480 }
481}
482
Mark Whitley97562bd2000-07-17 20:06:42 +0000483static void print_subst_w_backrefs(const char *line, const char *replace, regmatch_t *regmatch)
484{
485 int i;
486
487 /* go through the replacement string */
488 for (i = 0; replace[i]; i++) {
489 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
490 if (replace[i] == '\\' && isdigit(replace[i+1])) {
491 int j;
492 char tmpstr[2];
493 int backref;
494 ++i; /* i now indexes the backref number, instead of the leading slash */
495 tmpstr[0] = replace[i];
496 tmpstr[1] = 0;
497 backref = atoi(tmpstr);
498 /* print out the text held in regmatch[backref] */
499 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
500 fputc(line[j], stdout);
501 }
502
Mark Whitley83e85f62000-07-25 20:48:44 +0000503 /* if we find a backslash escaped character, print the character */
504 else if (replace[i] == '\\') {
505 ++i;
506 fputc(replace[i], stdout);
507 }
508
Mark Whitley97562bd2000-07-17 20:06:42 +0000509 /* if we find an unescaped '&' print out the whole matched text.
510 * fortunately, regmatch[0] contains the indicies to the whole matched
511 * expression (kinda seems like it was designed for just such a
512 * purpose...) */
513 else if (replace[i] == '&' && replace[i-1] != '\\') {
514 int j;
515 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
516 fputc(line[j], stdout);
517 }
518 /* nothing special, just print this char of the replacement string to stdout */
519 else
520 fputc(replace[i], stdout);
521 }
522}
523
Mark Whitley4f7fe772000-07-13 20:01:58 +0000524static int do_subst_command(const struct sed_cmd *sed_cmd, const char *line)
525{
526 int altered = 0;
527
528 /* we only substitute if the substitution 'search' expression matches */
529 if (regexec(sed_cmd->sub_match, line, 0, NULL, 0) == 0) {
Mark Whitley97562bd2000-07-17 20:06:42 +0000530 regmatch_t *regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
Mark Whitley4f7fe772000-07-13 20:01:58 +0000531 int i;
532 char *ptr = (char *)line;
533
534 while (*ptr) {
535 /* if we can match the search string... */
Mark Whitley97562bd2000-07-17 20:06:42 +0000536 if (regexec(sed_cmd->sub_match, ptr, sed_cmd->num_backrefs+1, regmatch, 0) == 0) {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000537 /* print everything before the match, */
Mark Whitley97562bd2000-07-17 20:06:42 +0000538 for (i = 0; i < regmatch[0].rm_so; i++)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000539 fputc(ptr[i], stdout);
Mark Whitley97562bd2000-07-17 20:06:42 +0000540
Mark Whitley4f7fe772000-07-13 20:01:58 +0000541 /* then print the substitution in its place */
Mark Whitley97562bd2000-07-17 20:06:42 +0000542 print_subst_w_backrefs(ptr, sed_cmd->replace, regmatch);
543
Mark Whitley4f7fe772000-07-13 20:01:58 +0000544 /* then advance past the match */
Mark Whitley97562bd2000-07-17 20:06:42 +0000545 ptr += regmatch[0].rm_eo;
546
Mark Whitley94074a92000-07-14 00:00:15 +0000547 /* and flag that something has changed */
Mark Whitley4f7fe772000-07-13 20:01:58 +0000548 altered++;
549
550 /* if we're not doing this globally... */
551 if (!sed_cmd->sub_g)
552 break;
553 }
554 /* if we COULD NOT match the search string (meaning we've gone past
555 * all previous instances), get out */
556 else
557 break;
558 }
559
560 /* is there anything left to print? */
561 if (*ptr)
562 fputs(ptr, stdout);
Mark Whitley97562bd2000-07-17 20:06:42 +0000563
564 /* cleanup */
565 free(regmatch);
Mark Whitley4f7fe772000-07-13 20:01:58 +0000566 }
567
568 return altered;
569}
Mark Whitley6315ce62000-07-10 22:55:51 +0000570
571static int do_sed_command(const struct sed_cmd *sed_cmd, const char *line)
572{
573 int altered = 0;
574
575 switch (sed_cmd->cmd) {
576
577 case 'p':
578 fputs(line, stdout);
579 break;
580
581 case 'd':
582 altered++;
583 break;
584
Mark Whitley4f7fe772000-07-13 20:01:58 +0000585 case 's':
586 altered = do_subst_command(sed_cmd, line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000587 break;
Mark Whitley94074a92000-07-14 00:00:15 +0000588
589 case 'a':
590 fputs(line, stdout);
591 fputs(sed_cmd->editline, stdout);
592 altered++;
593 break;
594
595 case 'i':
596 fputs(sed_cmd->editline, stdout);
597 break;
598
599 case 'c':
600 fputs(sed_cmd->editline, stdout);
601 altered++;
602 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000603 }
604
605 return altered;
606}
607
608static void process_file(FILE *file)
609{
610 char *line = NULL;
611 static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
612 unsigned int still_in_range = 0;
613 int line_altered;
614 int i;
615
616 /* go through every line in the file */
617 while ((line = get_line_from_file(file)) != NULL) {
618
619 linenum++;
620 line_altered = 0;
621
622 /* for every line, go through all the commands */
623 for (i = 0; i < ncmds; i++) {
624
625 /* are we acting on a range of matched lines? */
626 if (sed_cmds[i].beg_match && sed_cmds[i].end_match) {
627 if (still_in_range || regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0) {
628 line_altered += do_sed_command(&sed_cmds[i], line);
629 still_in_range = 1;
630 if (regexec(sed_cmds[i].end_match, line, 0, NULL, 0) == 0)
631 still_in_range = 0;
632 }
633 }
634
635 /* are we trying to match a single line? */
636 else if (sed_cmds[i].beg_match) {
637 if (regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0)
638 line_altered += do_sed_command(&sed_cmds[i], line);
639 }
640
641 /* are we acting on a range of line numbers? */
642 else if (sed_cmds[i].beg_line > 0 && sed_cmds[i].end_line > 0) {
643 if (linenum >= sed_cmds[i].beg_line && linenum <= sed_cmds[i].end_line)
644 line_altered += do_sed_command(&sed_cmds[i], line);
645 }
646
647 /* are we acting on a specified line number */
648 else if (sed_cmds[i].beg_line > 0) {
649 if (linenum == sed_cmds[i].beg_line)
650 line_altered += do_sed_command(&sed_cmds[i], line);
651 }
652
653 /* not acting on matches or line numbers. act on every line */
654 else
655 line_altered += do_sed_command(&sed_cmds[i], line);
656
Erik Andersene49d5ec2000-02-08 19:58:47 +0000657 }
Erik Andersen1266a131999-12-29 22:19:46 +0000658
Mark Whitley6315ce62000-07-10 22:55:51 +0000659 /* we will print the line unless we were told to be quiet or if the
660 * line was altered (via a 'd'elete or 's'ubstitution) */
661 if (!be_quiet && !line_altered)
662 fputs(line, stdout);
663
664 free(line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000665 }
Erik Andersen1266a131999-12-29 22:19:46 +0000666}
667
668extern int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000669{
Mark Whitley6315ce62000-07-10 22:55:51 +0000670 int opt;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000671
Eric Andersenb040d4f2000-07-25 18:01:20 +0000672#ifdef BB_FEATURE_CLEAN_UP
Mark Whitley858c1ad2000-07-11 21:38:47 +0000673 /* destroy command strings on exit */
674 if (atexit(destroy_cmd_strs) == -1) {
675 perror("sed");
676 exit(1);
677 }
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000678#endif
Mark Whitley858c1ad2000-07-11 21:38:47 +0000679
Mark Whitley6315ce62000-07-10 22:55:51 +0000680 /* do normal option parsing */
Mark Whitley1f45b262000-07-20 23:08:40 +0000681 while ((opt = getopt(argc, argv, "hne:f:")) > 0) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000682 switch (opt) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000683 case 'h':
684 usage(sed_usage);
685 break;
Erik Andersene916d242000-03-06 19:20:35 +0000686 case 'n':
Mark Whitley6315ce62000-07-10 22:55:51 +0000687 be_quiet++;
Erik Andersene916d242000-03-06 19:20:35 +0000688 break;
689 case 'e':
Mark Whitley6315ce62000-07-10 22:55:51 +0000690 add_cmd_str(optarg);
Erik Andersene916d242000-03-06 19:20:35 +0000691 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000692 case 'f':
693 load_cmd_file(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000694 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000695 }
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000696 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000697
698 /* if we didn't get a pattern from a -e and no command file was specified,
699 * argv[optind] should be the pattern. no pattern, no worky */
700 if (ncmds == 0) {
701 if (argv[optind] == NULL)
702 usage(sed_usage);
703 else {
704 add_cmd_str(argv[optind]);
705 optind++;
706 }
707 }
708
709
710 /* argv[(optind)..(argc-1)] should be names of file to process. If no
711 * files were specified or '-' was specified, take input from stdin.
712 * Otherwise, we process all the files specified. */
713 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
714 process_file(stdin);
715 }
716 else {
717 int i;
718 FILE *file;
719 for (i = optind; i < argc; i++) {
720 file = fopen(argv[i], "r");
721 if (file == NULL) {
Matt Kraaid537a952000-07-14 01:51:25 +0000722 errorMsg("%s: %s\n", argv[i], strerror(errno));
Mark Whitley6315ce62000-07-10 22:55:51 +0000723 } else {
724 process_file(file);
725 fclose(file);
726 }
727 }
728 }
729
Mark Whitley6315ce62000-07-10 22:55:51 +0000730 return 0;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000731}