blob: 4ce52cf0bdedfae44e8615c68073f2f294a717a8 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrathf01b8052003-04-27 06:02:14 +00002/* fold -- wrap each input line to fit in specified width.
3
4 Written by David MacKenzie, djm@gnu.ai.mit.edu.
5 Copyright (C) 91, 1995-2002 Free Software Foundation, Inc.
6
7 Modified for busybox based on coreutils v 5.0
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00008 Copyright (C) 2003 Glenn McGrath <bug1@iinet.net.au>
Glenn L McGrathf01b8052003-04-27 06:02:14 +00009
Rob Landley746cfc82005-12-02 17:55:45 +000010 Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Glenn L McGrathf01b8052003-04-27 06:02:14 +000011*/
12
Glenn L McGrathf01b8052003-04-27 06:02:14 +000013#include "busybox.h"
14
Rob Landley746cfc82005-12-02 17:55:45 +000015static unsigned long flags;
16#define FLAG_COUNT_BYTES 1
17#define FLAG_BREAK_SPACES 2
18#define FLAG_WIDTH 4
Glenn L McGrathf01b8052003-04-27 06:02:14 +000019
20/* Assuming the current column is COLUMN, return the column that
21 printing C will move the cursor to.
22 The first column is 0. */
23
24static int adjust_column(int column, char c)
25{
Rob Landley746cfc82005-12-02 17:55:45 +000026 if (!(flags & FLAG_COUNT_BYTES)) {
Glenn L McGrathf01b8052003-04-27 06:02:14 +000027 if (c == '\b') {
28 if (column > 0)
29 column--;
30 } else if (c == '\r')
31 column = 0;
32 else if (c == '\t')
33 column = column + 8 - column % 8;
34 else /* if (isprint (c)) */
35 column++;
36 } else
37 column++;
38 return column;
39}
40
Denis Vlasenko06af2162007-02-03 17:28:39 +000041int fold_main(int argc, char **argv);
Rob Landleydfba7412006-03-06 20:47:33 +000042int fold_main(int argc, char **argv)
Glenn L McGrathf01b8052003-04-27 06:02:14 +000043{
Paul Fox377bdaf2005-12-08 18:48:20 +000044 char *w_opt;
Glenn L McGrathf01b8052003-04-27 06:02:14 +000045 int width = 80;
46 int i;
Glenn L McGrathf01b8052003-04-27 06:02:14 +000047 int errs = 0;
48
Denis Vlasenko08492072006-12-22 13:56:36 +000049 if (ENABLE_INCLUDE_SUSv2) {
Rob Landleyf8fd4db2006-01-30 01:30:39 +000050 /* Turn any numeric options into -w options. */
51 for (i = 1; i < argc; i++) {
52 char const *a = argv[i];
Glenn L McGrathf01b8052003-04-27 06:02:14 +000053
"Vladimir N. Oleynik"b1fd52e2006-01-30 10:49:14 +000054 if (*a++ == '-') {
55 if (*a == '-' && !a[1])
Rob Landleyf8fd4db2006-01-30 01:30:39 +000056 break;
"Vladimir N. Oleynik"b1fd52e2006-01-30 10:49:14 +000057 if (isdigit(*a)) {
Rob Landleyd921b2e2006-08-03 15:41:12 +000058 argv[i] = xasprintf("-w%s", a);
Rob Landleyf8fd4db2006-01-30 01:30:39 +000059 }
Glenn L McGrathf01b8052003-04-27 06:02:14 +000060 }
61 }
62 }
63
Denis Vlasenko67b23e62006-10-03 21:00:06 +000064 flags = getopt32(argc, argv, "bsw:", &w_opt);
Bernhard Reutner-Fischerd77b7812005-12-10 20:13:54 +000065 if (flags & FLAG_WIDTH)
Denis Vlasenko13858992006-10-08 12:49:22 +000066 width = xatoul_range(w_opt, 1, 10000);
Glenn L McGrathf01b8052003-04-27 06:02:14 +000067
68 argv += optind;
69 if (!*argv) {
Denis Vlasenkoa41fdf32007-01-29 22:51:00 +000070 *--argv = (char*)"-";
Glenn L McGrathf01b8052003-04-27 06:02:14 +000071 }
72
73 do {
Denis Vlasenkoddec5af2006-10-26 23:25:17 +000074 FILE *istream = fopen_or_warn_stdin(*argv);
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +000075 int c;
76 int column = 0; /* Screen column where next char will go. */
77 int offset_out = 0; /* Index in `line_out' for next char. */
78 static char *line_out = NULL;
79 static int allocated_out = 0;
Glenn L McGrathf01b8052003-04-27 06:02:14 +000080
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +000081 if (istream == NULL) {
82 errs |= EXIT_FAILURE;
83 continue;
84 }
Glenn L McGrathf01b8052003-04-27 06:02:14 +000085
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +000086 while ((c = getc(istream)) != EOF) {
87 if (offset_out + 1 >= allocated_out) {
88 allocated_out += 1024;
89 line_out = xrealloc(line_out, allocated_out);
90 }
91
92 if (c == '\n') {
93 line_out[offset_out++] = c;
94 fwrite(line_out, sizeof(char), (size_t) offset_out, stdout);
95 column = offset_out = 0;
96 continue;
97 }
Glenn L McGrathf01b8052003-04-27 06:02:14 +000098
99rescan:
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000100 column = adjust_column(column, c);
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000101
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000102 if (column > width) {
103 /* This character would make the line too long.
104 Print the line plus a newline, and make this character
105 start the next line. */
106 if (flags & FLAG_BREAK_SPACES) {
107 /* Look for the last blank. */
108 int logical_end;
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000109
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000110 for (logical_end = offset_out - 1; logical_end >= 0; logical_end--) {
111 if (isblank(line_out[logical_end])) {
112 break;
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000113 }
114 }
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000115 if (logical_end >= 0) {
116 /* Found a blank. Don't output the part after it. */
117 logical_end++;
118 fwrite(line_out, sizeof(char), (size_t) logical_end, stdout);
119 putchar('\n');
120 /* Move the remainder to the beginning of the next line.
121 The areas being copied here might overlap. */
122 memmove(line_out, line_out + logical_end, offset_out - logical_end);
123 offset_out -= logical_end;
124 for (column = i = 0; i < offset_out; i++) {
125 column = adjust_column(column, line_out[i]);
126 }
127 goto rescan;
128 }
129 } else {
130 if (offset_out == 0) {
131 line_out[offset_out++] = c;
132 continue;
133 }
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000134 }
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000135 line_out[offset_out++] = '\n';
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000136 fwrite(line_out, sizeof(char), (size_t) offset_out, stdout);
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000137 column = offset_out = 0;
138 goto rescan;
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000139 }
140
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000141 line_out[offset_out++] = c;
142 }
143
144 if (offset_out) {
145 fwrite(line_out, sizeof(char), (size_t) offset_out, stdout);
146 }
147
Denis Vlasenkoddec5af2006-10-26 23:25:17 +0000148 if (ferror(istream) || fclose_if_not_stdin(istream)) {
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000149 bb_perror_msg("%s", *argv); /* Avoid multibyte problems. */
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000150 errs |= EXIT_FAILURE;
151 }
152 } while (*++argv);
153
Denis Vlasenkof0ed3762006-10-26 23:21:47 +0000154 fflush_stdout_and_exit(errs);
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000155}