b84453d3a4f17b19670490edb676cbc6b5ecbbb6
[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         int z = atoi(*(char **)x) - atoi(*(char **)y);
37         return z ? z : strcmp(*(char **)x, *(char **)y);
38 }
39
40 int sort_main(int argc, char **argv)
41 {
42         FILE *fp;
43         char *line, **lines = NULL;
44         int i, opt, nlines = 0;
45         int (*compare)(const void *, const void *) = compare_ascii;
46 #ifdef BB_FEATURE_SORT_REVERSE
47         int reverse = FALSE;
48 #endif
49
50         while ((opt = getopt(argc, argv, "nr")) != -1) {
51                 switch (opt) {
52                         case 'n':
53                                 compare = compare_numeric;
54                                 break;
55 #ifdef BB_FEATURE_SORT_REVERSE
56                         case 'r':
57                                 reverse = TRUE;
58                                 break;
59 #endif
60                         default:
61                                 show_usage();
62                 }
63         }
64
65         /* read the input */
66         for (i = optind; i == optind || i < argc; i++) {
67                 if (argv[i] == NULL)
68                         fp = stdin;
69                 else
70                         fp = xfopen(argv[i], "r");
71
72                 while ((line = get_line_from_file(fp)) != NULL) {
73                         lines = xrealloc(lines, sizeof(char *) * (nlines + 1));
74                         line[strlen(line) - 1] = '\0';
75                         lines[nlines++] = line;
76                 }
77         }
78
79         /* sort it */
80         qsort(lines, nlines, sizeof(char *), compare);
81
82         /* print it */
83 #ifdef BB_FEATURE_SORT_REVERSE
84         if (reverse)
85                 for (i = nlines - 1; 0 <= i; i--)
86                         puts(lines[i]);
87         else
88 #endif
89         for (i = 0; i < nlines; i++)
90                 puts(lines[i]);
91         return EXIT_SUCCESS;
92 }