blob: 9707efa51c5f65f6e010e4ff9379f36f7407ce8e [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
John Beppuc0ca4731999-12-21 20:00:35 +00002/*
John Beppu568cb7b1999-12-22 23:02:12 +00003 * Mini sort implementation for busybox
John Beppuc0ca4731999-12-21 20:00:35 +00004 *
5 *
Matt Kraai5e8c0ff2000-12-20 20:49:56 +00006 * Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
John Beppuc0ca4731999-12-21 20:00:35 +00007 *
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
Eric Andersened3ef502001-01-27 08:24:39 +000024#include <getopt.h>
Eric Anderseneba8ed72001-03-09 14:36:42 +000025#include <string.h>
Eric Andersened3ef502001-01-27 08:24:39 +000026#include <stdlib.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000027#include "busybox.h"
John Beppuc0ca4731999-12-21 20:00:35 +000028
Eric Andersen3e6ff902001-03-09 21:24:12 +000029static int compare_ascii(const void *x, const void *y)
John Beppuc0ca4731999-12-21 20:00:35 +000030{
Matt Kraai5e8c0ff2000-12-20 20:49:56 +000031 return strcmp(*(char **)x, *(char **)y);
John Beppu38efa791999-12-22 00:30:29 +000032}
33
Eric Andersen3e6ff902001-03-09 21:24:12 +000034static int compare_numeric(const void *x, const void *y)
John Beppu38efa791999-12-22 00:30:29 +000035{
Matt Kraai5e8c0ff2000-12-20 20:49:56 +000036 return atoi(*(char **)x) - atoi(*(char **)y);
John Beppuc0ca4731999-12-21 20:00:35 +000037}
38
Erik Andersene49d5ec2000-02-08 19:58:47 +000039int sort_main(int argc, char **argv)
John Beppuc0ca4731999-12-21 20:00:35 +000040{
Matt Kraai5e8c0ff2000-12-20 20:49:56 +000041 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
John Beppuc0ca4731999-12-21 20:00:35 +000048
Matt Kraai5e8c0ff2000-12-20 20:49:56 +000049 while ((opt = getopt(argc, argv, "nr")) != -1) {
50 switch (opt) {
Erik Andersene49d5ec2000-02-08 19:58:47 +000051 case 'n':
Erik Andersene49d5ec2000-02-08 19:58:47 +000052 compare = compare_numeric;
53 break;
Erik Andersen029011b2000-03-04 21:19:32 +000054#ifdef BB_FEATURE_SORT_REVERSE
Erik Andersene49d5ec2000-02-08 19:58:47 +000055 case 'r':
Matt Kraai5e8c0ff2000-12-20 20:49:56 +000056 reverse = TRUE;
Erik Andersene49d5ec2000-02-08 19:58:47 +000057 break;
Erik Andersen029011b2000-03-04 21:19:32 +000058#endif
Erik Andersene49d5ec2000-02-08 19:58:47 +000059 default:
Eric Andersen67991cf2001-02-14 21:23:06 +000060 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +000061 }
62 }
63
Matt Kraai5e8c0ff2000-12-20 20:49:56 +000064 /* 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");
John Beppu8d369e92000-09-28 17:49:59 +000070
Matt Kraai5e8c0ff2000-12-20 20:49:56 +000071 while ((line = get_line_from_file(fp)) != NULL) {
72 lines = xrealloc(lines, sizeof(char *) * (nlines + 1));
73 lines[nlines++] = line;
Erik Andersene49d5ec2000-02-08 19:58:47 +000074 }
John Beppuc0ca4731999-12-21 20:00:35 +000075 }
John Beppuc0ca4731999-12-21 20:00:35 +000076
Matt Kraai5e8c0ff2000-12-20 20:49:56 +000077 /* 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;
John Beppuc0ca4731999-12-21 20:00:35 +000090}