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