blob: f1ab1bdc027ef82e750c629411ea8d8d1fec42b5 [file] [log] [blame]
Glenn L McGrathf01b8052003-04-27 06:02:14 +00001/* fold -- wrap each input line to fit in specified width.
2
3 Written by David MacKenzie, djm@gnu.ai.mit.edu.
4 Copyright (C) 91, 1995-2002 Free Software Foundation, Inc.
5
6 Modified for busybox based on coreutils v 5.0
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00007 Copyright (C) 2003 Glenn McGrath <bug1@iinet.net.au>
Glenn L McGrathf01b8052003-04-27 06:02:14 +00008
Rob Landley746cfc82005-12-02 17:55:45 +00009 Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Glenn L McGrathf01b8052003-04-27 06:02:14 +000010*/
11
12#include <ctype.h>
13#include <errno.h>
14#include <stdio.h>
15#include <stdlib.h>
16#include <string.h>
Glenn L McGrathf01b8052003-04-27 06:02:14 +000017#include <sys/types.h>
Rob Landley746cfc82005-12-02 17:55:45 +000018#include <unistd.h>
Glenn L McGrathf01b8052003-04-27 06:02:14 +000019#include "busybox.h"
20
Rob Landley746cfc82005-12-02 17:55:45 +000021static unsigned long flags;
22#define FLAG_COUNT_BYTES 1
23#define FLAG_BREAK_SPACES 2
24#define FLAG_WIDTH 4
Glenn L McGrathf01b8052003-04-27 06:02:14 +000025
26/* Assuming the current column is COLUMN, return the column that
27 printing C will move the cursor to.
28 The first column is 0. */
29
30static int adjust_column(int column, char c)
31{
Rob Landley746cfc82005-12-02 17:55:45 +000032 if (!(flags & FLAG_COUNT_BYTES)) {
Glenn L McGrathf01b8052003-04-27 06:02:14 +000033 if (c == '\b') {
34 if (column > 0)
35 column--;
36 } else if (c == '\r')
37 column = 0;
38 else if (c == '\t')
39 column = column + 8 - column % 8;
40 else /* if (isprint (c)) */
41 column++;
42 } else
43 column++;
44 return column;
45}
46
47extern int fold_main(int argc, char **argv)
48{
Paul Fox377bdaf2005-12-08 18:48:20 +000049 char *w_opt;
Glenn L McGrathf01b8052003-04-27 06:02:14 +000050 int width = 80;
51 int i;
Glenn L McGrathf01b8052003-04-27 06:02:14 +000052 int errs = 0;
53
Rob Landleyf8fd4db2006-01-30 01:30:39 +000054 if(!ENABLE_DEBUG_YANK_SUSv2) {
55 /* Turn any numeric options into -w options. */
56 for (i = 1; i < argc; i++) {
57 char const *a = argv[i];
Glenn L McGrathf01b8052003-04-27 06:02:14 +000058
"Vladimir N. Oleynik"b1fd52e2006-01-30 10:49:14 +000059 if (*a++ == '-') {
60 if (*a == '-' && !a[1])
Rob Landleyf8fd4db2006-01-30 01:30:39 +000061 break;
"Vladimir N. Oleynik"b1fd52e2006-01-30 10:49:14 +000062 if (isdigit(*a)) {
63 argv[i] = bb_xasprintf("-w%s", a);
Rob Landleyf8fd4db2006-01-30 01:30:39 +000064 }
Glenn L McGrathf01b8052003-04-27 06:02:14 +000065 }
66 }
67 }
68
Rob Landley746cfc82005-12-02 17:55:45 +000069 flags = bb_getopt_ulflags(argc, argv, "bsw:", &w_opt);
Bernhard Reutner-Fischerd77b7812005-12-10 20:13:54 +000070 if (flags & FLAG_WIDTH)
Rob Landley746cfc82005-12-02 17:55:45 +000071 width = bb_xgetlarg(w_opt, 10, 1, 10000);
Glenn L McGrathf01b8052003-04-27 06:02:14 +000072
73 argv += optind;
74 if (!*argv) {
75 *--argv = "-";
76 }
77
78 do {
79 FILE *istream = bb_wfopen_input(*argv);
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +000080 int c;
81 int column = 0; /* Screen column where next char will go. */
82 int offset_out = 0; /* Index in `line_out' for next char. */
83 static char *line_out = NULL;
84 static int allocated_out = 0;
Glenn L McGrathf01b8052003-04-27 06:02:14 +000085
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +000086 if (istream == NULL) {
87 errs |= EXIT_FAILURE;
88 continue;
89 }
Glenn L McGrathf01b8052003-04-27 06:02:14 +000090
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +000091 while ((c = getc(istream)) != EOF) {
92 if (offset_out + 1 >= allocated_out) {
93 allocated_out += 1024;
94 line_out = xrealloc(line_out, allocated_out);
95 }
96
97 if (c == '\n') {
98 line_out[offset_out++] = c;
99 fwrite(line_out, sizeof(char), (size_t) offset_out, stdout);
100 column = offset_out = 0;
101 continue;
102 }
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000103
104rescan:
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000105 column = adjust_column(column, c);
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000106
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000107 if (column > width) {
108 /* This character would make the line too long.
109 Print the line plus a newline, and make this character
110 start the next line. */
111 if (flags & FLAG_BREAK_SPACES) {
112 /* Look for the last blank. */
113 int logical_end;
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000114
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000115 for (logical_end = offset_out - 1; logical_end >= 0; logical_end--) {
116 if (isblank(line_out[logical_end])) {
117 break;
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000118 }
119 }
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000120 if (logical_end >= 0) {
121 /* Found a blank. Don't output the part after it. */
122 logical_end++;
123 fwrite(line_out, sizeof(char), (size_t) logical_end, stdout);
124 putchar('\n');
125 /* Move the remainder to the beginning of the next line.
126 The areas being copied here might overlap. */
127 memmove(line_out, line_out + logical_end, offset_out - logical_end);
128 offset_out -= logical_end;
129 for (column = i = 0; i < offset_out; i++) {
130 column = adjust_column(column, line_out[i]);
131 }
132 goto rescan;
133 }
134 } else {
135 if (offset_out == 0) {
136 line_out[offset_out++] = c;
137 continue;
138 }
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000139 }
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000140 line_out[offset_out++] = '\n';
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000141 fwrite(line_out, sizeof(char), (size_t) offset_out, stdout);
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000142 column = offset_out = 0;
143 goto rescan;
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000144 }
145
Bernhard Reutner-Fischer4bf31272006-01-30 17:41:06 +0000146 line_out[offset_out++] = c;
147 }
148
149 if (offset_out) {
150 fwrite(line_out, sizeof(char), (size_t) offset_out, stdout);
151 }
152
153 if (ferror(istream) || bb_fclose_nonstdin(istream)) {
154 bb_perror_msg("%s", *argv); /* Avoid multibyte problems. */
Glenn L McGrathf01b8052003-04-27 06:02:14 +0000155 errs |= EXIT_FAILURE;
156 }
157 } while (*++argv);
158
159 bb_fflush_stdout_and_exit(errs);
160}
Bernhard Reutner-Fischerd77b7812005-12-10 20:13:54 +0000161/* vi: set sw=4 ts=4: */