* editors/sed.c (parse_cmd_str): Remove redundant code to skip initial
[oweals/busybox.git] / editors / sed.c
1 /*
2  * sed.c - very minimalist version of sed
3  *
4  * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
5  * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
6  * Copyright (C) 2002  Matt Kraai
7  *
8  * 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
24 /*
25         Supported features and commands in this version of sed:
26
27          - comments ('#')
28          - 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
31          - file commands: (r)ead
32          - backreferences in substitution expressions (\1, \2...\9)
33          
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')
41          - no pattern space hold space storing / swapping (x, etc.)
42          - no labels / branching (: label, b, t, and friends)
43          - and lots, lots more.
44 */
45
46 #include <stdio.h>
47 #include <unistd.h> /* for getopt() */
48 #include <regex.h>
49 #include <string.h> /* for strdup() */
50 #include <errno.h>
51 #include <ctype.h> /* for isspace() */
52 #include <stdlib.h>
53 #include "busybox.h"
54
55 /* externs */
56 extern void xregcomp(regex_t *preg, const char *regex, int cflags);
57 extern int optind; /* in unistd.h */
58 extern char *optarg; /* ditto */
59
60 /* options */
61 static int be_quiet = 0;
62
63
64 struct sed_cmd {
65         /* Order by alignment requirements */
66
67         /* address storage */
68         regex_t *beg_match; /* sed -e '/match/cmd' */
69         regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
70
71         /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
72
73         /* sed -e 's/sub_match/replace/' */
74         regex_t *sub_match;
75         char *replace;
76
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
88         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 */
91         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) */
93
94         /* GENERAL FIELDS */
95         char delimiter;     /* The delimiter used to separate regexps */
96
97         /* the command */
98         char cmd; /* p,d,s (add more at your leisure :-) */
99 };
100
101 /* globals */
102 static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
103 static int ncmds = 0; /* number of sed commands */
104
105 /*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
106
107 const char * const semicolon_whitespace = "; \n\r\t\v\0";
108
109 #ifdef CONFIG_FEATURE_CLEAN_UP
110 static void destroy_cmd_strs(void)
111 {
112         if (sed_cmds == NULL)
113                 return;
114
115         /* destroy all the elements in the array */
116         while (--ncmds >= 0) {
117
118                 if (sed_cmds[ncmds].beg_match) {
119                         regfree(sed_cmds[ncmds].beg_match);
120                         free(sed_cmds[ncmds].beg_match);
121                 }
122                 if (sed_cmds[ncmds].end_match) {
123                         regfree(sed_cmds[ncmds].end_match);
124                         free(sed_cmds[ncmds].end_match);
125                 }
126                 if (sed_cmds[ncmds].sub_match) {
127                         regfree(sed_cmds[ncmds].sub_match);
128                         free(sed_cmds[ncmds].sub_match);
129                 }
130                 if (sed_cmds[ncmds].replace)
131                         free(sed_cmds[ncmds].replace);
132         }
133
134         /* destroy the array */
135         free(sed_cmds);
136         sed_cmds = NULL;
137 }
138 #endif
139
140
141 /*
142  * index_of_next_unescaped_regexp_delim - walks left to right through a string
143  * beginning at a specified index and returns the index of the next regular
144  * expression delimiter (typically a forward * slash ('/')) not preceeded by 
145  * a backslash ('\').
146  */
147 static int index_of_next_unescaped_regexp_delim(const struct sed_cmd * const sed_cmd, const char *str, int idx)
148 {
149         int bracket = -1;
150         int escaped = 0;
151         char ch;
152
153         for ( ; (ch = str[idx]); idx++) {
154                 if (bracket != -1) {
155                         if (ch == ']' && !(bracket == idx - 1 ||
156                                                                          (bracket == idx - 2 && str[idx-1] == '^')))
157                                 bracket = -1;
158                 } else if (escaped)
159                         escaped = 0;
160                 else if (ch == '\\')
161                         escaped = 1;
162                 else if (ch == '[')
163                         bracket = idx;
164                 else if (ch == sed_cmd->delimiter)
165                         return idx;
166         }
167
168         /* if we make it to here, we've hit the end of the string */
169         return -1;
170 }
171
172 /*
173  * returns the index in the string just past where the address ends.
174  */
175 static int get_address(struct sed_cmd *sed_cmd, const char *str, int *linenum, regex_t **regex)
176 {
177         char *my_str = xstrdup(str);
178         int idx = 0;
179         char olddelimiter;
180         olddelimiter = sed_cmd->delimiter;
181         sed_cmd->delimiter = '/';
182
183         if (isdigit(my_str[idx])) {
184                 do {
185                         idx++;
186                 } while (isdigit(my_str[idx]));
187                 my_str[idx] = 0;
188                 *linenum = atoi(my_str);
189         }
190         else if (my_str[idx] == '$') {
191                 *linenum = -1;
192                 idx++;
193         }
194         else if (my_str[idx] == '/') {
195                 idx = index_of_next_unescaped_regexp_delim(sed_cmd, my_str, ++idx);
196                 if (idx == -1)
197                         error_msg_and_die("unterminated match expression");
198                 my_str[idx] = '\0';
199                 *regex = (regex_t *)xmalloc(sizeof(regex_t));
200                 xregcomp(*regex, my_str+1, REG_NEWLINE);
201                 idx++; /* so it points to the next character after the last '/' */
202         }
203         else {
204                 error_msg("get_address: no address found in string\n"
205                                 "\t(you probably didn't check the string you passed me)");
206                 idx = -1;
207         }
208
209         free(my_str);
210         sed_cmd->delimiter = olddelimiter;
211         return idx;
212 }
213
214 static int parse_subst_cmd(struct sed_cmd * const sed_cmd, const char *substr)
215 {
216         int oldidx, cflags = REG_NEWLINE;
217         char *match;
218         int idx = 0;
219         int j;
220
221         /*
222          * the string that gets passed to this function should look like this:
223          *    s/match/replace/gIp
224          *    ||     |        |||
225          *    mandatory       optional
226          *
227          *    (all three of the '/' slashes are mandatory)
228          */
229
230         /* verify that the 's' is followed by something.  That something
231          * (typically a 'slash') is now our regexp delimiter... */
232         if (!substr[++idx])
233                 error_msg_and_die("bad format in substitution expression");
234         else
235             sed_cmd->delimiter=substr[idx];
236
237         /* save the match string */
238         oldidx = idx+1;
239         idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
240         if (idx == -1)
241                 error_msg_and_die("bad format in substitution expression");
242         match = xstrndup(substr + oldidx, idx - oldidx);
243
244         /* determine the number of back references in the match string */
245         /* Note: we compute this here rather than in the do_subst_command()
246          * function to save processor time, at the expense of a little more memory
247          * (4 bits) per sed_cmd */
248         
249         /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */ 
250         for (j = 0; match[j]; j++) {
251                 /* GNU/POSIX sed does not save more than nine backrefs */
252                 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
253                         sed_cmd->num_backrefs++;
254         }
255
256         /* save the replacement string */
257         oldidx = idx+1;
258         idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
259         if (idx == -1)
260                 error_msg_and_die("bad format in substitution expression");
261         sed_cmd->replace = xstrndup(substr + oldidx, idx - oldidx);
262
263         /* process the flags */
264         while (substr[++idx]) {
265                 switch (substr[idx]) {
266                         case 'g':
267                                 sed_cmd->sub_g = 1;
268                                 break;
269                         case 'I':
270                                 cflags |= REG_ICASE;
271                                 break;
272                         case 'p':
273                                 sed_cmd->sub_p = 1;
274                                 break;
275                         default:
276                                 /* any whitespace or semicolon trailing after a s/// is ok */
277                                 if (strchr(semicolon_whitespace, substr[idx]))
278                                         goto out;
279                                 /* else */
280                                 error_msg_and_die("bad option in substitution expression");
281                 }
282         }
283
284 out:    
285         /* compile the match string into a regex */
286         sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
287         xregcomp(sed_cmd->sub_match, match, cflags);
288         free(match);
289
290         return idx;
291 }
292
293 static void move_back(char *str, int offset)
294 {
295         memmove(str, str + offset, strlen(str + offset) + 1);
296 }
297
298 static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr)
299 {
300         int i, j;
301
302         /*
303          * the string that gets passed to this function should look like this:
304          *
305          *    need one of these 
306          *    |
307          *    |    this backslash (immediately following the edit command) is mandatory
308          *    |    |
309          *    [aic]\
310          *    TEXT1\
311          *    TEXT2\
312          *    TEXTN
313          *
314          * as soon as we hit a TEXT line that has no trailing '\', we're done.
315          * this means a command like:
316          *
317          * i\
318          * INSERTME
319          *
320          * is a-ok.
321          *
322          */
323
324         if (editstr[1] != '\\' || (editstr[2] != '\n' && editstr[2] != '\r'))
325                 error_msg_and_die("bad format in edit expression");
326
327         /* store the edit line text */
328         sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2);
329         for (i = 3, j = 0; editstr[i] != '\0' && strchr("\r\n", editstr[i]) == NULL;
330                         i++, j++) {
331                 if (editstr[i] == '\\' && strchr("\n\r", editstr[i+1]) != NULL) {
332                         sed_cmd->editline[j] = '\n';
333                         i++;
334                 } else
335                         sed_cmd->editline[j] = editstr[i];
336         }
337
338         /* figure out if we need to add a newline */
339         if (sed_cmd->editline[j-1] != '\n')
340                 sed_cmd->editline[j++] = '\n';
341
342         /* terminate string */
343         sed_cmd->editline[j] = '\0';
344
345         return i;
346 }
347
348
349 static int parse_file_cmd(struct sed_cmd *sed_cmd, const char *filecmdstr)
350 {
351         int idx = 0;
352         int filenamelen = 0;
353
354         /*
355          * the string that gets passed to this function should look like this:
356          *    '[ ]filename'
357          *      |  |
358          *      |  a filename
359          *      |
360          *     optional whitespace
361
362          *   re: the file to be read, the GNU manual says the following: "Note that
363          *   if filename cannot be read, it is treated as if it were an empty file,
364          *   without any error indication." Thus, all of the following commands are
365          *   perfectly leagal:
366          *
367          *   sed -e '1r noexist'
368          *   sed -e '1r ;'
369          *   sed -e '1r'
370          */
371
372         /* the file command may be followed by whitespace; move past it. */
373         while (isspace(filecmdstr[++idx]))
374                 { ; }
375                 
376         /* the first non-whitespace we get is a filename. the filename ends when we
377          * hit a normal sed command terminator or end of string */
378         filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace);
379         sed_cmd->filename = xmalloc(filenamelen + 1);
380         safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1);
381
382         return idx + filenamelen;
383 }
384
385
386 static char *parse_cmd_str(struct sed_cmd * const sed_cmd, const char *const cmdstr)
387 {
388         int idx = 0;
389
390         /* parse the command
391          * format is: [addr][,addr]cmd
392          *            |----||-----||-|
393          *            part1 part2  part3
394          */
395
396         /* first part (if present) is an address: either a number or a /regex/ */
397         if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/')
398                 idx = get_address(sed_cmd, cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
399
400         /* second part (if present) will begin with a comma */
401         if (cmdstr[idx] == ',')
402                 idx += get_address(sed_cmd, &cmdstr[++idx], &sed_cmd->end_line, &sed_cmd->end_match);
403
404         /* skip whitespace before the command */
405         while (isspace(cmdstr[idx]))
406                 idx++;
407
408         /* last part (mandatory) will be a command */
409         if (cmdstr[idx] == '\0')
410                 error_msg_and_die("missing command");
411         sed_cmd->cmd = cmdstr[idx];
412
413         /* if it was a single-letter command that takes no arguments (such as 'p'
414          * or 'd') all we need to do is increment the index past that command */
415         if (strchr("pd", sed_cmd->cmd)) {
416                 idx++;
417         }
418         /* handle (s)ubstitution command */
419         else if (sed_cmd->cmd == 's') {
420                 idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]);
421         }
422         /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
423         else if (strchr("aic", sed_cmd->cmd)) {
424                 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
425                         error_msg_and_die("only a beginning address can be specified for edit commands");
426                 idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]);
427         }
428         /* handle file cmds: (r)ead */
429         else if (sed_cmd->cmd == 'r') {
430                 if (sed_cmd->end_line || sed_cmd->end_match)
431                         error_msg_and_die("Command only uses one address");
432                 idx += parse_file_cmd(sed_cmd, &cmdstr[idx]);
433         }
434         else {
435                 error_msg_and_die("invalid command");
436         }
437
438         /* give back whatever's left over */
439         return (char *)&cmdstr[idx];
440 }
441
442 static void add_cmd_str(const char * const cmdstr)
443 {
444         char *mystr = (char *)cmdstr;
445
446         do {
447
448                 /* trim leading whitespace and semicolons */
449                 move_back(mystr, strspn(mystr, semicolon_whitespace));
450                 /* if we ate the whole thing, that means there was just trailing
451                  * whitespace or a final / no-op semicolon. either way, get out */
452                 if (strlen(mystr) == 0)
453                         return;
454                 /* if this is a comment, jump past it and keep going */
455                 if (mystr[0] == '#') {
456                         mystr = strpbrk(mystr, "\n\r");
457                         continue;
458                 }
459                 /* grow the array */
460                 sed_cmds = xrealloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds));
461                 /* zero new element */
462                 memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd));
463                 /* load command string into new array element, get remainder */
464                 mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr);
465
466         } while (mystr && strlen(mystr));
467 }
468
469
470 static void load_cmd_file(char *filename)
471 {
472         FILE *cmdfile;
473         char *line;
474         char *nextline;
475
476         cmdfile = xfopen(filename, "r");
477
478         while ((line = get_line_from_file(cmdfile)) != NULL) {
479                 /* if a line ends with '\' it needs the next line appended to it */
480                 while (line[strlen(line)-2] == '\\' &&
481                                 (nextline = get_line_from_file(cmdfile)) != NULL) {
482                         line = xrealloc(line, strlen(line) + strlen(nextline) + 1);
483                         strcat(line, nextline);
484                         free(nextline);
485                 }
486                 /* eat trailing newline (if any) --if I don't do this, edit commands
487                  * (aic) will print an extra newline */
488                 chomp(line);
489                 add_cmd_str(line);
490                 free(line);
491         }
492 }
493
494 struct pipeline {
495         char *buf;
496         int idx;
497         int len;
498 };
499
500 #define PIPE_MAGIC 0x7f
501 #define PIPE_GROW 64  
502
503 void pipe_putc(struct pipeline *const pipeline, char c)
504 {
505         if (pipeline->buf[pipeline->idx] == PIPE_MAGIC) {
506                 pipeline->buf =
507                         xrealloc(pipeline->buf, pipeline->len + PIPE_GROW);
508                 memset(pipeline->buf + pipeline->len, 0, PIPE_GROW);
509                 pipeline->len += PIPE_GROW;
510                 pipeline->buf[pipeline->len - 1] = PIPE_MAGIC;
511         }
512         pipeline->buf[pipeline->idx++] = (c);
513 }
514
515 #define pipeputc(c)     pipe_putc(pipeline, c)
516
517 #if 0
518 { if (pipeline[pipeline_idx] == PIPE_MAGIC) { \
519         pipeline = xrealloc(pipeline, pipeline_len+PIPE_GROW); \
520         memset(pipeline+pipeline_len, 0, PIPE_GROW); \
521         pipeline_len += PIPE_GROW; \
522         pipeline[pipeline_len-1] = PIPE_MAGIC; } \
523         pipeline[pipeline_idx++] = (c); }
524 #endif
525
526 static void print_subst_w_backrefs(const char *line, const char *replace, 
527         regmatch_t *regmatch, struct pipeline *const pipeline, int matches)
528 {
529         int i;
530
531         /* go through the replacement string */
532         for (i = 0; replace[i]; i++) {
533                 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
534                 if (replace[i] == '\\' && isdigit(replace[i+1])) {
535                         int j;
536                         char tmpstr[2];
537                         int backref;
538                         ++i; /* i now indexes the backref number, instead of the leading slash */
539                         tmpstr[0] = replace[i];
540                         tmpstr[1] = 0;
541                         backref = atoi(tmpstr);
542                         /* print out the text held in regmatch[backref] */
543                         if (backref <= matches && regmatch[backref].rm_so != -1)
544                                 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
545                                         pipeputc(line[j]);
546                 }
547
548                 /* if we find a backslash escaped character, print the character */
549                 else if (replace[i] == '\\') {
550                         ++i;
551                         pipeputc(replace[i]);
552                 }
553
554                 /* if we find an unescaped '&' print out the whole matched text.
555                  * fortunately, regmatch[0] contains the indicies to the whole matched
556                  * expression (kinda seems like it was designed for just such a
557                  * purpose...) */
558                 else if (replace[i] == '&' && replace[i-1] != '\\') {
559                         int j;
560                         for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
561                                 pipeputc(line[j]);
562                 }
563                 /* nothing special, just print this char of the replacement string to stdout */
564                 else
565                         pipeputc(replace[i]);
566         }
567 }
568
569 static int do_subst_command(const struct sed_cmd *sed_cmd, char **line)
570 {
571         char *hackline = *line;
572         struct pipeline thepipe = { NULL, 0 , 0};
573         struct pipeline *const pipeline = &thepipe;
574         int altered = 0;
575         regmatch_t *regmatch = NULL;
576
577         /* we only proceed if the substitution 'search' expression matches */
578         if (regexec(sed_cmd->sub_match, hackline, 0, NULL, 0) == REG_NOMATCH)
579                 return 0;
580
581         /* whaddaya know, it matched. get the number of back references */
582         regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
583
584         /* allocate more PIPE_GROW bytes
585            if replaced string is larger than original */
586         thepipe.len = strlen(hackline)+PIPE_GROW;
587         thepipe.buf = xcalloc(1, thepipe.len);
588         /* buffer magic */
589         thepipe.buf[thepipe.len-1] = PIPE_MAGIC;
590
591         /* and now, as long as we've got a line to try matching and if we can match
592          * the search string, we make substitutions */
593         while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline,
594                                         sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) {
595                 int i;
596
597                 /* print everything before the match */
598                 for (i = 0; i < regmatch[0].rm_so; i++)
599                         pipeputc(hackline[i]);
600
601                 /* then print the substitution string */
602                 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch, 
603                                 pipeline, sed_cmd->num_backrefs);
604
605                 /* advance past the match */
606                 hackline += regmatch[0].rm_eo;
607                 /* flag that something has changed */
608                 altered++;
609
610                 /* if we're not doing this globally, get out now */
611                 if (!sed_cmd->sub_g)
612                         break;
613         }
614
615         for (; *hackline; hackline++) pipeputc(*hackline);
616         if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) thepipe.buf[thepipe.idx] = 0;
617
618         /* cleanup */
619         free(regmatch);
620
621         free(*line);
622         *line = thepipe.buf;
623         return altered;
624 }
625
626
627 static void process_file(FILE *file)
628 {
629         char *line = NULL;
630         static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
631         unsigned int still_in_range = 0;
632         int altered;
633         int i;
634
635         /* go through every line in the file */
636         while ((line = get_line_from_file(file)) != NULL) {
637
638                 chomp(line);
639                 linenum++;
640                 altered = 0;
641
642                 /* for every line, go through all the commands */
643                 for (i = 0; i < ncmds; i++) {
644                         struct sed_cmd *sed_cmd = &sed_cmds[i];
645
646
647                         /*
648                          * entry point into sedding...
649                          */
650                         if (
651                                         /* no range necessary */
652                                         (sed_cmd->beg_line == 0 && sed_cmd->end_line == 0 &&
653                                          sed_cmd->beg_match == NULL &&
654                                          sed_cmd->end_match == NULL) ||
655                                         /* this line number is the first address we're looking for */
656                                         (sed_cmd->beg_line && (sed_cmd->beg_line == linenum)) ||
657                                         /* this line matches our first address regex */
658                                         (sed_cmd->beg_match && (regexec(sed_cmd->beg_match, line, 0, NULL, 0) == 0)) ||
659                                         /* we are currently within the beginning & ending address range */
660                                         still_in_range
661                            ) {
662
663                                 /*
664                                  * actual sedding
665                                  */
666                                 switch (sed_cmd->cmd) {
667
668                                         case 'p':
669                                                 puts(line);
670                                                 break;
671
672                                         case 'd':
673                                                 altered++;
674                                                 break;
675
676                                         case 's':
677
678                                                 /*
679                                                  * Some special cases for 's' printing to make it compliant with
680                                                  * GNU sed printing behavior (aka "The -n | s///p Matrix"):
681                                                  *
682                                                  *    -n ONLY = never print anything regardless of any successful
683                                                  *    substitution
684                                                  *
685                                                  *    s///p ONLY = always print successful substitutions, even if
686                                                  *    the line is going to be printed anyway (line will be printed
687                                                  *    twice).
688                                                  *
689                                                  *    -n AND s///p = print ONLY a successful substitution ONE TIME;
690                                                  *    no other lines are printed - this is the reason why the 'p'
691                                                  *    flag exists in the first place.
692                                                  */
693
694                                                 /* if the user specified that they didn't want anything printed (i.e., a -n
695                                                  * flag and no 'p' flag after the s///), then there's really no point doing
696                                                  * anything here. */
697                                                 if (be_quiet && !sed_cmd->sub_p)
698                                                         break;
699
700                                                 /* we print the line once, unless we were told to be quiet */
701                                                 if (!be_quiet)
702                                                         altered |= do_subst_command(sed_cmd, &line);
703
704                                                 /* we also print the line if we were given the 'p' flag
705                                                  * (this is quite possibly the second printing) */
706                                                 if (sed_cmd->sub_p)
707                                                         altered |= do_subst_command(sed_cmd, &line);
708                                                 if (altered && (i+1 >= ncmds || sed_cmds[i+1].cmd != 's'))
709                                                         puts(line);
710
711                                                 break;
712
713                                         case 'a':
714                                                 puts(line);
715                                                 fputs(sed_cmd->editline, stdout);
716                                                 altered++;
717                                                 break;
718
719                                         case 'i':
720                                                 fputs(sed_cmd->editline, stdout);
721                                                 break;
722
723                                         case 'c':
724                                                 /* single-address case */
725                                                 if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0)
726                                                 /* multi-address case */
727                                                 /* - matching text */
728                                                 || (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
729                                                 /* - matching line numbers */
730                                                 || (sed_cmd->end_line > 0 && sed_cmd->end_line == linenum))
731                                                 {
732                                                         fputs(sed_cmd->editline, stdout);
733                                                 }
734                                                 altered++;
735
736                                                 break;
737
738                                         case 'r': {
739                                                                   FILE *outfile;
740                                                                   puts(line);
741                                                                   outfile = fopen(sed_cmd->filename, "r");
742                                                                   if (outfile)
743                                                                           print_file(outfile);
744                                                                   /* else if we couldn't open the output file,
745                                                                    * no biggie, just don't print anything */
746                                                                   altered++;
747                                                           }
748                                                           break;
749                                 }
750
751                                 /*
752                                  * exit point from sedding...
753                                  */
754                                 if (
755                                         /* this is a single-address command or... */
756                                         (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) || (
757                                                 /* we were in the middle of our address range (this
758                                                  * isn't the first time through) and.. */
759                                                 (still_in_range == 1) && (
760                                                         /* this line number is the last address we're looking for or... */
761                                                         (sed_cmd->end_line && (sed_cmd->end_line == linenum)) ||
762                                                         /* this line matches our last address regex */
763                                                         (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
764                                                 )
765                                         )
766                                 ) {
767                                         /* we're out of our address range */
768                                         still_in_range = 0;
769                                 }
770
771                                 /* didn't hit the exit? then we're still in the middle of an address range */
772                                 else {
773                                         still_in_range = 1;
774                                 }
775                         }
776                 }
777
778                 /* we will print the line unless we were told to be quiet or if the
779                  * line was altered (via a 'd'elete or 's'ubstitution), in which case
780                  * the altered line was already printed */
781                 if (!be_quiet && !altered)
782                         puts(line);
783
784                 free(line);
785         }
786 }
787
788 extern int sed_main(int argc, char **argv)
789 {
790         int opt, status = EXIT_SUCCESS;
791
792 #ifdef CONFIG_FEATURE_CLEAN_UP
793         /* destroy command strings on exit */
794         if (atexit(destroy_cmd_strs) == -1)
795                 perror_msg_and_die("atexit");
796 #endif
797
798         /* do normal option parsing */
799         while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
800                 switch (opt) {
801                         case 'n':
802                                 be_quiet++;
803                                 break;
804                         case 'e':
805                                 add_cmd_str(optarg);
806                                 break;
807                         case 'f': 
808                                 load_cmd_file(optarg);
809                                 break;
810                         default:
811                                 show_usage();
812                 }
813         }
814
815         /* if we didn't get a pattern from a -e and no command file was specified,
816          * argv[optind] should be the pattern. no pattern, no worky */
817         if (ncmds == 0) {
818                 if (argv[optind] == NULL)
819                         show_usage();
820                 else {
821                         add_cmd_str(argv[optind]);
822                         optind++;
823                 }
824         }
825
826
827         /* argv[(optind)..(argc-1)] should be names of file to process. If no
828          * files were specified or '-' was specified, take input from stdin.
829          * Otherwise, we process all the files specified. */
830         if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
831                 process_file(stdin);
832         }
833         else {
834                 int i;
835                 FILE *file;
836                 for (i = optind; i < argc; i++) {
837                         file = wfopen(argv[i], "r");
838                         if (file) {
839                                 process_file(file);
840                                 fclose(file);
841                         } else
842                                 status = EXIT_FAILURE;
843                 }
844         }
845         
846         return status;
847 }