source: MondoRescue/branches/3.2/mindi-busybox/coreutils/sort.c@ 3232

Last change on this file since 3232 was 3232, checked in by Bruno Cornec, 10 years ago
  • Update mindi-busybox to 1.21.1
File size: 12.5 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * SuS3 compliant sort implementation for busybox
4 *
5 * Copyright (C) 2004 by Rob Landley <rob@landley.net>
6 *
7 * MAINTAINER: Rob Landley <rob@landley.net>
[1765]8 *
[2725]9 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]10 *
11 * See SuS3 sort standard at:
12 * http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html
13 */
14
[3232]15//usage:#define sort_trivial_usage
16//usage: "[-nru"
17//usage: IF_FEATURE_SORT_BIG("gMcszbdfimSTokt] [-o FILE] [-k start[.offset][opts][,end[.offset][opts]] [-t CHAR")
18//usage: "] [FILE]..."
19//usage:#define sort_full_usage "\n\n"
20//usage: "Sort lines of text\n"
21//usage: IF_FEATURE_SORT_BIG(
22//usage: "\n -b Ignore leading blanks"
23//usage: "\n -c Check whether input is sorted"
24//usage: "\n -d Dictionary order (blank or alphanumeric only)"
25//usage: "\n -f Ignore case"
26//usage: "\n -g General numerical sort"
27//usage: "\n -i Ignore unprintable characters"
28//usage: "\n -k Sort key"
29//usage: "\n -M Sort month"
30//usage: )
31//usage: "\n -n Sort numbers"
32//usage: IF_FEATURE_SORT_BIG(
33//usage: "\n -o Output to file"
34//usage: "\n -k Sort by key"
35//usage: "\n -t CHAR Key separator"
36//usage: )
37//usage: "\n -r Reverse sort order"
38//usage: IF_FEATURE_SORT_BIG(
39//usage: "\n -s Stable (don't sort ties alphabetically)"
40//usage: )
41//usage: "\n -u Suppress duplicate lines"
42//usage: IF_FEATURE_SORT_BIG(
43//usage: "\n -z Lines are terminated by NUL, not newline"
44//usage: "\n -mST Ignored for GNU compatibility")
45//usage:
46//usage:#define sort_example_usage
47//usage: "$ echo -e \"e\\nf\\nb\\nd\\nc\\na\" | sort\n"
48//usage: "a\n"
49//usage: "b\n"
50//usage: "c\n"
51//usage: "d\n"
52//usage: "e\n"
53//usage: "f\n"
54//usage: IF_FEATURE_SORT_BIG(
55//usage: "$ echo -e \"c 3\\nb 2\\nd 2\" | $SORT -k 2,2n -k 1,1r\n"
56//usage: "d 2\n"
57//usage: "b 2\n"
58//usage: "c 3\n"
59//usage: )
60//usage: ""
61
[1765]62#include "libbb.h"
[821]63
[1765]64/* This is a NOEXEC applet. Be very careful! */
[821]65
[1765]66
[821]67/*
68 sort [-m][-o output][-bdfinru][-t char][-k keydef]... [file...]
69 sort -c [-bdfinru][-t char][-k keydef][file]
70*/
71
72/* These are sort types */
[1765]73static const char OPT_STR[] ALIGN1 = "ngMucszbrdfimS:T:o:k:t:";
74enum {
75 FLAG_n = 1, /* Numeric sort */
76 FLAG_g = 2, /* Sort using strtod() */
77 FLAG_M = 4, /* Sort date */
[821]78/* ucsz apply to root level only, not keys. b at root level implies bb */
[1765]79 FLAG_u = 8, /* Unique */
80 FLAG_c = 0x10, /* Check: no output, exit(!ordered) */
81 FLAG_s = 0x20, /* Stable sort, no ascii fallback at end */
[2725]82 FLAG_z = 0x40, /* Input and output is NUL terminated, not \n */
[821]83/* These can be applied to search keys, the previous four can't */
[1765]84 FLAG_b = 0x80, /* Ignore leading blanks */
85 FLAG_r = 0x100, /* Reverse */
86 FLAG_d = 0x200, /* Ignore !(isalnum()|isspace()) */
87 FLAG_f = 0x400, /* Force uppercase */
88 FLAG_i = 0x800, /* Ignore !isprint() */
89 FLAG_m = 0x1000, /* ignored: merge already sorted files; do not sort */
90 FLAG_S = 0x2000, /* ignored: -S, --buffer-size=SIZE */
91 FLAG_T = 0x4000, /* ignored: -T, --temporary-directory=DIR */
92 FLAG_o = 0x8000,
93 FLAG_k = 0x10000,
94 FLAG_t = 0x20000,
95 FLAG_bb = 0x80000000, /* Ignore trailing blanks */
96};
[821]97
[1765]98#if ENABLE_FEATURE_SORT_BIG
[821]99static char key_separator;
100
[1765]101static struct sort_key {
[2725]102 struct sort_key *next_key; /* linked list */
103 unsigned range[4]; /* start word, start char, end word, end char */
[1765]104 unsigned flags;
[821]105} *key_list;
106
107static char *get_key(char *str, struct sort_key *key, int flags)
108{
[2725]109 int start = 0, end = 0, len, j;
110 unsigned i;
[821]111
112 /* Special case whole string, so we don't have to make a copy */
[1765]113 if (key->range[0] == 1 && !key->range[1] && !key->range[2] && !key->range[3]
114 && !(flags & (FLAG_b | FLAG_d | FLAG_f | FLAG_i | FLAG_bb))
115 ) {
116 return str;
117 }
[821]118
[1765]119 /* Find start of key on first pass, end on second pass */
120 len = strlen(str);
121 for (j = 0; j < 2; j++) {
122 if (!key->range[2*j])
123 end = len;
[821]124 /* Loop through fields */
125 else {
[1765]126 end = 0;
127 for (i = 1; i < key->range[2*j] + j; i++) {
128 if (key_separator) {
129 /* Skip body of key and separator */
130 while (str[end]) {
131 if (str[end++] == key_separator)
132 break;
133 }
134 } else {
135 /* Skip leading blanks */
136 while (isspace(str[end]))
137 end++;
138 /* Skip body of key */
139 while (str[end]) {
140 if (isspace(str[end]))
141 break;
142 end++;
143 }
[821]144 }
145 }
146 }
[1765]147 if (!j) start = end;
[821]148 }
149 /* Strip leading whitespace if necessary */
[1765]150//XXX: skip_whitespace()
151 if (flags & FLAG_b)
152 while (isspace(str[start])) start++;
[821]153 /* Strip trailing whitespace if necessary */
[1765]154 if (flags & FLAG_bb)
155 while (end > start && isspace(str[end-1])) end--;
[821]156 /* Handle offsets on start and end */
[1765]157 if (key->range[3]) {
158 end += key->range[3] - 1;
159 if (end > len) end = len;
[821]160 }
[1765]161 if (key->range[1]) {
162 start += key->range[1] - 1;
163 if (start > len) start = len;
[821]164 }
165 /* Make the copy */
[1765]166 if (end < start) end = start;
167 str = xstrndup(str+start, end-start);
[821]168 /* Handle -d */
[1765]169 if (flags & FLAG_d) {
170 for (start = end = 0; str[end]; end++)
171 if (isspace(str[end]) || isalnum(str[end]))
172 str[start++] = str[end];
173 str[start] = '\0';
[821]174 }
175 /* Handle -i */
[1765]176 if (flags & FLAG_i) {
177 for (start = end = 0; str[end]; end++)
[2725]178 if (isprint_asciionly(str[end]))
[1765]179 str[start++] = str[end];
180 str[start] = '\0';
[821]181 }
182 /* Handle -f */
[1765]183 if (flags & FLAG_f)
184 for (i = 0; str[i]; i++)
185 str[i] = toupper(str[i]);
[821]186
187 return str;
188}
189
190static struct sort_key *add_key(void)
191{
[1765]192 struct sort_key **pkey = &key_list;
193 while (*pkey)
194 pkey = &((*pkey)->next_key);
195 return *pkey = xzalloc(sizeof(struct sort_key));
[821]196}
197
[1765]198#define GET_LINE(fp) \
199 ((option_mask32 & FLAG_z) \
200 ? bb_get_chunk_from_file(fp, NULL) \
[2725]201 : xmalloc_fgetline(fp))
[821]202#else
[2725]203#define GET_LINE(fp) xmalloc_fgetline(fp)
[821]204#endif
205
206/* Iterate through keys list and perform comparisons */
207static int compare_keys(const void *xarg, const void *yarg)
208{
[1765]209 int flags = option_mask32, retval = 0;
210 char *x, *y;
[821]211
[1765]212#if ENABLE_FEATURE_SORT_BIG
[821]213 struct sort_key *key;
214
[1765]215 for (key = key_list; !retval && key; key = key->next_key) {
216 flags = key->flags ? key->flags : option_mask32;
[821]217 /* Chop out and modify key chunks, handling -dfib */
[1765]218 x = get_key(*(char **)xarg, key, flags);
219 y = get_key(*(char **)yarg, key, flags);
[821]220#else
221 /* This curly bracket serves no purpose but to match the nesting
[3232]222 * level of the for () loop we're not using */
[821]223 {
[1765]224 x = *(char **)xarg;
225 y = *(char **)yarg;
[821]226#endif
227 /* Perform actual comparison */
[1765]228 switch (flags & 7) {
229 default:
230 bb_error_msg_and_die("unknown sort type");
231 break;
232 /* Ascii sort */
233 case 0:
234#if ENABLE_LOCALE_SUPPORT
235 retval = strcoll(x, y);
236#else
237 retval = strcmp(x, y);
238#endif
239 break;
240#if ENABLE_FEATURE_SORT_BIG
241 case FLAG_g: {
242 char *xx, *yy;
243 double dx = strtod(x, &xx);
244 double dy = strtod(y, &yy);
245 /* not numbers < NaN < -infinity < numbers < +infinity) */
246 if (x == xx)
247 retval = (y == yy ? 0 : -1);
248 else if (y == yy)
249 retval = 1;
250 /* Check for isnan */
251 else if (dx != dx)
252 retval = (dy != dy) ? 0 : -1;
253 else if (dy != dy)
254 retval = 1;
255 /* Check for infinity. Could underflow, but it avoids libm. */
256 else if (1.0 / dx == 0.0) {
257 if (dx < 0)
258 retval = (1.0 / dy == 0.0 && dy < 0) ? 0 : -1;
259 else
260 retval = (1.0 / dy == 0.0 && dy > 0) ? 0 : 1;
261 } else if (1.0 / dy == 0.0)
262 retval = (dy < 0) ? 1 : -1;
263 else
264 retval = (dx > dy) ? 1 : ((dx < dy) ? -1 : 0);
265 break;
266 }
267 case FLAG_M: {
268 struct tm thyme;
269 int dx;
270 char *xx, *yy;
[821]271
[1765]272 xx = strptime(x, "%b", &thyme);
273 dx = thyme.tm_mon;
274 yy = strptime(y, "%b", &thyme);
275 if (!xx)
276 retval = (!yy) ? 0 : -1;
277 else if (!yy)
278 retval = 1;
279 else
280 retval = (dx == thyme.tm_mon) ? 0 : dx - thyme.tm_mon;
281 break;
[821]282 }
[1765]283 /* Full floating point version of -n */
284 case FLAG_n: {
285 double dx = atof(x);
286 double dy = atof(y);
287 retval = (dx > dy) ? 1 : ((dx < dy) ? -1 : 0);
288 break;
289 }
290 } /* switch */
[821]291 /* Free key copies. */
[1765]292 if (x != *(char **)xarg) free(x);
293 if (y != *(char **)yarg) free(y);
294 /* if (retval) break; - done by for () anyway */
[821]295#else
[1765]296 /* Integer version of -n for tiny systems */
297 case FLAG_n:
298 retval = atoi(x) - atoi(y);
299 break;
300 } /* switch */
[821]301#endif
[1765]302 } /* for */
303
[821]304 /* Perform fallback sort if necessary */
[1765]305 if (!retval && !(option_mask32 & FLAG_s))
306 retval = strcmp(*(char **)xarg, *(char **)yarg);
307
308 if (flags & FLAG_r) return -retval;
309 return retval;
[821]310}
311
[1765]312#if ENABLE_FEATURE_SORT_BIG
313static unsigned str2u(char **str)
314{
315 unsigned long lu;
316 if (!isdigit((*str)[0]))
317 bb_error_msg_and_die("bad field specification");
318 lu = strtoul(*str, str, 10);
319 if ((sizeof(long) > sizeof(int) && lu > INT_MAX) || !lu)
320 bb_error_msg_and_die("bad field specification");
321 return lu;
322}
323#endif
324
[2725]325int sort_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
326int sort_main(int argc UNUSED_PARAM, char **argv)
[821]327{
[2725]328 char *line, **lines;
[1765]329 char *str_ignored, *str_o, *str_t;
330 llist_t *lst_k = NULL;
331 int i, flag;
[2725]332 int linecount;
333 unsigned opts;
[821]334
[1765]335 xfunc_error_retval = 2;
336
[821]337 /* Parse command line options */
[1765]338 /* -o and -t can be given at most once */
[2725]339 opt_complementary = "o--o:t--t:" /* -t, -o: at most one of each */
[1765]340 "k::"; /* -k takes list */
[2725]341 opts = getopt32(argv, OPT_STR, &str_ignored, &str_ignored, &str_o, &lst_k, &str_t);
342 /* global b strips leading and trailing spaces */
343 if (opts & FLAG_b)
344 option_mask32 |= FLAG_bb;
[1765]345#if ENABLE_FEATURE_SORT_BIG
[2725]346 if (opts & FLAG_t) {
[1765]347 if (!str_t[0] || str_t[1])
348 bb_error_msg_and_die("bad -t parameter");
349 key_separator = str_t[0];
350 }
[2725]351 /* note: below this point we use option_mask32, not opts,
352 * since that reduces register pressure and makes code smaller */
353
[1765]354 /* parse sort key */
355 while (lst_k) {
356 enum {
357 FLAG_allowed_for_k =
358 FLAG_n | /* Numeric sort */
359 FLAG_g | /* Sort using strtod() */
360 FLAG_M | /* Sort date */
361 FLAG_b | /* Ignore leading blanks */
362 FLAG_r | /* Reverse */
363 FLAG_d | /* Ignore !(isalnum()|isspace()) */
364 FLAG_f | /* Force uppercase */
365 FLAG_i | /* Ignore !isprint() */
366 0
367 };
368 struct sort_key *key = add_key();
[2725]369 char *str_k = llist_pop(&lst_k);
[821]370
[1765]371 i = 0; /* i==0 before comma, 1 after (-k3,6) */
372 while (*str_k) {
373 /* Start of range */
374 /* Cannot use bb_strtou - suffix can be a letter */
375 key->range[2*i] = str2u(&str_k);
376 if (*str_k == '.') {
377 str_k++;
378 key->range[2*i+1] = str2u(&str_k);
[821]379 }
[1765]380 while (*str_k) {
[2725]381 const char *temp2;
382
[1765]383 if (*str_k == ',' && !i++) {
384 str_k++;
385 break;
386 } /* no else needed: fall through to syntax error
[2725]387 because comma isn't in OPT_STR */
[1765]388 temp2 = strchr(OPT_STR, *str_k);
389 if (!temp2)
390 bb_error_msg_and_die("unknown key option");
391 flag = 1 << (temp2 - OPT_STR);
392 if (flag & ~FLAG_allowed_for_k)
393 bb_error_msg_and_die("unknown sort type");
394 /* b after ',' means strip _trailing_ space */
[2725]395 if (i && flag == FLAG_b)
396 flag = FLAG_bb;
[1765]397 key->flags |= flag;
398 str_k++;
399 }
[821]400 }
401 }
[1765]402#endif
403
[821]404 /* Open input files and read data */
[2725]405 argv += optind;
406 if (!*argv)
407 *--argv = (char*)"-";
408 linecount = 0;
409 lines = NULL;
410 do {
411 /* coreutils 6.9 compat: abort on first open error,
412 * do not continue to next file: */
413 FILE *fp = xfopen_stdin(*argv);
[1765]414 for (;;) {
415 line = GET_LINE(fp);
[2725]416 if (!line)
417 break;
418 lines = xrealloc_vector(lines, 6, linecount);
[1765]419 lines[linecount++] = line;
[821]420 }
[2725]421 fclose_if_not_stdin(fp);
422 } while (*++argv);
423
[1765]424#if ENABLE_FEATURE_SORT_BIG
[821]425 /* if no key, perform alphabetic sort */
[1765]426 if (!key_list)
427 add_key()->range[0] = 1;
[821]428 /* handle -c */
[1765]429 if (option_mask32 & FLAG_c) {
430 int j = (option_mask32 & FLAG_u) ? -1 : 0;
[2725]431 for (i = 1; i < linecount; i++) {
[1765]432 if (compare_keys(&lines[i-1], &lines[i]) > j) {
[2725]433 fprintf(stderr, "Check line %u\n", i);
434 return EXIT_FAILURE;
[821]435 }
[2725]436 }
437 return EXIT_SUCCESS;
[821]438 }
439#endif
440 /* Perform the actual sort */
[2725]441 qsort(lines, linecount, sizeof(lines[0]), compare_keys);
[821]442 /* handle -u */
[1765]443 if (option_mask32 & FLAG_u) {
444 flag = 0;
445 /* coreutils 6.3 drop lines for which only key is the same */
446 /* -- disabling last-resort compare... */
447 option_mask32 |= FLAG_s;
448 for (i = 1; i < linecount; i++) {
[2725]449 if (compare_keys(&lines[flag], &lines[i]) == 0)
[1765]450 free(lines[i]);
451 else
452 lines[++flag] = lines[i];
[821]453 }
[2725]454 if (linecount)
455 linecount = flag+1;
[821]456 }
[2725]457
[821]458 /* Print it */
[2725]459#if ENABLE_FEATURE_SORT_BIG
460 /* Open output file _after_ we read all input ones */
461 if (option_mask32 & FLAG_o)
462 xmove_fd(xopen(str_o, O_WRONLY|O_CREAT|O_TRUNC), STDOUT_FILENO);
463#endif
464 flag = (option_mask32 & FLAG_z) ? '\0' : '\n';
[1765]465 for (i = 0; i < linecount; i++)
[2725]466 printf("%s%c", lines[i], flag);
[1765]467
468 fflush_stdout_and_exit(EXIT_SUCCESS);
[821]469}
Note: See TracBrowser for help on using the repository browser.