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