Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1 | /* |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 2 | * sed.c - very minimalist version of sed |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 3 | * |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 4 | * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley |
| 5 | * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org> |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 6 | * Copyright (C) 2002 Matt Kraai |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 7 | * |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 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 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 24 | /* |
| 25 | Supported features and commands in this version of sed: |
| 26 | |
| 27 | - comments ('#') |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 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 |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 31 | - file commands: (r)ead |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 32 | - backreferences in substitution expressions (\1, \2...\9) |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 33 | - grouped commands: {cmd1;cmd2} |
| 34 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 35 | (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 Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 42 | - 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 McGrath | d5eadea | 2003-03-09 02:39:29 +0000 | [diff] [blame] | 45 | |
| 46 | Reference http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 47 | */ |
| 48 | |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 49 | #include <stdio.h> |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 50 | #include <unistd.h> /* for getopt() */ |
| 51 | #include <regex.h> |
| 52 | #include <string.h> /* for strdup() */ |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 53 | #include <errno.h> |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 54 | #include <ctype.h> /* for isspace() */ |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 55 | #include <stdlib.h> |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 56 | #include "busybox.h" |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 57 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 58 | /* externs */ |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 59 | extern void xregcomp(regex_t *preg, const char *regex, int cflags); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 60 | extern int optind; /* in unistd.h */ |
| 61 | extern char *optarg; /* ditto */ |
| 62 | |
| 63 | /* options */ |
| 64 | static int be_quiet = 0; |
| 65 | |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 66 | |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 67 | typedef struct sed_cmd_s { |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 68 | /* Order by alignment requirements */ |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 69 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 70 | /* address storage */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 71 | regex_t *beg_match; /* sed -e '/match/cmd' */ |
| 72 | regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */ |
| 73 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 74 | /* SUBSTITUTION COMMAND SPECIFIC FIELDS */ |
| 75 | |
| 76 | /* sed -e 's/sub_match/replace/' */ |
| 77 | regex_t *sub_match; |
| 78 | char *replace; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 79 | |
| 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 Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 91 | 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 Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 94 | 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 Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 96 | |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 97 | /* GENERAL FIELDS */ |
| 98 | char delimiter; /* The delimiter used to separate regexps */ |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 99 | |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 100 | /* the command */ |
| 101 | char cmd; /* p,d,s (add more at your leisure :-) */ |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 102 | |
| 103 | /* inversion flag */ |
| 104 | int invert; /* the '!' after the address */ |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 105 | } sed_cmd_t; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 106 | |
| 107 | /* globals */ |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 108 | static sed_cmd_t **sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 109 | static int ncmds = 0; /* number of sed commands */ |
| 110 | |
| 111 | /*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */ |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 112 | |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 113 | const char * const semicolon_whitespace = "; \n\r\t\v\0"; |
| 114 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 115 | #ifdef CONFIG_FEATURE_CLEAN_UP |
Matt Kraai | 0c390a7 | 2001-11-20 16:00:19 +0000 | [diff] [blame] | 116 | static void destroy_cmd_strs(void) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 117 | { |
| 118 | if (sed_cmds == NULL) |
| 119 | return; |
| 120 | |
| 121 | /* destroy all the elements in the array */ |
| 122 | while (--ncmds >= 0) { |
| 123 | |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 124 | if (sed_cmds[ncmds]->beg_match) { |
| 125 | regfree(sed_cmds[ncmds]->beg_match); |
| 126 | free(sed_cmds[ncmds]->beg_match); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 127 | } |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 128 | if (sed_cmds[ncmds]->end_match) { |
| 129 | regfree(sed_cmds[ncmds]->end_match); |
| 130 | free(sed_cmds[ncmds]->end_match); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 131 | } |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 132 | if (sed_cmds[ncmds]->sub_match) { |
| 133 | regfree(sed_cmds[ncmds]->sub_match); |
| 134 | free(sed_cmds[ncmds]->sub_match); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 135 | } |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 136 | free(sed_cmds[ncmds]->replace); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 137 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 138 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 139 | /* destroy the array */ |
| 140 | free(sed_cmds); |
| 141 | sed_cmds = NULL; |
| 142 | } |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 143 | #endif |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 144 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 145 | |
| 146 | /* |
Eric Andersen | 28b3c53 | 2001-01-02 11:01:31 +0000 | [diff] [blame] | 147 | * 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 Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 151 | */ |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 152 | static int index_of_next_unescaped_regexp_delim(const char delimiter, const char *str, int idx) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 153 | { |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 154 | int bracket = -1; |
| 155 | int escaped = 0; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 156 | char ch; |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 157 | |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 158 | for ( ; (ch = str[idx]); idx++) { |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 159 | if (bracket != -1) { |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 160 | if (ch == ']' && !(bracket == idx - 1 || |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 161 | (bracket == idx - 2 && str[idx-1] == '^'))) |
| 162 | bracket = -1; |
| 163 | } else if (escaped) |
| 164 | escaped = 0; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 165 | else if (ch == '\\') |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 166 | escaped = 1; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 167 | else if (ch == '[') |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 168 | bracket = idx; |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 169 | else if (ch == delimiter) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 170 | return idx; |
| 171 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 172 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 173 | /* if we make it to here, we've hit the end of the string */ |
| 174 | return -1; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | /* |
| 178 | * returns the index in the string just past where the address ends. |
| 179 | */ |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 180 | static int get_address(char *delimiter, char *my_str, int *linenum, regex_t **regex) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 181 | { |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 182 | int idx = 0; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 183 | if (isdigit(my_str[idx])) { |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 184 | char *endstr; |
| 185 | *linenum = strtol(my_str, &endstr, 10); |
| 186 | /* endstr shouldnt ever equal NULL */ |
| 187 | idx = endstr - my_str; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 188 | } |
| 189 | else if (my_str[idx] == '$') { |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 190 | *linenum = -1; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 191 | idx++; |
| 192 | } |
Robert Griebl | 7940147 | 2002-08-06 21:07:17 +0000 | [diff] [blame] | 193 | else if (my_str[idx] == '/' || my_str[idx] == '\\') { |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 194 | int idx_start = 1; |
| 195 | |
Robert Griebl | 7940147 | 2002-08-06 21:07:17 +0000 | [diff] [blame] | 196 | if (my_str[idx] == '\\') { |
Robert Griebl | 00f5ecb | 2002-08-06 23:13:31 +0000 | [diff] [blame] | 197 | idx_start++; |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 198 | *delimiter = my_str[++idx]; |
Robert Griebl | 7940147 | 2002-08-06 21:07:17 +0000 | [diff] [blame] | 199 | } |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 200 | idx = index_of_next_unescaped_regexp_delim(*delimiter, my_str, ++idx); |
| 201 | if (idx == -1) { |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 202 | error_msg_and_die("unterminated match expression"); |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 203 | } |
Mark Whitley | df5f6ba | 2000-07-11 16:53:56 +0000 | [diff] [blame] | 204 | my_str[idx] = '\0'; |
| 205 | *regex = (regex_t *)xmalloc(sizeof(regex_t)); |
Robert Griebl | 00f5ecb | 2002-08-06 23:13:31 +0000 | [diff] [blame] | 206 | xregcomp(*regex, my_str+idx_start, REG_NEWLINE); |
Mark Whitley | 496e33f | 2000-07-13 22:52:02 +0000 | [diff] [blame] | 207 | idx++; /* so it points to the next character after the last '/' */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 208 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 209 | return idx; |
| 210 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 211 | |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 212 | static int parse_subst_cmd(sed_cmd_t * const sed_cmd, const char *substr) |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 213 | { |
| 214 | int oldidx, cflags = REG_NEWLINE; |
| 215 | char *match; |
| 216 | int idx = 0; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 217 | int j; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 218 | |
| 219 | /* |
| 220 | * the string that gets passed to this function should look like this: |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 221 | * s/match/replace/gIp |
| 222 | * || | ||| |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 223 | * mandatory optional |
| 224 | * |
| 225 | * (all three of the '/' slashes are mandatory) |
| 226 | */ |
| 227 | |
Eric Andersen | 28b3c53 | 2001-01-02 11:01:31 +0000 | [diff] [blame] | 228 | /* verify that the 's' is followed by something. That something |
| 229 | * (typically a 'slash') is now our regexp delimiter... */ |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 230 | if (substr[idx] == '\0') |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 231 | error_msg_and_die("bad format in substitution expression"); |
Eric Andersen | 28b3c53 | 2001-01-02 11:01:31 +0000 | [diff] [blame] | 232 | else |
| 233 | sed_cmd->delimiter=substr[idx]; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 234 | |
| 235 | /* save the match string */ |
| 236 | oldidx = idx+1; |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 237 | idx = index_of_next_unescaped_regexp_delim(sed_cmd->delimiter, substr, ++idx); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 238 | if (idx == -1) |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 239 | error_msg_and_die("bad format in substitution expression"); |
Matt Kraai | 5009f90 | 2001-07-05 19:00:47 +0000 | [diff] [blame] | 240 | match = xstrndup(substr + oldidx, idx - oldidx); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 241 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 242 | /* 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 Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 250 | if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 251 | sed_cmd->num_backrefs++; |
| 252 | } |
| 253 | |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 254 | /* save the replacement string */ |
| 255 | oldidx = idx+1; |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 256 | idx = index_of_next_unescaped_regexp_delim(sed_cmd->delimiter, substr, ++idx); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 257 | if (idx == -1) |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 258 | error_msg_and_die("bad format in substitution expression"); |
Matt Kraai | 5009f90 | 2001-07-05 19:00:47 +0000 | [diff] [blame] | 259 | sed_cmd->replace = xstrndup(substr + oldidx, idx - oldidx); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 260 | |
| 261 | /* process the flags */ |
| 262 | while (substr[++idx]) { |
| 263 | switch (substr[idx]) { |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 264 | case 'g': |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 265 | sed_cmd->sub_g = 1; |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 266 | break; |
| 267 | case 'I': |
| 268 | cflags |= REG_ICASE; |
| 269 | break; |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 270 | case 'p': |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 271 | sed_cmd->sub_p = 1; |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 272 | break; |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 273 | default: |
| 274 | /* any whitespace or semicolon trailing after a s/// is ok */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 275 | if (strchr(semicolon_whitespace, substr[idx])) |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 276 | goto out; |
| 277 | /* else */ |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 278 | error_msg_and_die("bad option in substitution expression"); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 279 | } |
| 280 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 281 | |
| 282 | out: |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 283 | /* compile the match string into a regex */ |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 284 | sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t)); |
| 285 | xregcomp(sed_cmd->sub_match, match, cflags); |
| 286 | free(match); |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 287 | |
| 288 | return idx; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 291 | static int parse_edit_cmd(sed_cmd_t *sed_cmd, const char *editstr) |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 292 | { |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 293 | int i, j; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 294 | |
| 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 McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 316 | if ((*editstr != '\\') || ((editstr[1] != '\n') && (editstr[1] != '\r'))) { |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 317 | error_msg_and_die("bad format in edit expression"); |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 318 | } |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 319 | |
| 320 | /* store the edit line text */ |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 321 | sed_cmd->editline = xmalloc(strlen(&editstr[2]) + 2); |
| 322 | for (i = 2, j = 0; editstr[i] != '\0' && strchr("\r\n", editstr[i]) == NULL; |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 323 | i++, j++) { |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 324 | if ((editstr[i] == '\\') && strchr("\n\r", editstr[i+1]) != NULL) { |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 325 | sed_cmd->editline[j] = '\n'; |
| 326 | i++; |
| 327 | } else |
| 328 | sed_cmd->editline[j] = editstr[i]; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 329 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 330 | |
Mark Whitley | 56c14a6 | 2001-04-20 23:41:44 +0000 | [diff] [blame] | 331 | /* figure out if we need to add a newline */ |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 332 | if (sed_cmd->editline[j-1] != '\n') |
| 333 | sed_cmd->editline[j++] = '\n'; |
Mark Whitley | 56c14a6 | 2001-04-20 23:41:44 +0000 | [diff] [blame] | 334 | |
| 335 | /* terminate string */ |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 336 | sed_cmd->editline[j] = '\0'; |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 337 | |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 338 | return i; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 339 | } |
| 340 | |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 341 | |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 342 | static int parse_file_cmd(sed_cmd_t *sed_cmd, const char *filecmdstr) |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 343 | { |
| 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 Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 371 | filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace); |
Matt Kraai | 6e9e136 | 2001-05-27 14:11:52 +0000 | [diff] [blame] | 372 | sed_cmd->filename = xmalloc(filenamelen + 1); |
| 373 | safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1); |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 374 | |
| 375 | return idx + filenamelen; |
| 376 | } |
| 377 | |
| 378 | |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 379 | static char *parse_cmd_str(sed_cmd_t * const sed_cmd, char *cmdstr) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 380 | { |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 381 | /* 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 McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 384 | cmdstr++; |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 385 | } |
| 386 | /* handle (s)ubstitution command */ |
| 387 | else if (sed_cmd->cmd == 's') { |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 388 | cmdstr += parse_subst_cmd(sed_cmd, cmdstr); |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 389 | } |
| 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 McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 394 | cmdstr += parse_edit_cmd(sed_cmd, cmdstr); |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 395 | } |
| 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 McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 400 | cmdstr += parse_file_cmd(sed_cmd, cmdstr); |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 401 | } |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 402 | /* handle grouped commands */ |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 403 | else { |
| 404 | error_msg_and_die("Unsupported command %c", sed_cmd->cmd); |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 405 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 406 | |
| 407 | /* give back whatever's left over */ |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 408 | return(cmdstr); |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 409 | } |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 410 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 411 | static char *add_cmd(sed_cmd_t *sed_cmd, char *cmdstr) |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 412 | { |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 413 | |
| 414 | /* Skip over leading whitespace and semicolons */ |
| 415 | cmdstr += strspn(cmdstr, semicolon_whitespace); |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 416 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 417 | /* 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 Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 422 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 423 | /* 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 Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 445 | } |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 446 | cmdstr += idx; |
| 447 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 448 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame^] | 449 | /* 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 | |
| 503 | static 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 Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | |
| 513 | static void load_cmd_file(char *filename) |
| 514 | { |
| 515 | FILE *cmdfile; |
| 516 | char *line; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 517 | char *nextline; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 518 | |
Matt Kraai | bbaef66 | 2000-09-27 02:43:35 +0000 | [diff] [blame] | 519 | cmdfile = xfopen(filename, "r"); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 520 | |
| 521 | while ((line = get_line_from_file(cmdfile)) != NULL) { |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 522 | /* 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 Kraai | 322ae93 | 2000-09-13 02:46:14 +0000 | [diff] [blame] | 525 | line = xrealloc(line, strlen(line) + strlen(nextline) + 1); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 526 | strcat(line, nextline); |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 527 | free(nextline); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 528 | } |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 529 | /* eat trailing newline (if any) --if I don't do this, edit commands |
| 530 | * (aic) will print an extra newline */ |
Matt Kraai | 05e782d | 2001-02-01 16:49:30 +0000 | [diff] [blame] | 531 | chomp(line); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 532 | add_cmd_str(line); |
| 533 | free(line); |
| 534 | } |
| 535 | } |
| 536 | |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 537 | struct pipeline { |
| 538 | char *buf; |
| 539 | int idx; |
| 540 | int len; |
| 541 | }; |
| 542 | |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 543 | #define PIPE_MAGIC 0x7f |
| 544 | #define PIPE_GROW 64 |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 545 | |
| 546 | void 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 Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 561 | { 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 Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 567 | #endif |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 568 | |
| 569 | static void print_subst_w_backrefs(const char *line, const char *replace, |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 570 | regmatch_t *regmatch, struct pipeline *const pipeline, int matches) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 571 | { |
| 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 Kraai | a3e4f45 | 2001-08-20 21:21:06 +0000 | [diff] [blame] | 586 | if (backref <= matches && regmatch[backref].rm_so != -1) |
| 587 | for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++) |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 588 | pipeputc(line[j]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 589 | } |
| 590 | |
Mark Whitley | 83e85f6 | 2000-07-25 20:48:44 +0000 | [diff] [blame] | 591 | /* if we find a backslash escaped character, print the character */ |
| 592 | else if (replace[i] == '\\') { |
| 593 | ++i; |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 594 | pipeputc(replace[i]); |
Mark Whitley | 83e85f6 | 2000-07-25 20:48:44 +0000 | [diff] [blame] | 595 | } |
| 596 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 597 | /* 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 Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 604 | pipeputc(line[j]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 605 | } |
| 606 | /* nothing special, just print this char of the replacement string to stdout */ |
| 607 | else |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 608 | pipeputc(replace[i]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 609 | } |
| 610 | } |
| 611 | |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 612 | static int do_subst_command(const sed_cmd_t *sed_cmd, char **line) |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 613 | { |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 614 | char *hackline = *line; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 615 | struct pipeline thepipe = { NULL, 0 , 0}; |
| 616 | struct pipeline *const pipeline = &thepipe; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 617 | int altered = 0; |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 618 | regmatch_t *regmatch = NULL; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 619 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 620 | /* we only proceed if the substitution 'search' expression matches */ |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 621 | if (regexec(sed_cmd->sub_match, hackline, 0, NULL, 0) == REG_NOMATCH) |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 622 | 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 Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 627 | /* allocate more PIPE_GROW bytes |
| 628 | if replaced string is larger than original */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 629 | thepipe.len = strlen(hackline)+PIPE_GROW; |
| 630 | thepipe.buf = xcalloc(1, thepipe.len); |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 631 | /* buffer magic */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 632 | thepipe.buf[thepipe.len-1] = PIPE_MAGIC; |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 633 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 634 | /* 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 Kraai | 8470b9a | 2001-10-23 21:12:07 +0000 | [diff] [blame] | 636 | while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline, |
| 637 | sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) { |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 638 | int i; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 639 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 640 | /* print everything before the match */ |
| 641 | for (i = 0; i < regmatch[0].rm_so; i++) |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 642 | pipeputc(hackline[i]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 643 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 644 | /* then print the substitution string */ |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 645 | print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch, |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 646 | pipeline, sed_cmd->num_backrefs); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 647 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 648 | /* advance past the match */ |
| 649 | hackline += regmatch[0].rm_eo; |
| 650 | /* flag that something has changed */ |
| 651 | altered++; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 652 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 653 | /* if we're not doing this globally, get out now */ |
| 654 | if (!sed_cmd->sub_g) |
| 655 | break; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 656 | } |
| 657 | |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 658 | for (; *hackline; hackline++) pipeputc(*hackline); |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 659 | if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) thepipe.buf[thepipe.idx] = 0; |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 660 | |
| 661 | /* cleanup */ |
| 662 | free(regmatch); |
| 663 | |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 664 | free(*line); |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 665 | *line = thepipe.buf; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 666 | return altered; |
| 667 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 668 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 669 | |
| 670 | static void process_file(FILE *file) |
| 671 | { |
Glenn L McGrath | 505bd0f | 2003-03-08 05:21:02 +0000 | [diff] [blame] | 672 | char *line; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 673 | static int linenum = 0; /* GNU sed does not restart counting lines at EOF */ |
| 674 | unsigned int still_in_range = 0; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 675 | int altered; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 676 | int i; |
| 677 | |
Glenn L McGrath | 505bd0f | 2003-03-08 05:21:02 +0000 | [diff] [blame] | 678 | line = get_line_from_file(file); |
| 679 | if (line == NULL) { |
| 680 | return; |
| 681 | } |
| 682 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 683 | /* go through every line in the file */ |
Glenn L McGrath | 505bd0f | 2003-03-08 05:21:02 +0000 | [diff] [blame] | 684 | 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 Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 689 | |
Mark Whitley | 9de2659 | 2001-05-14 19:44:44 +0000 | [diff] [blame] | 690 | chomp(line); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 691 | linenum++; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 692 | altered = 0; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 693 | |
| 694 | /* for every line, go through all the commands */ |
| 695 | for (i = 0; i < ncmds; i++) { |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 696 | sed_cmd_t *sed_cmd = sed_cmds[i]; |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 697 | int deleted = 0; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 698 | |
| 699 | /* |
| 700 | * entry point into sedding... |
| 701 | */ |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 702 | int matched = ( |
Matt Kraai | 02c40a7 | 2001-06-21 13:57:51 +0000 | [diff] [blame] | 703 | /* no range necessary */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 704 | (sed_cmd->beg_line == 0 && sed_cmd->end_line == 0 && |
| 705 | sed_cmd->beg_match == NULL && |
| 706 | sed_cmd->end_match == NULL) || |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 707 | /* this line number is the first address we're looking for */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 708 | (sed_cmd->beg_line && (sed_cmd->beg_line == linenum)) || |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 709 | /* this line matches our first address regex */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 710 | (sed_cmd->beg_match && (regexec(sed_cmd->beg_match, line, 0, NULL, 0) == 0)) || |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 711 | /* we are currently within the beginning & ending address range */ |
Glenn L McGrath | 505bd0f | 2003-03-08 05:21:02 +0000 | [diff] [blame] | 712 | still_in_range || ((sed_cmd->beg_line == -1) && (next_line == NULL)) |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 713 | ); |
| 714 | |
| 715 | if (sed_cmd->invert ^ matched) { |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 716 | |
| 717 | /* |
| 718 | * actual sedding |
| 719 | */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 720 | switch (sed_cmd->cmd) { |
Glenn L McGrath | 0a65e19 | 2002-12-23 10:16:12 +0000 | [diff] [blame] | 721 | case '=': |
| 722 | printf("%d\n", linenum); |
| 723 | break; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 724 | case 'p': |
| 725 | puts(line); |
| 726 | break; |
| 727 | |
| 728 | case 'd': |
| 729 | altered++; |
Matt Kraai | 5c69cd8 | 2002-04-01 16:17:37 +0000 | [diff] [blame] | 730 | deleted = 1; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 731 | 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 Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 754 | if (be_quiet && !sed_cmd->sub_p) |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 755 | break; |
| 756 | |
| 757 | /* we print the line once, unless we were told to be quiet */ |
| 758 | if (!be_quiet) |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 759 | altered |= do_subst_command(sed_cmd, &line); |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 760 | |
| 761 | /* we also print the line if we were given the 'p' flag |
| 762 | * (this is quite possibly the second printing) */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 763 | if (sed_cmd->sub_p) |
| 764 | altered |= do_subst_command(sed_cmd, &line); |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 765 | if (altered && (i+1 >= ncmds || sed_cmds[i+1]->cmd != 's')) |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 766 | puts(line); |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 767 | |
| 768 | break; |
| 769 | |
| 770 | case 'a': |
| 771 | puts(line); |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 772 | fputs(sed_cmd->editline, stdout); |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 773 | altered++; |
| 774 | break; |
| 775 | |
| 776 | case 'i': |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 777 | fputs(sed_cmd->editline, stdout); |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 778 | break; |
| 779 | |
| 780 | case 'c': |
| 781 | /* single-address case */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 782 | if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0) |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 783 | /* multi-address case */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 784 | /* - 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 Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 790 | } |
| 791 | altered++; |
| 792 | |
| 793 | break; |
| 794 | |
| 795 | case 'r': { |
| 796 | FILE *outfile; |
| 797 | puts(line); |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 798 | outfile = fopen(sed_cmd->filename, "r"); |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 799 | 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 Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 804 | } |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 805 | break; |
| 806 | } |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 807 | } |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 808 | |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 809 | /* |
| 810 | * exit point from sedding... |
| 811 | */ |
| 812 | if (matched) { |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 813 | if ( |
| 814 | /* this is a single-address command or... */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 815 | (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) || ( |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 816 | /* 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 Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 820 | (sed_cmd->end_line && (sed_cmd->end_line == linenum)) || |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 821 | /* this line matches our last address regex */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 822 | (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0)) |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 823 | ) |
| 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 Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 833 | } |
| 834 | } |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 835 | |
| 836 | if (deleted) |
| 837 | break; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 838 | } |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 839 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 840 | /* 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 Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 843 | if (!be_quiet && !altered) |
Mark Whitley | dd527d3 | 2001-05-14 19:53:08 +0000 | [diff] [blame] | 844 | puts(line); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 845 | |
| 846 | free(line); |
Glenn L McGrath | 505bd0f | 2003-03-08 05:21:02 +0000 | [diff] [blame] | 847 | line = next_line; |
| 848 | } while (line); |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | extern int sed_main(int argc, char **argv) |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 852 | { |
Matt Kraai | a5f09c6 | 2001-11-12 16:44:55 +0000 | [diff] [blame] | 853 | int opt, status = EXIT_SUCCESS; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 854 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 855 | #ifdef CONFIG_FEATURE_CLEAN_UP |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 856 | /* destroy command strings on exit */ |
Matt Kraai | a9819b2 | 2000-12-22 01:48:07 +0000 | [diff] [blame] | 857 | if (atexit(destroy_cmd_strs) == -1) |
| 858 | perror_msg_and_die("atexit"); |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 859 | #endif |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 860 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 861 | /* do normal option parsing */ |
Eric Andersen | b50da53 | 2001-02-17 16:52:35 +0000 | [diff] [blame] | 862 | while ((opt = getopt(argc, argv, "ne:f:")) > 0) { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 863 | switch (opt) { |
Erik Andersen | e916d24 | 2000-03-06 19:20:35 +0000 | [diff] [blame] | 864 | case 'n': |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 865 | be_quiet++; |
Erik Andersen | e916d24 | 2000-03-06 19:20:35 +0000 | [diff] [blame] | 866 | break; |
| 867 | case 'e': |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 868 | add_cmd_str(optarg); |
Erik Andersen | e916d24 | 2000-03-06 19:20:35 +0000 | [diff] [blame] | 869 | break; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 870 | case 'f': |
| 871 | load_cmd_file(optarg); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 872 | break; |
Eric Andersen | b50da53 | 2001-02-17 16:52:35 +0000 | [diff] [blame] | 873 | default: |
| 874 | show_usage(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 875 | } |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 876 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 877 | |
| 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 Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 882 | show_usage(); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 883 | else { |
| 884 | add_cmd_str(argv[optind]); |
| 885 | optind++; |
| 886 | } |
| 887 | } |
| 888 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 889 | /* 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 Andersen | 9c6b5fc | 2001-11-17 07:23:46 +0000 | [diff] [blame] | 899 | file = wfopen(argv[i], "r"); |
| 900 | if (file) { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 901 | process_file(file); |
| 902 | fclose(file); |
Matt Kraai | a5f09c6 | 2001-11-12 16:44:55 +0000 | [diff] [blame] | 903 | } else |
| 904 | status = EXIT_FAILURE; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 905 | } |
| 906 | } |
| 907 | |
Matt Kraai | a5f09c6 | 2001-11-12 16:44:55 +0000 | [diff] [blame] | 908 | return status; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 909 | } |