blob: 9cc22be16ef1773c293023a699c87d5ae5f7fa65 [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 *
"Robert P. J. Day"801ab142006-07-12 07:56:04 +00009 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000010 */
11
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Erik Andersen7ab9c7e2000-05-12 19:41:47 +000013
Denis Vlasenko99912ca2007-04-10 15:43:37 +000014/* This is a NOEXEC applet. Be very careful! */
15
16
Mark Whitleyb6967632001-05-18 23:04:51 +000017/* option vars */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000018static const char optstring[] ALIGN1 = "b:c:f:d:sn";
Denis Vlasenko3831c912007-11-23 07:26:15 +000019#define CUT_OPT_BYTE_FLGS (1 << 0)
20#define CUT_OPT_CHAR_FLGS (1 << 1)
21#define CUT_OPT_FIELDS_FLGS (1 << 2)
22#define CUT_OPT_DELIM_FLGS (1 << 3)
23#define CUT_OPT_SUPPRESS_FLGS (1 << 4)
Mark Whitleyb6967632001-05-18 23:04:51 +000024
25struct cut_list {
26 int startpos;
27 int endpos;
28};
29
Rob Landleybc68cd12006-03-10 19:22:06 +000030enum {
31 BOL = 0,
32 EOL = INT_MAX,
33 NON_RANGE = -1
34};
Mark Whitleyb6967632001-05-18 23:04:51 +000035
Mark Whitleyb6967632001-05-18 23:04:51 +000036static int cmpfunc(const void *a, const void *b)
37{
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000038 return (((struct cut_list *) a)->startpos -
39 ((struct cut_list *) b)->startpos);
Mark Whitleyb6967632001-05-18 23:04:51 +000040
41}
42
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000043static void cut_file(FILE *file, char delim, const struct cut_list *cut_lists, unsigned nlists)
Mark Whitley807f0fd2000-08-02 18:30:11 +000044{
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000045 char *line;
46 unsigned linenum = 0; /* keep these zero-based to be consistent */
Mark Whitley807f0fd2000-08-02 18:30:11 +000047
48 /* go through every line in the file */
Denis Vlasenko8ee649a2008-03-26 20:04:27 +000049 while ((line = xmalloc_fgetline(file)) != NULL) {
Mark Whitleyb6967632001-05-18 23:04:51 +000050
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000051 /* set up a list so we can keep track of what's been printed */
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000052 int linelen = strlen(line);
Denis Vlasenko8334db12008-08-15 21:20:23 +000053 char *printed = xzalloc(linelen + 1);
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000054 char *orig_line = line;
55 unsigned cl_pos = 0;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000056 int spos;
57
Mark Whitleyb6967632001-05-18 23:04:51 +000058 /* cut based on chars/bytes XXX: only works when sizeof(char) == byte */
Denis Vlasenko372686b2006-10-12 22:42:33 +000059 if (option_mask32 & (CUT_OPT_CHAR_FLGS | CUT_OPT_BYTE_FLGS)) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000060 /* print the chars specified in each cut list */
61 for (; cl_pos < nlists; cl_pos++) {
62 spos = cut_lists[cl_pos].startpos;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000063 while (spos < linelen) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000064 if (!printed[spos]) {
65 printed[spos] = 'X';
66 putchar(line[spos]);
67 }
68 spos++;
69 if (spos > cut_lists[cl_pos].endpos
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000070 /* NON_RANGE is -1, so if below is true,
71 * the above was true too (spos is >= 0) */
72 /* || cut_lists[cl_pos].endpos == NON_RANGE */
73 ) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000074 break;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000075 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000076 }
77 }
78 } else if (delim == '\n') { /* cut by lines */
79 spos = cut_lists[cl_pos].startpos;
Mark Whitleyb6967632001-05-18 23:04:51 +000080
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000081 /* get out if we have no more lists to process or if the lines
82 * are lower than what we're interested in */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +000083 if (((int)linenum < spos) || (cl_pos >= nlists))
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000084 goto next_line;
85
86 /* if the line we're looking for is lower than the one we were
87 * passed, it means we displayed it already, so move on */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +000088 while (spos < (int)linenum) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000089 spos++;
90 /* go to the next list if we're at the end of this one */
91 if (spos > cut_lists[cl_pos].endpos
Denis Vlasenko9e3a5402008-07-22 10:34:46 +000092 || cut_lists[cl_pos].endpos == NON_RANGE
93 ) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000094 cl_pos++;
95 /* get out if there's no more lists to process */
96 if (cl_pos >= nlists)
97 goto next_line;
98 spos = cut_lists[cl_pos].startpos;
99 /* get out if the current line is lower than the one
100 * we just became interested in */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000101 if ((int)linenum < spos)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000102 goto next_line;
103 }
104 }
105
106 /* If we made it here, it means we've found the line we're
107 * looking for, so print it */
108 puts(line);
109 goto next_line;
110 } else { /* cut by fields */
111 int ndelim = -1; /* zero-based / one-based problem */
112 int nfields_printed = 0;
113 char *field = NULL;
114 const char delimiter[2] = { delim, 0 };
115
116 /* does this line contain any delimiters? */
117 if (strchr(line, delim) == NULL) {
Denis Vlasenko372686b2006-10-12 22:42:33 +0000118 if (!(option_mask32 & CUT_OPT_SUPPRESS_FLGS))
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000119 puts(line);
120 goto next_line;
121 }
122
123 /* process each list on this line, for as long as we've got
124 * a line to process */
125 for (; cl_pos < nlists && line; cl_pos++) {
126 spos = cut_lists[cl_pos].startpos;
127 do {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000128 /* find the field we're looking for */
129 while (line && ndelim < spos) {
130 field = strsep(&line, delimiter);
131 ndelim++;
132 }
133
134 /* we found it, and it hasn't been printed yet */
135 if (field && ndelim == spos && !printed[ndelim]) {
136 /* if this isn't our first time through, we need to
137 * print the delimiter after the last field that was
138 * printed */
139 if (nfields_printed > 0)
140 putchar(delim);
141 fputs(field, stdout);
142 printed[ndelim] = 'X';
143 nfields_printed++; /* shouldn't overflow.. */
144 }
145
146 spos++;
147
148 /* keep going as long as we have a line to work with,
149 * this is a list, and we're not at the end of that
150 * list */
151 } while (spos <= cut_lists[cl_pos].endpos && line
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000152 && cut_lists[cl_pos].endpos != NON_RANGE);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000153 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000154 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000155 /* if we printed anything at all, we need to finish it with a
156 * newline cuz we were handed a chomped line */
157 putchar('\n');
Denis Vlasenko372686b2006-10-12 22:42:33 +0000158 next_line:
Mark Whitleyb6967632001-05-18 23:04:51 +0000159 linenum++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000160 free(printed);
161 free(orig_line);
Mark Whitley807f0fd2000-08-02 18:30:11 +0000162 }
163}
164
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000165int cut_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000166int cut_main(int argc UNUSED_PARAM, char **argv)
Mark Whitley807f0fd2000-08-02 18:30:11 +0000167{
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000168 /* growable array holding a series of lists */
169 struct cut_list *cut_lists = NULL;
170 unsigned nlists = 0; /* number of elements in above list */
Denis Vlasenko3831c912007-11-23 07:26:15 +0000171 char delim = '\t'; /* delimiter, default is tab */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000172 char *sopt, *ltok;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000173 unsigned opt;
Mark Whitley807f0fd2000-08-02 18:30:11 +0000174
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000175 opt_complementary = "b--bcf:c--bcf:f--bcf";
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000176 opt = getopt32(argv, optstring, &sopt, &sopt, &sopt, &ltok);
Denis Vlasenko9f739442006-12-16 23:49:13 +0000177// argc -= optind;
178 argv += optind;
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000179 if (!(opt & (CUT_OPT_BYTE_FLGS | CUT_OPT_CHAR_FLGS | CUT_OPT_FIELDS_FLGS)))
Denis Vlasenko372686b2006-10-12 22:42:33 +0000180 bb_error_msg_and_die("expected a list of bytes, characters, or fields");
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000181
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000182 if (opt & CUT_OPT_DELIM_FLGS) {
Denis Vlasenko3831c912007-11-23 07:26:15 +0000183 if (ltok[0] && ltok[1]) { /* more than 1 char? */
Eric Andersenc9e70242003-06-20 09:16:00 +0000184 bb_error_msg_and_die("the delimiter must be a single character");
185 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000186 delim = ltok[0];
Mark Whitley807f0fd2000-08-02 18:30:11 +0000187 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000188
Mark Whitleyb6967632001-05-18 23:04:51 +0000189 /* non-field (char or byte) cutting has some special handling */
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000190 if (!(opt & CUT_OPT_FIELDS_FLGS)) {
Denis Vlasenko3831c912007-11-23 07:26:15 +0000191 static const char _op_on_field[] ALIGN1 = " only when operating on fields";
192
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000193 if (opt & CUT_OPT_SUPPRESS_FLGS) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000194 bb_error_msg_and_die
195 ("suppressing non-delimited lines makes sense%s",
196 _op_on_field);
Mark Whitleyb6967632001-05-18 23:04:51 +0000197 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000198 if (delim != '\t') {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000199 bb_error_msg_and_die
200 ("a delimiter may be specified%s", _op_on_field);
Mark Whitleyb6967632001-05-18 23:04:51 +0000201 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000202 }
203
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000204 /*
205 * parse list and put values into startpos and endpos.
206 * valid list formats: N, N-, N-M, -M
207 * more than one list can be separated by commas
208 */
209 {
210 char *ntok;
211 int s = 0, e = 0;
212
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000213 /* take apart the lists, one by one (they are separated with commas) */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000214 while ((ltok = strsep(&sopt, ",")) != NULL) {
215
216 /* it's actually legal to pass an empty list */
Denis Vlasenko3831c912007-11-23 07:26:15 +0000217 if (!ltok[0])
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000218 continue;
219
220 /* get the start pos */
221 ntok = strsep(&ltok, "-");
Denis Vlasenko3831c912007-11-23 07:26:15 +0000222 if (!ntok[0]) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000223 s = BOL;
224 } else {
Denis Vlasenko13858992006-10-08 12:49:22 +0000225 s = xatoi_u(ntok);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000226 /* account for the fact that arrays are zero based, while
227 * the user expects the first char on the line to be char #1 */
228 if (s != 0)
229 s--;
230 }
231
232 /* get the end pos */
Denis Vlasenko3831c912007-11-23 07:26:15 +0000233 if (ltok == NULL) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000234 e = NON_RANGE;
Denis Vlasenko3831c912007-11-23 07:26:15 +0000235 } else if (!ltok[0]) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000236 e = EOL;
237 } else {
Denis Vlasenko3831c912007-11-23 07:26:15 +0000238 e = xatoi_u(ltok);
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000239 /* if the user specified and end position of 0,
240 * that means "til the end of the line" */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000241 if (e == 0)
242 e = EOL;
243 e--; /* again, arrays are zero based, lines are 1 based */
244 if (e == s)
245 e = NON_RANGE;
246 }
247
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000248 /* add the new list */
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000249 cut_lists = xrealloc_vector(cut_lists, 4, nlists);
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000250 /* NB: startpos is always >= 0,
251 * while endpos may be = NON_RANGE (-1) */
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000252 cut_lists[nlists].startpos = s;
253 cut_lists[nlists].endpos = e;
254 nlists++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000255 }
256
257 /* make sure we got some cut positions out of all that */
258 if (nlists == 0)
259 bb_error_msg_and_die("missing list of positions");
260
261 /* now that the lists are parsed, we need to sort them to make life
262 * easier on us when it comes time to print the chars / fields / lines
263 */
264 qsort(cut_lists, nlists, sizeof(struct cut_list), cmpfunc);
265 }
266
Denis Vlasenko3831c912007-11-23 07:26:15 +0000267 {
268 int retval = EXIT_SUCCESS;
Denis Vlasenko3831c912007-11-23 07:26:15 +0000269
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000270 if (!*argv)
271 *--argv = (char *)"-";
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000272
Denis Vlasenko9f739442006-12-16 23:49:13 +0000273 do {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000274 FILE *file = fopen_or_warn_stdin(*argv);
Denis Vlasenko3831c912007-11-23 07:26:15 +0000275 if (!file) {
276 retval = EXIT_FAILURE;
277 continue;
Mark Whitley807f0fd2000-08-02 18:30:11 +0000278 }
Denis Vlasenko9e3a5402008-07-22 10:34:46 +0000279 cut_file(file, delim, cut_lists, nlists);
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000280 fclose_if_not_stdin(file);
Denis Vlasenko9f739442006-12-16 23:49:13 +0000281 } while (*++argv);
Denis Vlasenko3831c912007-11-23 07:26:15 +0000282
283 if (ENABLE_FEATURE_CLEAN_UP)
284 free(cut_lists);
285 fflush_stdout_and_exit(retval);
Mark Whitley807f0fd2000-08-02 18:30:11 +0000286 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000287}