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 | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 30 | |
| 31 | (Note: Specifying an address (range) to match is *optional*; commands |
| 32 | default to the whole pattern space if no specific address match was |
| 33 | requested.) |
| 34 | |
| 35 | Unsupported features: |
| 36 | |
| 37 | - transliteration (y/source-chars/dest-chars/) (use 'tr') |
| 38 | - no support for characters other than the '/' character for regex matches |
| 39 | - no pattern space hold space storing / swapping (x, etc.) |
| 40 | - no labels / branching (: label, b, t, and friends) |
| 41 | - and lots, lots more. |
| 42 | |
| 43 | */ |
| 44 | |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 45 | #include <stdio.h> |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 46 | #include <stdlib.h> /* for realloc() */ |
| 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() */ |
| 52 | #include "internal.h" |
| 53 | |
| 54 | |
| 55 | /* externs */ |
| 56 | extern int optind; /* in unistd.h */ |
| 57 | extern char *optarg; /* ditto */ |
| 58 | |
| 59 | /* options */ |
| 60 | static int be_quiet = 0; |
| 61 | |
| 62 | struct sed_cmd { |
| 63 | |
| 64 | /* address storage */ |
| 65 | int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */ |
| 66 | int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */ |
| 67 | regex_t *beg_match; /* sed -e '/match/cmd' */ |
| 68 | regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */ |
| 69 | |
| 70 | /* the command */ |
| 71 | char cmd; /* p,d,s (add more at your leisure :-) */ |
| 72 | |
| 73 | /* substitution command specific fields */ |
| 74 | regex_t *sub_match; /* sed -e 's/sub_match/replace/' */ |
| 75 | char *replace; /* sed -e 's/sub_match/replace/' XXX: who will hold the \1 \2 \3s? */ |
| 76 | unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */ |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 77 | |
| 78 | /* edit command (a,i,c) speicific field */ |
| 79 | char *editline; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 80 | }; |
| 81 | |
| 82 | /* globals */ |
| 83 | static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */ |
| 84 | static int ncmds = 0; /* number of sed commands */ |
| 85 | |
| 86 | /*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] | 87 | |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 88 | static const char sed_usage[] = |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 89 | "sed [-Vhnef] pattern [files...]\n" |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 90 | #ifndef BB_FEATURE_TRIVIAL_HELP |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 91 | "\n" |
| 92 | "-n\tsuppress automatic printing of pattern space\n" |
| 93 | "-e script\tadd the script to the commands to be executed\n" |
| 94 | "-f scriptfile\tadd the contents of script-file to the commands to be executed\n" |
| 95 | "-h\tdisplay this help message\n" |
| 96 | "-V\toutput version information and exit\n" |
| 97 | "\n" |
| 98 | "If no -e or -f is given, the first non-option argument is taken as the\n" |
| 99 | "sed script to interpret. All remaining arguments are names of input\n" |
| 100 | "files; if no input files are specified, then the standard input is read.\n" |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 101 | #endif |
| 102 | ; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 103 | |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 104 | #if 0 |
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 | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 135 | /* |
| 136 | * trim_str - trims leading and trailing space from a string |
| 137 | * |
| 138 | * Note: This returns a malloc'ed string so you must store and free it |
| 139 | * XXX: This should be in the utility.c file. |
| 140 | */ |
| 141 | static char *trim_str(const char *str) |
| 142 | { |
| 143 | int i; |
| 144 | char *retstr = strdup(str); |
| 145 | |
| 146 | /* trim leading whitespace */ |
| 147 | memmove(retstr, &retstr[strspn(retstr, " \n\t\v")], strlen(retstr)); |
| 148 | |
| 149 | /* trim trailing whitespace */ |
| 150 | i = strlen(retstr) - 1; |
| 151 | while (isspace(retstr[i])) |
| 152 | i--; |
| 153 | retstr[++i] = 0; |
| 154 | |
| 155 | /* Aside: |
| 156 | * |
| 157 | * you know, a strrspn() would really be nice cuz then we could say: |
| 158 | * |
| 159 | * retstr[strlen(retstr) - strrspn(retstr, " \n\t\v") + 1] = 0; |
| 160 | */ |
| 161 | |
| 162 | return retstr; |
| 163 | } |
| 164 | |
| 165 | /* |
| 166 | * index_of_unescaped_slash - walks left to right through a string beginning |
| 167 | * at a specified index and returns the index of the next unescaped slash. |
| 168 | */ |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 169 | static int index_of_next_unescaped_slash(const char *str, int idx) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 170 | { |
| 171 | do { |
| 172 | idx++; |
| 173 | /* test if we've hit the end */ |
| 174 | if (str[idx] == 0) |
| 175 | return -1; |
| 176 | } while (str[idx] != '/' && str[idx - 1] != '\\'); |
| 177 | |
| 178 | return idx; |
| 179 | } |
| 180 | |
| 181 | /* |
| 182 | * returns the index in the string just past where the address ends. |
| 183 | */ |
| 184 | static int get_address(const char *str, int *line, regex_t **regex) |
| 185 | { |
| 186 | char *my_str = strdup(str); |
| 187 | int idx = 0; |
| 188 | |
| 189 | if (isdigit(my_str[idx])) { |
| 190 | do { |
| 191 | idx++; |
| 192 | } while (isdigit(my_str[idx])); |
| 193 | my_str[idx] = 0; |
| 194 | *line = atoi(my_str); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 195 | } |
| 196 | else if (my_str[idx] == '$') { |
| 197 | *line = -1; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 198 | idx++; |
| 199 | } |
| 200 | else if (my_str[idx] == '/') { |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 201 | idx = index_of_next_unescaped_slash(my_str, idx); |
Mark Whitley | df5f6ba | 2000-07-11 16:53:56 +0000 | [diff] [blame] | 202 | if (idx == -1) |
Matt Kraai | be84cd4 | 2000-07-12 17:02:35 +0000 | [diff] [blame] | 203 | fatalError("unterminated match expression\n"); |
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)); |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 206 | xregcomp(*regex, my_str+1, 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 | } |
| 209 | else { |
| 210 | fprintf(stderr, "sed.c:get_address: no address found in string\n"); |
| 211 | fprintf(stderr, "\t(you probably didn't check the string you passed me)\n"); |
| 212 | idx = -1; |
| 213 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 214 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 215 | free(my_str); |
| 216 | return idx; |
| 217 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 218 | |
Mark Whitley | df5f6ba | 2000-07-11 16:53:56 +0000 | [diff] [blame] | 219 | static char *strdup_substr(const char *str, int start, int end) |
| 220 | { |
| 221 | int size = end - start + 1; |
| 222 | char *newstr = xmalloc(size); |
| 223 | memcpy(newstr, str+start, size-1); |
| 224 | newstr[size-1] = '\0'; |
| 225 | return newstr; |
| 226 | } |
| 227 | |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 228 | static void parse_subst_cmd(struct sed_cmd *sed_cmd, const char *substr) |
| 229 | { |
| 230 | int oldidx, cflags = REG_NEWLINE; |
| 231 | char *match; |
| 232 | int idx = 0; |
| 233 | |
| 234 | /* |
| 235 | * the string that gets passed to this function should look like this: |
| 236 | * s/match/replace/gI |
| 237 | * || | || |
| 238 | * mandatory optional |
| 239 | * |
| 240 | * (all three of the '/' slashes are mandatory) |
| 241 | */ |
| 242 | |
| 243 | /* verify that the 's' is followed by a 'slash' */ |
| 244 | if (substr[++idx] != '/') |
| 245 | fatalError("bad format in substitution expression\n"); |
| 246 | |
| 247 | /* save the match string */ |
| 248 | oldidx = idx+1; |
| 249 | idx = index_of_next_unescaped_slash(substr, idx); |
| 250 | if (idx == -1) |
| 251 | fatalError("bad format in substitution expression\n"); |
| 252 | match = strdup_substr(substr, oldidx, idx); |
| 253 | |
| 254 | /* save the replacement string */ |
| 255 | oldidx = idx+1; |
| 256 | idx = index_of_next_unescaped_slash(substr, idx); |
| 257 | if (idx == -1) |
| 258 | fatalError("bad format in substitution expression\n"); |
| 259 | sed_cmd->replace = strdup_substr(substr, oldidx, idx); |
| 260 | |
| 261 | /* process the flags */ |
| 262 | while (substr[++idx]) { |
| 263 | switch (substr[idx]) { |
| 264 | case 'g': |
| 265 | sed_cmd->sub_g = 1; |
| 266 | break; |
| 267 | case 'I': |
| 268 | cflags |= REG_ICASE; |
| 269 | break; |
| 270 | default: |
| 271 | fatalError("bad option in substitution expression\n"); |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | /* compile the regex */ |
| 276 | sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t)); |
| 277 | xregcomp(sed_cmd->sub_match, match, cflags); |
| 278 | free(match); |
| 279 | } |
| 280 | |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 281 | static void parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr) |
| 282 | { |
| 283 | int idx = 0; |
| 284 | char *ptr; /* shorthand */ |
| 285 | |
| 286 | /* |
| 287 | * the string that gets passed to this function should look like this: |
| 288 | * |
| 289 | * need one of these |
| 290 | * | |
| 291 | * | this backslash (immediately following the edit command) is mandatory |
| 292 | * | | |
| 293 | * [aic]\ |
| 294 | * TEXT1\ |
| 295 | * TEXT2\ |
| 296 | * TEXTN |
| 297 | * |
| 298 | * as soon as we hit a TEXT line that has no trailing '\', we're done. |
| 299 | * this means a command like: |
| 300 | * |
| 301 | * i\ |
| 302 | * INSERTME |
| 303 | * |
| 304 | * is a-ok. |
| 305 | * |
| 306 | */ |
| 307 | |
| 308 | if (editstr[1] != '\\' && (editstr[2] != '\n' || editstr[2] != '\r')) |
| 309 | fatalError("bad format in edit expression\n"); |
| 310 | |
| 311 | /* store the edit line text */ |
| 312 | sed_cmd->editline = strdup(&editstr[3]); |
| 313 | ptr = sed_cmd->editline; |
| 314 | |
| 315 | /* now we need to go through * and: s/\\[\r\n]$/\n/g on the edit line */ |
| 316 | while (ptr[idx]) { |
| 317 | while (ptr[idx] != '\\' && (ptr[idx+1] != '\n' || ptr[idx+1] != '\r')) { |
| 318 | idx++; |
| 319 | if (!ptr[idx]) { |
| 320 | ptr[idx] = '\n'; |
| 321 | ptr[idx+1] = 0; |
| 322 | return; |
| 323 | } |
| 324 | } |
| 325 | /* move the newline over the '\' before it (effectively eats the '\') */ |
| 326 | memmove(&ptr[idx], &ptr[idx+1], strlen(&ptr[idx+1])); |
| 327 | ptr[strlen(ptr)-1] = 0; |
| 328 | /* substitue \r for \n if needed */ |
| 329 | if (ptr[idx] == '\r') |
| 330 | ptr[idx] = '\n'; |
| 331 | } |
| 332 | } |
| 333 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 334 | static void parse_cmd_str(struct sed_cmd *sed_cmd, const char *cmdstr) |
| 335 | { |
| 336 | int idx = 0; |
| 337 | |
| 338 | /* parse the command |
| 339 | * format is: [addr][,addr]cmd |
| 340 | * |----||-----||-| |
| 341 | * part1 part2 part3 |
| 342 | */ |
| 343 | |
| 344 | /* first part (if present) is an address: either a number or a /regex/ */ |
| 345 | if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/') |
| 346 | idx = get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match); |
| 347 | |
| 348 | /* second part (if present) will begin with a comma */ |
| 349 | if (cmdstr[idx] == ',') |
| 350 | idx += get_address(&cmdstr[++idx], &sed_cmd->end_line, &sed_cmd->end_match); |
| 351 | |
| 352 | /* last part (mandatory) will be a command */ |
| 353 | if (cmdstr[idx] == '\0') |
Matt Kraai | be84cd4 | 2000-07-12 17:02:35 +0000 | [diff] [blame] | 354 | fatalError("missing command\n"); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 355 | if (!strchr("pdsaic", cmdstr[idx])) /* <-- XXX add new commands here */ |
Matt Kraai | be84cd4 | 2000-07-12 17:02:35 +0000 | [diff] [blame] | 356 | fatalError("invalid command\n"); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 357 | sed_cmd->cmd = cmdstr[idx]; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 358 | |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 359 | /* special-case handling for (s)ubstitution */ |
| 360 | if (sed_cmd->cmd == 's') |
| 361 | parse_subst_cmd(sed_cmd, &cmdstr[idx]); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 362 | |
| 363 | /* special-case handling for (a)ppend, (i)nsert, and (c)hange */ |
Mark Whitley | 0200834 | 2000-07-14 00:13:52 +0000 | [diff] [blame^] | 364 | if (strchr("aic", cmdstr[idx])) { |
| 365 | if (sed_cmd->end_line || sed_cmd->end_match) |
| 366 | fatalError("only a beginning address can be specified for edit commands\n"); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 367 | parse_edit_cmd(sed_cmd, &cmdstr[idx]); |
Mark Whitley | 0200834 | 2000-07-14 00:13:52 +0000 | [diff] [blame^] | 368 | } |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 369 | } |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 370 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 371 | static void add_cmd_str(const char *cmdstr) |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 372 | { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 373 | char *my_cmdstr = trim_str(cmdstr); |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 374 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 375 | /* if this is a comment, don't even bother */ |
| 376 | if (my_cmdstr[0] == '#') { |
| 377 | free(my_cmdstr); |
| 378 | return; |
| 379 | } |
| 380 | |
| 381 | /* grow the array */ |
| 382 | sed_cmds = realloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds)); |
| 383 | /* zero new element */ |
| 384 | memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd)); |
| 385 | /* load command string into new array element */ |
| 386 | parse_cmd_str(&sed_cmds[ncmds-1], my_cmdstr); |
| 387 | } |
| 388 | |
| 389 | |
| 390 | static void load_cmd_file(char *filename) |
| 391 | { |
| 392 | FILE *cmdfile; |
| 393 | char *line; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 394 | char *nextline; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 395 | |
| 396 | cmdfile = fopen(filename, "r"); |
| 397 | if (cmdfile == NULL) |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 398 | fatalError(strerror(errno)); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 399 | |
| 400 | while ((line = get_line_from_file(cmdfile)) != NULL) { |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 401 | /* if a line ends with '\' it needs the next line appended to it */ |
| 402 | while (line[strlen(line)-2] == '\\' && |
| 403 | (nextline = get_line_from_file(cmdfile)) != NULL) { |
| 404 | line = realloc(line, strlen(line) + strlen(nextline) + 1); |
| 405 | strcat(line, nextline); |
| 406 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 407 | add_cmd_str(line); |
| 408 | free(line); |
| 409 | } |
| 410 | } |
| 411 | |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 412 | static int do_subst_command(const struct sed_cmd *sed_cmd, const char *line) |
| 413 | { |
| 414 | int altered = 0; |
| 415 | |
| 416 | /* we only substitute if the substitution 'search' expression matches */ |
| 417 | if (regexec(sed_cmd->sub_match, line, 0, NULL, 0) == 0) { |
| 418 | regmatch_t regmatch; |
| 419 | int i; |
| 420 | char *ptr = (char *)line; |
| 421 | |
| 422 | while (*ptr) { |
| 423 | /* if we can match the search string... */ |
| 424 | if (regexec(sed_cmd->sub_match, ptr, 1, ®match, 0) == 0) { |
| 425 | /* print everything before the match, */ |
| 426 | for (i = 0; i < regmatch.rm_so; i++) |
| 427 | fputc(ptr[i], stdout); |
| 428 | /* then print the substitution in its place */ |
| 429 | fputs(sed_cmd->replace, stdout); |
| 430 | /* then advance past the match */ |
| 431 | ptr += regmatch.rm_eo; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 432 | /* and flag that something has changed */ |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 433 | altered++; |
| 434 | |
| 435 | /* if we're not doing this globally... */ |
| 436 | if (!sed_cmd->sub_g) |
| 437 | break; |
| 438 | } |
| 439 | /* if we COULD NOT match the search string (meaning we've gone past |
| 440 | * all previous instances), get out */ |
| 441 | else |
| 442 | break; |
| 443 | } |
| 444 | |
| 445 | /* is there anything left to print? */ |
| 446 | if (*ptr) |
| 447 | fputs(ptr, stdout); |
| 448 | } |
| 449 | |
| 450 | return altered; |
| 451 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 452 | |
| 453 | static int do_sed_command(const struct sed_cmd *sed_cmd, const char *line) |
| 454 | { |
| 455 | int altered = 0; |
| 456 | |
| 457 | switch (sed_cmd->cmd) { |
| 458 | |
| 459 | case 'p': |
| 460 | fputs(line, stdout); |
| 461 | break; |
| 462 | |
| 463 | case 'd': |
| 464 | altered++; |
| 465 | break; |
| 466 | |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 467 | case 's': |
| 468 | altered = do_subst_command(sed_cmd, line); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 469 | break; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 470 | |
| 471 | case 'a': |
| 472 | fputs(line, stdout); |
| 473 | fputs(sed_cmd->editline, stdout); |
| 474 | altered++; |
| 475 | break; |
| 476 | |
| 477 | case 'i': |
| 478 | fputs(sed_cmd->editline, stdout); |
| 479 | break; |
| 480 | |
| 481 | case 'c': |
| 482 | fputs(sed_cmd->editline, stdout); |
| 483 | altered++; |
| 484 | break; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | return altered; |
| 488 | } |
| 489 | |
| 490 | static void process_file(FILE *file) |
| 491 | { |
| 492 | char *line = NULL; |
| 493 | static int linenum = 0; /* GNU sed does not restart counting lines at EOF */ |
| 494 | unsigned int still_in_range = 0; |
| 495 | int line_altered; |
| 496 | int i; |
| 497 | |
| 498 | /* go through every line in the file */ |
| 499 | while ((line = get_line_from_file(file)) != NULL) { |
| 500 | |
| 501 | linenum++; |
| 502 | line_altered = 0; |
| 503 | |
| 504 | /* for every line, go through all the commands */ |
| 505 | for (i = 0; i < ncmds; i++) { |
| 506 | |
| 507 | /* are we acting on a range of matched lines? */ |
| 508 | if (sed_cmds[i].beg_match && sed_cmds[i].end_match) { |
| 509 | if (still_in_range || regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0) { |
| 510 | line_altered += do_sed_command(&sed_cmds[i], line); |
| 511 | still_in_range = 1; |
| 512 | if (regexec(sed_cmds[i].end_match, line, 0, NULL, 0) == 0) |
| 513 | still_in_range = 0; |
| 514 | } |
| 515 | } |
| 516 | |
| 517 | /* are we trying to match a single line? */ |
| 518 | else if (sed_cmds[i].beg_match) { |
| 519 | if (regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0) |
| 520 | line_altered += do_sed_command(&sed_cmds[i], line); |
| 521 | } |
| 522 | |
| 523 | /* are we acting on a range of line numbers? */ |
| 524 | else if (sed_cmds[i].beg_line > 0 && sed_cmds[i].end_line > 0) { |
| 525 | if (linenum >= sed_cmds[i].beg_line && linenum <= sed_cmds[i].end_line) |
| 526 | line_altered += do_sed_command(&sed_cmds[i], line); |
| 527 | } |
| 528 | |
| 529 | /* are we acting on a specified line number */ |
| 530 | else if (sed_cmds[i].beg_line > 0) { |
| 531 | if (linenum == sed_cmds[i].beg_line) |
| 532 | line_altered += do_sed_command(&sed_cmds[i], line); |
| 533 | } |
| 534 | |
| 535 | /* not acting on matches or line numbers. act on every line */ |
| 536 | else |
| 537 | line_altered += do_sed_command(&sed_cmds[i], line); |
| 538 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 539 | } |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 540 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 541 | /* we will print the line unless we were told to be quiet or if the |
| 542 | * line was altered (via a 'd'elete or 's'ubstitution) */ |
| 543 | if (!be_quiet && !line_altered) |
| 544 | fputs(line, stdout); |
| 545 | |
| 546 | free(line); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 547 | } |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | extern int sed_main(int argc, char **argv) |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 551 | { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 552 | int opt; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 553 | |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 554 | /* do special-case option parsing */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 555 | if (argv[1] && (strcmp(argv[1], "--help") == 0)) |
Eric Andersen | c1525e8 | 1999-10-29 00:07:31 +0000 | [diff] [blame] | 556 | usage(sed_usage); |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 557 | |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 558 | #if 0 |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 559 | /* destroy command strings on exit */ |
| 560 | if (atexit(destroy_cmd_strs) == -1) { |
| 561 | perror("sed"); |
| 562 | exit(1); |
| 563 | } |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 564 | #endif |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 565 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 566 | /* do normal option parsing */ |
| 567 | while ((opt = getopt(argc, argv, "Vhne:f:")) > 0) { |
| 568 | switch (opt) { |
| 569 | case 'V': |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 570 | printf("BusyBox v%s (%s)\n", BB_VER, BB_BT); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 571 | exit(0); |
| 572 | break; |
| 573 | case 'h': |
| 574 | usage(sed_usage); |
| 575 | break; |
Erik Andersen | e916d24 | 2000-03-06 19:20:35 +0000 | [diff] [blame] | 576 | case 'n': |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 577 | be_quiet++; |
Erik Andersen | e916d24 | 2000-03-06 19:20:35 +0000 | [diff] [blame] | 578 | break; |
| 579 | case 'e': |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 580 | add_cmd_str(optarg); |
Erik Andersen | e916d24 | 2000-03-06 19:20:35 +0000 | [diff] [blame] | 581 | break; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 582 | case 'f': |
| 583 | load_cmd_file(optarg); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 584 | break; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 585 | } |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 586 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 587 | |
| 588 | /* if we didn't get a pattern from a -e and no command file was specified, |
| 589 | * argv[optind] should be the pattern. no pattern, no worky */ |
| 590 | if (ncmds == 0) { |
| 591 | if (argv[optind] == NULL) |
| 592 | usage(sed_usage); |
| 593 | else { |
| 594 | add_cmd_str(argv[optind]); |
| 595 | optind++; |
| 596 | } |
| 597 | } |
| 598 | |
| 599 | |
| 600 | /* argv[(optind)..(argc-1)] should be names of file to process. If no |
| 601 | * files were specified or '-' was specified, take input from stdin. |
| 602 | * Otherwise, we process all the files specified. */ |
| 603 | if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) { |
| 604 | process_file(stdin); |
| 605 | } |
| 606 | else { |
| 607 | int i; |
| 608 | FILE *file; |
| 609 | for (i = optind; i < argc; i++) { |
| 610 | file = fopen(argv[i], "r"); |
| 611 | if (file == NULL) { |
| 612 | fprintf(stderr, "sed: %s: %s\n", argv[i], strerror(errno)); |
| 613 | } else { |
| 614 | process_file(file); |
| 615 | fclose(file); |
| 616 | } |
| 617 | } |
| 618 | } |
| 619 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 620 | return 0; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 621 | } |