blob: 84449c775c812cfab64e160edfd85434d1b0ebd5 [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"
Pere Orga34425382011-03-31 14:43:25 +020016//usage: "\n -b LIST Output only bytes from LIST"
17//usage: "\n -c LIST Output only characters from LIST"
18//usage: "\n -d CHAR Use CHAR instead of tab as the field delimiter"
19//usage: "\n -s Output only the lines containing delimiter"
20//usage: "\n -f N Print only these fields"
21//usage: "\n -n Ignored"
22//usage:
23//usage:#define cut_example_usage
24//usage: "$ echo \"Hello world\" | cut -f 1 -d ' '\n"
25//usage: "Hello\n"
26//usage: "$ echo \"Hello world\" | cut -f 2 -d ' '\n"
27//usage: "world\n"
28
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000029#include "libbb.h"
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000030
Denis Vlasenko99912ca2007-04-10 15:43:37 +000031/* This is a NOEXEC applet. Be very careful! */
32
33
Mark Whitleyb6967632001-05-18 23:04:51 +000034/* option vars */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000035static const char optstring[] ALIGN1 = "b:c:f:d:sn";
Denis Vlasenko3831c912007-11-23 07:26:15 +000036#define CUT_OPT_BYTE_FLGS (1 << 0)
37#define CUT_OPT_CHAR_FLGS (1 << 1)
38#define CUT_OPT_FIELDS_FLGS (1 << 2)
39#define CUT_OPT_DELIM_FLGS (1 << 3)
40#define CUT_OPT_SUPPRESS_FLGS (1 << 4)
Mark Whitleyb6967632001-05-18 23:04:51 +000041
42struct cut_list {
43 int startpos;
44 int endpos;
45};
46
Rob Landleybc68cd12006-03-10 19:22:06 +000047enum {
48 BOL = 0,
49 EOL = INT_MAX,
50 NON_RANGE = -1
51};
Mark Whitleyb6967632001-05-18 23:04:51 +000052
Mark Whitleyb6967632001-05-18 23:04:51 +000053static int cmpfunc(const void *a, const void *b)
54{
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000055 return (((struct cut_list *) a)->startpos -
56 ((struct cut_list *) b)->startpos);
Mark Whitleyb6967632001-05-18 23:04:51 +000057}
58
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000059static void cut_file(FILE *file, char delim, const struct cut_list *cut_lists, unsigned nlists)
Mark Whitley807f0fd2000-08-02 18:30:11 +000060{
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000061 char *line;
62 unsigned linenum = 0; /* keep these zero-based to be consistent */
Mark Whitley807f0fd2000-08-02 18:30:11 +000063
64 /* go through every line in the file */
Denis Vlasenko8ee649a2008-03-26 20:04:27 +000065 while ((line = xmalloc_fgetline(file)) != NULL) {
Mark Whitleyb6967632001-05-18 23:04:51 +000066
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000067 /* set up a list so we can keep track of what's been printed */
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000068 int linelen = strlen(line);
Denis Vlasenko8334db12008-08-15 21:20:23 +000069 char *printed = xzalloc(linelen + 1);
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000070 char *orig_line = line;
71 unsigned cl_pos = 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000072 int spos;
73
Mark Whitleyb6967632001-05-18 23:04:51 +000074 /* cut based on chars/bytes XXX: only works when sizeof(char) == byte */
Denis Vlasenko372686b2006-10-12 22:42:33 +000075 if (option_mask32 & (CUT_OPT_CHAR_FLGS | CUT_OPT_BYTE_FLGS)) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000076 /* print the chars specified in each cut list */
77 for (; cl_pos < nlists; cl_pos++) {
78 spos = cut_lists[cl_pos].startpos;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000079 while (spos < linelen) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000080 if (!printed[spos]) {
81 printed[spos] = 'X';
82 putchar(line[spos]);
83 }
84 spos++;
85 if (spos > cut_lists[cl_pos].endpos
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000086 /* NON_RANGE is -1, so if below is true,
87 * the above was true too (spos is >= 0) */
88 /* || cut_lists[cl_pos].endpos == NON_RANGE */
89 ) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000090 break;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000091 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000092 }
93 }
94 } else if (delim == '\n') { /* cut by lines */
95 spos = cut_lists[cl_pos].startpos;
Mark Whitleyb6967632001-05-18 23:04:51 +000096
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000097 /* get out if we have no more lists to process or if the lines
98 * are lower than what we're interested in */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +000099 if (((int)linenum < spos) || (cl_pos >= nlists))
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000100 goto next_line;
101
102 /* if the line we're looking for is lower than the one we were
103 * passed, it means we displayed it already, so move on */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000104 while (spos < (int)linenum) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000105 spos++;
106 /* go to the next list if we're at the end of this one */
107 if (spos > cut_lists[cl_pos].endpos
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000108 || cut_lists[cl_pos].endpos == NON_RANGE
109 ) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000110 cl_pos++;
111 /* get out if there's no more lists to process */
112 if (cl_pos >= nlists)
113 goto next_line;
114 spos = cut_lists[cl_pos].startpos;
115 /* get out if the current line is lower than the one
116 * we just became interested in */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000117 if ((int)linenum < spos)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000118 goto next_line;
119 }
120 }
121
122 /* If we made it here, it means we've found the line we're
123 * looking for, so print it */
124 puts(line);
125 goto next_line;
126 } else { /* cut by fields */
127 int ndelim = -1; /* zero-based / one-based problem */
128 int nfields_printed = 0;
129 char *field = NULL;
Denys Vlasenko043b1e52009-09-06 12:47:55 +0200130 char delimiter[2];
131
132 delimiter[0] = delim;
133 delimiter[1] = 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000134
135 /* does this line contain any delimiters? */
136 if (strchr(line, delim) == NULL) {
Denis Vlasenko372686b2006-10-12 22:42:33 +0000137 if (!(option_mask32 & CUT_OPT_SUPPRESS_FLGS))
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000138 puts(line);
139 goto next_line;
140 }
141
142 /* process each list on this line, for as long as we've got
143 * a line to process */
144 for (; cl_pos < nlists && line; cl_pos++) {
145 spos = cut_lists[cl_pos].startpos;
146 do {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000147 /* find the field we're looking for */
148 while (line && ndelim < spos) {
149 field = strsep(&line, delimiter);
150 ndelim++;
151 }
152
153 /* we found it, and it hasn't been printed yet */
154 if (field && ndelim == spos && !printed[ndelim]) {
155 /* if this isn't our first time through, we need to
156 * print the delimiter after the last field that was
157 * printed */
158 if (nfields_printed > 0)
159 putchar(delim);
160 fputs(field, stdout);
161 printed[ndelim] = 'X';
162 nfields_printed++; /* shouldn't overflow.. */
163 }
164
165 spos++;
166
167 /* keep going as long as we have a line to work with,
168 * this is a list, and we're not at the end of that
169 * list */
170 } while (spos <= cut_lists[cl_pos].endpos && line
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000171 && cut_lists[cl_pos].endpos != NON_RANGE);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000172 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000173 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000174 /* if we printed anything at all, we need to finish it with a
175 * newline cuz we were handed a chomped line */
176 putchar('\n');
Denis Vlasenko372686b2006-10-12 22:42:33 +0000177 next_line:
Mark Whitleyb6967632001-05-18 23:04:51 +0000178 linenum++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000179 free(printed);
180 free(orig_line);
Mark Whitley807f0fd2000-08-02 18:30:11 +0000181 }
182}
183
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000184int cut_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000185int cut_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley807f0fd2000-08-02 18:30:11 +0000186{
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000187 /* growable array holding a series of lists */
188 struct cut_list *cut_lists = NULL;
189 unsigned nlists = 0; /* number of elements in above list */
Denis Vlasenko3831c912007-11-23 07:26:15 +0000190 char delim = '\t'; /* delimiter, default is tab */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000191 char *sopt, *ltok;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000192 unsigned opt;
Mark Whitley807f0fd2000-08-02 18:30:11 +0000193
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000194 opt_complementary = "b--bcf:c--bcf:f--bcf";
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000195 opt = getopt32(argv, optstring, &sopt, &sopt, &sopt, &ltok);
Denis Vlasenko9f739442006-12-16 23:49:13 +0000196// argc -= optind;
197 argv += optind;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000198 if (!(opt & (CUT_OPT_BYTE_FLGS | CUT_OPT_CHAR_FLGS | CUT_OPT_FIELDS_FLGS)))
Denis Vlasenko372686b2006-10-12 22:42:33 +0000199 bb_error_msg_and_die("expected a list of bytes, characters, or fields");
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000200
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000201 if (opt & CUT_OPT_DELIM_FLGS) {
Denis Vlasenko3831c912007-11-23 07:26:15 +0000202 if (ltok[0] && ltok[1]) { /* more than 1 char? */
Eric Andersenc9e70242003-06-20 09:16:00 +0000203 bb_error_msg_and_die("the delimiter must be a single character");
204 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000205 delim = ltok[0];
Mark Whitley807f0fd2000-08-02 18:30:11 +0000206 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000207
Mark Whitleyb6967632001-05-18 23:04:51 +0000208 /* non-field (char or byte) cutting has some special handling */
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000209 if (!(opt & CUT_OPT_FIELDS_FLGS)) {
Denis Vlasenko3831c912007-11-23 07:26:15 +0000210 static const char _op_on_field[] ALIGN1 = " only when operating on fields";
211
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000212 if (opt & CUT_OPT_SUPPRESS_FLGS) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000213 bb_error_msg_and_die
214 ("suppressing non-delimited lines makes sense%s",
Denys Vlasenko69675782013-01-14 01:34:48 +0100215 _op_on_field);
Mark Whitleyb6967632001-05-18 23:04:51 +0000216 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000217 if (delim != '\t') {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000218 bb_error_msg_and_die
219 ("a delimiter may be specified%s", _op_on_field);
Mark Whitleyb6967632001-05-18 23:04:51 +0000220 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000221 }
222
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000223 /*
224 * parse list and put values into startpos and endpos.
225 * valid list formats: N, N-, N-M, -M
226 * more than one list can be separated by commas
227 */
228 {
229 char *ntok;
230 int s = 0, e = 0;
231
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000232 /* take apart the lists, one by one (they are separated with commas) */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000233 while ((ltok = strsep(&sopt, ",")) != NULL) {
234
235 /* it's actually legal to pass an empty list */
Denis Vlasenko3831c912007-11-23 07:26:15 +0000236 if (!ltok[0])
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000237 continue;
238
239 /* get the start pos */
240 ntok = strsep(&ltok, "-");
Denis Vlasenko3831c912007-11-23 07:26:15 +0000241 if (!ntok[0]) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000242 s = BOL;
243 } else {
Denys Vlasenko77832482010-08-12 14:14:45 +0200244 s = xatoi_positive(ntok);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000245 /* account for the fact that arrays are zero based, while
246 * the user expects the first char on the line to be char #1 */
247 if (s != 0)
248 s--;
249 }
250
251 /* get the end pos */
Denis Vlasenko3831c912007-11-23 07:26:15 +0000252 if (ltok == NULL) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000253 e = NON_RANGE;
Denis Vlasenko3831c912007-11-23 07:26:15 +0000254 } else if (!ltok[0]) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000255 e = EOL;
256 } else {
Denys Vlasenko77832482010-08-12 14:14:45 +0200257 e = xatoi_positive(ltok);
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000258 /* if the user specified and end position of 0,
259 * that means "til the end of the line" */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000260 if (e == 0)
261 e = EOL;
262 e--; /* again, arrays are zero based, lines are 1 based */
263 if (e == s)
264 e = NON_RANGE;
265 }
266
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000267 /* add the new list */
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000268 cut_lists = xrealloc_vector(cut_lists, 4, nlists);
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000269 /* NB: startpos is always >= 0,
270 * while endpos may be = NON_RANGE (-1) */
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000271 cut_lists[nlists].startpos = s;
272 cut_lists[nlists].endpos = e;
273 nlists++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000274 }
275
276 /* make sure we got some cut positions out of all that */
277 if (nlists == 0)
278 bb_error_msg_and_die("missing list of positions");
279
280 /* now that the lists are parsed, we need to sort them to make life
281 * easier on us when it comes time to print the chars / fields / lines
282 */
Denys Vlasenko573ba4e2010-01-18 12:25:09 +0100283 qsort(cut_lists, nlists, sizeof(cut_lists[0]), cmpfunc);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000284 }
285
Denis Vlasenko3831c912007-11-23 07:26:15 +0000286 {
287 int retval = EXIT_SUCCESS;
Denis Vlasenko3831c912007-11-23 07:26:15 +0000288
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000289 if (!*argv)
290 *--argv = (char *)"-";
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000291
Denis Vlasenko9f739442006-12-16 23:49:13 +0000292 do {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000293 FILE *file = fopen_or_warn_stdin(*argv);
Denis Vlasenko3831c912007-11-23 07:26:15 +0000294 if (!file) {
295 retval = EXIT_FAILURE;
296 continue;
Mark Whitley807f0fd2000-08-02 18:30:11 +0000297 }
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000298 cut_file(file, delim, cut_lists, nlists);
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000299 fclose_if_not_stdin(file);
Denis Vlasenko9f739442006-12-16 23:49:13 +0000300 } while (*++argv);
Denis Vlasenko3831c912007-11-23 07:26:15 +0000301
302 if (ENABLE_FEATURE_CLEAN_UP)
303 free(cut_lists);
304 fflush_stdout_and_exit(retval);
Mark Whitley807f0fd2000-08-02 18:30:11 +0000305 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000306}