"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 2 | /* 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 |
Denis Vlasenko | 0beaff8 | 2007-09-21 13:16:32 +0000 | [diff] [blame] | 8 | Copyright (C) 2003 Glenn McGrath |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 9 | |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 10 | Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 11 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 12 | //config:config FOLD |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 13 | //config: bool "fold (4.6 kb)" |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 14 | //config: default y |
| 15 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame^] | 16 | //config: Wrap text to fit a specific width. |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 17 | |
| 18 | //applet:IF_FOLD(APPLET_NOEXEC(fold, fold, BB_DIR_USR_BIN, BB_SUID_DROP, fold)) |
| 19 | |
| 20 | //kbuild:lib-$(CONFIG_FOLD) += fold.o |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 21 | |
| 22 | //usage:#define fold_trivial_usage |
| 23 | //usage: "[-bs] [-w WIDTH] [FILE]..." |
| 24 | //usage:#define fold_full_usage "\n\n" |
| 25 | //usage: "Wrap input lines in each FILE (or stdin), writing to stdout\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 26 | //usage: "\n -b Count bytes rather than columns" |
| 27 | //usage: "\n -s Break at spaces" |
| 28 | //usage: "\n -w Use WIDTH columns instead of 80" |
| 29 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 30 | #include "libbb.h" |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 31 | #include "unicode.h" |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 32 | |
Dan Fandrich | 2d1a78b | 2010-09-30 14:31:12 -0700 | [diff] [blame] | 33 | /* This is a NOEXEC applet. Be very careful! */ |
| 34 | |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 35 | /* Must match getopt32 call */ |
| 36 | #define FLAG_COUNT_BYTES 1 |
| 37 | #define FLAG_BREAK_SPACES 2 |
| 38 | #define FLAG_WIDTH 4 |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 39 | |
| 40 | /* Assuming the current column is COLUMN, return the column that |
| 41 | printing C will move the cursor to. |
| 42 | The first column is 0. */ |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 43 | static int adjust_column(unsigned column, char c) |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 44 | { |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 45 | if (option_mask32 & FLAG_COUNT_BYTES) |
| 46 | return ++column; |
| 47 | |
| 48 | if (c == '\t') |
| 49 | return column + 8 - column % 8; |
| 50 | |
| 51 | if (c == '\b') { |
| 52 | if ((int)--column < 0) |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 53 | column = 0; |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 54 | } |
| 55 | else if (c == '\r') |
| 56 | column = 0; |
| 57 | else { /* just a printable char */ |
| 58 | if (unicode_status != UNICODE_ON /* every byte is a new char */ |
| 59 | || (c & 0xc0) != 0x80 /* it isn't a 2nd+ byte of a Unicode char */ |
| 60 | ) { |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 61 | column++; |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 62 | } |
| 63 | } |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 64 | return column; |
| 65 | } |
| 66 | |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 67 | /* Note that this function can write NULs, unlike fputs etc. */ |
| 68 | static void write2stdout(const void *buf, unsigned size) |
| 69 | { |
| 70 | fwrite(buf, 1, size, stdout); |
| 71 | } |
| 72 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 73 | int fold_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | ded688c | 2009-11-04 15:31:19 +0100 | [diff] [blame] | 74 | int fold_main(int argc UNUSED_PARAM, char **argv) |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 75 | { |
Denis Vlasenko | 931de89 | 2007-06-21 12:43:45 +0000 | [diff] [blame] | 76 | char *line_out = NULL; |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 77 | const char *w_opt = "80"; |
| 78 | unsigned width; |
| 79 | smallint exitcode = EXIT_SUCCESS; |
| 80 | |
| 81 | init_unicode(); |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 82 | |
Denis Vlasenko | 0849207 | 2006-12-22 13:56:36 +0000 | [diff] [blame] | 83 | if (ENABLE_INCLUDE_SUSv2) { |
Rob Landley | f8fd4db | 2006-01-30 01:30:39 +0000 | [diff] [blame] | 84 | /* Turn any numeric options into -w options. */ |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 85 | int i; |
Denys Vlasenko | ded688c | 2009-11-04 15:31:19 +0100 | [diff] [blame] | 86 | for (i = 1; argv[i]; i++) { |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 87 | const char *a = argv[i]; |
| 88 | if (*a == '-') { |
| 89 | a++; |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 90 | if (*a == '-' && !a[1]) /* "--" */ |
Rob Landley | f8fd4db | 2006-01-30 01:30:39 +0000 | [diff] [blame] | 91 | break; |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 92 | if (isdigit(*a)) |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 93 | argv[i] = xasprintf("-w%s", a); |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 94 | } |
| 95 | } |
| 96 | } |
| 97 | |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 98 | getopt32(argv, "bsw:", &w_opt); |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 99 | width = xatou_range(w_opt, 1, 10000); |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 100 | |
| 101 | argv += optind; |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 102 | if (!*argv) |
Denis Vlasenko | a41fdf3 | 2007-01-29 22:51:00 +0000 | [diff] [blame] | 103 | *--argv = (char*)"-"; |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 104 | |
| 105 | do { |
Denis Vlasenko | ddec5af | 2006-10-26 23:25:17 +0000 | [diff] [blame] | 106 | FILE *istream = fopen_or_warn_stdin(*argv); |
Bernhard Reutner-Fischer | 4bf3127 | 2006-01-30 17:41:06 +0000 | [diff] [blame] | 107 | int c; |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 108 | unsigned column = 0; /* Screen column where next char will go */ |
| 109 | unsigned offset_out = 0; /* Index in 'line_out' for next char */ |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 110 | |
Bernhard Reutner-Fischer | 4bf3127 | 2006-01-30 17:41:06 +0000 | [diff] [blame] | 111 | if (istream == NULL) { |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 112 | exitcode = EXIT_FAILURE; |
Bernhard Reutner-Fischer | 4bf3127 | 2006-01-30 17:41:06 +0000 | [diff] [blame] | 113 | continue; |
| 114 | } |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 115 | |
Bernhard Reutner-Fischer | 4bf3127 | 2006-01-30 17:41:06 +0000 | [diff] [blame] | 116 | while ((c = getc(istream)) != EOF) { |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 117 | /* We grow line_out in chunks of 0x1000 bytes */ |
| 118 | if ((offset_out & 0xfff) == 0) { |
| 119 | line_out = xrealloc(line_out, offset_out + 0x1000); |
Bernhard Reutner-Fischer | 4bf3127 | 2006-01-30 17:41:06 +0000 | [diff] [blame] | 120 | } |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 121 | rescan: |
| 122 | line_out[offset_out] = c; |
Bernhard Reutner-Fischer | 4bf3127 | 2006-01-30 17:41:06 +0000 | [diff] [blame] | 123 | if (c == '\n') { |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 124 | write2stdout(line_out, offset_out + 1); |
Bernhard Reutner-Fischer | 4bf3127 | 2006-01-30 17:41:06 +0000 | [diff] [blame] | 125 | column = offset_out = 0; |
| 126 | continue; |
| 127 | } |
Bernhard Reutner-Fischer | 4bf3127 | 2006-01-30 17:41:06 +0000 | [diff] [blame] | 128 | column = adjust_column(column, c); |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 129 | if (column <= width || offset_out == 0) { |
| 130 | /* offset_out == 0 case happens |
| 131 | * with small width (say, 1) and tabs. |
| 132 | * The very first tab already goes to column 8, |
| 133 | * but we must not wrap it */ |
| 134 | offset_out++; |
| 135 | continue; |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 136 | } |
| 137 | |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 138 | /* This character would make the line too long. |
| 139 | * Print the line plus a newline, and make this character |
| 140 | * start the next line */ |
| 141 | if (option_mask32 & FLAG_BREAK_SPACES) { |
| 142 | unsigned i; |
| 143 | unsigned logical_end; |
| 144 | |
| 145 | /* Look for the last blank. */ |
| 146 | for (logical_end = offset_out - 1; (int)logical_end >= 0; logical_end--) { |
| 147 | if (!isblank(line_out[logical_end])) |
| 148 | continue; |
| 149 | |
| 150 | /* Found a space or tab. |
| 151 | * Output up to and including it, and start a new line */ |
| 152 | logical_end++; |
| 153 | /*line_out[logical_end] = '\n'; - NO! this nukes one buffered character */ |
| 154 | write2stdout(line_out, logical_end); |
| 155 | putchar('\n'); |
| 156 | /* Move the remainder to the beginning of the next line. |
| 157 | * The areas being copied here might overlap. */ |
| 158 | memmove(line_out, line_out + logical_end, offset_out - logical_end); |
| 159 | offset_out -= logical_end; |
| 160 | for (column = i = 0; i < offset_out; i++) { |
| 161 | column = adjust_column(column, line_out[i]); |
| 162 | } |
| 163 | goto rescan; |
| 164 | } |
| 165 | /* No blank found, wrap will split the overlong word */ |
| 166 | } |
| 167 | /* Output what we accumulated up to now, and start a new line */ |
| 168 | line_out[offset_out] = '\n'; |
| 169 | write2stdout(line_out, offset_out + 1); |
| 170 | column = offset_out = 0; |
| 171 | goto rescan; |
| 172 | } /* while (not EOF) */ |
Bernhard Reutner-Fischer | 4bf3127 | 2006-01-30 17:41:06 +0000 | [diff] [blame] | 173 | |
| 174 | if (offset_out) { |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 175 | write2stdout(line_out, offset_out); |
Bernhard Reutner-Fischer | 4bf3127 | 2006-01-30 17:41:06 +0000 | [diff] [blame] | 176 | } |
| 177 | |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 178 | if (fclose_if_not_stdin(istream)) { |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 179 | bb_simple_perror_msg(*argv); |
| 180 | exitcode = EXIT_FAILURE; |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 181 | } |
| 182 | } while (*++argv); |
| 183 | |
Denys Vlasenko | 2805502 | 2010-01-04 20:49:58 +0100 | [diff] [blame] | 184 | fflush_stdout_and_exit(exitcode); |
Glenn L McGrath | f01b805 | 2003-04-27 06:02:14 +0000 | [diff] [blame] | 185 | } |