2017-11-20 19:49:47 +00:00
|
|
|
/*-
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Adam S. Moskowitz of Menlo Consulting.
|
|
|
|
*
|
|
|
|
* 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.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-27 12:33:43 +00:00
|
|
|
* 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
|
1997-07-31 06:59:26 +00:00
|
|
|
static const char copyright[] =
|
1994-05-27 12:33:43 +00:00
|
|
|
"@(#) Copyright (c) 1989, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
1997-07-31 06:59:26 +00:00
|
|
|
#if 0
|
2002-03-20 08:59:20 +00:00
|
|
|
#ifndef lint
|
1994-05-27 12:33:43 +00:00
|
|
|
static char sccsid[] = "@(#)paste.c 8.1 (Berkeley) 6/6/93";
|
|
|
|
#endif /* not lint */
|
2002-03-20 08:59:20 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
2002-04-28 11:51:03 +00:00
|
|
|
|
1997-07-31 06:59:26 +00:00
|
|
|
#include <err.h>
|
2009-12-13 03:14:06 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <limits.h>
|
2004-06-25 01:48:43 +00:00
|
|
|
#include <locale.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <stdio.h>
|
1998-02-20 04:21:46 +00:00
|
|
|
#include <stdlib.h>
|
2009-12-13 03:14:06 +00:00
|
|
|
#include <string.h>
|
1997-07-31 06:59:26 +00:00
|
|
|
#include <unistd.h>
|
2004-06-25 01:48:43 +00:00
|
|
|
#include <wchar.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2011-11-06 18:49:53 +00:00
|
|
|
static wchar_t *delim;
|
|
|
|
static int delimcnt;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2011-11-06 18:49:53 +00:00
|
|
|
static int parallel(char **);
|
|
|
|
static int sequential(char **);
|
|
|
|
static int tr(wchar_t *);
|
2002-03-22 01:33:25 +00:00
|
|
|
static void usage(void);
|
1997-07-31 06:59:26 +00:00
|
|
|
|
2011-11-06 18:49:53 +00:00
|
|
|
static wchar_t tab[] = L"\t";
|
2002-04-28 11:51:03 +00:00
|
|
|
|
1997-07-31 06:59:26 +00:00
|
|
|
int
|
2002-04-28 11:51:03 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-05-24 06:17:29 +00:00
|
|
|
int ch, rval, seq;
|
2004-06-25 01:48:43 +00:00
|
|
|
wchar_t *warg;
|
|
|
|
const char *arg;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
setlocale(LC_CTYPE, "");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
seq = 0;
|
1997-03-29 04:34:07 +00:00
|
|
|
while ((ch = getopt(argc, argv, "d:s")) != -1)
|
1994-05-27 12:33:43 +00:00
|
|
|
switch(ch) {
|
|
|
|
case 'd':
|
2004-06-25 01:48:43 +00:00
|
|
|
arg = optarg;
|
|
|
|
len = mbsrtowcs(NULL, &arg, 0, NULL);
|
|
|
|
if (len == (size_t)-1)
|
|
|
|
err(1, "delimiters");
|
|
|
|
warg = malloc((len + 1) * sizeof(*warg));
|
|
|
|
if (warg == NULL)
|
|
|
|
err(1, NULL);
|
|
|
|
arg = optarg;
|
|
|
|
len = mbsrtowcs(warg, &arg, len + 1, NULL);
|
|
|
|
if (len == (size_t)-1)
|
|
|
|
err(1, "delimiters");
|
|
|
|
delimcnt = tr(delim = warg);
|
1994-05-27 12:33:43 +00:00
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
seq = 1;
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
2002-03-20 08:59:20 +00:00
|
|
|
if (*argv == NULL)
|
|
|
|
usage();
|
1994-05-27 12:33:43 +00:00
|
|
|
if (!delim) {
|
|
|
|
delimcnt = 1;
|
2002-04-28 11:51:03 +00:00
|
|
|
delim = tab;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (seq)
|
2002-05-24 06:17:29 +00:00
|
|
|
rval = sequential(argv);
|
1994-05-27 12:33:43 +00:00
|
|
|
else
|
2002-05-24 06:17:29 +00:00
|
|
|
rval = parallel(argv);
|
|
|
|
exit(rval);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct _list {
|
|
|
|
struct _list *next;
|
|
|
|
FILE *fp;
|
|
|
|
int cnt;
|
|
|
|
char *name;
|
|
|
|
} LIST;
|
|
|
|
|
2011-11-06 18:49:53 +00:00
|
|
|
static int
|
2002-04-28 11:51:03 +00:00
|
|
|
parallel(char **argv)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-04-28 11:51:03 +00:00
|
|
|
LIST *lp;
|
2002-05-24 08:56:49 +00:00
|
|
|
int cnt;
|
2004-06-25 01:48:43 +00:00
|
|
|
wint_t ich;
|
|
|
|
wchar_t ch;
|
|
|
|
char *p;
|
1994-05-27 12:33:43 +00:00
|
|
|
LIST *head, *tmp;
|
|
|
|
int opencnt, output;
|
|
|
|
|
2006-09-12 05:08:36 +00:00
|
|
|
for (cnt = 0, head = tmp = NULL; (p = *argv); ++argv, ++cnt) {
|
2002-05-17 05:11:07 +00:00
|
|
|
if ((lp = malloc(sizeof(LIST))) == NULL)
|
|
|
|
err(1, NULL);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (p[0] == '-' && !p[1])
|
|
|
|
lp->fp = stdin;
|
1997-07-31 06:59:26 +00:00
|
|
|
else if (!(lp->fp = fopen(p, "r")))
|
|
|
|
err(1, "%s", p);
|
1994-05-27 12:33:43 +00:00
|
|
|
lp->next = NULL;
|
|
|
|
lp->cnt = cnt;
|
|
|
|
lp->name = p;
|
|
|
|
if (!head)
|
|
|
|
head = tmp = lp;
|
|
|
|
else {
|
|
|
|
tmp->next = lp;
|
|
|
|
tmp = lp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (opencnt = cnt; opencnt;) {
|
|
|
|
for (output = 0, lp = head; lp; lp = lp->next) {
|
|
|
|
if (!lp->fp) {
|
|
|
|
if (output && lp->cnt &&
|
|
|
|
(ch = delim[(lp->cnt - 1) % delimcnt]))
|
2004-06-25 01:48:43 +00:00
|
|
|
putwchar(ch);
|
1994-05-27 12:33:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
2004-06-25 01:48:43 +00:00
|
|
|
if ((ich = getwc(lp->fp)) == WEOF) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (!--opencnt)
|
|
|
|
break;
|
|
|
|
lp->fp = NULL;
|
|
|
|
if (output && lp->cnt &&
|
|
|
|
(ch = delim[(lp->cnt - 1) % delimcnt]))
|
2004-06-25 01:48:43 +00:00
|
|
|
putwchar(ch);
|
1994-05-27 12:33:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* make sure that we don't print any delimiters
|
|
|
|
* unless there's a non-empty file.
|
|
|
|
*/
|
|
|
|
if (!output) {
|
|
|
|
output = 1;
|
|
|
|
for (cnt = 0; cnt < lp->cnt; ++cnt)
|
1997-07-31 06:59:26 +00:00
|
|
|
if ((ch = delim[cnt % delimcnt]))
|
2004-06-25 01:48:43 +00:00
|
|
|
putwchar(ch);
|
1997-07-31 06:59:26 +00:00
|
|
|
} else if ((ch = delim[(lp->cnt - 1) % delimcnt]))
|
2004-06-25 01:48:43 +00:00
|
|
|
putwchar(ch);
|
|
|
|
if (ich == '\n')
|
|
|
|
continue;
|
|
|
|
do {
|
|
|
|
putwchar(ich);
|
|
|
|
} while ((ich = getwc(lp->fp)) != WEOF && ich != '\n');
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
if (output)
|
2004-06-25 01:48:43 +00:00
|
|
|
putwchar('\n');
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2002-05-24 06:17:29 +00:00
|
|
|
|
|
|
|
return (0);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:49:53 +00:00
|
|
|
static int
|
2002-04-28 11:51:03 +00:00
|
|
|
sequential(char **argv)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-04-28 11:51:03 +00:00
|
|
|
FILE *fp;
|
2002-05-24 08:56:49 +00:00
|
|
|
int cnt, failed, needdelim;
|
2004-06-25 01:48:43 +00:00
|
|
|
wint_t ch;
|
|
|
|
char *p;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-05-24 06:17:29 +00:00
|
|
|
failed = 0;
|
1997-07-31 06:59:26 +00:00
|
|
|
for (; (p = *argv); ++argv) {
|
1994-05-27 12:33:43 +00:00
|
|
|
if (p[0] == '-' && !p[1])
|
|
|
|
fp = stdin;
|
|
|
|
else if (!(fp = fopen(p, "r"))) {
|
1997-07-31 06:59:26 +00:00
|
|
|
warn("%s", p);
|
2002-05-24 06:17:29 +00:00
|
|
|
failed = 1;
|
1994-05-27 12:33:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
2002-05-24 07:05:10 +00:00
|
|
|
cnt = needdelim = 0;
|
2004-06-25 01:48:43 +00:00
|
|
|
while ((ch = getwc(fp)) != WEOF) {
|
2002-05-24 07:05:10 +00:00
|
|
|
if (needdelim) {
|
|
|
|
needdelim = 0;
|
|
|
|
if (delim[cnt] != '\0')
|
2004-06-25 01:48:43 +00:00
|
|
|
putwchar(delim[cnt]);
|
2002-05-24 07:05:10 +00:00
|
|
|
if (++cnt == delimcnt)
|
1994-05-27 12:33:43 +00:00
|
|
|
cnt = 0;
|
|
|
|
}
|
2004-06-25 01:48:43 +00:00
|
|
|
if (ch != '\n')
|
|
|
|
putwchar(ch);
|
|
|
|
else
|
|
|
|
needdelim = 1;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2002-05-24 07:05:10 +00:00
|
|
|
if (needdelim)
|
2004-06-25 01:48:43 +00:00
|
|
|
putwchar('\n');
|
1994-05-27 12:33:43 +00:00
|
|
|
if (fp != stdin)
|
|
|
|
(void)fclose(fp);
|
|
|
|
}
|
2002-05-24 06:17:29 +00:00
|
|
|
|
|
|
|
return (failed != 0);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:49:53 +00:00
|
|
|
static int
|
2004-06-25 01:48:43 +00:00
|
|
|
tr(wchar_t *arg)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2002-04-28 11:51:03 +00:00
|
|
|
int cnt;
|
2004-06-25 01:48:43 +00:00
|
|
|
wchar_t ch, *p;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
for (p = arg, cnt = 0; (ch = *p++); ++arg, ++cnt)
|
|
|
|
if (ch == '\\')
|
|
|
|
switch(ch = *p++) {
|
|
|
|
case 'n':
|
|
|
|
*arg = '\n';
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
*arg = '\t';
|
|
|
|
break;
|
|
|
|
case '0':
|
|
|
|
*arg = '\0';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
*arg = ch;
|
|
|
|
break;
|
|
|
|
} else
|
|
|
|
*arg = ch;
|
|
|
|
|
1997-07-31 06:59:26 +00:00
|
|
|
if (!cnt)
|
|
|
|
errx(1, "no delimiters specified");
|
1994-05-27 12:33:43 +00:00
|
|
|
return(cnt);
|
|
|
|
}
|
|
|
|
|
1997-07-31 06:59:26 +00:00
|
|
|
static void
|
2002-04-28 11:51:03 +00:00
|
|
|
usage(void)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
1997-07-31 06:59:26 +00:00
|
|
|
(void)fprintf(stderr, "usage: paste [-s] [-d delimiters] file ...\n");
|
1994-05-27 12:33:43 +00:00
|
|
|
exit(1);
|
|
|
|
}
|