Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Mini cmp implementation for busybox |
| 4 | * |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 5 | * Copyright (C) 2000,2001 by Matt Kraai <kraai@alumni.carnegiemellon.edu> |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 6 | * |
"Robert P. J. Day" | 801ab14 | 2006-07-12 07:56:04 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 10 | /* BB_AUDIT SUSv3 (virtually) compliant -- uses nicer GNU format for -l. */ |
| 11 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/cmp.html */ |
| 12 | |
| 13 | /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
| 14 | * |
| 15 | * Original version majorly reworked for SUSv3 compliance, bug fixes, and |
| 16 | * size optimizations. Changes include: |
Eric Andersen | aff114c | 2004-04-14 17:51:38 +0000 | [diff] [blame] | 17 | * 1) Now correctly distinguishes between errors and actual file differences. |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 18 | * 2) Proper handling of '-' args. |
| 19 | * 3) Actual error checking of i/o. |
| 20 | * 4) Accept SUSv3 -l option. Note that we use the slightly nicer gnu format |
| 21 | * in the '-l' case. |
| 22 | */ |
| 23 | |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 24 | #include <stdio.h> |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 25 | #include <stdlib.h> |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 26 | #include <unistd.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 27 | #include "busybox.h" |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 28 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 29 | static FILE *cmp_xfopen_input(const char *filename) |
| 30 | { |
| 31 | FILE *fp; |
| 32 | |
| 33 | if ((fp = bb_wfopen_input(filename)) != NULL) { |
| 34 | return fp; |
| 35 | } |
| 36 | |
| 37 | exit(bb_default_error_retval); /* We already output an error message. */ |
| 38 | } |
| 39 | |
| 40 | static const char fmt_eof[] = "cmp: EOF on %s\n"; |
| 41 | static const char fmt_differ[] = "%s %s differ: char %d, line %d\n"; |
Rob Landley | c370ea8 | 2006-03-27 17:00:11 +0000 | [diff] [blame] | 42 | // This fmt_l_opt uses gnu-isms. SUSv3 would be "%.0s%.0s%d %o %o\n" |
| 43 | static const char fmt_l_opt[] = "%.0s%.0s%d %3o %3o\n"; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 44 | |
| 45 | static const char opt_chars[] = "sl"; |
| 46 | |
| 47 | enum { |
| 48 | OPT_s = 1, |
| 49 | OPT_l = 2 |
| 50 | }; |
| 51 | |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 52 | int cmp_main(int argc, char **argv) |
| 53 | { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 54 | FILE *fp1, *fp2, *outfile = stdout; |
| 55 | const char *filename1, *filename2; |
| 56 | const char *fmt; |
| 57 | int c1, c2, char_pos, line_pos; |
| 58 | int opt_flags; |
| 59 | int exit_val = 0; |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 60 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 61 | bb_default_error_retval = 2; /* 1 is returned if files are different. */ |
| 62 | |
| 63 | opt_flags = bb_getopt_ulflags(argc, argv, opt_chars); |
| 64 | |
| 65 | if ((opt_flags == 3) || (((unsigned int)(--argc - optind)) > 1)) { |
| 66 | bb_show_usage(); |
Mark Whitley | 207587a | 2001-04-25 20:41:02 +0000 | [diff] [blame] | 67 | } |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 68 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 69 | fp1 = cmp_xfopen_input(filename1 = *(argv += optind)); |
| 70 | |
| 71 | filename2 = "-"; |
| 72 | if (*++argv) { |
| 73 | filename2 = *argv; |
| 74 | } |
| 75 | fp2 = cmp_xfopen_input(filename2); |
| 76 | |
| 77 | if (fp1 == fp2) { /* Paranioa check... stdin == stdin? */ |
| 78 | /* Note that we don't bother reading stdin. Neither does gnu wc. |
| 79 | * But perhaps we should, so that other apps down the chain don't |
| 80 | * get the input. Consider 'echo hello | (cmp - - && cat -)'. |
| 81 | */ |
| 82 | return 0; |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 83 | } |
| 84 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 85 | fmt = fmt_differ; |
| 86 | if (opt_flags == OPT_l) { |
| 87 | fmt = fmt_l_opt; |
| 88 | } |
| 89 | |
| 90 | char_pos = 0; |
| 91 | line_pos = 1; |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 92 | do { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 93 | c1 = getc(fp1); |
| 94 | c2 = getc(fp2); |
| 95 | ++char_pos; |
| 96 | if (c1 != c2) { /* Remember -- a read error may have occurred. */ |
| 97 | exit_val = 1; /* But assume the files are different for now. */ |
| 98 | if (c2 == EOF) { |
| 99 | /* We know that fp1 isn't at EOF or in an error state. But to |
| 100 | * save space below, things are setup to expect an EOF in fp1 |
| 101 | * if an EOF occurred. So, swap things around. |
| 102 | */ |
| 103 | fp1 = fp2; |
| 104 | filename1 = filename2; |
| 105 | c1 = c2; |
| 106 | } |
| 107 | if (c1 == EOF) { |
| 108 | bb_xferror(fp1, filename1); |
| 109 | fmt = fmt_eof; /* Well, no error, so it must really be EOF. */ |
| 110 | outfile = stderr; |
| 111 | /* There may have been output to stdout (option -l), so |
| 112 | * make sure we fflush before writing to stderr. */ |
| 113 | bb_xfflush_stdout(); |
| 114 | } |
| 115 | if (opt_flags != OPT_s) { |
| 116 | if (opt_flags == OPT_l) { |
| 117 | line_pos = c1; /* line_pos is unused in the -l case. */ |
| 118 | } |
| 119 | bb_fprintf(outfile, fmt, filename1, filename2, char_pos, line_pos, c2); |
| 120 | if (opt_flags) { /* This must be -l since not -s. */ |
| 121 | /* If we encountered and EOF, the while check will catch it. */ |
| 122 | continue; |
| 123 | } |
| 124 | } |
| 125 | break; |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 126 | } |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 127 | if (c1 == '\n') { |
| 128 | ++line_pos; |
| 129 | } |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 130 | } while (c1 != EOF); |
| 131 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 132 | bb_xferror(fp1, filename1); |
| 133 | bb_xferror(fp2, filename2); |
| 134 | |
| 135 | bb_fflush_stdout_and_exit(exit_val); |
Mark Whitley | 872138d | 2000-10-09 18:56:47 +0000 | [diff] [blame] | 136 | } |