use tmpfile() and revert my previous changes... convert() belongs here
[oweals/busybox.git] / coreutils / 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 <string.h>
26 #include <stdlib.h>
27 #include "busybox.h"
28
29 static int compare_ascii(const void *x, const void *y)
30 {
31         return strcmp(*(char **)x, *(char **)y);
32 }
33
34 static int compare_numeric(const void *x, const void *y)
35 {
36         return atoi(*(char **)x) - atoi(*(char **)y);
37 }
38
39 int sort_main(int argc, char **argv)
40 {
41         FILE *fp;
42         char *line, **lines = NULL;
43         int i, opt, nlines = 0;
44         int (*compare)(const void *, const void *) = compare_ascii;
45 #ifdef BB_FEATURE_SORT_REVERSE
46         int reverse = FALSE;
47 #endif
48
49         while ((opt = getopt(argc, argv, "nr")) != -1) {
50                 switch (opt) {
51                         case 'n':
52                                 compare = compare_numeric;
53                                 break;
54 #ifdef BB_FEATURE_SORT_REVERSE
55                         case 'r':
56                                 reverse = TRUE;
57                                 break;
58 #endif
59                         default:
60                                 show_usage();
61                 }
62         }
63
64         /* read the input */
65         for (i = optind; i == optind || i < argc; i++) {
66                 if (argv[i] == NULL)
67                         fp = stdin;
68                 else
69                         fp = xfopen(argv[i], "r");
70
71                 while ((line = get_line_from_file(fp)) != NULL) {
72                         lines = xrealloc(lines, sizeof(char *) * (nlines + 1));
73                         lines[nlines++] = line;
74                 }
75         }
76
77         /* sort it */
78         qsort(lines, nlines, sizeof(char *), compare);
79
80         /* print it */
81 #ifdef BB_FEATURE_SORT_REVERSE
82         if (reverse)
83                 for (i = nlines - 1; 0 <= i; i--)
84                         fputs(lines[i], stdout);
85         else
86 #endif
87         for (i = 0; i < nlines; i++)
88                 fputs(lines[i], stdout);
89         return EXIT_SUCCESS;
90 }