Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 2 | /* |
John Beppu | 568cb7b | 1999-12-22 23:02:12 +0000 | [diff] [blame] | 3 | * Mini sort implementation for busybox |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 4 | * |
| 5 | * |
Matt Kraai | 5e8c0ff | 2000-12-20 20:49:56 +0000 | [diff] [blame] | 6 | * Copyright (C) 2000 by Matt Kraai <kraai@alumni.carnegiemellon.edu> |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 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 | |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 24 | #include <getopt.h> |
Eric Andersen | eba8ed7 | 2001-03-09 14:36:42 +0000 | [diff] [blame] | 25 | #include <string.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 26 | #include <stdlib.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 27 | #include "busybox.h" |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 28 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 29 | static int compare_ascii(const void *x, const void *y) |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 30 | { |
Matt Kraai | 5e8c0ff | 2000-12-20 20:49:56 +0000 | [diff] [blame] | 31 | return strcmp(*(char **)x, *(char **)y); |
John Beppu | 38efa79 | 1999-12-22 00:30:29 +0000 | [diff] [blame] | 32 | } |
| 33 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 34 | static int compare_numeric(const void *x, const void *y) |
John Beppu | 38efa79 | 1999-12-22 00:30:29 +0000 | [diff] [blame] | 35 | { |
Matt Kraai | 5e8c0ff | 2000-12-20 20:49:56 +0000 | [diff] [blame] | 36 | return atoi(*(char **)x) - atoi(*(char **)y); |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 37 | } |
| 38 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 39 | int sort_main(int argc, char **argv) |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 40 | { |
Matt Kraai | 5e8c0ff | 2000-12-20 20:49:56 +0000 | [diff] [blame] | 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 |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 48 | |
Matt Kraai | 5e8c0ff | 2000-12-20 20:49:56 +0000 | [diff] [blame] | 49 | while ((opt = getopt(argc, argv, "nr")) != -1) { |
| 50 | switch (opt) { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 51 | case 'n': |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 52 | compare = compare_numeric; |
| 53 | break; |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 54 | #ifdef BB_FEATURE_SORT_REVERSE |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 55 | case 'r': |
Matt Kraai | 5e8c0ff | 2000-12-20 20:49:56 +0000 | [diff] [blame] | 56 | reverse = TRUE; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 57 | break; |
Erik Andersen | 029011b | 2000-03-04 21:19:32 +0000 | [diff] [blame] | 58 | #endif |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 59 | default: |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 60 | show_usage(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 61 | } |
| 62 | } |
| 63 | |
Matt Kraai | 5e8c0ff | 2000-12-20 20:49:56 +0000 | [diff] [blame] | 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"); |
John Beppu | 8d369e9 | 2000-09-28 17:49:59 +0000 | [diff] [blame] | 70 | |
Matt Kraai | 5e8c0ff | 2000-12-20 20:49:56 +0000 | [diff] [blame] | 71 | while ((line = get_line_from_file(fp)) != NULL) { |
| 72 | lines = xrealloc(lines, sizeof(char *) * (nlines + 1)); |
| 73 | lines[nlines++] = line; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 74 | } |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 75 | } |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 76 | |
Matt Kraai | 5e8c0ff | 2000-12-20 20:49:56 +0000 | [diff] [blame] | 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; |
John Beppu | c0ca473 | 1999-12-21 20:00:35 +0000 | [diff] [blame] | 90 | } |