"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 2 | /* |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 3 | * cut.c - minimalist version of cut |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | 8ec10a9 | 2001-01-27 09:33:39 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000,2001 by Lineo, inc. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 6 | * Written by Mark Whitley <markw@codepoet.org> |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 7 | * |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 11 | #include <stdio.h> |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 12 | #include <stdlib.h> |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 13 | #include <unistd.h> |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 14 | #include <string.h> |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 15 | #include <limits.h> |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 16 | #include "busybox.h" |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 17 | |
| 18 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 19 | /* option vars */ |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 20 | static const char optstring[] = "b:c:f:d:sn"; |
| 21 | #define OPT_BYTE_FLGS 1 |
| 22 | #define OPT_CHAR_FLGS 2 |
| 23 | #define OPT_FIELDS_FLGS 4 |
| 24 | #define OPT_DELIM_FLGS 8 |
| 25 | #define OPT_SUPRESS_FLGS 16 |
| 26 | static char part; /* (b)yte, (c)har, (f)ields */ |
| 27 | static unsigned int supress_non_delimited_lines; |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 28 | static char delim = '\t'; /* delimiter, default is tab */ |
| 29 | |
| 30 | struct cut_list { |
| 31 | int startpos; |
| 32 | int endpos; |
| 33 | }; |
| 34 | |
Rob Landley | bc68cd1 | 2006-03-10 19:22:06 +0000 | [diff] [blame] | 35 | enum { |
| 36 | BOL = 0, |
| 37 | EOL = INT_MAX, |
| 38 | NON_RANGE = -1 |
| 39 | }; |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 40 | |
| 41 | static struct cut_list *cut_lists = NULL; /* growable array holding a series of lists */ |
| 42 | static unsigned int nlists = 0; /* number of elements in above list */ |
| 43 | |
| 44 | |
| 45 | static int cmpfunc(const void *a, const void *b) |
| 46 | { |
| 47 | struct cut_list *la = (struct cut_list *)a; |
| 48 | struct cut_list *lb = (struct cut_list *)b; |
| 49 | |
| 50 | if (la->startpos > lb->startpos) |
| 51 | return 1; |
| 52 | if (la->startpos < lb->startpos) |
| 53 | return -1; |
| 54 | return 0; |
| 55 | } |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 56 | |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 57 | |
| 58 | /* |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 59 | * parse_lists() - parses a list and puts values into startpos and endpos. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 60 | * valid list formats: N, N-, N-M, -M |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 61 | * more than one list can be separated by commas |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 62 | */ |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 63 | static void parse_lists(char *lists) |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 64 | { |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 65 | char *ltok = NULL; |
| 66 | char *ntok = NULL; |
| 67 | char *junk; |
| 68 | int s = 0, e = 0; |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 69 | |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 70 | /* take apart the lists, one by one (they are separated with commas */ |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 71 | while ((ltok = strsep(&lists, ",")) != NULL) { |
| 72 | |
| 73 | /* it's actually legal to pass an empty list */ |
| 74 | if (strlen(ltok) == 0) |
| 75 | continue; |
| 76 | |
| 77 | /* get the start pos */ |
| 78 | ntok = strsep(<ok, "-"); |
| 79 | if (ntok == NULL) { |
| 80 | fprintf(stderr, "Help ntok is null for starting position! What do I do?\n"); |
| 81 | } else if (strlen(ntok) == 0) { |
| 82 | s = BOL; |
| 83 | } else { |
| 84 | s = strtoul(ntok, &junk, 10); |
| 85 | if(*junk != '\0' || s < 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 86 | bb_error_msg_and_die("invalid byte or field list"); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 87 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 88 | /* account for the fact that arrays are zero based, while the user |
| 89 | * expects the first char on the line to be char # 1 */ |
| 90 | if (s != 0) |
| 91 | s--; |
| 92 | } |
| 93 | |
| 94 | /* get the end pos */ |
| 95 | ntok = strsep(<ok, "-"); |
| 96 | if (ntok == NULL) { |
| 97 | e = NON_RANGE; |
| 98 | } else if (strlen(ntok) == 0) { |
| 99 | e = EOL; |
| 100 | } else { |
| 101 | e = strtoul(ntok, &junk, 10); |
| 102 | if(*junk != '\0' || e < 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 103 | bb_error_msg_and_die("invalid byte or field list"); |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 104 | /* if the user specified and end position of 0, that means "til the |
| 105 | * end of the line */ |
| 106 | if (e == 0) |
| 107 | e = INT_MAX; |
| 108 | e--; /* again, arrays are zero based, lines are 1 based */ |
| 109 | if (e == s) |
| 110 | e = NON_RANGE; |
| 111 | } |
| 112 | |
| 113 | /* if there's something left to tokenize, the user past an invalid list */ |
| 114 | if (ltok) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 115 | bb_error_msg_and_die("invalid byte or field list"); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 116 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 117 | /* add the new list */ |
| 118 | cut_lists = xrealloc(cut_lists, sizeof(struct cut_list) * (++nlists)); |
| 119 | cut_lists[nlists-1].startpos = s; |
| 120 | cut_lists[nlists-1].endpos = e; |
| 121 | } |
| 122 | |
| 123 | /* make sure we got some cut positions out of all that */ |
| 124 | if (nlists == 0) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 125 | bb_error_msg_and_die("missing list of positions"); |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 126 | |
| 127 | /* now that the lists are parsed, we need to sort them to make life easier |
| 128 | * on us when it comes time to print the chars / fields / lines */ |
| 129 | qsort(cut_lists, nlists, sizeof(struct cut_list), cmpfunc); |
| 130 | |
| 131 | } |
| 132 | |
| 133 | |
| 134 | static void cut_line_by_chars(const char *line) |
| 135 | { |
| 136 | int c, l; |
| 137 | /* set up a list so we can keep track of what's been printed */ |
Rob Landley | 081e384 | 2006-08-03 20:07:35 +0000 | [diff] [blame^] | 138 | char *printed = xzalloc(strlen(line)); |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 139 | |
| 140 | /* print the chars specified in each cut list */ |
| 141 | for (c = 0; c < nlists; c++) { |
| 142 | l = cut_lists[c].startpos; |
| 143 | while (l < strlen(line)) { |
| 144 | if (!printed[l]) { |
| 145 | putchar(line[l]); |
| 146 | printed[l] = 'X'; |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 147 | } |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 148 | l++; |
| 149 | if (cut_lists[c].endpos == NON_RANGE || l > cut_lists[c].endpos) |
| 150 | break; |
| 151 | } |
| 152 | } |
| 153 | putchar('\n'); /* cuz we were handed a chomped line */ |
| 154 | free(printed); |
| 155 | } |
| 156 | |
| 157 | |
| 158 | static void cut_line_by_fields(char *line) |
| 159 | { |
| 160 | int c, f; |
| 161 | int ndelim = -1; /* zero-based / one-based problem */ |
| 162 | int nfields_printed = 0; |
| 163 | char *field = NULL; |
| 164 | char d[2] = { delim, 0 }; |
| 165 | char *printed; |
| 166 | |
| 167 | /* test the easy case first: does this line contain any delimiters? */ |
| 168 | if (strchr(line, delim) == NULL) { |
| 169 | if (!supress_non_delimited_lines) |
| 170 | puts(line); |
| 171 | return; |
| 172 | } |
| 173 | |
| 174 | /* set up a list so we can keep track of what's been printed */ |
Rob Landley | 081e384 | 2006-08-03 20:07:35 +0000 | [diff] [blame^] | 175 | printed = xzalloc(strlen(line)); |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 176 | |
| 177 | /* process each list on this line, for as long as we've got a line to process */ |
| 178 | for (c = 0; c < nlists && line; c++) { |
| 179 | f = cut_lists[c].startpos; |
| 180 | do { |
| 181 | |
| 182 | /* find the field we're looking for */ |
| 183 | while (line && ndelim < f) { |
| 184 | field = strsep(&line, d); |
| 185 | ndelim++; |
| 186 | } |
| 187 | |
| 188 | /* we found it, and it hasn't been printed yet */ |
| 189 | if (field && ndelim == f && !printed[ndelim]) { |
| 190 | /* if this isn't our first time through, we need to print the |
| 191 | * delimiter after the last field that was printed */ |
| 192 | if (nfields_printed > 0) |
| 193 | putchar(delim); |
| 194 | fputs(field, stdout); |
| 195 | printed[ndelim] = 'X'; |
| 196 | nfields_printed++; |
| 197 | } |
| 198 | |
| 199 | f++; |
| 200 | |
| 201 | /* keep going as long as we have a line to work with, this is a |
| 202 | * list, and we're not at the end of that list */ |
| 203 | } while (line && cut_lists[c].endpos != NON_RANGE && f <= cut_lists[c].endpos); |
| 204 | } |
| 205 | |
| 206 | /* if we printed anything at all, we need to finish it with a newline cuz |
| 207 | * we were handed a chomped line */ |
| 208 | putchar('\n'); |
| 209 | |
| 210 | free(printed); |
| 211 | } |
| 212 | |
| 213 | |
| 214 | static void cut_file_by_lines(const char *line, unsigned int linenum) |
| 215 | { |
| 216 | static int c = 0; |
| 217 | static int l = -1; |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 218 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 219 | /* I can't initialize this above cuz the "initializer isn't |
| 220 | * constant" *sigh* */ |
| 221 | if (l == -1) |
| 222 | l = cut_lists[c].startpos; |
| 223 | |
| 224 | /* get out if we have no more lists to process or if the lines are lower |
| 225 | * than what we're interested in */ |
| 226 | if (c >= nlists || linenum < l) |
| 227 | return; |
| 228 | |
| 229 | /* if the line we're looking for is lower than the one we were passed, it |
| 230 | * means we displayed it already, so move on */ |
| 231 | while (l < linenum) { |
| 232 | l++; |
| 233 | /* move on to the next list if we're at the end of this one */ |
| 234 | if (cut_lists[c].endpos == NON_RANGE || l > cut_lists[c].endpos) { |
| 235 | c++; |
| 236 | /* get out if there's no more lists to process */ |
| 237 | if (c >= nlists) |
| 238 | return; |
| 239 | l = cut_lists[c].startpos; |
| 240 | /* get out if the current line is lower than the one we just became |
| 241 | * interested in */ |
| 242 | if (linenum < l) |
| 243 | return; |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 244 | } |
| 245 | } |
| 246 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 247 | /* If we made it here, it means we've found the line we're looking for, so print it */ |
| 248 | puts(line); |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 249 | } |
Erik Andersen | 7ab9c7e | 2000-05-12 19:41:47 +0000 | [diff] [blame] | 250 | |
| 251 | |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 252 | /* |
| 253 | * snippy-snip |
| 254 | */ |
| 255 | static void cut_file(FILE *file) |
| 256 | { |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 257 | char *line = NULL; |
| 258 | unsigned int linenum = 0; /* keep these zero-based to be consistent */ |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 259 | |
| 260 | /* go through every line in the file */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 261 | while ((line = bb_get_chomped_line_from_file(file)) != NULL) { |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 262 | |
| 263 | /* cut based on chars/bytes XXX: only works when sizeof(char) == byte */ |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 264 | if ((part & (OPT_CHAR_FLGS | OPT_BYTE_FLGS))) |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 265 | cut_line_by_chars(line); |
| 266 | |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 267 | /* cut based on fields */ |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 268 | else { |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 269 | if (delim == '\n') |
| 270 | cut_file_by_lines(line, linenum); |
| 271 | else |
| 272 | cut_line_by_fields(line); |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 273 | } |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 274 | |
| 275 | linenum++; |
| 276 | free(line); |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 280 | |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 281 | int cut_main(int argc, char **argv) |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 282 | { |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 283 | unsigned long opt; |
| 284 | char *sopt, *sdopt; |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 285 | |
"Vladimir N. Oleynik" | f704b27 | 2005-10-14 09:56:52 +0000 | [diff] [blame] | 286 | bb_opt_complementally = "b--bcf:c--bcf:f--bcf"; |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 287 | opt = bb_getopt_ulflags(argc, argv, optstring, &sopt, &sopt, &sopt, &sdopt); |
| 288 | part = opt & (OPT_BYTE_FLGS|OPT_CHAR_FLGS|OPT_FIELDS_FLGS); |
| 289 | if(part == 0) |
| 290 | bb_error_msg_and_die("you must specify a list of bytes, characters, or fields"); |
Mike Frysinger | 348e84c | 2005-05-11 00:39:03 +0000 | [diff] [blame] | 291 | if(opt & BB_GETOPT_ERROR) |
Eric Andersen | c9e7024 | 2003-06-20 09:16:00 +0000 | [diff] [blame] | 292 | bb_error_msg_and_die("only one type of list may be specified"); |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 293 | parse_lists(sopt); |
| 294 | if((opt & (OPT_DELIM_FLGS))) { |
| 295 | if (strlen(sdopt) > 1) { |
Eric Andersen | c9e7024 | 2003-06-20 09:16:00 +0000 | [diff] [blame] | 296 | bb_error_msg_and_die("the delimiter must be a single character"); |
| 297 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 298 | delim = sdopt[0]; |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 299 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 300 | supress_non_delimited_lines = opt & OPT_SUPRESS_FLGS; |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 301 | |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 302 | /* non-field (char or byte) cutting has some special handling */ |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 303 | if (part != OPT_FIELDS_FLGS) { |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 304 | if (supress_non_delimited_lines) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 305 | bb_error_msg_and_die("suppressing non-delimited lines makes sense" |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 306 | " only when operating on fields"); |
| 307 | } |
Eric Andersen | 8876fb2 | 2003-06-20 09:01:58 +0000 | [diff] [blame] | 308 | if (delim != '\t') { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 309 | bb_error_msg_and_die("a delimiter may be specified only when operating on fields"); |
Mark Whitley | b696763 | 2001-05-18 23:04:51 +0000 | [diff] [blame] | 310 | } |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | /* argv[(optind)..(argc-1)] should be names of file to process. If no |
| 314 | * files were specified or '-' was specified, take input from stdin. |
| 315 | * Otherwise, we process all the files specified. */ |
| 316 | if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) { |
| 317 | cut_file(stdin); |
| 318 | } |
| 319 | else { |
| 320 | int i; |
| 321 | FILE *file; |
| 322 | for (i = optind; i < argc; i++) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 323 | file = bb_wfopen(argv[i], "r"); |
Eric Andersen | 3450636 | 2001-08-02 05:02:46 +0000 | [diff] [blame] | 324 | if(file) { |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 325 | cut_file(file); |
| 326 | fclose(file); |
| 327 | } |
| 328 | } |
| 329 | } |
| 330 | |
Matt Kraai | 3e856ce | 2000-12-01 02:55:13 +0000 | [diff] [blame] | 331 | return EXIT_SUCCESS; |
Mark Whitley | 807f0fd | 2000-08-02 18:30:11 +0000 | [diff] [blame] | 332 | } |