blob: dfa1833b4708578c27d18b93768e1e6985ff9017 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Erik Andersen7ab9c7e2000-05-12 19:41:47 +00002/*
Mark Whitley807f0fd2000-08-02 18:30:11 +00003 * cut.c - minimalist version of cut
Erik Andersen7ab9c7e2000-05-12 19:41:47 +00004 *
Eric Andersen8ec10a92001-01-27 09:33:39 +00005 * Copyright (C) 1999,2000,2001 by Lineo, inc.
Eric Andersenc7bda1c2004-03-15 08:29:22 +00006 * Written by Mark Whitley <markw@codepoet.org>
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00007 * debloated by Bernhard Reutner-Fischer
Erik Andersen7ab9c7e2000-05-12 19:41:47 +00008 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02009 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000010 */
11
Pere Orga34425382011-03-31 14:43:25 +020012//usage:#define cut_trivial_usage
13//usage: "[OPTIONS] [FILE]..."
14//usage:#define cut_full_usage "\n\n"
15//usage: "Print selected fields from each input FILE to stdout\n"
16//usage: "\nOptions:"
17//usage: "\n -b LIST Output only bytes from LIST"
18//usage: "\n -c LIST Output only characters from LIST"
19//usage: "\n -d CHAR Use CHAR instead of tab as the field delimiter"
20//usage: "\n -s Output only the lines containing delimiter"
21//usage: "\n -f N Print only these fields"
22//usage: "\n -n Ignored"
23//usage:
24//usage:#define cut_example_usage
25//usage: "$ echo \"Hello world\" | cut -f 1 -d ' '\n"
26//usage: "Hello\n"
27//usage: "$ echo \"Hello world\" | cut -f 2 -d ' '\n"
28//usage: "world\n"
29
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000030#include "libbb.h"
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000031
Denis Vlasenko99912ca2007-04-10 15:43:37 +000032/* This is a NOEXEC applet. Be very careful! */
33
34
Mark Whitleyb6967632001-05-18 23:04:51 +000035/* option vars */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000036static const char optstring[] ALIGN1 = "b:c:f:d:sn";
Denis Vlasenko3831c912007-11-23 07:26:15 +000037#define CUT_OPT_BYTE_FLGS (1 << 0)
38#define CUT_OPT_CHAR_FLGS (1 << 1)
39#define CUT_OPT_FIELDS_FLGS (1 << 2)
40#define CUT_OPT_DELIM_FLGS (1 << 3)
41#define CUT_OPT_SUPPRESS_FLGS (1 << 4)
Mark Whitleyb6967632001-05-18 23:04:51 +000042
43struct cut_list {
44 int startpos;
45 int endpos;
46};
47
Rob Landleybc68cd12006-03-10 19:22:06 +000048enum {
49 BOL = 0,
50 EOL = INT_MAX,
51 NON_RANGE = -1
52};
Mark Whitleyb6967632001-05-18 23:04:51 +000053
Mark Whitleyb6967632001-05-18 23:04:51 +000054static int cmpfunc(const void *a, const void *b)
55{
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000056 return (((struct cut_list *) a)->startpos -
57 ((struct cut_list *) b)->startpos);
Mark Whitleyb6967632001-05-18 23:04:51 +000058}
59
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000060static void cut_file(FILE *file, char delim, const struct cut_list *cut_lists, unsigned nlists)
Mark Whitley807f0fd2000-08-02 18:30:11 +000061{
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000062 char *line;
63 unsigned linenum = 0; /* keep these zero-based to be consistent */
Mark Whitley807f0fd2000-08-02 18:30:11 +000064
65 /* go through every line in the file */
Denis Vlasenko8ee649a2008-03-26 20:04:27 +000066 while ((line = xmalloc_fgetline(file)) != NULL) {
Mark Whitleyb6967632001-05-18 23:04:51 +000067
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000068 /* set up a list so we can keep track of what's been printed */
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000069 int linelen = strlen(line);
Denis Vlasenko8334db12008-08-15 21:20:23 +000070 char *printed = xzalloc(linelen + 1);
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000071 char *orig_line = line;
72 unsigned cl_pos = 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000073 int spos;
74
Mark Whitleyb6967632001-05-18 23:04:51 +000075 /* cut based on chars/bytes XXX: only works when sizeof(char) == byte */
Denis Vlasenko372686b2006-10-12 22:42:33 +000076 if (option_mask32 & (CUT_OPT_CHAR_FLGS | CUT_OPT_BYTE_FLGS)) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000077 /* print the chars specified in each cut list */
78 for (; cl_pos < nlists; cl_pos++) {
79 spos = cut_lists[cl_pos].startpos;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000080 while (spos < linelen) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000081 if (!printed[spos]) {
82 printed[spos] = 'X';
83 putchar(line[spos]);
84 }
85 spos++;
86 if (spos > cut_lists[cl_pos].endpos
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000087 /* NON_RANGE is -1, so if below is true,
88 * the above was true too (spos is >= 0) */
89 /* || cut_lists[cl_pos].endpos == NON_RANGE */
90 ) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000091 break;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000092 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000093 }
94 }
95 } else if (delim == '\n') { /* cut by lines */
96 spos = cut_lists[cl_pos].startpos;
Mark Whitleyb6967632001-05-18 23:04:51 +000097
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000098 /* get out if we have no more lists to process or if the lines
99 * are lower than what we're interested in */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000100 if (((int)linenum < spos) || (cl_pos >= nlists))
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000101 goto next_line;
102
103 /* if the line we're looking for is lower than the one we were
104 * passed, it means we displayed it already, so move on */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000105 while (spos < (int)linenum) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000106 spos++;
107 /* go to the next list if we're at the end of this one */
108 if (spos > cut_lists[cl_pos].endpos
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000109 || cut_lists[cl_pos].endpos == NON_RANGE
110 ) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000111 cl_pos++;
112 /* get out if there's no more lists to process */
113 if (cl_pos >= nlists)
114 goto next_line;
115 spos = cut_lists[cl_pos].startpos;
116 /* get out if the current line is lower than the one
117 * we just became interested in */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000118 if ((int)linenum < spos)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000119 goto next_line;
120 }
121 }
122
123 /* If we made it here, it means we've found the line we're
124 * looking for, so print it */
125 puts(line);
126 goto next_line;
127 } else { /* cut by fields */
128 int ndelim = -1; /* zero-based / one-based problem */
129 int nfields_printed = 0;
130 char *field = NULL;
Denys Vlasenko043b1e52009-09-06 12:47:55 +0200131 char delimiter[2];
132
133 delimiter[0] = delim;
134 delimiter[1] = 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000135
136 /* does this line contain any delimiters? */
137 if (strchr(line, delim) == NULL) {
Denis Vlasenko372686b2006-10-12 22:42:33 +0000138 if (!(option_mask32 & CUT_OPT_SUPPRESS_FLGS))
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000139 puts(line);
140 goto next_line;
141 }
142
143 /* process each list on this line, for as long as we've got
144 * a line to process */
145 for (; cl_pos < nlists && line; cl_pos++) {
146 spos = cut_lists[cl_pos].startpos;
147 do {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000148 /* find the field we're looking for */
149 while (line && ndelim < spos) {
150 field = strsep(&line, delimiter);
151 ndelim++;
152 }
153
154 /* we found it, and it hasn't been printed yet */
155 if (field && ndelim == spos && !printed[ndelim]) {
156 /* if this isn't our first time through, we need to
157 * print the delimiter after the last field that was
158 * printed */
159 if (nfields_printed > 0)
160 putchar(delim);
161 fputs(field, stdout);
162 printed[ndelim] = 'X';
163 nfields_printed++; /* shouldn't overflow.. */
164 }
165
166 spos++;
167
168 /* keep going as long as we have a line to work with,
169 * this is a list, and we're not at the end of that
170 * list */
171 } while (spos <= cut_lists[cl_pos].endpos && line
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000172 && cut_lists[cl_pos].endpos != NON_RANGE);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000173 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000174 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000175 /* if we printed anything at all, we need to finish it with a
176 * newline cuz we were handed a chomped line */
177 putchar('\n');
Denis Vlasenko372686b2006-10-12 22:42:33 +0000178 next_line:
Mark Whitleyb6967632001-05-18 23:04:51 +0000179 linenum++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000180 free(printed);
181 free(orig_line);
Mark Whitley807f0fd2000-08-02 18:30:11 +0000182 }
183}
184
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000185int cut_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000186int cut_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley807f0fd2000-08-02 18:30:11 +0000187{
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000188 /* growable array holding a series of lists */
189 struct cut_list *cut_lists = NULL;
190 unsigned nlists = 0; /* number of elements in above list */
Denis Vlasenko3831c912007-11-23 07:26:15 +0000191 char delim = '\t'; /* delimiter, default is tab */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000192 char *sopt, *ltok;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000193 unsigned opt;
Mark Whitley807f0fd2000-08-02 18:30:11 +0000194
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000195 opt_complementary = "b--bcf:c--bcf:f--bcf";
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000196 opt = getopt32(argv, optstring, &sopt, &sopt, &sopt, &ltok);
Denis Vlasenko9f739442006-12-16 23:49:13 +0000197// argc -= optind;
198 argv += optind;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000199 if (!(opt & (CUT_OPT_BYTE_FLGS | CUT_OPT_CHAR_FLGS | CUT_OPT_FIELDS_FLGS)))
Denis Vlasenko372686b2006-10-12 22:42:33 +0000200 bb_error_msg_and_die("expected a list of bytes, characters, or fields");
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000201
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000202 if (opt & CUT_OPT_DELIM_FLGS) {
Denis Vlasenko3831c912007-11-23 07:26:15 +0000203 if (ltok[0] && ltok[1]) { /* more than 1 char? */
Eric Andersenc9e70242003-06-20 09:16:00 +0000204 bb_error_msg_and_die("the delimiter must be a single character");
205 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000206 delim = ltok[0];
Mark Whitley807f0fd2000-08-02 18:30:11 +0000207 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000208
Mark Whitleyb6967632001-05-18 23:04:51 +0000209 /* non-field (char or byte) cutting has some special handling */
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000210 if (!(opt & CUT_OPT_FIELDS_FLGS)) {
Denis Vlasenko3831c912007-11-23 07:26:15 +0000211 static const char _op_on_field[] ALIGN1 = " only when operating on fields";
212
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000213 if (opt & CUT_OPT_SUPPRESS_FLGS) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000214 bb_error_msg_and_die
215 ("suppressing non-delimited lines makes sense%s",
216 _op_on_field);
Mark Whitleyb6967632001-05-18 23:04:51 +0000217 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000218 if (delim != '\t') {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000219 bb_error_msg_and_die
220 ("a delimiter may be specified%s", _op_on_field);
Mark Whitleyb6967632001-05-18 23:04:51 +0000221 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000222 }
223
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000224 /*
225 * parse list and put values into startpos and endpos.
226 * valid list formats: N, N-, N-M, -M
227 * more than one list can be separated by commas
228 */
229 {
230 char *ntok;
231 int s = 0, e = 0;
232
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000233 /* take apart the lists, one by one (they are separated with commas) */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000234 while ((ltok = strsep(&sopt, ",")) != NULL) {
235
236 /* it's actually legal to pass an empty list */
Denis Vlasenko3831c912007-11-23 07:26:15 +0000237 if (!ltok[0])
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000238 continue;
239
240 /* get the start pos */
241 ntok = strsep(&ltok, "-");
Denis Vlasenko3831c912007-11-23 07:26:15 +0000242 if (!ntok[0]) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000243 s = BOL;
244 } else {
Denys Vlasenko77832482010-08-12 14:14:45 +0200245 s = xatoi_positive(ntok);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000246 /* account for the fact that arrays are zero based, while
247 * the user expects the first char on the line to be char #1 */
248 if (s != 0)
249 s--;
250 }
251
252 /* get the end pos */
Denis Vlasenko3831c912007-11-23 07:26:15 +0000253 if (ltok == NULL) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000254 e = NON_RANGE;
Denis Vlasenko3831c912007-11-23 07:26:15 +0000255 } else if (!ltok[0]) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000256 e = EOL;
257 } else {
Denys Vlasenko77832482010-08-12 14:14:45 +0200258 e = xatoi_positive(ltok);
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000259 /* if the user specified and end position of 0,
260 * that means "til the end of the line" */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000261 if (e == 0)
262 e = EOL;
263 e--; /* again, arrays are zero based, lines are 1 based */
264 if (e == s)
265 e = NON_RANGE;
266 }
267
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000268 /* add the new list */
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000269 cut_lists = xrealloc_vector(cut_lists, 4, nlists);
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000270 /* NB: startpos is always >= 0,
271 * while endpos may be = NON_RANGE (-1) */
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000272 cut_lists[nlists].startpos = s;
273 cut_lists[nlists].endpos = e;
274 nlists++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000275 }
276
277 /* make sure we got some cut positions out of all that */
278 if (nlists == 0)
279 bb_error_msg_and_die("missing list of positions");
280
281 /* now that the lists are parsed, we need to sort them to make life
282 * easier on us when it comes time to print the chars / fields / lines
283 */
Denys Vlasenko573ba4e2010-01-18 12:25:09 +0100284 qsort(cut_lists, nlists, sizeof(cut_lists[0]), cmpfunc);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000285 }
286
Denis Vlasenko3831c912007-11-23 07:26:15 +0000287 {
288 int retval = EXIT_SUCCESS;
Denis Vlasenko3831c912007-11-23 07:26:15 +0000289
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000290 if (!*argv)
291 *--argv = (char *)"-";
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000292
Denis Vlasenko9f739442006-12-16 23:49:13 +0000293 do {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000294 FILE *file = fopen_or_warn_stdin(*argv);
Denis Vlasenko3831c912007-11-23 07:26:15 +0000295 if (!file) {
296 retval = EXIT_FAILURE;
297 continue;
Mark Whitley807f0fd2000-08-02 18:30:11 +0000298 }
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000299 cut_file(file, delim, cut_lists, nlists);
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000300 fclose_if_not_stdin(file);
Denis Vlasenko9f739442006-12-16 23:49:13 +0000301 } while (*++argv);
Denis Vlasenko3831c912007-11-23 07:26:15 +0000302
303 if (ENABLE_FEATURE_CLEAN_UP)
304 free(cut_lists);
305 fflush_stdout_and_exit(retval);
Mark Whitley807f0fd2000-08-02 18:30:11 +0000306 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000307}