xref: /freebsd/usr.bin/fold/fold.c (revision 0b8224d1cc9dc6c9778ba04a75b2c8d47e5d7481)
19b50d902SRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
49b50d902SRodney W. Grimes  * Copyright (c) 1990, 1993
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  * Kevin Ruddy.
99b50d902SRodney W. Grimes  *
109b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
119b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
129b50d902SRodney W. Grimes  * are met:
139b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
149b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
159b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
169b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
179b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
18fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
199b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
209b50d902SRodney W. Grimes  *    without specific prior written permission.
219b50d902SRodney W. Grimes  *
229b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
239b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
249b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
259b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
269b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
279b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
289b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
299b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
309b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
319b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
329b50d902SRodney W. Grimes  * SUCH DAMAGE.
339b50d902SRodney W. Grimes  */
349b50d902SRodney W. Grimes 
35f589c9aaSPhilippe Charnier #include <err.h>
3613e06695STim J. Robbins #include <limits.h>
37a243305fSAndrey A. Chernov #include <locale.h>
389b50d902SRodney W. Grimes #include <stdio.h>
39f589c9aaSPhilippe Charnier #include <stdlib.h>
40821df508SXin LI #include <string.h>
41f589c9aaSPhilippe Charnier #include <unistd.h>
4219657ec3STim J. Robbins #include <wchar.h>
4319657ec3STim J. Robbins #include <wctype.h>
449b50d902SRodney W. Grimes 
459b50d902SRodney W. Grimes #define	DEFLINEWIDTH	80
469b50d902SRodney W. Grimes 
47f1bb2cd2SWarner Losh void fold(int);
4819657ec3STim J. Robbins static int newpos(int, wint_t);
49*a1b6427aSAlfonso Gregory static void usage(void) __dead2;
50f589c9aaSPhilippe Charnier 
51385c1d29SEd Schouten static int bflag;		/* Count bytes, not columns */
52385c1d29SEd Schouten static int sflag;		/* Split on word boundaries */
5313e06695STim J. Robbins 
54f589c9aaSPhilippe Charnier int
main(int argc,char ** argv)55f4ac32deSDavid Malone main(int argc, char **argv)
569b50d902SRodney W. Grimes {
5776423301SJean-Sébastien Pédron 	int ch, previous_ch;
58fb2582c0STim J. Robbins 	int rval, width;
599b50d902SRodney W. Grimes 
60a243305fSAndrey A. Chernov 	(void) setlocale(LC_CTYPE, "");
61a243305fSAndrey A. Chernov 
629b50d902SRodney W. Grimes 	width = -1;
6376423301SJean-Sébastien Pédron 	previous_ch = 0;
6476423301SJean-Sébastien Pédron 	while ((ch = getopt(argc, argv, "0123456789bsw:")) != -1) {
659b50d902SRodney W. Grimes 		switch (ch) {
6613e06695STim J. Robbins 		case 'b':
6713e06695STim J. Robbins 			bflag = 1;
6813e06695STim J. Robbins 			break;
6913e06695STim J. Robbins 		case 's':
7013e06695STim J. Robbins 			sflag = 1;
7113e06695STim J. Robbins 			break;
729b50d902SRodney W. Grimes 		case 'w':
739b50d902SRodney W. Grimes 			if ((width = atoi(optarg)) <= 0) {
74f589c9aaSPhilippe Charnier 				errx(1, "illegal width value");
759b50d902SRodney W. Grimes 			}
769b50d902SRodney W. Grimes 			break;
779b50d902SRodney W. Grimes 		case '0': case '1': case '2': case '3': case '4':
789b50d902SRodney W. Grimes 		case '5': case '6': case '7': case '8': case '9':
7976423301SJean-Sébastien Pédron 			/* Accept a width as eg. -30. Note that a width
8076423301SJean-Sébastien Pédron 			 * specified using the -w option is always used prior
8176423301SJean-Sébastien Pédron 			 * to this undocumented option. */
8276423301SJean-Sébastien Pédron 			switch (previous_ch) {
8376423301SJean-Sébastien Pédron 			case '0': case '1': case '2': case '3': case '4':
8476423301SJean-Sébastien Pédron 			case '5': case '6': case '7': case '8': case '9':
8576423301SJean-Sébastien Pédron 				/* The width is a number with multiple digits:
8676423301SJean-Sébastien Pédron 				 * add the last one. */
8776423301SJean-Sébastien Pédron 				width = width * 10 + (ch - '0');
8876423301SJean-Sébastien Pédron 				break;
8976423301SJean-Sébastien Pédron 			default:
9076423301SJean-Sébastien Pédron 				/* Set the width, unless it was previously
9176423301SJean-Sébastien Pédron 				 * set. For instance, the following options
9276423301SJean-Sébastien Pédron 				 * would all give a width of 5 and not 10:
9376423301SJean-Sébastien Pédron 				 *   -10 -w5
9476423301SJean-Sébastien Pédron 				 *   -5b10
9576423301SJean-Sébastien Pédron 				 *   -5 -10b */
9676423301SJean-Sébastien Pédron 				if (width == -1)
9776423301SJean-Sébastien Pédron 					width = ch - '0';
9876423301SJean-Sébastien Pédron 				break;
999b50d902SRodney W. Grimes 			}
1009b50d902SRodney W. Grimes 			break;
1019b50d902SRodney W. Grimes 		default:
102f589c9aaSPhilippe Charnier 			usage();
1039b50d902SRodney W. Grimes 		}
10476423301SJean-Sébastien Pédron 		previous_ch = ch;
10576423301SJean-Sébastien Pédron 	}
1069b50d902SRodney W. Grimes 	argv += optind;
1079b50d902SRodney W. Grimes 	argc -= optind;
1089b50d902SRodney W. Grimes 
1099b50d902SRodney W. Grimes 	if (width == -1)
1109b50d902SRodney W. Grimes 		width = DEFLINEWIDTH;
111fb2582c0STim J. Robbins 	rval = 0;
1129b50d902SRodney W. Grimes 	if (!*argv)
1139b50d902SRodney W. Grimes 		fold(width);
1149b50d902SRodney W. Grimes 	else for (; *argv; ++argv)
1159b50d902SRodney W. Grimes 		if (!freopen(*argv, "r", stdin)) {
116fb2582c0STim J. Robbins 			warn("%s", *argv);
117fb2582c0STim J. Robbins 			rval = 1;
1189b50d902SRodney W. Grimes 		} else
1199b50d902SRodney W. Grimes 			fold(width);
120fb2582c0STim J. Robbins 	exit(rval);
1219b50d902SRodney W. Grimes }
1229b50d902SRodney W. Grimes 
123f589c9aaSPhilippe Charnier static void
usage(void)124f4ac32deSDavid Malone usage(void)
125f589c9aaSPhilippe Charnier {
12613e06695STim J. Robbins 	(void)fprintf(stderr, "usage: fold [-bs] [-w width] [file ...]\n");
127f589c9aaSPhilippe Charnier 	exit(1);
128f589c9aaSPhilippe Charnier }
129f589c9aaSPhilippe Charnier 
13013e06695STim J. Robbins /*
13113e06695STim J. Robbins  * Fold the contents of standard input to fit within WIDTH columns (or bytes)
13213e06695STim J. Robbins  * and write to standard output.
13313e06695STim J. Robbins  *
13413e06695STim J. Robbins  * If sflag is set, split the line at the last space character on the line.
13513e06695STim J. Robbins  * This flag necessitates storing the line in a buffer until the current
13613e06695STim J. Robbins  * column > width, or a newline or EOF is read.
13713e06695STim J. Robbins  *
13813e06695STim J. Robbins  * The buffer can grow larger than WIDTH due to backspaces and carriage
13913e06695STim J. Robbins  * returns embedded in the input stream.
14013e06695STim J. Robbins  */
141f589c9aaSPhilippe Charnier void
fold(int width)142f4ac32deSDavid Malone fold(int width)
1439b50d902SRodney W. Grimes {
14419657ec3STim J. Robbins 	static wchar_t *buf;
14513e06695STim J. Robbins 	static int buf_max;
14619657ec3STim J. Robbins 	int col, i, indx, space;
14719657ec3STim J. Robbins 	wint_t ch;
1489b50d902SRodney W. Grimes 
14913e06695STim J. Robbins 	col = indx = 0;
15019657ec3STim J. Robbins 	while ((ch = getwchar()) != WEOF) {
15113e06695STim J. Robbins 		if (ch == '\n') {
15219657ec3STim J. Robbins 			wprintf(L"%.*ls\n", indx, buf);
15313e06695STim J. Robbins 			col = indx = 0;
15413e06695STim J. Robbins 			continue;
1559b50d902SRodney W. Grimes 		}
15613e06695STim J. Robbins 		if ((col = newpos(col, ch)) > width) {
15713e06695STim J. Robbins 			if (sflag) {
15813e06695STim J. Robbins 				i = indx;
15919657ec3STim J. Robbins 				while (--i >= 0 && !iswblank(buf[i]))
16013e06695STim J. Robbins 					;
16113e06695STim J. Robbins 				space = i;
16213e06695STim J. Robbins 			}
16313e06695STim J. Robbins 			if (sflag && space != -1) {
16413e06695STim J. Robbins 				space++;
16519657ec3STim J. Robbins 				wprintf(L"%.*ls\n", space, buf);
16619657ec3STim J. Robbins 				wmemmove(buf, buf + space, indx - space);
16713e06695STim J. Robbins 				indx -= space;
16813e06695STim J. Robbins 				col = 0;
16913e06695STim J. Robbins 				for (i = 0; i < indx; i++)
17019657ec3STim J. Robbins 					col = newpos(col, buf[i]);
17113e06695STim J. Robbins 			} else {
17219657ec3STim J. Robbins 				wprintf(L"%.*ls\n", indx, buf);
17313e06695STim J. Robbins 				col = indx = 0;
17413e06695STim J. Robbins 			}
17513e06695STim J. Robbins 			col = newpos(col, ch);
17613e06695STim J. Robbins 		}
17713e06695STim J. Robbins 		if (indx + 1 > buf_max) {
17813e06695STim J. Robbins 			buf_max += LINE_MAX;
17919657ec3STim J. Robbins 			buf = realloc(buf, sizeof(*buf) * buf_max);
18019657ec3STim J. Robbins 			if (buf == NULL)
18113e06695STim J. Robbins 				err(1, "realloc()");
18213e06695STim J. Robbins 		}
18313e06695STim J. Robbins 		buf[indx++] = ch;
18413e06695STim J. Robbins 	}
1859b50d902SRodney W. Grimes 
18613e06695STim J. Robbins 	if (indx != 0)
18719657ec3STim J. Robbins 		wprintf(L"%.*ls", indx, buf);
18813e06695STim J. Robbins }
18913e06695STim J. Robbins 
19013e06695STim J. Robbins /*
19113e06695STim J. Robbins  * Update the current column position for a character.
19213e06695STim J. Robbins  */
19313e06695STim J. Robbins static int
newpos(int col,wint_t ch)19419657ec3STim J. Robbins newpos(int col, wint_t ch)
19513e06695STim J. Robbins {
19619657ec3STim J. Robbins 	char buf[MB_LEN_MAX];
19719657ec3STim J. Robbins 	size_t len;
19819657ec3STim J. Robbins 	int w;
19913e06695STim J. Robbins 
20019657ec3STim J. Robbins 	if (bflag) {
20119657ec3STim J. Robbins 		len = wcrtomb(buf, ch, NULL);
20219657ec3STim J. Robbins 		col += len;
20319657ec3STim J. Robbins 	} else
2049b50d902SRodney W. Grimes 		switch (ch) {
2059b50d902SRodney W. Grimes 		case '\b':
2069b50d902SRodney W. Grimes 			if (col > 0)
2079b50d902SRodney W. Grimes 				--col;
2089b50d902SRodney W. Grimes 			break;
2099b50d902SRodney W. Grimes 		case '\r':
2109b50d902SRodney W. Grimes 			col = 0;
2119b50d902SRodney W. Grimes 			break;
2129b50d902SRodney W. Grimes 		case '\t':
21313e06695STim J. Robbins 			col = (col + 8) & ~7;
2149b50d902SRodney W. Grimes 			break;
2159b50d902SRodney W. Grimes 		default:
21619657ec3STim J. Robbins 			if ((w = wcwidth(ch)) > 0)
21719657ec3STim J. Robbins 				col += w;
2189b50d902SRodney W. Grimes 			break;
2199b50d902SRodney W. Grimes 		}
22013e06695STim J. Robbins 
22113e06695STim J. Robbins 	return (col);
2229b50d902SRodney W. Grimes }
223