hush/coreutils/sort.c

90 lines
2.1 KiB
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
1999-12-21 20:00:35 +00:00
/*
* Mini sort implementation for busybox
1999-12-21 20:00:35 +00:00
*
*
2000-12-20 20:49:56 +00:00
* Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu>
1999-12-21 20:00:35 +00:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "busybox.h"
#include <getopt.h>
#include <stdlib.h>
1999-12-21 20:00:35 +00:00
2000-12-20 20:49:56 +00:00
int compare_ascii(const void *x, const void *y)
{
2000-12-20 20:49:56 +00:00
return strcmp(*(char **)x, *(char **)y);
1999-12-22 00:30:29 +00:00
}
2000-12-20 20:49:56 +00:00
int compare_numeric(const void *x, const void *y)
1999-12-22 00:30:29 +00:00
{
2000-12-20 20:49:56 +00:00
return atoi(*(char **)x) - atoi(*(char **)y);
1999-12-22 00:30:29 +00:00
}
1999-12-21 20:00:35 +00:00
int sort_main(int argc, char **argv)
1999-12-21 20:00:35 +00:00
{
2000-12-20 20:49:56 +00:00
FILE *fp;
char *line, **lines = NULL;
int i, opt, nlines = 0;
int (*compare)(const void *, const void *) = compare_ascii;
#ifdef BB_FEATURE_SORT_REVERSE
int reverse = FALSE;
#endif
2000-12-20 20:49:56 +00:00
while ((opt = getopt(argc, argv, "nr")) != -1) {
switch (opt) {
case 'n':
compare = compare_numeric;
break;
#ifdef BB_FEATURE_SORT_REVERSE
case 'r':
2000-12-20 20:49:56 +00:00
reverse = TRUE;
break;
#endif
default:
show_usage();
}
1999-12-21 20:00:35 +00:00
}
2000-12-20 20:49:56 +00:00
/* read the input */
for (i = optind; i == optind || i < argc; i++) {
if (argv[i] == NULL)
fp = stdin;
else
fp = xfopen(argv[i], "r");
2000-12-20 20:49:56 +00:00
while ((line = get_line_from_file(fp)) != NULL) {
lines = xrealloc(lines, sizeof(char *) * (nlines + 1));
lines[nlines++] = line;
}
1999-12-21 20:00:35 +00:00
}
2000-12-20 20:49:56 +00:00
/* sort it */
qsort(lines, nlines, sizeof(char *), compare);
1999-12-21 20:00:35 +00:00
2000-12-20 20:49:56 +00:00
/* print it */
#ifdef BB_FEATURE_SORT_REVERSE
if (reverse)
for (i = nlines - 1; 0 <= i; i--)
fputs(lines[i], stdout);
else
#endif
for (i = 0; i < nlines; i++)
fputs(lines[i], stdout);
return EXIT_SUCCESS;
}