blob: 1cf49c2afa9856b1c1b4f861fc2b19dfde7f3110 [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-Fischer73561cc2006-08-28 23:31:54 +00007 * debloated by Bernhard 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";
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +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)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000024
25static char delim = '\t'; /* delimiter, default is tab */
Mark Whitleyb6967632001-05-18 23:04:51 +000026
27struct cut_list {
28 int startpos;
29 int endpos;
30};
31
Rob Landleybc68cd12006-03-10 19:22:06 +000032enum {
33 BOL = 0,
34 EOL = INT_MAX,
35 NON_RANGE = -1
36};
Mark Whitleyb6967632001-05-18 23:04:51 +000037
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000038/* growable array holding a series of lists */
39static struct cut_list *cut_lists;
40static unsigned int nlists; /* number of elements in above list */
Mark Whitleyb6967632001-05-18 23:04:51 +000041
42
43static int cmpfunc(const void *a, const void *b)
44{
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000045 return (((struct cut_list *) a)->startpos -
46 ((struct cut_list *) b)->startpos);
Mark Whitleyb6967632001-05-18 23:04:51 +000047
48}
49
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000050static void cut_file(FILE * file)
Mark Whitley807f0fd2000-08-02 18:30:11 +000051{
Mark Whitleyb6967632001-05-18 23:04:51 +000052 char *line = NULL;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000053 unsigned int linenum = 0; /* keep these zero-based to be consistent */
Mark Whitley807f0fd2000-08-02 18:30:11 +000054
55 /* go through every line in the file */
Denis Vlasenko2d5ca602006-10-12 22:43:20 +000056 while ((line = xmalloc_getline(file)) != NULL) {
Mark Whitleyb6967632001-05-18 23:04:51 +000057
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000058 /* set up a list so we can keep track of what's been printed */
59 char * printed = xzalloc(strlen(line) * sizeof(char));
60 char * orig_line = line;
61 unsigned int cl_pos = 0;
62 int spos;
63
Mark Whitleyb6967632001-05-18 23:04:51 +000064 /* cut based on chars/bytes XXX: only works when sizeof(char) == byte */
Denis Vlasenko372686b2006-10-12 22:42:33 +000065 if (option_mask32 & (CUT_OPT_CHAR_FLGS | CUT_OPT_BYTE_FLGS)) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000066 /* print the chars specified in each cut list */
67 for (; cl_pos < nlists; cl_pos++) {
68 spos = cut_lists[cl_pos].startpos;
69 while (spos < strlen(line)) {
70 if (!printed[spos]) {
71 printed[spos] = 'X';
72 putchar(line[spos]);
73 }
74 spos++;
75 if (spos > cut_lists[cl_pos].endpos
76 || cut_lists[cl_pos].endpos == NON_RANGE)
77 break;
78 }
79 }
80 } else if (delim == '\n') { /* cut by lines */
81 spos = cut_lists[cl_pos].startpos;
Mark Whitleyb6967632001-05-18 23:04:51 +000082
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000083 /* get out if we have no more lists to process or if the lines
84 * are lower than what we're interested in */
85 if (linenum < spos || cl_pos >= nlists)
86 goto next_line;
87
88 /* if the line we're looking for is lower than the one we were
89 * passed, it means we displayed it already, so move on */
90 while (spos < linenum) {
91 spos++;
92 /* go to the next list if we're at the end of this one */
93 if (spos > cut_lists[cl_pos].endpos
94 || cut_lists[cl_pos].endpos == NON_RANGE) {
95 cl_pos++;
96 /* get out if there's no more lists to process */
97 if (cl_pos >= nlists)
98 goto next_line;
99 spos = cut_lists[cl_pos].startpos;
100 /* get out if the current line is lower than the one
101 * we just became interested in */
102 if (linenum < spos)
103 goto next_line;
104 }
105 }
106
107 /* If we made it here, it means we've found the line we're
108 * looking for, so print it */
109 puts(line);
110 goto next_line;
111 } else { /* cut by fields */
112 int ndelim = -1; /* zero-based / one-based problem */
113 int nfields_printed = 0;
114 char *field = NULL;
115 const char delimiter[2] = { delim, 0 };
116
117 /* does this line contain any delimiters? */
118 if (strchr(line, delim) == NULL) {
Denis Vlasenko372686b2006-10-12 22:42:33 +0000119 if (!(option_mask32 & CUT_OPT_SUPPRESS_FLGS))
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000120 puts(line);
121 goto next_line;
122 }
123
124 /* process each list on this line, for as long as we've got
125 * a line to process */
126 for (; cl_pos < nlists && line; cl_pos++) {
127 spos = cut_lists[cl_pos].startpos;
128 do {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000129 /* find the field we're looking for */
130 while (line && ndelim < spos) {
131 field = strsep(&line, delimiter);
132 ndelim++;
133 }
134
135 /* we found it, and it hasn't been printed yet */
136 if (field && ndelim == spos && !printed[ndelim]) {
137 /* if this isn't our first time through, we need to
138 * print the delimiter after the last field that was
139 * printed */
140 if (nfields_printed > 0)
141 putchar(delim);
142 fputs(field, stdout);
143 printed[ndelim] = 'X';
144 nfields_printed++; /* shouldn't overflow.. */
145 }
146
147 spos++;
148
149 /* keep going as long as we have a line to work with,
150 * this is a list, and we're not at the end of that
151 * list */
152 } while (spos <= cut_lists[cl_pos].endpos && line
153 && cut_lists[cl_pos].endpos != NON_RANGE);
154 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000155 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000156 /* if we printed anything at all, we need to finish it with a
157 * newline cuz we were handed a chomped line */
158 putchar('\n');
Denis Vlasenko372686b2006-10-12 22:42:33 +0000159 next_line:
Mark Whitleyb6967632001-05-18 23:04:51 +0000160 linenum++;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000161 free(printed);
162 free(orig_line);
Mark Whitley807f0fd2000-08-02 18:30:11 +0000163 }
164}
165
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000166static const char _op_on_field[] ALIGN1 = " only when operating on fields";
Mark Whitleyb6967632001-05-18 23:04:51 +0000167
Denis Vlasenko06af2162007-02-03 17:28:39 +0000168int cut_main(int argc, char **argv);
Rob Landleydfba7412006-03-06 20:47:33 +0000169int cut_main(int argc, char **argv)
Mark Whitley807f0fd2000-08-02 18:30:11 +0000170{
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000171 char *sopt, *ltok;
Mark Whitley807f0fd2000-08-02 18:30:11 +0000172
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000173 opt_complementary = "b--bcf:c--bcf:f--bcf";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000174 getopt32(argv, optstring, &sopt, &sopt, &sopt, &ltok);
Denis Vlasenko9f739442006-12-16 23:49:13 +0000175// argc -= optind;
176 argv += optind;
Denis Vlasenko372686b2006-10-12 22:42:33 +0000177 if (!(option_mask32 & (CUT_OPT_BYTE_FLGS | CUT_OPT_CHAR_FLGS | CUT_OPT_FIELDS_FLGS)))
178 bb_error_msg_and_die("expected a list of bytes, characters, or fields");
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000179
Denis Vlasenko372686b2006-10-12 22:42:33 +0000180 if (option_mask32 & CUT_OPT_DELIM_FLGS) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000181 if (strlen(ltok) > 1) {
Eric Andersenc9e70242003-06-20 09:16:00 +0000182 bb_error_msg_and_die("the delimiter must be a single character");
183 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000184 delim = ltok[0];
Mark Whitley807f0fd2000-08-02 18:30:11 +0000185 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000186
Mark Whitleyb6967632001-05-18 23:04:51 +0000187 /* non-field (char or byte) cutting has some special handling */
Denis Vlasenko372686b2006-10-12 22:42:33 +0000188 if (!(option_mask32 & CUT_OPT_FIELDS_FLGS)) {
189 if (option_mask32 & CUT_OPT_SUPPRESS_FLGS) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000190 bb_error_msg_and_die
191 ("suppressing non-delimited lines makes sense%s",
192 _op_on_field);
Mark Whitleyb6967632001-05-18 23:04:51 +0000193 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000194 if (delim != '\t') {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000195 bb_error_msg_and_die
196 ("a delimiter may be specified%s", _op_on_field);
Mark Whitleyb6967632001-05-18 23:04:51 +0000197 }
Mark Whitley807f0fd2000-08-02 18:30:11 +0000198 }
199
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000200 /*
201 * parse list and put values into startpos and endpos.
202 * valid list formats: N, N-, N-M, -M
203 * more than one list can be separated by commas
204 */
205 {
206 char *ntok;
207 int s = 0, e = 0;
208
209 /* take apart the lists, one by one (they are separated with commas */
210 while ((ltok = strsep(&sopt, ",")) != NULL) {
211
212 /* it's actually legal to pass an empty list */
213 if (strlen(ltok) == 0)
214 continue;
215
216 /* get the start pos */
217 ntok = strsep(&ltok, "-");
218 if (ntok == NULL) {
219 bb_error_msg
220 ("internal error: ntok is null for start pos!?\n");
221 } else if (strlen(ntok) == 0) {
222 s = BOL;
223 } else {
Denis Vlasenko13858992006-10-08 12:49:22 +0000224 s = xatoi_u(ntok);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000225 /* account for the fact that arrays are zero based, while
226 * the user expects the first char on the line to be char #1 */
227 if (s != 0)
228 s--;
229 }
230
231 /* get the end pos */
232 ntok = strsep(&ltok, "-");
233 if (ntok == NULL) {
234 e = NON_RANGE;
235 } else if (strlen(ntok) == 0) {
236 e = EOL;
237 } else {
Denis Vlasenko13858992006-10-08 12:49:22 +0000238 e = xatoi_u(ntok);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000239 /* if the user specified and end position of 0, that means "til the
240 * end of the line */
241 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
248 /* if there's something left to tokenize, the user passed
249 * an invalid list */
250 if (ltok)
251 bb_error_msg_and_die("invalid byte or field list");
252
253 /* add the new list */
Denis Vlasenko372686b2006-10-12 22:42:33 +0000254 cut_lists = xrealloc(cut_lists, sizeof(struct cut_list) * (++nlists));
255 cut_lists[nlists-1].startpos = s;
256 cut_lists[nlists-1].endpos = e;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000257 }
258
259 /* make sure we got some cut positions out of all that */
260 if (nlists == 0)
261 bb_error_msg_and_die("missing list of positions");
262
263 /* now that the lists are parsed, we need to sort them to make life
264 * easier on us when it comes time to print the chars / fields / lines
265 */
266 qsort(cut_lists, nlists, sizeof(struct cut_list), cmpfunc);
267 }
268
Denis Vlasenko9f739442006-12-16 23:49:13 +0000269 /* argv[0..argc-1] should be names of file to process. If no
Mark Whitley807f0fd2000-08-02 18:30:11 +0000270 * files were specified or '-' was specified, take input from stdin.
271 * Otherwise, we process all the files specified. */
Denis Vlasenko9f739442006-12-16 23:49:13 +0000272 if (argv[0] == NULL || LONE_DASH(argv[0])) {
Mark Whitley807f0fd2000-08-02 18:30:11 +0000273 cut_file(stdin);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000274 } else {
Mark Whitley807f0fd2000-08-02 18:30:11 +0000275 FILE *file;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000276
Denis Vlasenko9f739442006-12-16 23:49:13 +0000277 do {
278 file = fopen_or_warn(argv[0], "r");
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000279 if (file) {
Mark Whitley807f0fd2000-08-02 18:30:11 +0000280 cut_file(file);
281 fclose(file);
282 }
Denis Vlasenko9f739442006-12-16 23:49:13 +0000283 } while (*++argv);
Mark Whitley807f0fd2000-08-02 18:30:11 +0000284 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +0000285 if (ENABLE_FEATURE_CLEAN_UP)
286 free(cut_lists);
Matt Kraai3e856ce2000-12-01 02:55:13 +0000287 return EXIT_SUCCESS;
Mark Whitley807f0fd2000-08-02 18:30:11 +0000288}