about summary refs log tree commit diff
path: root/src/usr.bin/lam/lam.c
blob: 9c009f226d05363b1495729b50d917141d94a227 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*	$OpenBSD: lam.c,v 1.24 2021/12/03 15:15:22 deraadt Exp $	*/
/*	$NetBSD: lam.c,v 1.2 1994/11/14 20:27:42 jtc Exp $	*/

/*-
 * Copyright (c) 1993
 *	The Regents of the University of California.  All rights reserved.
 *
 * 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.
 * 3. 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.
 */

/*
 *	lam - laminate files
 *	Author:  John Kunze, UCB
 */

#include <sys/types.h>

#include <ctype.h>
#include <err.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <string.h>
#include <unistd.h>

#define	BIGBUFSIZ	5 * BUFSIZ

struct	openfile {		/* open file structure */
	FILE	*fp;		/* file pointer */
	int	minwidth;	/* pad this column to this width */
	int	maxwidth;	/* truncate this column */
	short	eof;		/* eof flag */
	short	pad;		/* pad flag for missing columns */
	char	eol;		/* end of line character */
	char	align;		/* '0' for zero fill, '-' for left align */
	char	*sepstring;	/* string to print before each line */
}	*input;
int	inputsize;		/* number of openfile entries */

int	output;			/* line output produced */
int	nofinalnl;		/* normally append \n to each output line */
char	line[BIGBUFSIZ];
char	*linep;

int	 mbswidth_truncate(char *, int);  /* utf8.c */

void	 usage(void);
char	*gatherline(struct openfile *);
void	 getargs(int, char *[]);
char	*pad(struct openfile *);

int
main(int argc, char *argv[])
{
	int i;

	setlocale(LC_CTYPE, "");

	if (pledge("stdio rpath", NULL) == -1)
		err(1, "pledge");

	getargs(argc, argv);
	if (inputsize == 0)
		usage();

	if (pledge("stdio", NULL) == -1)
		err(1, "pledge");

	/* Concatenate lines from each file, then print. */
	for (;;) {
		linep = line;
		/*
		 * For each file that has a line to print, output is
		 * incremented.  Thus if numfiles is 0, we are done.
		 */
		output = 0;
		for (i = 0; i < inputsize && input[i].fp != NULL; i++)
			linep = gatherline(&input[i]);
		if (output == 0)
			exit(0);
		fputs(line, stdout);
		/* Print terminating -s argument. */
		fputs(input[i].sepstring, stdout);
		if (!nofinalnl)
			putchar('\n');
	}
}

void
getargs(int argc, char *argv[])
{
	struct openfile *ip;
	const char *errstr;
	char *p, *q;
	void *tmp;
	int ch, P, S, F, T;

	input = calloc(inputsize+1, sizeof *input);
	if (input == NULL)
		errx(1, "too many files");
	ip = &input[inputsize];

	P = S = F = T = 0;		/* capitalized options */
	while (optind < argc) {
		switch (ch = getopt(argc, argv, "+F:f:P:p:S:s:T:t:")) {
		case 'P': case 'p':
			P = (ch == 'P');
			ip->pad = 1;
			/* FALLTHROUGH */
		case 'F': case 'f':
			F = (ch == 'F');
			/* Validate format string argument. */
			p = optarg;
			if (*p == '0' || *p == '-')
				ip->align = *p++;
			else
				ip->align = ' ';
			if ((q = strchr(p, '.')) != NULL)
				*q++ = '\0';
			if (*p != '\0') {
				ip->minwidth = strtonum(p, 1, INT_MAX,
				    &errstr);
				if (errstr != NULL)
					errx(1, "minimum width is %s: %s",
					    errstr, p);
			}
			if (q != NULL) {
				ip->maxwidth = strtonum(q, 1, INT_MAX,
				    &errstr);
				if (errstr != NULL)
					errx(1, "maximum width is %s: %s",
					    errstr, q);
			} else
				ip->maxwidth = INT_MAX;
			break;
		case 'S': case 's':
			S = (ch == 'S');
			ip->sepstring = optarg;
			break;
		case 'T': case 't':
			T = (ch == 'T');
			if (strlen(optarg) != 1)
				usage();
			ip->eol = optarg[0];
			nofinalnl = 1;
			break;
		case -1:
			if (optind >= argc)
				break;		/* to support "--" */
			/* This is a file, not a flag. */
			if (strcmp(argv[optind], "-") == 0)
				ip->fp = stdin;
			else if ((ip->fp = fopen(argv[optind], "r")) == NULL)
				err(1, "%s", argv[optind]);
			ip->pad = P;
			if (ip->sepstring == NULL)
				ip->sepstring = S ? (ip-1)->sepstring : "";
			if (ip->eol == '\0')
				ip->eol = T ? (ip-1)->eol : '\n';
			if (ip->align == '\0') {
				if (F || P) {
					ip->align = (ip-1)->align;
					ip->minwidth = (ip-1)->minwidth;
					ip->maxwidth = (ip-1)->maxwidth;
				} else
					ip->maxwidth = INT_MAX;
			}

			++inputsize;

			/* Prepare for next file argument */
			tmp = recallocarray(input, inputsize,
			    inputsize+1, sizeof *input);
			if (tmp == NULL)
				errx(1, "too many files");
			input = tmp;
			ip = &input[inputsize];
			optind++;
			break;
		default:
			usage();
			/* NOTREACHED */
		}
	}
	ip->fp = NULL;
	if (ip->sepstring == NULL)
		ip->sepstring = "";
}

char *
pad(struct openfile *ip)
{
	size_t n;
	char *lp = linep;
	int i = 0;

	n = strlcpy(lp, ip->sepstring,  line + sizeof(line) - lp);
	lp += (n < line + sizeof(line) - lp) ? n : strlen(lp);
	if (ip->pad)
		while (i++ < ip->minwidth && lp + 1 < line + sizeof(line))
			*lp++ = ' ';
	*lp = '\0';
	return (lp);
}

/*
 * Grab line from file, appending to linep.  Increments printed if file
 * is still open.
 */
char *
gatherline(struct openfile *ip)
{
	size_t n;
	char s[BUFSIZ];
	char *p;
	char *lp = linep;
	char *end = s + BUFSIZ - 1;
	int c, width;

	if (ip->eof)
		return (pad(ip));
	for (p = s; (c = fgetc(ip->fp)) != EOF && p < end; p++)
		if ((*p = c) == ip->eol)
			break;
	*p = '\0';
	if (c == EOF) {
		ip->eof = 1;
		if (ip->fp == stdin)
			fclose(stdin);
		return (pad(ip));
	}
	/* Something will be printed. */
	output++;
	n = strlcpy(lp, ip->sepstring, line + sizeof(line) - lp);
	lp += (n < line + sizeof(line) - lp) ? n : strlen(lp);
	width = mbswidth_truncate(s, ip->maxwidth);
	if (ip->align != '-')
		while (width++ < ip->minwidth && lp + 1 < line + sizeof(line))
			*lp++ = ip->align;
	n = strlcpy(lp, s, line + sizeof(line) - lp);
	lp += (n < line + sizeof(line) - lp) ? n : strlen(lp);
	if (ip->align == '-')
		while (width++ < ip->minwidth && lp + 1 < line + sizeof(line))
			*lp++ = ' ';
	*lp = '\0';
	return (lp);
}

void
usage(void)
{
	extern char *__progname;

	fprintf(stderr,
	    "usage: %s [-F|f min.max] [-P|p min.max] [-S|s sepstring] [-T|t c] file ...\n",
	    __progname);
	exit(1);
}