Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 2 | /* |
Erik Andersen | 0b874ed | 2000-01-06 01:14:56 +0000 | [diff] [blame] | 3 | * Mini uniq implementation for busybox |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 4 | * |
| 5 | * |
Eric Andersen | 8ec10a9 | 2001-01-27 09:33:39 +0000 | [diff] [blame] | 6 | * Copyright (C) 1999,2000,2001 by Lineo, inc. |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 7 | * Written by John Beppu <beppu@lineo.com> |
Matt Kraai | e0bcce0 | 2000-09-27 02:29:39 +0000 | [diff] [blame] | 8 | * Rewritten by Matt Kraai <kraai@alumni.carnegiemellon.edu> |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 18 | * General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | * |
| 24 | */ |
| 25 | |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 26 | #include <stdio.h> |
John Beppu | 96f1f33 | 2000-01-06 23:49:21 +0000 | [diff] [blame] | 27 | #include <string.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 28 | #include <getopt.h> |
John Beppu | 96f1f33 | 2000-01-06 23:49:21 +0000 | [diff] [blame] | 29 | #include <errno.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 30 | #include <stdlib.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 31 | #include "busybox.h" |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 32 | |
Eric Andersen | 5b5db38 | 2000-12-09 16:37:53 +0000 | [diff] [blame] | 33 | static int print_count; |
| 34 | static int print_uniq = 1; |
| 35 | static int print_duplicates = 1; |
| 36 | |
| 37 | static void print_line(char *line, int count, FILE *fp) |
| 38 | { |
| 39 | if ((print_duplicates && count > 1) || (print_uniq && count == 1)) { |
| 40 | if (print_count) |
| 41 | fprintf(fp, "%7d\t%s", count, line); |
| 42 | else |
| 43 | fputs(line, fp); |
| 44 | } |
| 45 | } |
| 46 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 47 | int uniq_main(int argc, char **argv) |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 48 | { |
Matt Kraai | e0bcce0 | 2000-09-27 02:29:39 +0000 | [diff] [blame] | 49 | FILE *in = stdin, *out = stdout; |
| 50 | char *lastline = NULL, *input; |
Eric Andersen | 5b5db38 | 2000-12-09 16:37:53 +0000 | [diff] [blame] | 51 | int opt, count = 0; |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 52 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 53 | /* parse argv[] */ |
Eric Andersen | 5b5db38 | 2000-12-09 16:37:53 +0000 | [diff] [blame] | 54 | while ((opt = getopt(argc, argv, "cdu")) > 0) { |
| 55 | switch (opt) { |
| 56 | case 'c': |
| 57 | print_count = 1; |
| 58 | break; |
| 59 | case 'd': |
| 60 | print_duplicates = 1; |
| 61 | print_uniq = 0; |
| 62 | break; |
| 63 | case 'u': |
| 64 | print_duplicates = 0; |
| 65 | print_uniq = 1; |
| 66 | break; |
| 67 | } |
| 68 | } |
Matt Kraai | e0bcce0 | 2000-09-27 02:29:39 +0000 | [diff] [blame] | 69 | |
Eric Andersen | 5b5db38 | 2000-12-09 16:37:53 +0000 | [diff] [blame] | 70 | if (argv[optind] != NULL) { |
| 71 | in = xfopen(argv[optind], "r"); |
| 72 | if (argv[optind+1] != NULL) |
| 73 | out = xfopen(argv[optind+1], "w"); |
Matt Kraai | e0bcce0 | 2000-09-27 02:29:39 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | while ((input = get_line_from_file(in)) != NULL) { |
| 77 | if (lastline == NULL || strcmp(input, lastline) != 0) { |
Eric Andersen | 5b5db38 | 2000-12-09 16:37:53 +0000 | [diff] [blame] | 78 | print_line(lastline, count, out); |
Matt Kraai | e0bcce0 | 2000-09-27 02:29:39 +0000 | [diff] [blame] | 79 | free(lastline); |
| 80 | lastline = input; |
Eric Andersen | 5b5db38 | 2000-12-09 16:37:53 +0000 | [diff] [blame] | 81 | count = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 82 | } |
Eric Andersen | 5b5db38 | 2000-12-09 16:37:53 +0000 | [diff] [blame] | 83 | count++; |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 84 | } |
Eric Andersen | 5b5db38 | 2000-12-09 16:37:53 +0000 | [diff] [blame] | 85 | print_line(lastline, count, out); |
Matt Kraai | e0bcce0 | 2000-09-27 02:29:39 +0000 | [diff] [blame] | 86 | free(lastline); |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 87 | |
Matt Kraai | e0bcce0 | 2000-09-27 02:29:39 +0000 | [diff] [blame] | 88 | return EXIT_SUCCESS; |
John Beppu | abb4772 | 2000-01-06 00:48:21 +0000 | [diff] [blame] | 89 | } |