xref: /freebsd/usr.bin/join/join.c (revision d3643c9efe7806c17c11251acd299f70b112c596)
19b50d902SRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
49b50d902SRodney W. Grimes  * Copyright (c) 1991, 1993, 1994
59b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
69b50d902SRodney W. Grimes  *
79b50d902SRodney W. Grimes  * This code is derived from software contributed to Berkeley by
89b50d902SRodney W. Grimes  * Steve Hayman of the Computer Science Department, Indiana University,
99b50d902SRodney W. Grimes  * Michiro Hikida and David Goodenough.
109b50d902SRodney W. Grimes  *
119b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
129b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
139b50d902SRodney W. Grimes  * are met:
149b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
159b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
169b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
179b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
189b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
19fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
209b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
219b50d902SRodney W. Grimes  *    without specific prior written permission.
229b50d902SRodney W. Grimes  *
239b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
249b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
259b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
269b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
279b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
289b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
299b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
309b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
319b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
329b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
339b50d902SRodney W. Grimes  * SUCH DAMAGE.
349b50d902SRodney W. Grimes  */
359b50d902SRodney W. Grimes 
369b50d902SRodney W. Grimes #include <sys/param.h>
379b50d902SRodney W. Grimes 
389b50d902SRodney W. Grimes #include <err.h>
399b50d902SRodney W. Grimes #include <errno.h>
408160bf78STim J. Robbins #include <limits.h>
41fcb11314STim J. Robbins #include <locale.h>
429b50d902SRodney W. Grimes #include <stdio.h>
439b50d902SRodney W. Grimes #include <stdlib.h>
449b50d902SRodney W. Grimes #include <string.h>
456f0a860fSPeter Wemm #include <unistd.h>
468160bf78STim J. Robbins #include <wchar.h>
479b50d902SRodney W. Grimes 
489b50d902SRodney W. Grimes /*
499b50d902SRodney W. Grimes  * There's a structure per input file which encapsulates the state of the
509b50d902SRodney W. Grimes  * file.  We repeatedly read lines from each file until we've read in all
519b50d902SRodney W. Grimes  * the consecutive lines from the file with a common join field.  Then we
529b50d902SRodney W. Grimes  * compare the set of lines with an equivalent set from the other file.
539b50d902SRodney W. Grimes  */
549b50d902SRodney W. Grimes typedef struct {
559b50d902SRodney W. Grimes 	char *line;		/* line */
569b50d902SRodney W. Grimes 	u_long linealloc;	/* line allocated count */
579b50d902SRodney W. Grimes 	char **fields;		/* line field(s) */
589b50d902SRodney W. Grimes 	u_long fieldcnt;	/* line field(s) count */
599b50d902SRodney W. Grimes 	u_long fieldalloc;	/* line field(s) allocated count */
609b50d902SRodney W. Grimes } LINE;
619b50d902SRodney W. Grimes 
629b50d902SRodney W. Grimes typedef struct {
639b50d902SRodney W. Grimes 	FILE *fp;		/* file descriptor */
649b50d902SRodney W. Grimes 	u_long joinf;		/* join field (-1, -2, -j) */
659b50d902SRodney W. Grimes 	int unpair;		/* output unpairable lines (-a) */
66f4ac32deSDavid Malone 	u_long number;		/* 1 for file 1, 2 for file 2 */
679b50d902SRodney W. Grimes 
689b50d902SRodney W. Grimes 	LINE *set;		/* set of lines with same field */
699b50d902SRodney W. Grimes 	int pushbool;		/* if pushback is set */
709b50d902SRodney W. Grimes 	u_long pushback;	/* line on the stack */
719b50d902SRodney W. Grimes 	u_long setcnt;		/* set count */
729b50d902SRodney W. Grimes 	u_long setalloc;	/* set allocated count */
739b50d902SRodney W. Grimes } INPUT;
746c9f9615SEd Schouten static INPUT input1 = { NULL, 0, 0, 1, NULL, 0, 0, 0, 0 },
7560d1fdaaSMark Murray     input2 = { NULL, 0, 0, 2, NULL, 0, 0, 0, 0 };
769b50d902SRodney W. Grimes 
779b50d902SRodney W. Grimes typedef struct {
789b50d902SRodney W. Grimes 	u_long	filenum;	/* file number */
799b50d902SRodney W. Grimes 	u_long	fieldno;	/* field number */
809b50d902SRodney W. Grimes } OLIST;
816c9f9615SEd Schouten static OLIST *olist;		/* output field list */
826c9f9615SEd Schouten static u_long olistcnt;		/* output field list count */
836c9f9615SEd Schouten static u_long olistalloc;	/* output field allocated count */
849b50d902SRodney W. Grimes 
856c9f9615SEd Schouten static int joinout = 1;		/* show lines with matched join fields (-v) */
866c9f9615SEd Schouten static int needsep;		/* need separator character */
876c9f9615SEd Schouten static int spans = 1;		/* span multiple delimiters (-t) */
886c9f9615SEd Schouten static char *empty;		/* empty field replacement string (-e) */
898160bf78STim J. Robbins static wchar_t default_tabchar[] = L" \t";
906c9f9615SEd Schouten static wchar_t *tabchar = default_tabchar; /* delimiter characters (-t) */
919b50d902SRodney W. Grimes 
926c9f9615SEd Schouten static int  cmp(LINE *, u_long, LINE *, u_long);
936c9f9615SEd Schouten static void fieldarg(char *);
946c9f9615SEd Schouten static void joinlines(INPUT *, INPUT *);
956c9f9615SEd Schouten static int  mbscoll(const char *, const char *);
966c9f9615SEd Schouten static char *mbssep(char **, const wchar_t *);
976c9f9615SEd Schouten static void obsolete(char **);
986c9f9615SEd Schouten static void outfield(LINE *, u_long, int);
996c9f9615SEd Schouten static void outoneline(INPUT *, LINE *);
1006c9f9615SEd Schouten static void outtwoline(INPUT *, LINE *, INPUT *, LINE *);
1016c9f9615SEd Schouten static void slurp(INPUT *);
1026c9f9615SEd Schouten static wchar_t *towcs(const char *);
103a1b6427aSAlfonso Gregory static void usage(void) __dead2;
1049b50d902SRodney W. Grimes 
1059b50d902SRodney W. Grimes int
106f4ac32deSDavid Malone main(int argc, char *argv[])
1079b50d902SRodney W. Grimes {
1089b50d902SRodney W. Grimes 	INPUT *F1, *F2;
1099b50d902SRodney W. Grimes 	int aflag, ch, cval, vflag;
1109b50d902SRodney W. Grimes 	char *end;
1119b50d902SRodney W. Grimes 
112fcb11314STim J. Robbins 	setlocale(LC_ALL, "");
113fcb11314STim J. Robbins 
1149b50d902SRodney W. Grimes 	F1 = &input1;
1159b50d902SRodney W. Grimes 	F2 = &input2;
1169b50d902SRodney W. Grimes 
1179b50d902SRodney W. Grimes 	aflag = vflag = 0;
1189b50d902SRodney W. Grimes 	obsolete(argv);
1191c8af878SWarner Losh 	while ((ch = getopt(argc, argv, "\01a:e:j:1:2:o:t:v:")) != -1) {
1209b50d902SRodney W. Grimes 		switch (ch) {
1219b50d902SRodney W. Grimes 		case '\01':		/* See comment in obsolete(). */
1229b50d902SRodney W. Grimes 			aflag = 1;
1239b50d902SRodney W. Grimes 			F1->unpair = F2->unpair = 1;
1249b50d902SRodney W. Grimes 			break;
1259b50d902SRodney W. Grimes 		case '1':
1269b50d902SRodney W. Grimes 			if ((F1->joinf = strtol(optarg, &end, 10)) < 1)
1279b50d902SRodney W. Grimes 				errx(1, "-1 option field number less than 1");
1289b50d902SRodney W. Grimes 			if (*end)
1299b50d902SRodney W. Grimes 				errx(1, "illegal field number -- %s", optarg);
1309b50d902SRodney W. Grimes 			--F1->joinf;
1319b50d902SRodney W. Grimes 			break;
1329b50d902SRodney W. Grimes 		case '2':
1339b50d902SRodney W. Grimes 			if ((F2->joinf = strtol(optarg, &end, 10)) < 1)
1349b50d902SRodney W. Grimes 				errx(1, "-2 option field number less than 1");
1359b50d902SRodney W. Grimes 			if (*end)
1369b50d902SRodney W. Grimes 				errx(1, "illegal field number -- %s", optarg);
1379b50d902SRodney W. Grimes 			--F2->joinf;
1389b50d902SRodney W. Grimes 			break;
1399b50d902SRodney W. Grimes 		case 'a':
1409b50d902SRodney W. Grimes 			aflag = 1;
1419b50d902SRodney W. Grimes 			switch(strtol(optarg, &end, 10)) {
1429b50d902SRodney W. Grimes 			case 1:
1439b50d902SRodney W. Grimes 				F1->unpair = 1;
1449b50d902SRodney W. Grimes 				break;
1459b50d902SRodney W. Grimes 			case 2:
1469b50d902SRodney W. Grimes 				F2->unpair = 1;
1479b50d902SRodney W. Grimes 				break;
1489b50d902SRodney W. Grimes 			default:
1499b50d902SRodney W. Grimes 				errx(1, "-a option file number not 1 or 2");
1509b50d902SRodney W. Grimes 				break;
1519b50d902SRodney W. Grimes 			}
1529b50d902SRodney W. Grimes 			if (*end)
1539b50d902SRodney W. Grimes 				errx(1, "illegal file number -- %s", optarg);
1549b50d902SRodney W. Grimes 			break;
1559b50d902SRodney W. Grimes 		case 'e':
1569b50d902SRodney W. Grimes 			empty = optarg;
1579b50d902SRodney W. Grimes 			break;
1589b50d902SRodney W. Grimes 		case 'j':
1599b50d902SRodney W. Grimes 			if ((F1->joinf = F2->joinf =
1609b50d902SRodney W. Grimes 			    strtol(optarg, &end, 10)) < 1)
1619b50d902SRodney W. Grimes 				errx(1, "-j option field number less than 1");
1629b50d902SRodney W. Grimes 			if (*end)
1639b50d902SRodney W. Grimes 				errx(1, "illegal field number -- %s", optarg);
1649b50d902SRodney W. Grimes 			--F1->joinf;
1659b50d902SRodney W. Grimes 			--F2->joinf;
1669b50d902SRodney W. Grimes 			break;
1679b50d902SRodney W. Grimes 		case 'o':
1689b50d902SRodney W. Grimes 			fieldarg(optarg);
1699b50d902SRodney W. Grimes 			break;
1709b50d902SRodney W. Grimes 		case 't':
1719b50d902SRodney W. Grimes 			spans = 0;
1728160bf78STim J. Robbins 			if (mbrtowc(&tabchar[0], optarg, MB_LEN_MAX, NULL) !=
1738160bf78STim J. Robbins 			    strlen(optarg))
1749b50d902SRodney W. Grimes 				errx(1, "illegal tab character specification");
1758160bf78STim J. Robbins 			tabchar[1] = L'\0';
1769b50d902SRodney W. Grimes 			break;
1779b50d902SRodney W. Grimes 		case 'v':
1789b50d902SRodney W. Grimes 			vflag = 1;
1799b50d902SRodney W. Grimes 			joinout = 0;
1809b50d902SRodney W. Grimes 			switch (strtol(optarg, &end, 10)) {
1819b50d902SRodney W. Grimes 			case 1:
1829b50d902SRodney W. Grimes 				F1->unpair = 1;
1839b50d902SRodney W. Grimes 				break;
1849b50d902SRodney W. Grimes 			case 2:
1859b50d902SRodney W. Grimes 				F2->unpair = 1;
1869b50d902SRodney W. Grimes 				break;
1879b50d902SRodney W. Grimes 			default:
1889b50d902SRodney W. Grimes 				errx(1, "-v option file number not 1 or 2");
1899b50d902SRodney W. Grimes 				break;
1909b50d902SRodney W. Grimes 			}
1919b50d902SRodney W. Grimes 			if (*end)
1929b50d902SRodney W. Grimes 				errx(1, "illegal file number -- %s", optarg);
1939b50d902SRodney W. Grimes 			break;
1949b50d902SRodney W. Grimes 		case '?':
1959b50d902SRodney W. Grimes 		default:
1969b50d902SRodney W. Grimes 			usage();
1979b50d902SRodney W. Grimes 		}
1989b50d902SRodney W. Grimes 	}
1999b50d902SRodney W. Grimes 	argc -= optind;
2009b50d902SRodney W. Grimes 	argv += optind;
2019b50d902SRodney W. Grimes 
2029b50d902SRodney W. Grimes 	if (aflag && vflag)
2039b50d902SRodney W. Grimes 		errx(1, "the -a and -v options are mutually exclusive");
2049b50d902SRodney W. Grimes 
2059b50d902SRodney W. Grimes 	if (argc != 2)
2069b50d902SRodney W. Grimes 		usage();
2079b50d902SRodney W. Grimes 
2089b50d902SRodney W. Grimes 	/* Open the files; "-" means stdin. */
2099b50d902SRodney W. Grimes 	if (!strcmp(*argv, "-"))
2109b50d902SRodney W. Grimes 		F1->fp = stdin;
2119b50d902SRodney W. Grimes 	else if ((F1->fp = fopen(*argv, "r")) == NULL)
2129b50d902SRodney W. Grimes 		err(1, "%s", *argv);
2139b50d902SRodney W. Grimes 	++argv;
2149b50d902SRodney W. Grimes 	if (!strcmp(*argv, "-"))
2159b50d902SRodney W. Grimes 		F2->fp = stdin;
2169b50d902SRodney W. Grimes 	else if ((F2->fp = fopen(*argv, "r")) == NULL)
2179b50d902SRodney W. Grimes 		err(1, "%s", *argv);
2189b50d902SRodney W. Grimes 	if (F1->fp == stdin && F2->fp == stdin)
2199b50d902SRodney W. Grimes 		errx(1, "only one input file may be stdin");
2209b50d902SRodney W. Grimes 
2219b50d902SRodney W. Grimes 	slurp(F1);
2229b50d902SRodney W. Grimes 	slurp(F2);
2239b50d902SRodney W. Grimes 	while (F1->setcnt && F2->setcnt) {
2249b50d902SRodney W. Grimes 		cval = cmp(F1->set, F1->joinf, F2->set, F2->joinf);
2259b50d902SRodney W. Grimes 		if (cval == 0) {
2269b50d902SRodney W. Grimes 			/* Oh joy, oh rapture, oh beauty divine! */
2279b50d902SRodney W. Grimes 			if (joinout)
2289b50d902SRodney W. Grimes 				joinlines(F1, F2);
2299b50d902SRodney W. Grimes 			slurp(F1);
2309b50d902SRodney W. Grimes 			slurp(F2);
2319b50d902SRodney W. Grimes 		} else if (cval < 0) {
2329b50d902SRodney W. Grimes 			/* File 1 takes the lead... */
2339b50d902SRodney W. Grimes 			if (F1->unpair)
2349b50d902SRodney W. Grimes 				joinlines(F1, NULL);
2359b50d902SRodney W. Grimes 			slurp(F1);
2369b50d902SRodney W. Grimes 		} else {
2379b50d902SRodney W. Grimes 			/* File 2 takes the lead... */
2389b50d902SRodney W. Grimes 			if (F2->unpair)
2399b50d902SRodney W. Grimes 				joinlines(F2, NULL);
2409b50d902SRodney W. Grimes 			slurp(F2);
2419b50d902SRodney W. Grimes 		}
2429b50d902SRodney W. Grimes 	}
2439b50d902SRodney W. Grimes 
2449b50d902SRodney W. Grimes 	/*
2459b50d902SRodney W. Grimes 	 * Now that one of the files is used up, optionally output any
2469b50d902SRodney W. Grimes 	 * remaining lines from the other file.
2479b50d902SRodney W. Grimes 	 */
2489b50d902SRodney W. Grimes 	if (F1->unpair)
2499b50d902SRodney W. Grimes 		while (F1->setcnt) {
2509b50d902SRodney W. Grimes 			joinlines(F1, NULL);
2519b50d902SRodney W. Grimes 			slurp(F1);
2529b50d902SRodney W. Grimes 		}
2539b50d902SRodney W. Grimes 	if (F2->unpair)
2549b50d902SRodney W. Grimes 		while (F2->setcnt) {
2559b50d902SRodney W. Grimes 			joinlines(F2, NULL);
2569b50d902SRodney W. Grimes 			slurp(F2);
2579b50d902SRodney W. Grimes 		}
2589b50d902SRodney W. Grimes 	exit(0);
2599b50d902SRodney W. Grimes }
2609b50d902SRodney W. Grimes 
2616c9f9615SEd Schouten static void
262f4ac32deSDavid Malone slurp(INPUT *F)
2639b50d902SRodney W. Grimes {
2649b50d902SRodney W. Grimes 	LINE *lp, *lastlp, tmp;
265*d3643c9eSMartin Tournoij 	size_t blen = 0;
266*d3643c9eSMartin Tournoij 	ssize_t len;
2679b50d902SRodney W. Grimes 	int cnt;
268*d3643c9eSMartin Tournoij 	char *bp, *buf = NULL, *fieldp;
2699b50d902SRodney W. Grimes 
2709b50d902SRodney W. Grimes 	/*
2719b50d902SRodney W. Grimes 	 * Read all of the lines from an input file that have the same
2729b50d902SRodney W. Grimes 	 * join field.
2739b50d902SRodney W. Grimes 	 */
2749b50d902SRodney W. Grimes 	F->setcnt = 0;
275bf6570c4SPoul-Henning Kamp 	for (lastlp = NULL;; ++F->setcnt) {
2769b50d902SRodney W. Grimes 		/*
2779b50d902SRodney W. Grimes 		 * If we're out of space to hold line structures, allocate
2789b50d902SRodney W. Grimes 		 * more.  Initialize the structure so that we know that this
2799b50d902SRodney W. Grimes 		 * is new space.
2809b50d902SRodney W. Grimes 		 */
2819b50d902SRodney W. Grimes 		if (F->setcnt == F->setalloc) {
2829b50d902SRodney W. Grimes 			cnt = F->setalloc;
2839b50d902SRodney W. Grimes 			F->setalloc += 50;
2849b50d902SRodney W. Grimes 			if ((F->set = realloc(F->set,
2859b50d902SRodney W. Grimes 			    F->setalloc * sizeof(LINE))) == NULL)
2869b50d902SRodney W. Grimes 				err(1, NULL);
2879b50d902SRodney W. Grimes 			memset(F->set + cnt, 0, 50 * sizeof(LINE));
2886f0a860fSPeter Wemm 
2896f0a860fSPeter Wemm 			/* re-set lastlp in case it moved */
2906f0a860fSPeter Wemm 			if (lastlp != NULL)
2916f0a860fSPeter Wemm 				lastlp = &F->set[F->setcnt - 1];
2929b50d902SRodney W. Grimes 		}
2939b50d902SRodney W. Grimes 
2949b50d902SRodney W. Grimes 		/*
2959b50d902SRodney W. Grimes 		 * Get any pushed back line, else get the next line.  Allocate
2969b50d902SRodney W. Grimes 		 * space as necessary.  If taking the line from the stack swap
2979b50d902SRodney W. Grimes 		 * the two structures so that we don't lose space allocated to
2989b50d902SRodney W. Grimes 		 * either structure.  This could be avoided by doing another
2999b50d902SRodney W. Grimes 		 * level of indirection, but it's probably okay as is.
3009b50d902SRodney W. Grimes 		 */
3019b50d902SRodney W. Grimes 		lp = &F->set[F->setcnt];
302bf6570c4SPoul-Henning Kamp 		if (F->setcnt)
303bf6570c4SPoul-Henning Kamp 			lastlp = &F->set[F->setcnt - 1];
3049b50d902SRodney W. Grimes 		if (F->pushbool) {
3059b50d902SRodney W. Grimes 			tmp = F->set[F->setcnt];
3069b50d902SRodney W. Grimes 			F->set[F->setcnt] = F->set[F->pushback];
3079b50d902SRodney W. Grimes 			F->set[F->pushback] = tmp;
3089b50d902SRodney W. Grimes 			F->pushbool = 0;
3099b50d902SRodney W. Grimes 			continue;
3109b50d902SRodney W. Grimes 		}
311*d3643c9eSMartin Tournoij 		if ((len = getline(&buf, &blen, F->fp)) < 0) {
312*d3643c9eSMartin Tournoij 			free(buf);
3139b50d902SRodney W. Grimes 			return;
314*d3643c9eSMartin Tournoij 		}
315*d3643c9eSMartin Tournoij 		if (lp->linealloc <= (size_t)(len + 1)) {
3166f0a860fSPeter Wemm 			lp->linealloc += MAX(100, len + 1 - lp->linealloc);
3179b50d902SRodney W. Grimes 			if ((lp->line =
3189b50d902SRodney W. Grimes 			    realloc(lp->line, lp->linealloc)) == NULL)
3199b50d902SRodney W. Grimes 				err(1, NULL);
3209b50d902SRodney W. Grimes 		}
321*d3643c9eSMartin Tournoij 		memmove(lp->line, buf, len);
3229b50d902SRodney W. Grimes 
3239b50d902SRodney W. Grimes 		/* Replace trailing newline, if it exists. */
324*d3643c9eSMartin Tournoij 		if (buf[len - 1] == '\n')
3259b50d902SRodney W. Grimes 			lp->line[len - 1] = '\0';
3269b50d902SRodney W. Grimes 		bp = lp->line;
3279b50d902SRodney W. Grimes 
3289b50d902SRodney W. Grimes 		/* Split the line into fields, allocate space as necessary. */
3299b50d902SRodney W. Grimes 		lp->fieldcnt = 0;
3308160bf78STim J. Robbins 		while ((fieldp = mbssep(&bp, tabchar)) != NULL) {
3319b50d902SRodney W. Grimes 			if (spans && *fieldp == '\0')
3329b50d902SRodney W. Grimes 				continue;
3339b50d902SRodney W. Grimes 			if (lp->fieldcnt == lp->fieldalloc) {
3349b50d902SRodney W. Grimes 				lp->fieldalloc += 50;
3359b50d902SRodney W. Grimes 				if ((lp->fields = realloc(lp->fields,
3369b50d902SRodney W. Grimes 				    lp->fieldalloc * sizeof(char *))) == NULL)
3379b50d902SRodney W. Grimes 					err(1, NULL);
3389b50d902SRodney W. Grimes 			}
3399b50d902SRodney W. Grimes 			lp->fields[lp->fieldcnt++] = fieldp;
3409b50d902SRodney W. Grimes 		}
3419b50d902SRodney W. Grimes 
3429b50d902SRodney W. Grimes 		/* See if the join field value has changed. */
3439b50d902SRodney W. Grimes 		if (lastlp != NULL && cmp(lp, F->joinf, lastlp, F->joinf)) {
3449b50d902SRodney W. Grimes 			F->pushbool = 1;
3459b50d902SRodney W. Grimes 			F->pushback = F->setcnt;
3469b50d902SRodney W. Grimes 			break;
3479b50d902SRodney W. Grimes 		}
3489b50d902SRodney W. Grimes 	}
349*d3643c9eSMartin Tournoij 	free(buf);
3509b50d902SRodney W. Grimes }
3519b50d902SRodney W. Grimes 
3526c9f9615SEd Schouten static char *
3538160bf78STim J. Robbins mbssep(char **stringp, const wchar_t *delim)
3548160bf78STim J. Robbins {
3558160bf78STim J. Robbins 	char *s, *tok;
3568160bf78STim J. Robbins 	const wchar_t *spanp;
3578160bf78STim J. Robbins 	wchar_t c, sc;
3588160bf78STim J. Robbins 	size_t n;
3598160bf78STim J. Robbins 
3608160bf78STim J. Robbins 	if ((s = *stringp) == NULL)
3618160bf78STim J. Robbins 		return (NULL);
3628160bf78STim J. Robbins 	for (tok = s;;) {
3638160bf78STim J. Robbins 		n = mbrtowc(&c, s, MB_LEN_MAX, NULL);
3648160bf78STim J. Robbins 		if (n == (size_t)-1 || n == (size_t)-2)
3658160bf78STim J. Robbins 			errc(1, EILSEQ, NULL);	/* XXX */
3668160bf78STim J. Robbins 		s += n;
3678160bf78STim J. Robbins 		spanp = delim;
3688160bf78STim J. Robbins 		do {
3698160bf78STim J. Robbins 			if ((sc = *spanp++) == c) {
3708160bf78STim J. Robbins 				if (c == 0)
3718160bf78STim J. Robbins 					s = NULL;
3728160bf78STim J. Robbins 				else
3738160bf78STim J. Robbins 					s[-n] = '\0';
3748160bf78STim J. Robbins 				*stringp = s;
3758160bf78STim J. Robbins 				return (tok);
3768160bf78STim J. Robbins 			}
3778160bf78STim J. Robbins 		} while (sc != 0);
3788160bf78STim J. Robbins 	}
3798160bf78STim J. Robbins }
3808160bf78STim J. Robbins 
3816c9f9615SEd Schouten static int
382f4ac32deSDavid Malone cmp(LINE *lp1, u_long fieldno1, LINE *lp2, u_long fieldno2)
3839b50d902SRodney W. Grimes {
384cefe4f6fSJoerg Wunsch 	if (lp1->fieldcnt <= fieldno1)
38595bf7589STijl Coosemans 		return (lp2->fieldcnt <= fieldno2 ? 0 : -1);
386cefe4f6fSJoerg Wunsch 	if (lp2->fieldcnt <= fieldno2)
38795bf7589STijl Coosemans 		return (1);
3888160bf78STim J. Robbins 	return (mbscoll(lp1->fields[fieldno1], lp2->fields[fieldno2]));
3898160bf78STim J. Robbins }
3908160bf78STim J. Robbins 
3916c9f9615SEd Schouten static int
3928160bf78STim J. Robbins mbscoll(const char *s1, const char *s2)
3938160bf78STim J. Robbins {
3948160bf78STim J. Robbins 	wchar_t *w1, *w2;
3958160bf78STim J. Robbins 	int ret;
3968160bf78STim J. Robbins 
3978160bf78STim J. Robbins 	if (MB_CUR_MAX == 1)
3988160bf78STim J. Robbins 		return (strcoll(s1, s2));
3998160bf78STim J. Robbins 	if ((w1 = towcs(s1)) == NULL || (w2 = towcs(s2)) == NULL)
4008160bf78STim J. Robbins 		err(1, NULL);	/* XXX */
4018160bf78STim J. Robbins 	ret = wcscoll(w1, w2);
4028160bf78STim J. Robbins 	free(w1);
4038160bf78STim J. Robbins 	free(w2);
4048160bf78STim J. Robbins 	return (ret);
4058160bf78STim J. Robbins }
4068160bf78STim J. Robbins 
4076c9f9615SEd Schouten static wchar_t *
4088160bf78STim J. Robbins towcs(const char *s)
4098160bf78STim J. Robbins {
4108160bf78STim J. Robbins 	wchar_t *wcs;
4118160bf78STim J. Robbins 	size_t n;
4128160bf78STim J. Robbins 
4138160bf78STim J. Robbins 	if ((n = mbsrtowcs(NULL, &s, 0, NULL)) == (size_t)-1)
4148160bf78STim J. Robbins 		return (NULL);
4158160bf78STim J. Robbins 	if ((wcs = malloc((n + 1) * sizeof(*wcs))) == NULL)
4168160bf78STim J. Robbins 		return (NULL);
4178160bf78STim J. Robbins 	mbsrtowcs(wcs, &s, n + 1, NULL);
4188160bf78STim J. Robbins 	return (wcs);
4199b50d902SRodney W. Grimes }
4209b50d902SRodney W. Grimes 
4216c9f9615SEd Schouten static void
422f4ac32deSDavid Malone joinlines(INPUT *F1, INPUT *F2)
4239b50d902SRodney W. Grimes {
424f4ac32deSDavid Malone 	u_long cnt1, cnt2;
4259b50d902SRodney W. Grimes 
4269b50d902SRodney W. Grimes 	/*
4279b50d902SRodney W. Grimes 	 * Output the results of a join comparison.  The output may be from
4289b50d902SRodney W. Grimes 	 * either file 1 or file 2 (in which case the first argument is the
4299b50d902SRodney W. Grimes 	 * file from which to output) or from both.
4309b50d902SRodney W. Grimes 	 */
4319b50d902SRodney W. Grimes 	if (F2 == NULL) {
4329b50d902SRodney W. Grimes 		for (cnt1 = 0; cnt1 < F1->setcnt; ++cnt1)
4339b50d902SRodney W. Grimes 			outoneline(F1, &F1->set[cnt1]);
4349b50d902SRodney W. Grimes 		return;
4359b50d902SRodney W. Grimes 	}
4369b50d902SRodney W. Grimes 	for (cnt1 = 0; cnt1 < F1->setcnt; ++cnt1)
4379b50d902SRodney W. Grimes 		for (cnt2 = 0; cnt2 < F2->setcnt; ++cnt2)
4389b50d902SRodney W. Grimes 			outtwoline(F1, &F1->set[cnt1], F2, &F2->set[cnt2]);
4399b50d902SRodney W. Grimes }
4409b50d902SRodney W. Grimes 
4416c9f9615SEd Schouten static void
442f4ac32deSDavid Malone outoneline(INPUT *F, LINE *lp)
4439b50d902SRodney W. Grimes {
444f4ac32deSDavid Malone 	u_long cnt;
4459b50d902SRodney W. Grimes 
4469b50d902SRodney W. Grimes 	/*
4479b50d902SRodney W. Grimes 	 * Output a single line from one of the files, according to the
4489b50d902SRodney W. Grimes 	 * join rules.  This happens when we are writing unmatched single
4499b50d902SRodney W. Grimes 	 * lines.  Output empty fields in the right places.
4509b50d902SRodney W. Grimes 	 */
4519b50d902SRodney W. Grimes 	if (olist)
4529b50d902SRodney W. Grimes 		for (cnt = 0; cnt < olistcnt; ++cnt) {
45360d1fdaaSMark Murray 			if (olist[cnt].filenum == (unsigned)F->number)
4549b50d902SRodney W. Grimes 				outfield(lp, olist[cnt].fieldno, 0);
455dcd587c9SJuli Mallett 			else if (olist[cnt].filenum == 0)
456dcd587c9SJuli Mallett 				outfield(lp, F->joinf, 0);
4579b50d902SRodney W. Grimes 			else
4589b50d902SRodney W. Grimes 				outfield(lp, 0, 1);
4599b50d902SRodney W. Grimes 		}
46034525108SConrad Meyer 	else {
46134525108SConrad Meyer 		/*
46234525108SConrad Meyer 		 * Output the join field, then the remaining fields.
46334525108SConrad Meyer 		 */
46434525108SConrad Meyer 		outfield(lp, F->joinf, 0);
4659b50d902SRodney W. Grimes 		for (cnt = 0; cnt < lp->fieldcnt; ++cnt)
46634525108SConrad Meyer 			if (F->joinf != cnt)
4679b50d902SRodney W. Grimes 				outfield(lp, cnt, 0);
46834525108SConrad Meyer 	}
4699b50d902SRodney W. Grimes 	(void)printf("\n");
4709b50d902SRodney W. Grimes 	if (ferror(stdout))
4719b50d902SRodney W. Grimes 		err(1, "stdout");
4729b50d902SRodney W. Grimes 	needsep = 0;
4739b50d902SRodney W. Grimes }
4749b50d902SRodney W. Grimes 
4756c9f9615SEd Schouten static void
476f4ac32deSDavid Malone outtwoline(INPUT *F1, LINE *lp1, INPUT *F2, LINE *lp2)
4779b50d902SRodney W. Grimes {
478f4ac32deSDavid Malone 	u_long cnt;
4799b50d902SRodney W. Grimes 
4809b50d902SRodney W. Grimes 	/* Output a pair of lines according to the join list (if any). */
4819b50d902SRodney W. Grimes 	if (olist)
4829b50d902SRodney W. Grimes 		for (cnt = 0; cnt < olistcnt; ++cnt)
483dcd587c9SJuli Mallett 			if (olist[cnt].filenum == 0) {
484dcd587c9SJuli Mallett 				if (lp1->fieldcnt >= F1->joinf)
485dcd587c9SJuli Mallett 					outfield(lp1, F1->joinf, 0);
486dcd587c9SJuli Mallett 				else
487dcd587c9SJuli Mallett 					outfield(lp2, F2->joinf, 0);
488dcd587c9SJuli Mallett 			} else if (olist[cnt].filenum == 1)
4899b50d902SRodney W. Grimes 				outfield(lp1, olist[cnt].fieldno, 0);
4909b50d902SRodney W. Grimes 			else /* if (olist[cnt].filenum == 2) */
4919b50d902SRodney W. Grimes 				outfield(lp2, olist[cnt].fieldno, 0);
4929b50d902SRodney W. Grimes 	else {
4939b50d902SRodney W. Grimes 		/*
4949b50d902SRodney W. Grimes 		 * Output the join field, then the remaining fields from F1
4959b50d902SRodney W. Grimes 		 * and F2.
4969b50d902SRodney W. Grimes 		 */
4979b50d902SRodney W. Grimes 		outfield(lp1, F1->joinf, 0);
4989b50d902SRodney W. Grimes 		for (cnt = 0; cnt < lp1->fieldcnt; ++cnt)
4999b50d902SRodney W. Grimes 			if (F1->joinf != cnt)
5009b50d902SRodney W. Grimes 				outfield(lp1, cnt, 0);
5019b50d902SRodney W. Grimes 		for (cnt = 0; cnt < lp2->fieldcnt; ++cnt)
5029b50d902SRodney W. Grimes 			if (F2->joinf != cnt)
5039b50d902SRodney W. Grimes 				outfield(lp2, cnt, 0);
5049b50d902SRodney W. Grimes 	}
5059b50d902SRodney W. Grimes 	(void)printf("\n");
5069b50d902SRodney W. Grimes 	if (ferror(stdout))
5079b50d902SRodney W. Grimes 		err(1, "stdout");
5089b50d902SRodney W. Grimes 	needsep = 0;
5099b50d902SRodney W. Grimes }
5109b50d902SRodney W. Grimes 
5116c9f9615SEd Schouten static void
512f4ac32deSDavid Malone outfield(LINE *lp, u_long fieldno, int out_empty)
5139b50d902SRodney W. Grimes {
5149b50d902SRodney W. Grimes 	if (needsep++)
5153306f972SAndrew Turner 		(void)printf("%lc", (wint_t)*tabchar);
5169ef5c48bSBill Fumerola 	if (!ferror(stdout)) {
517cefe4f6fSJoerg Wunsch 		if (lp->fieldcnt <= fieldno || out_empty) {
5189b50d902SRodney W. Grimes 			if (empty != NULL)
5199b50d902SRodney W. Grimes 				(void)printf("%s", empty);
5209b50d902SRodney W. Grimes 		} else {
5219b50d902SRodney W. Grimes 			if (*lp->fields[fieldno] == '\0')
5229b50d902SRodney W. Grimes 				return;
5239b50d902SRodney W. Grimes 			(void)printf("%s", lp->fields[fieldno]);
5249b50d902SRodney W. Grimes 		}
5259ef5c48bSBill Fumerola 	}
5269b50d902SRodney W. Grimes 	if (ferror(stdout))
5279b50d902SRodney W. Grimes 		err(1, "stdout");
5289b50d902SRodney W. Grimes }
5299b50d902SRodney W. Grimes 
5309b50d902SRodney W. Grimes /*
5319b50d902SRodney W. Grimes  * Convert an output list argument "2.1, 1.3, 2.4" into an array of output
5329b50d902SRodney W. Grimes  * fields.
5339b50d902SRodney W. Grimes  */
5346c9f9615SEd Schouten static void
535f4ac32deSDavid Malone fieldarg(char *option)
5369b50d902SRodney W. Grimes {
537dcd587c9SJuli Mallett 	u_long fieldno, filenum;
5389b50d902SRodney W. Grimes 	char *end, *token;
5399b50d902SRodney W. Grimes 
5406f0a860fSPeter Wemm 	while ((token = strsep(&option, ", \t")) != NULL) {
5419b50d902SRodney W. Grimes 		if (*token == '\0')
5429b50d902SRodney W. Grimes 			continue;
543dcd587c9SJuli Mallett 		if (token[0] == '0')
544dcd587c9SJuli Mallett 			filenum = fieldno = 0;
545dcd587c9SJuli Mallett 		else if ((token[0] == '1' || token[0] == '2') &&
546dcd587c9SJuli Mallett 		    token[1] == '.') {
547dcd587c9SJuli Mallett 			filenum = token[0] - '0';
5489b50d902SRodney W. Grimes 			fieldno = strtol(token + 2, &end, 10);
5499b50d902SRodney W. Grimes 			if (*end)
5509b50d902SRodney W. Grimes 				errx(1, "malformed -o option field");
5519b50d902SRodney W. Grimes 			if (fieldno == 0)
5529b50d902SRodney W. Grimes 				errx(1, "field numbers are 1 based");
553dcd587c9SJuli Mallett 			--fieldno;
554dcd587c9SJuli Mallett 		} else
555dcd587c9SJuli Mallett 			errx(1, "malformed -o option field");
5569b50d902SRodney W. Grimes 		if (olistcnt == olistalloc) {
5579b50d902SRodney W. Grimes 			olistalloc += 50;
5589b50d902SRodney W. Grimes 			if ((olist = realloc(olist,
5599b50d902SRodney W. Grimes 			    olistalloc * sizeof(OLIST))) == NULL)
5609b50d902SRodney W. Grimes 				err(1, NULL);
5619b50d902SRodney W. Grimes 		}
562dcd587c9SJuli Mallett 		olist[olistcnt].filenum = filenum;
563dcd587c9SJuli Mallett 		olist[olistcnt].fieldno = fieldno;
5649b50d902SRodney W. Grimes 		++olistcnt;
5659b50d902SRodney W. Grimes 	}
5669b50d902SRodney W. Grimes }
5679b50d902SRodney W. Grimes 
5686c9f9615SEd Schouten static void
569f4ac32deSDavid Malone obsolete(char **argv)
5709b50d902SRodney W. Grimes {
571f4ac32deSDavid Malone 	size_t len;
5729b50d902SRodney W. Grimes 	char **p, *ap, *t;
5739b50d902SRodney W. Grimes 
5749b50d902SRodney W. Grimes 	while ((ap = *++argv) != NULL) {
5759b50d902SRodney W. Grimes 		/* Return if "--". */
5769b50d902SRodney W. Grimes 		if (ap[0] == '-' && ap[1] == '-')
5779b50d902SRodney W. Grimes 			return;
578faba086bSJonathan Lemon 		/* skip if not an option */
579faba086bSJonathan Lemon 		if (ap[0] != '-')
580faba086bSJonathan Lemon 			continue;
5819b50d902SRodney W. Grimes 		switch (ap[1]) {
5829b50d902SRodney W. Grimes 		case 'a':
5839b50d902SRodney W. Grimes 			/*
5849b50d902SRodney W. Grimes 			 * The original join allowed "-a", which meant the
5859b50d902SRodney W. Grimes 			 * same as -a1 plus -a2.  POSIX 1003.2, Draft 11.2
5869b50d902SRodney W. Grimes 			 * only specifies this as "-a 1" and "a -2", so we
5879b50d902SRodney W. Grimes 			 * have to use another option flag, one that is
5889b50d902SRodney W. Grimes 			 * unlikely to ever be used or accidentally entered
5899b50d902SRodney W. Grimes 			 * on the command line.  (Well, we could reallocate
5909b50d902SRodney W. Grimes 			 * the argv array, but that hardly seems worthwhile.)
5919b50d902SRodney W. Grimes 			 */
592fcb11314STim J. Robbins 			if (ap[2] == '\0' && (argv[1] == NULL ||
593fcb11314STim J. Robbins 			    (strcmp(argv[1], "1") != 0 &&
594fcb11314STim J. Robbins 			    strcmp(argv[1], "2") != 0))) {
5959b50d902SRodney W. Grimes 				ap[1] = '\01';
596fcb11314STim J. Robbins 				warnx("-a option used without an argument; "
597fcb11314STim J. Robbins 				    "reverting to historical behavior");
598fcb11314STim J. Robbins 			}
5999b50d902SRodney W. Grimes 			break;
6009b50d902SRodney W. Grimes 		case 'j':
6019b50d902SRodney W. Grimes 			/*
6029b50d902SRodney W. Grimes 			 * The original join allowed "-j[12] arg" and "-j arg".
6039b50d902SRodney W. Grimes 			 * Convert the former to "-[12] arg".  Don't convert
6049b50d902SRodney W. Grimes 			 * the latter since getopt(3) can handle it.
6059b50d902SRodney W. Grimes 			 */
6069b50d902SRodney W. Grimes 			switch(ap[2]) {
6079b50d902SRodney W. Grimes 			case '1':
6089b50d902SRodney W. Grimes 				if (ap[3] != '\0')
6099b50d902SRodney W. Grimes 					goto jbad;
6109b50d902SRodney W. Grimes 				ap[1] = '1';
6119b50d902SRodney W. Grimes 				ap[2] = '\0';
6129b50d902SRodney W. Grimes 				break;
6139b50d902SRodney W. Grimes 			case '2':
6149b50d902SRodney W. Grimes 				if (ap[3] != '\0')
6159b50d902SRodney W. Grimes 					goto jbad;
6169b50d902SRodney W. Grimes 				ap[1] = '2';
6179b50d902SRodney W. Grimes 				ap[2] = '\0';
6189b50d902SRodney W. Grimes 				break;
6199b50d902SRodney W. Grimes 			case '\0':
6209b50d902SRodney W. Grimes 				break;
6219b50d902SRodney W. Grimes 			default:
6229b50d902SRodney W. Grimes jbad:				errx(1, "illegal option -- %s", ap);
6239b50d902SRodney W. Grimes 				usage();
6249b50d902SRodney W. Grimes 			}
6259b50d902SRodney W. Grimes 			break;
6269b50d902SRodney W. Grimes 		case 'o':
6279b50d902SRodney W. Grimes 			/*
6289b50d902SRodney W. Grimes 			 * The original join allowed "-o arg arg".
6299b50d902SRodney W. Grimes 			 * Convert to "-o arg -o arg".
6309b50d902SRodney W. Grimes 			 */
6319b50d902SRodney W. Grimes 			if (ap[2] != '\0')
6329b50d902SRodney W. Grimes 				break;
6339b50d902SRodney W. Grimes 			for (p = argv + 2; *p; ++p) {
634f4ac32deSDavid Malone 				if (p[0][0] == '0' || ((p[0][0] != '1' &&
635f4ac32deSDavid Malone 				    p[0][0] != '2') || p[0][1] != '.'))
6369b50d902SRodney W. Grimes 					break;
6379b50d902SRodney W. Grimes 				len = strlen(*p);
6389b50d902SRodney W. Grimes 				if (len - 2 != strspn(*p + 2, "0123456789"))
6399b50d902SRodney W. Grimes 					break;
6409b50d902SRodney W. Grimes 				if ((t = malloc(len + 3)) == NULL)
6419b50d902SRodney W. Grimes 					err(1, NULL);
6429b50d902SRodney W. Grimes 				t[0] = '-';
6439b50d902SRodney W. Grimes 				t[1] = 'o';
6449b50d902SRodney W. Grimes 				memmove(t + 2, *p, len + 1);
6459b50d902SRodney W. Grimes 				*p = t;
6469b50d902SRodney W. Grimes 			}
6479b50d902SRodney W. Grimes 			argv = p - 1;
6489b50d902SRodney W. Grimes 			break;
6499b50d902SRodney W. Grimes 		}
6509b50d902SRodney W. Grimes 	}
6519b50d902SRodney W. Grimes }
6529b50d902SRodney W. Grimes 
6536c9f9615SEd Schouten static void
654f4ac32deSDavid Malone usage(void)
6559b50d902SRodney W. Grimes {
6569d455d45SMaxim Konovalov 	(void)fprintf(stderr, "%s %s\n%s\n",
6579d455d45SMaxim Konovalov 	    "usage: join [-a fileno | -v fileno ] [-e string] [-1 field]",
6589d455d45SMaxim Konovalov 	    "[-2 field]",
65921a3d165SPhilippe Charnier 		"            [-o list] [-t char] file1 file2");
6609b50d902SRodney W. Grimes 	exit(1);
6619b50d902SRodney W. Grimes }
662