1997-03-11 13:08:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1989, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Case Larsen.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-12-06 22:58:23 +00:00
|
|
|
static const char copyright[] =
|
1997-03-11 13:08:12 +00:00
|
|
|
"@(#) Copyright (c) 1989, 1993, 1994\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
2001-12-02 23:52:47 +00:00
|
|
|
#endif
|
1997-03-11 13:08:12 +00:00
|
|
|
|
2001-12-10 21:13:08 +00:00
|
|
|
#if 0
|
1997-03-11 13:08:12 +00:00
|
|
|
#ifndef lint
|
2001-12-10 21:13:08 +00:00
|
|
|
static char sccsid[] = "From: @(#)comm.c 8.4 (Berkeley) 5/4/95";
|
1997-09-07 15:09:22 +00:00
|
|
|
#endif
|
2001-12-10 21:13:08 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1997-03-11 13:08:12 +00:00
|
|
|
|
1997-06-30 06:40:16 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <limits.h>
|
1999-10-24 03:42:35 +00:00
|
|
|
#include <locale.h>
|
2009-12-16 14:34:48 +00:00
|
|
|
#include <stdint.h>
|
2010-03-08 22:27:46 +00:00
|
|
|
#define _WITH_GETLINE
|
1997-03-11 13:08:12 +00:00
|
|
|
#include <stdio.h>
|
2001-06-24 19:50:42 +00:00
|
|
|
#include <stdlib.h>
|
1997-03-11 13:08:12 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2004-07-02 22:48:29 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
#include <wctype.h>
|
1997-03-11 13:08:12 +00:00
|
|
|
|
2011-11-06 18:49:10 +00:00
|
|
|
static int iflag;
|
|
|
|
static const char *tabs[] = { "", "\t", "\t\t" };
|
1997-03-11 13:08:12 +00:00
|
|
|
|
2011-11-06 18:49:10 +00:00
|
|
|
static FILE *file(const char *);
|
|
|
|
static wchar_t *convert(const char *);
|
|
|
|
static void show(FILE *, const char *, const char *, char **, size_t *);
|
2002-03-22 01:22:50 +00:00
|
|
|
static void usage(void);
|
1997-03-11 13:08:12 +00:00
|
|
|
|
|
|
|
int
|
2002-07-28 15:28:38 +00:00
|
|
|
main(int argc, char *argv[])
|
1997-03-11 13:08:12 +00:00
|
|
|
{
|
2008-05-28 14:13:35 +00:00
|
|
|
int comp, read1, read2;
|
2010-03-08 22:27:46 +00:00
|
|
|
int ch, flag1, flag2, flag3;
|
1997-03-11 13:08:12 +00:00
|
|
|
FILE *fp1, *fp2;
|
2010-03-08 22:27:46 +00:00
|
|
|
const char *col1, *col2, *col3;
|
2008-05-28 14:13:35 +00:00
|
|
|
size_t line1len, line2len;
|
2010-03-08 22:27:46 +00:00
|
|
|
char *line1, *line2;
|
|
|
|
ssize_t n1, n2;
|
|
|
|
wchar_t *tline1, *tline2;
|
|
|
|
const char **p;
|
2008-05-28 14:13:35 +00:00
|
|
|
|
2001-12-30 19:30:10 +00:00
|
|
|
(void) setlocale(LC_ALL, "");
|
1999-10-24 03:42:35 +00:00
|
|
|
|
2010-03-08 22:27:46 +00:00
|
|
|
flag1 = flag2 = flag3 = 1;
|
|
|
|
|
2002-05-28 09:26:08 +00:00
|
|
|
while ((ch = getopt(argc, argv, "123i")) != -1)
|
1997-03-11 13:08:12 +00:00
|
|
|
switch(ch) {
|
|
|
|
case '1':
|
|
|
|
flag1 = 0;
|
|
|
|
break;
|
|
|
|
case '2':
|
|
|
|
flag2 = 0;
|
|
|
|
break;
|
|
|
|
case '3':
|
|
|
|
flag3 = 0;
|
|
|
|
break;
|
1997-09-07 15:09:22 +00:00
|
|
|
case 'i':
|
|
|
|
iflag = 1;
|
|
|
|
break;
|
1997-03-11 13:08:12 +00:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
2002-05-28 09:26:08 +00:00
|
|
|
argc -= optind;
|
1997-03-11 13:08:12 +00:00
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (argc != 2)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
fp1 = file(argv[0]);
|
|
|
|
fp2 = file(argv[1]);
|
|
|
|
|
|
|
|
/* for each column printed, add another tab offset */
|
|
|
|
p = tabs;
|
|
|
|
col1 = col2 = col3 = NULL;
|
|
|
|
if (flag1)
|
|
|
|
col1 = *p++;
|
|
|
|
if (flag2)
|
|
|
|
col2 = *p++;
|
|
|
|
if (flag3)
|
|
|
|
col3 = *p;
|
|
|
|
|
2010-03-08 22:27:46 +00:00
|
|
|
line1len = line2len = 0;
|
|
|
|
line1 = line2 = NULL;
|
|
|
|
n1 = n2 = -1;
|
|
|
|
|
1997-03-11 13:08:12 +00:00
|
|
|
for (read1 = read2 = 1;;) {
|
|
|
|
/* read next line, check for EOF */
|
2004-07-02 22:48:29 +00:00
|
|
|
if (read1) {
|
2010-03-08 22:27:46 +00:00
|
|
|
n1 = getline(&line1, &line1len, fp1);
|
|
|
|
if (n1 < 0 && ferror(fp1))
|
2004-07-02 22:48:29 +00:00
|
|
|
err(1, "%s", argv[0]);
|
2010-03-08 22:27:46 +00:00
|
|
|
if (n1 > 0 && line1[n1 - 1] == '\n')
|
|
|
|
line1[n1 - 1] = '\0';
|
|
|
|
|
2004-07-02 22:48:29 +00:00
|
|
|
}
|
|
|
|
if (read2) {
|
2010-03-08 22:27:46 +00:00
|
|
|
n2 = getline(&line2, &line2len, fp2);
|
|
|
|
if (n2 < 0 && ferror(fp2))
|
2004-07-02 22:48:29 +00:00
|
|
|
err(1, "%s", argv[1]);
|
2010-03-08 22:27:46 +00:00
|
|
|
if (n2 > 0 && line2[n2 - 1] == '\n')
|
|
|
|
line2[n2 - 1] = '\0';
|
2004-07-02 22:48:29 +00:00
|
|
|
}
|
1997-03-11 13:08:12 +00:00
|
|
|
|
|
|
|
/* if one file done, display the rest of the other file */
|
2010-03-08 22:27:46 +00:00
|
|
|
if (n1 < 0) {
|
|
|
|
if (n2 >= 0 && col2 != NULL)
|
|
|
|
show(fp2, argv[1], col2, &line2, &line2len);
|
1997-03-11 13:08:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2010-03-08 22:27:46 +00:00
|
|
|
if (n2 < 0) {
|
|
|
|
if (n1 >= 0 && col1 != NULL)
|
|
|
|
show(fp1, argv[0], col1, &line1, &line1len);
|
1997-03-11 13:08:12 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-03-08 22:27:46 +00:00
|
|
|
tline2 = NULL;
|
|
|
|
if ((tline1 = convert(line1)) != NULL)
|
|
|
|
tline2 = convert(line2);
|
|
|
|
if (tline1 == NULL || tline2 == NULL)
|
|
|
|
comp = strcmp(line1, line2);
|
1997-09-07 15:09:22 +00:00
|
|
|
else
|
2010-03-08 22:27:46 +00:00
|
|
|
comp = wcscoll(tline1, tline2);
|
|
|
|
if (tline1 != NULL)
|
|
|
|
free(tline1);
|
|
|
|
if (tline2 != NULL)
|
|
|
|
free(tline2);
|
1997-09-07 15:09:22 +00:00
|
|
|
|
2010-03-08 22:27:46 +00:00
|
|
|
/* lines are the same */
|
1997-09-07 15:09:22 +00:00
|
|
|
if (!comp) {
|
1997-03-11 13:08:12 +00:00
|
|
|
read1 = read2 = 1;
|
2008-05-28 14:13:35 +00:00
|
|
|
if (col3 != NULL)
|
2010-03-08 22:27:46 +00:00
|
|
|
(void)printf("%s%s\n", col3, line1);
|
1997-03-11 13:08:12 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* lines are different */
|
|
|
|
if (comp < 0) {
|
|
|
|
read1 = 1;
|
|
|
|
read2 = 0;
|
2008-05-28 14:13:35 +00:00
|
|
|
if (col1 != NULL)
|
2010-03-08 22:27:46 +00:00
|
|
|
(void)printf("%s%s\n", col1, line1);
|
1997-03-11 13:08:12 +00:00
|
|
|
} else {
|
|
|
|
read1 = 0;
|
|
|
|
read2 = 1;
|
2008-05-28 14:13:35 +00:00
|
|
|
if (col2 != NULL)
|
2010-03-08 22:27:46 +00:00
|
|
|
(void)printf("%s%s\n", col2, line2);
|
1997-03-11 13:08:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:49:10 +00:00
|
|
|
static wchar_t *
|
2010-03-08 22:27:46 +00:00
|
|
|
convert(const char *str)
|
2008-05-28 14:13:35 +00:00
|
|
|
{
|
2010-03-08 22:27:46 +00:00
|
|
|
size_t n;
|
|
|
|
wchar_t *buf, *p;
|
2008-05-28 14:13:35 +00:00
|
|
|
|
2010-03-08 22:27:46 +00:00
|
|
|
if ((n = mbstowcs(NULL, str, 0)) == (size_t)-1)
|
|
|
|
return (NULL);
|
2010-03-09 21:06:17 +00:00
|
|
|
if (SIZE_MAX / sizeof(*buf) < n + 1)
|
|
|
|
errx(1, "conversion buffer length overflow");
|
2010-03-08 22:27:46 +00:00
|
|
|
if ((buf = malloc((n + 1) * sizeof(*buf))) == NULL)
|
|
|
|
err(1, "malloc");
|
|
|
|
if (mbstowcs(buf, str, n + 1) != n)
|
|
|
|
errx(1, "internal mbstowcs() error");
|
|
|
|
|
|
|
|
if (iflag) {
|
|
|
|
for (p = buf; *p != L'\0'; p++)
|
|
|
|
*p = towlower(*p);
|
2009-12-12 18:18:46 +00:00
|
|
|
}
|
2008-05-28 14:13:35 +00:00
|
|
|
|
2010-03-08 22:27:46 +00:00
|
|
|
return (buf);
|
2008-05-28 14:13:35 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:49:10 +00:00
|
|
|
static void
|
2010-03-08 22:27:46 +00:00
|
|
|
show(FILE *fp, const char *fn, const char *offset, char **bufp, size_t *buflenp)
|
1997-03-11 13:08:12 +00:00
|
|
|
{
|
2010-03-08 22:27:46 +00:00
|
|
|
ssize_t n;
|
1997-03-11 13:08:12 +00:00
|
|
|
|
|
|
|
do {
|
2010-03-08 22:27:46 +00:00
|
|
|
(void)printf("%s%s\n", offset, *bufp);
|
|
|
|
if ((n = getline(bufp, buflenp, fp)) < 0)
|
|
|
|
break;
|
|
|
|
if (n > 0 && (*bufp)[n - 1] == '\n')
|
|
|
|
(*bufp)[n - 1] = '\0';
|
|
|
|
} while (1);
|
2004-07-02 22:48:29 +00:00
|
|
|
if (ferror(fp))
|
|
|
|
err(1, "%s", fn);
|
1997-03-11 13:08:12 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:49:10 +00:00
|
|
|
static FILE *
|
2002-07-28 15:28:38 +00:00
|
|
|
file(const char *name)
|
1997-03-11 13:08:12 +00:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
if (!strcmp(name, "-"))
|
|
|
|
return (stdin);
|
|
|
|
if ((fp = fopen(name, "r")) == NULL) {
|
1997-06-30 06:40:16 +00:00
|
|
|
err(1, "%s", name);
|
1997-03-11 13:08:12 +00:00
|
|
|
}
|
|
|
|
return (fp);
|
|
|
|
}
|
|
|
|
|
1997-06-30 06:40:16 +00:00
|
|
|
static void
|
2002-07-28 15:28:38 +00:00
|
|
|
usage(void)
|
1997-03-11 13:08:12 +00:00
|
|
|
{
|
1997-09-07 15:09:22 +00:00
|
|
|
(void)fprintf(stderr, "usage: comm [-123i] file1 file2\n");
|
1997-03-11 13:08:12 +00:00
|
|
|
exit(1);
|
|
|
|
}
|