It turns out that DODMALLOC was broken when I reorganized busybox.h
[oweals/busybox.git] / sort.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini sort implementation for busybox
4  *
5  *
6  * Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include <getopt.h>
25 #include <stdlib.h>
26 #include "busybox.h"
27
28 int compare_ascii(const void *x, const void *y)
29 {
30         return strcmp(*(char **)x, *(char **)y);
31 }
32
33 int compare_numeric(const void *x, const void *y)
34 {
35         return atoi(*(char **)x) - atoi(*(char **)y);
36 }
37
38 int sort_main(int argc, char **argv)
39 {
40         FILE *fp;
41         char *line, **lines = NULL;
42         int i, opt, nlines = 0;
43         int (*compare)(const void *, const void *) = compare_ascii;
44 #ifdef BB_FEATURE_SORT_REVERSE
45         int reverse = FALSE;
46 #endif
47
48         while ((opt = getopt(argc, argv, "nr")) != -1) {
49                 switch (opt) {
50                         case 'n':
51                                 compare = compare_numeric;
52                                 break;
53 #ifdef BB_FEATURE_SORT_REVERSE
54                         case 'r':
55                                 reverse = TRUE;
56                                 break;
57 #endif
58                         default:
59                                 show_usage();
60                 }
61         }
62
63         /* read the input */
64         for (i = optind; i == optind || i < argc; i++) {
65                 if (argv[i] == NULL)
66                         fp = stdin;
67                 else
68                         fp = xfopen(argv[i], "r");
69
70                 while ((line = get_line_from_file(fp)) != NULL) {
71                         lines = xrealloc(lines, sizeof(char *) * (nlines + 1));
72                         lines[nlines++] = line;
73                 }
74         }
75
76         /* sort it */
77         qsort(lines, nlines, sizeof(char *), compare);
78
79         /* print it */
80 #ifdef BB_FEATURE_SORT_REVERSE
81         if (reverse)
82                 for (i = nlines - 1; 0 <= i; i--)
83                         fputs(lines[i], stdout);
84         else
85 #endif
86         for (i = 0; i < nlines; i++)
87                 fputs(lines[i], stdout);
88         return EXIT_SUCCESS;
89 }