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 | * |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 4 | * Copyright (C) 1999,2000 by Lineo, inc. |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 5 | * Written by Mark Whitley <markw@lineo.com>, <markw@enol.com> |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 6 | * |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | * |
| 21 | */ |
| 22 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 23 | /* |
| 24 | Supported features and commands in this version of sed: |
| 25 | |
| 26 | - comments ('#') |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 27 | - address matching: num|/matchstr/[,num|/matchstr/|$]command |
| 28 | - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags) |
| 29 | - edit commands: (a)ppend, (i)nsert, (c)hange |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 30 | - backreferences in substitution expressions (\1, \2...\9) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 31 | |
| 32 | (Note: Specifying an address (range) to match is *optional*; commands |
| 33 | default to the whole pattern space if no specific address match was |
| 34 | requested.) |
| 35 | |
| 36 | Unsupported features: |
| 37 | |
| 38 | - transliteration (y/source-chars/dest-chars/) (use 'tr') |
| 39 | - no support for characters other than the '/' character for regex matches |
| 40 | - no pattern space hold space storing / swapping (x, etc.) |
| 41 | - no labels / branching (: label, b, t, and friends) |
| 42 | - and lots, lots more. |
| 43 | |
| 44 | */ |
| 45 | |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 46 | #include <stdio.h> |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 47 | #include <unistd.h> /* for getopt() */ |
| 48 | #include <regex.h> |
| 49 | #include <string.h> /* for strdup() */ |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 50 | #include <errno.h> |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 51 | #include <ctype.h> /* for isspace() */ |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 52 | #include "busybox.h" |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 53 | |
Pavel Roskin | 9c5fcc3 | 2000-07-17 23:45:12 +0000 | [diff] [blame] | 54 | #define bb_need_full_version |
| 55 | #define BB_DECLARE_EXTERN |
| 56 | #include "messages.c" |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 57 | |
| 58 | /* externs */ |
| 59 | extern int optind; /* in unistd.h */ |
| 60 | extern char *optarg; /* ditto */ |
| 61 | |
| 62 | /* options */ |
| 63 | static int be_quiet = 0; |
| 64 | |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 65 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 66 | struct sed_cmd { |
| 67 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 68 | |
| 69 | /* GENERAL FIELDS */ |
| 70 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 71 | /* address storage */ |
| 72 | int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */ |
| 73 | int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */ |
| 74 | regex_t *beg_match; /* sed -e '/match/cmd' */ |
| 75 | regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */ |
| 76 | |
| 77 | /* the command */ |
| 78 | char cmd; /* p,d,s (add more at your leisure :-) */ |
| 79 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 80 | |
| 81 | /* SUBSTITUTION COMMAND SPECIFIC FIELDS */ |
| 82 | |
| 83 | /* sed -e 's/sub_match/replace/' */ |
| 84 | regex_t *sub_match; |
| 85 | char *replace; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 86 | unsigned int num_backrefs:4; /* how many back references (\1..\9) */ |
| 87 | /* Note: GNU/POSIX sed does not save more than nine backrefs, so |
| 88 | * we only use 4 bits to hold the number */ |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 89 | unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */ |
| 90 | 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] | 91 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 92 | |
| 93 | /* EDIT COMMAND (a,i,c) SPEICIFIC FIELDS */ |
| 94 | |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 95 | char *editline; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | /* globals */ |
| 99 | static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */ |
| 100 | static int ncmds = 0; /* number of sed commands */ |
| 101 | |
| 102 | /*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] | 103 | |
Eric Andersen | b040d4f | 2000-07-25 18:01:20 +0000 | [diff] [blame] | 104 | #ifdef BB_FEATURE_CLEAN_UP |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 105 | static void destroy_cmd_strs() |
| 106 | { |
| 107 | if (sed_cmds == NULL) |
| 108 | return; |
| 109 | |
| 110 | /* destroy all the elements in the array */ |
| 111 | while (--ncmds >= 0) { |
| 112 | |
| 113 | if (sed_cmds[ncmds].beg_match) { |
| 114 | regfree(sed_cmds[ncmds].beg_match); |
| 115 | free(sed_cmds[ncmds].beg_match); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 116 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 117 | if (sed_cmds[ncmds].end_match) { |
| 118 | regfree(sed_cmds[ncmds].end_match); |
| 119 | free(sed_cmds[ncmds].end_match); |
| 120 | } |
| 121 | if (sed_cmds[ncmds].sub_match) { |
| 122 | regfree(sed_cmds[ncmds].sub_match); |
| 123 | free(sed_cmds[ncmds].sub_match); |
| 124 | } |
| 125 | if (sed_cmds[ncmds].replace) |
| 126 | free(sed_cmds[ncmds].replace); |
| 127 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 128 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 129 | /* destroy the array */ |
| 130 | free(sed_cmds); |
| 131 | sed_cmds = NULL; |
| 132 | } |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 133 | #endif |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 134 | |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 135 | #if 0 |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 136 | /* |
| 137 | * trim_str - trims leading and trailing space from a string |
| 138 | * |
| 139 | * Note: This returns a malloc'ed string so you must store and free it |
| 140 | * XXX: This should be in the utility.c file. |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 141 | * XXX: This is now obsolete. Maybe it belongs nowhere. |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 142 | */ |
| 143 | static char *trim_str(const char *str) |
| 144 | { |
| 145 | int i; |
| 146 | char *retstr = strdup(str); |
| 147 | |
| 148 | /* trim leading whitespace */ |
| 149 | memmove(retstr, &retstr[strspn(retstr, " \n\t\v")], strlen(retstr)); |
| 150 | |
| 151 | /* trim trailing whitespace */ |
| 152 | i = strlen(retstr) - 1; |
| 153 | while (isspace(retstr[i])) |
| 154 | i--; |
| 155 | retstr[++i] = 0; |
| 156 | |
| 157 | /* Aside: |
| 158 | * |
| 159 | * you know, a strrspn() would really be nice cuz then we could say: |
| 160 | * |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 161 | * retstr[strrspn(retstr, " \n\t\v") + 1] = 0; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 162 | */ |
| 163 | |
| 164 | return retstr; |
| 165 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 166 | #endif |
| 167 | |
| 168 | #if 0 |
| 169 | /* |
| 170 | * strrspn - works just like strspn() but goes from right to left instead of |
| 171 | * left to right |
| 172 | */ |
| 173 | static size_t strrspn(const char *s, const char *accept) |
| 174 | { |
| 175 | size_t i = strlen(s); |
| 176 | |
| 177 | while (strchr(accept, s[--i])) |
| 178 | ; |
| 179 | |
| 180 | return i; |
| 181 | } |
| 182 | #endif |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 183 | |
| 184 | /* |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 185 | * index_of_next_unescaped_slash - walks left to right through a string |
| 186 | * beginning at a specified index and returns the index of the next forward |
| 187 | * slash ('/') not preceeded by a backslash ('\'). |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 188 | */ |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 189 | static int index_of_next_unescaped_slash(const char *str, int idx) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 190 | { |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 191 | for ( ; str[idx]; idx++) { |
| 192 | if (str[idx] == '/' && str[idx-1] != '\\') |
| 193 | return idx; |
| 194 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 195 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 196 | /* if we make it to here, we've hit the end of the string */ |
| 197 | return -1; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | /* |
| 201 | * returns the index in the string just past where the address ends. |
| 202 | */ |
| 203 | static int get_address(const char *str, int *line, regex_t **regex) |
| 204 | { |
| 205 | char *my_str = strdup(str); |
| 206 | int idx = 0; |
| 207 | |
| 208 | if (isdigit(my_str[idx])) { |
| 209 | do { |
| 210 | idx++; |
| 211 | } while (isdigit(my_str[idx])); |
| 212 | my_str[idx] = 0; |
| 213 | *line = atoi(my_str); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 214 | } |
| 215 | else if (my_str[idx] == '$') { |
| 216 | *line = -1; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 217 | idx++; |
| 218 | } |
| 219 | else if (my_str[idx] == '/') { |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 220 | idx = index_of_next_unescaped_slash(my_str, ++idx); |
Mark Whitley | df5f6ba | 2000-07-11 16:53:56 +0000 | [diff] [blame] | 221 | if (idx == -1) |
Matt Kraai | be84cd4 | 2000-07-12 17:02:35 +0000 | [diff] [blame] | 222 | fatalError("unterminated match expression\n"); |
Mark Whitley | df5f6ba | 2000-07-11 16:53:56 +0000 | [diff] [blame] | 223 | my_str[idx] = '\0'; |
| 224 | *regex = (regex_t *)xmalloc(sizeof(regex_t)); |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 225 | xregcomp(*regex, my_str+1, REG_NEWLINE); |
Mark Whitley | 496e33f | 2000-07-13 22:52:02 +0000 | [diff] [blame] | 226 | idx++; /* so it points to the next character after the last '/' */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 227 | } |
| 228 | else { |
Matt Kraai | d537a95 | 2000-07-14 01:51:25 +0000 | [diff] [blame] | 229 | errorMsg("get_address: no address found in string\n" |
| 230 | "\t(you probably didn't check the string you passed me)\n"); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 231 | idx = -1; |
| 232 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 233 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 234 | free(my_str); |
| 235 | return idx; |
| 236 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 237 | |
Mark Whitley | df5f6ba | 2000-07-11 16:53:56 +0000 | [diff] [blame] | 238 | static char *strdup_substr(const char *str, int start, int end) |
| 239 | { |
| 240 | int size = end - start + 1; |
| 241 | char *newstr = xmalloc(size); |
| 242 | memcpy(newstr, str+start, size-1); |
| 243 | newstr[size-1] = '\0'; |
| 244 | return newstr; |
| 245 | } |
| 246 | |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 247 | static int parse_subst_cmd(struct sed_cmd *sed_cmd, const char *substr) |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 248 | { |
| 249 | int oldidx, cflags = REG_NEWLINE; |
| 250 | char *match; |
| 251 | int idx = 0; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 252 | int j; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 253 | |
| 254 | /* |
| 255 | * the string that gets passed to this function should look like this: |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 256 | * s/match/replace/gIp |
| 257 | * || | ||| |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 258 | * mandatory optional |
| 259 | * |
| 260 | * (all three of the '/' slashes are mandatory) |
| 261 | */ |
| 262 | |
| 263 | /* verify that the 's' is followed by a 'slash' */ |
| 264 | if (substr[++idx] != '/') |
| 265 | fatalError("bad format in substitution expression\n"); |
| 266 | |
| 267 | /* save the match string */ |
| 268 | oldidx = idx+1; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 269 | idx = index_of_next_unescaped_slash(substr, ++idx); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 270 | if (idx == -1) |
| 271 | fatalError("bad format in substitution expression\n"); |
| 272 | match = strdup_substr(substr, oldidx, idx); |
| 273 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 274 | /* determine the number of back references in the match string */ |
| 275 | /* Note: we compute this here rather than in the do_subst_command() |
| 276 | * function to save processor time, at the expense of a little more memory |
| 277 | * (4 bits) per sed_cmd */ |
| 278 | |
| 279 | /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */ |
| 280 | for (j = 0; match[j]; j++) { |
| 281 | /* GNU/POSIX sed does not save more than nine backrefs */ |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 282 | if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 283 | sed_cmd->num_backrefs++; |
| 284 | } |
| 285 | |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 286 | /* save the replacement string */ |
| 287 | oldidx = idx+1; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 288 | idx = index_of_next_unescaped_slash(substr, ++idx); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 289 | if (idx == -1) |
| 290 | fatalError("bad format in substitution expression\n"); |
| 291 | sed_cmd->replace = strdup_substr(substr, oldidx, idx); |
| 292 | |
| 293 | /* process the flags */ |
| 294 | while (substr[++idx]) { |
| 295 | switch (substr[idx]) { |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 296 | case 'g': |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 297 | sed_cmd->sub_g = 1; |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 298 | break; |
| 299 | case 'I': |
| 300 | cflags |= REG_ICASE; |
| 301 | break; |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 302 | case 'p': |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 303 | sed_cmd->sub_p = 1; |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 304 | break; |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 305 | default: |
| 306 | /* any whitespace or semicolon trailing after a s/// is ok */ |
| 307 | if (strchr("; \t\v\n\r", substr[idx])) |
| 308 | goto out; |
| 309 | /* else */ |
| 310 | fatalError("bad option in substitution expression\n"); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 311 | } |
| 312 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 313 | |
| 314 | out: |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 315 | /* compile the match string into a regex */ |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 316 | sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t)); |
| 317 | xregcomp(sed_cmd->sub_match, match, cflags); |
| 318 | free(match); |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 319 | |
| 320 | return idx; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 321 | } |
| 322 | |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 323 | static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr) |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 324 | { |
| 325 | int idx = 0; |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 326 | int slashes_eaten = 0; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 327 | char *ptr; /* shorthand */ |
| 328 | |
| 329 | /* |
| 330 | * the string that gets passed to this function should look like this: |
| 331 | * |
| 332 | * need one of these |
| 333 | * | |
| 334 | * | this backslash (immediately following the edit command) is mandatory |
| 335 | * | | |
| 336 | * [aic]\ |
| 337 | * TEXT1\ |
| 338 | * TEXT2\ |
| 339 | * TEXTN |
| 340 | * |
| 341 | * as soon as we hit a TEXT line that has no trailing '\', we're done. |
| 342 | * this means a command like: |
| 343 | * |
| 344 | * i\ |
| 345 | * INSERTME |
| 346 | * |
| 347 | * is a-ok. |
| 348 | * |
| 349 | */ |
| 350 | |
| 351 | if (editstr[1] != '\\' && (editstr[2] != '\n' || editstr[2] != '\r')) |
| 352 | fatalError("bad format in edit expression\n"); |
| 353 | |
| 354 | /* store the edit line text */ |
Mark Whitley | 34623db | 2000-07-14 00:49:59 +0000 | [diff] [blame] | 355 | /* make editline big enough to accomodate the extra '\n' we will tack on |
| 356 | * to the end */ |
| 357 | sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2); |
| 358 | strcpy(sed_cmd->editline, &editstr[3]); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 359 | ptr = sed_cmd->editline; |
| 360 | |
| 361 | /* now we need to go through * and: s/\\[\r\n]$/\n/g on the edit line */ |
| 362 | while (ptr[idx]) { |
| 363 | while (ptr[idx] != '\\' && (ptr[idx+1] != '\n' || ptr[idx+1] != '\r')) { |
| 364 | idx++; |
| 365 | if (!ptr[idx]) { |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 366 | goto out; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 367 | } |
| 368 | } |
| 369 | /* move the newline over the '\' before it (effectively eats the '\') */ |
| 370 | memmove(&ptr[idx], &ptr[idx+1], strlen(&ptr[idx+1])); |
| 371 | ptr[strlen(ptr)-1] = 0; |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 372 | slashes_eaten++; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 373 | /* substitue \r for \n if needed */ |
| 374 | if (ptr[idx] == '\r') |
| 375 | ptr[idx] = '\n'; |
| 376 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 377 | |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 378 | out: |
| 379 | ptr[idx] = '\n'; |
| 380 | ptr[idx+1] = 0; |
| 381 | |
| 382 | /* this accounts for discrepancies between the modified string and the |
| 383 | * original string passed in to this function */ |
| 384 | idx += slashes_eaten; |
| 385 | |
| 386 | /* this accounts for the fact that A) we started at index 3, not at index |
| 387 | * 0 and B) that we added an extra '\n' at the end (if you think the next |
| 388 | * line should read 'idx += 4' remember, arrays are zero-based) */ |
| 389 | |
| 390 | idx += 3; |
| 391 | |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 392 | return idx; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 393 | } |
| 394 | |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 395 | static char *parse_cmd_str(struct sed_cmd *sed_cmd, const char *cmdstr) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 396 | { |
| 397 | int idx = 0; |
| 398 | |
| 399 | /* parse the command |
| 400 | * format is: [addr][,addr]cmd |
| 401 | * |----||-----||-| |
| 402 | * part1 part2 part3 |
| 403 | */ |
| 404 | |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 405 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 406 | /* first part (if present) is an address: either a number or a /regex/ */ |
| 407 | if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/') |
| 408 | idx = get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match); |
| 409 | |
| 410 | /* second part (if present) will begin with a comma */ |
| 411 | if (cmdstr[idx] == ',') |
| 412 | idx += get_address(&cmdstr[++idx], &sed_cmd->end_line, &sed_cmd->end_match); |
| 413 | |
| 414 | /* last part (mandatory) will be a command */ |
| 415 | if (cmdstr[idx] == '\0') |
Matt Kraai | be84cd4 | 2000-07-12 17:02:35 +0000 | [diff] [blame] | 416 | fatalError("missing command\n"); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 417 | if (!strchr("pdsaic", cmdstr[idx])) /* <-- XXX add new commands here */ |
Matt Kraai | be84cd4 | 2000-07-12 17:02:35 +0000 | [diff] [blame] | 418 | fatalError("invalid command\n"); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 419 | sed_cmd->cmd = cmdstr[idx]; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 420 | |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 421 | /* special-case handling for (s)ubstitution */ |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 422 | if (sed_cmd->cmd == 's') { |
| 423 | idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]); |
| 424 | } |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 425 | /* special-case handling for (a)ppend, (i)nsert, and (c)hange */ |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 426 | else if (strchr("aic", cmdstr[idx])) { |
Mark Whitley | 0200834 | 2000-07-14 00:13:52 +0000 | [diff] [blame] | 427 | if (sed_cmd->end_line || sed_cmd->end_match) |
| 428 | fatalError("only a beginning address can be specified for edit commands\n"); |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 429 | idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]); |
Mark Whitley | 0200834 | 2000-07-14 00:13:52 +0000 | [diff] [blame] | 430 | } |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 431 | /* if it was a single-letter command (such as 'p' or 'd') we need to |
| 432 | * increment the index past that command */ |
| 433 | else |
| 434 | idx++; |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 435 | |
| 436 | /* give back whatever's left over */ |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 437 | return (char *)&cmdstr[idx]; |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 438 | } |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 439 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 440 | static void add_cmd_str(const char *cmdstr) |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 441 | { |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 442 | char *mystr = (char *)cmdstr; |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 443 | |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 444 | do { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 445 | |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 446 | /* trim leading whitespace and semicolons */ |
| 447 | memmove(mystr, &mystr[strspn(mystr, "; \n\r\t\v")], strlen(mystr)); |
| 448 | /* if we ate the whole thing, that means there was just trailing |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 449 | * whitespace or a final / no-op semicolon. either way, get out */ |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 450 | if (strlen(mystr) == 0) |
| 451 | return; |
| 452 | /* if this is a comment, jump past it and keep going */ |
| 453 | if (mystr[0] == '#') { |
| 454 | mystr = strpbrk(mystr, ";\n\r"); |
| 455 | continue; |
| 456 | } |
| 457 | /* grow the array */ |
Matt Kraai | 322ae93 | 2000-09-13 02:46:14 +0000 | [diff] [blame] | 458 | sed_cmds = xrealloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds)); |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 459 | /* zero new element */ |
| 460 | memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd)); |
| 461 | /* load command string into new array element, get remainder */ |
| 462 | mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr); |
| 463 | |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 464 | } while (mystr && strlen(mystr)); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | |
| 468 | static void load_cmd_file(char *filename) |
| 469 | { |
| 470 | FILE *cmdfile; |
| 471 | char *line; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 472 | char *nextline; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 473 | |
Matt Kraai | bbaef66 | 2000-09-27 02:43:35 +0000 | [diff] [blame] | 474 | cmdfile = xfopen(filename, "r"); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 475 | |
| 476 | while ((line = get_line_from_file(cmdfile)) != NULL) { |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 477 | /* if a line ends with '\' it needs the next line appended to it */ |
| 478 | while (line[strlen(line)-2] == '\\' && |
| 479 | (nextline = get_line_from_file(cmdfile)) != NULL) { |
Matt Kraai | 322ae93 | 2000-09-13 02:46:14 +0000 | [diff] [blame] | 480 | line = xrealloc(line, strlen(line) + strlen(nextline) + 1); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 481 | strcat(line, nextline); |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 482 | free(nextline); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 483 | } |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 484 | /* eat trailing newline (if any) --if I don't do this, edit commands |
| 485 | * (aic) will print an extra newline */ |
| 486 | if (line[strlen(line)-1] == '\n') |
| 487 | line[strlen(line)-1] = 0; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 488 | add_cmd_str(line); |
| 489 | free(line); |
| 490 | } |
| 491 | } |
| 492 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 493 | static void print_subst_w_backrefs(const char *line, const char *replace, regmatch_t *regmatch) |
| 494 | { |
| 495 | int i; |
| 496 | |
| 497 | /* go through the replacement string */ |
| 498 | for (i = 0; replace[i]; i++) { |
| 499 | /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */ |
| 500 | if (replace[i] == '\\' && isdigit(replace[i+1])) { |
| 501 | int j; |
| 502 | char tmpstr[2]; |
| 503 | int backref; |
| 504 | ++i; /* i now indexes the backref number, instead of the leading slash */ |
| 505 | tmpstr[0] = replace[i]; |
| 506 | tmpstr[1] = 0; |
| 507 | backref = atoi(tmpstr); |
| 508 | /* print out the text held in regmatch[backref] */ |
| 509 | for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++) |
| 510 | fputc(line[j], stdout); |
| 511 | } |
| 512 | |
Mark Whitley | 83e85f6 | 2000-07-25 20:48:44 +0000 | [diff] [blame] | 513 | /* if we find a backslash escaped character, print the character */ |
| 514 | else if (replace[i] == '\\') { |
| 515 | ++i; |
| 516 | fputc(replace[i], stdout); |
| 517 | } |
| 518 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 519 | /* if we find an unescaped '&' print out the whole matched text. |
| 520 | * fortunately, regmatch[0] contains the indicies to the whole matched |
| 521 | * expression (kinda seems like it was designed for just such a |
| 522 | * purpose...) */ |
| 523 | else if (replace[i] == '&' && replace[i-1] != '\\') { |
| 524 | int j; |
| 525 | for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++) |
| 526 | fputc(line[j], stdout); |
| 527 | } |
| 528 | /* nothing special, just print this char of the replacement string to stdout */ |
| 529 | else |
| 530 | fputc(replace[i], stdout); |
| 531 | } |
| 532 | } |
| 533 | |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 534 | static int do_subst_command(const struct sed_cmd *sed_cmd, const char *line) |
| 535 | { |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 536 | char *hackline = (char *)line; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 537 | int altered = 0; |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 538 | regmatch_t *regmatch = NULL; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 539 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 540 | /* if the user specified that they didn't want anything printed (i.e. a -n |
| 541 | * flag and no 'p' flag after the s///), then there's really no point doing |
| 542 | * anything here. */ |
| 543 | if (be_quiet && !sed_cmd->sub_p) |
| 544 | return 0; |
| 545 | |
| 546 | /* we only proceed if the substitution 'search' expression matches */ |
| 547 | if (regexec(sed_cmd->sub_match, line, 0, NULL, 0) == REG_NOMATCH) |
| 548 | return 0; |
| 549 | |
| 550 | /* whaddaya know, it matched. get the number of back references */ |
| 551 | regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1)); |
| 552 | |
| 553 | /* and now, as long as we've got a line to try matching and if we can match |
| 554 | * the search string, we make substitutions */ |
| 555 | while (*hackline && (regexec(sed_cmd->sub_match, hackline, |
| 556 | sed_cmd->num_backrefs+1, regmatch, 0) == 0) ) { |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 557 | int i; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 558 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 559 | /* print everything before the match */ |
| 560 | for (i = 0; i < regmatch[0].rm_so; i++) |
| 561 | fputc(hackline[i], stdout); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 562 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 563 | /* then print the substitution string */ |
| 564 | print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 565 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 566 | /* advance past the match */ |
| 567 | hackline += regmatch[0].rm_eo; |
| 568 | /* flag that something has changed */ |
| 569 | altered++; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 570 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 571 | /* if we're not doing this globally, get out now */ |
| 572 | if (!sed_cmd->sub_g) |
| 573 | break; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 574 | } |
| 575 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 576 | /* if there's anything left of the line, print it */ |
| 577 | if (*hackline) |
| 578 | fputs(hackline, stdout); |
| 579 | |
| 580 | /* cleanup */ |
| 581 | free(regmatch); |
| 582 | |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 583 | return altered; |
| 584 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 585 | |
| 586 | static int do_sed_command(const struct sed_cmd *sed_cmd, const char *line) |
| 587 | { |
| 588 | int altered = 0; |
| 589 | |
| 590 | switch (sed_cmd->cmd) { |
| 591 | |
| 592 | case 'p': |
| 593 | fputs(line, stdout); |
| 594 | break; |
| 595 | |
| 596 | case 'd': |
| 597 | altered++; |
| 598 | break; |
| 599 | |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 600 | case 's': |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 601 | |
| 602 | /* |
| 603 | * Some special cases for 's' printing to make it compliant with |
| 604 | * GNU sed printing behavior (aka "The -n | s///p Matrix"): |
| 605 | * |
| 606 | * -n ONLY = never print anything regardless of any successful |
| 607 | * substitution |
| 608 | * |
| 609 | * s///p ONLY = always print successful substitutions, even if |
| 610 | * the line is going to be printed anyway (line will be printed |
| 611 | * twice). |
| 612 | * |
| 613 | * -n AND s///p = print ONLY a successful substitution ONE TIME; |
| 614 | * no other lines are printed - this is the reason why the 'p' |
| 615 | * flag exists in the first place. |
| 616 | */ |
| 617 | |
| 618 | /* we print the line once, unless we were told to be quiet */ |
| 619 | if (!be_quiet) |
| 620 | altered = do_subst_command(sed_cmd, line); |
| 621 | |
| 622 | /* we also print the line if we were given the 'p' flag |
| 623 | * (this is quite possibly the second printing) */ |
| 624 | if (sed_cmd->sub_p) |
| 625 | altered = do_subst_command(sed_cmd, line); |
| 626 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 627 | break; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 628 | |
| 629 | case 'a': |
| 630 | fputs(line, stdout); |
| 631 | fputs(sed_cmd->editline, stdout); |
| 632 | altered++; |
| 633 | break; |
| 634 | |
| 635 | case 'i': |
| 636 | fputs(sed_cmd->editline, stdout); |
| 637 | break; |
| 638 | |
| 639 | case 'c': |
| 640 | fputs(sed_cmd->editline, stdout); |
| 641 | altered++; |
| 642 | break; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | return altered; |
| 646 | } |
| 647 | |
| 648 | static void process_file(FILE *file) |
| 649 | { |
| 650 | char *line = NULL; |
| 651 | static int linenum = 0; /* GNU sed does not restart counting lines at EOF */ |
| 652 | unsigned int still_in_range = 0; |
| 653 | int line_altered; |
| 654 | int i; |
| 655 | |
| 656 | /* go through every line in the file */ |
| 657 | while ((line = get_line_from_file(file)) != NULL) { |
| 658 | |
| 659 | linenum++; |
| 660 | line_altered = 0; |
| 661 | |
| 662 | /* for every line, go through all the commands */ |
| 663 | for (i = 0; i < ncmds; i++) { |
| 664 | |
| 665 | /* are we acting on a range of matched lines? */ |
| 666 | if (sed_cmds[i].beg_match && sed_cmds[i].end_match) { |
| 667 | if (still_in_range || regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0) { |
| 668 | line_altered += do_sed_command(&sed_cmds[i], line); |
| 669 | still_in_range = 1; |
| 670 | if (regexec(sed_cmds[i].end_match, line, 0, NULL, 0) == 0) |
| 671 | still_in_range = 0; |
| 672 | } |
| 673 | } |
| 674 | |
| 675 | /* are we trying to match a single line? */ |
| 676 | else if (sed_cmds[i].beg_match) { |
| 677 | if (regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0) |
| 678 | line_altered += do_sed_command(&sed_cmds[i], line); |
| 679 | } |
| 680 | |
| 681 | /* are we acting on a range of line numbers? */ |
Mark Whitley | 40406e6 | 2000-08-10 00:09:47 +0000 | [diff] [blame] | 682 | else if (sed_cmds[i].beg_line > 0 && sed_cmds[i].end_line != 0) { |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 683 | if (linenum >= sed_cmds[i].beg_line && |
| 684 | (sed_cmds[i].end_line == -1 || linenum <= sed_cmds[i].end_line)) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 685 | line_altered += do_sed_command(&sed_cmds[i], line); |
| 686 | } |
| 687 | |
| 688 | /* are we acting on a specified line number */ |
| 689 | else if (sed_cmds[i].beg_line > 0) { |
| 690 | if (linenum == sed_cmds[i].beg_line) |
| 691 | line_altered += do_sed_command(&sed_cmds[i], line); |
| 692 | } |
| 693 | |
| 694 | /* not acting on matches or line numbers. act on every line */ |
| 695 | else |
| 696 | line_altered += do_sed_command(&sed_cmds[i], line); |
| 697 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 698 | } |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 699 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame^] | 700 | /* we will print the line unless we were told to be quiet or if the |
| 701 | * line was altered (via a 'd'elete or 's'ubstitution), in which case |
| 702 | * the altered line was already printed */ |
| 703 | if (!be_quiet && !line_altered) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 704 | fputs(line, stdout); |
| 705 | |
| 706 | free(line); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 707 | } |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | extern int sed_main(int argc, char **argv) |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 711 | { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 712 | int opt; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 713 | |
Eric Andersen | b040d4f | 2000-07-25 18:01:20 +0000 | [diff] [blame] | 714 | #ifdef BB_FEATURE_CLEAN_UP |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 715 | /* destroy command strings on exit */ |
| 716 | if (atexit(destroy_cmd_strs) == -1) { |
| 717 | perror("sed"); |
| 718 | exit(1); |
| 719 | } |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 720 | #endif |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 721 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 722 | /* do normal option parsing */ |
Mark Whitley | 1f45b26 | 2000-07-20 23:08:40 +0000 | [diff] [blame] | 723 | while ((opt = getopt(argc, argv, "hne:f:")) > 0) { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 724 | switch (opt) { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 725 | case 'h': |
| 726 | usage(sed_usage); |
| 727 | break; |
Erik Andersen | e916d24 | 2000-03-06 19:20:35 +0000 | [diff] [blame] | 728 | case 'n': |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 729 | be_quiet++; |
Erik Andersen | e916d24 | 2000-03-06 19:20:35 +0000 | [diff] [blame] | 730 | break; |
| 731 | case 'e': |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 732 | add_cmd_str(optarg); |
Erik Andersen | e916d24 | 2000-03-06 19:20:35 +0000 | [diff] [blame] | 733 | break; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 734 | case 'f': |
| 735 | load_cmd_file(optarg); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 736 | break; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 737 | } |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 738 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 739 | |
| 740 | /* if we didn't get a pattern from a -e and no command file was specified, |
| 741 | * argv[optind] should be the pattern. no pattern, no worky */ |
| 742 | if (ncmds == 0) { |
| 743 | if (argv[optind] == NULL) |
| 744 | usage(sed_usage); |
| 745 | else { |
| 746 | add_cmd_str(argv[optind]); |
| 747 | optind++; |
| 748 | } |
| 749 | } |
| 750 | |
| 751 | |
| 752 | /* argv[(optind)..(argc-1)] should be names of file to process. If no |
| 753 | * files were specified or '-' was specified, take input from stdin. |
| 754 | * Otherwise, we process all the files specified. */ |
| 755 | if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) { |
| 756 | process_file(stdin); |
| 757 | } |
| 758 | else { |
| 759 | int i; |
| 760 | FILE *file; |
| 761 | for (i = optind; i < argc; i++) { |
| 762 | file = fopen(argv[i], "r"); |
| 763 | if (file == NULL) { |
Matt Kraai | d537a95 | 2000-07-14 01:51:25 +0000 | [diff] [blame] | 764 | errorMsg("%s: %s\n", argv[i], strerror(errno)); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 765 | } else { |
| 766 | process_file(file); |
| 767 | fclose(file); |
| 768 | } |
| 769 | } |
| 770 | } |
| 771 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 772 | return 0; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 773 | } |