2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2003-04-27 11:32:14 +05:30
|
|
|
/* fold -- wrap each input line to fit in specified width.
|
|
|
|
|
|
|
|
Written by David MacKenzie, djm@gnu.ai.mit.edu.
|
|
|
|
Copyright (C) 91, 1995-2002 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Modified for busybox based on coreutils v 5.0
|
2007-09-21 18:46:32 +05:30
|
|
|
Copyright (C) 2003 Glenn McGrath
|
2003-04-27 11:32:14 +05:30
|
|
|
|
2005-12-02 23:25:45 +05:30
|
|
|
Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2003-04-27 11:32:14 +05:30
|
|
|
*/
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2010-01-05 01:19:58 +05:30
|
|
|
#include "unicode.h"
|
2003-04-27 11:32:14 +05:30
|
|
|
|
2008-03-17 14:37:36 +05:30
|
|
|
/* Must match getopt32 call */
|
|
|
|
#define FLAG_COUNT_BYTES 1
|
|
|
|
#define FLAG_BREAK_SPACES 2
|
|
|
|
#define FLAG_WIDTH 4
|
2003-04-27 11:32:14 +05:30
|
|
|
|
|
|
|
/* Assuming the current column is COLUMN, return the column that
|
|
|
|
printing C will move the cursor to.
|
|
|
|
The first column is 0. */
|
2010-01-05 01:19:58 +05:30
|
|
|
static int adjust_column(unsigned column, char c)
|
2003-04-27 11:32:14 +05:30
|
|
|
{
|
2010-01-05 01:19:58 +05:30
|
|
|
if (option_mask32 & FLAG_COUNT_BYTES)
|
|
|
|
return ++column;
|
|
|
|
|
|
|
|
if (c == '\t')
|
|
|
|
return column + 8 - column % 8;
|
|
|
|
|
|
|
|
if (c == '\b') {
|
|
|
|
if ((int)--column < 0)
|
2003-04-27 11:32:14 +05:30
|
|
|
column = 0;
|
2010-01-05 01:19:58 +05:30
|
|
|
}
|
|
|
|
else if (c == '\r')
|
|
|
|
column = 0;
|
|
|
|
else { /* just a printable char */
|
|
|
|
if (unicode_status != UNICODE_ON /* every byte is a new char */
|
|
|
|
|| (c & 0xc0) != 0x80 /* it isn't a 2nd+ byte of a Unicode char */
|
|
|
|
) {
|
2003-04-27 11:32:14 +05:30
|
|
|
column++;
|
2010-01-05 01:19:58 +05:30
|
|
|
}
|
|
|
|
}
|
2003-04-27 11:32:14 +05:30
|
|
|
return column;
|
|
|
|
}
|
|
|
|
|
2010-01-05 01:19:58 +05:30
|
|
|
/* Note that this function can write NULs, unlike fputs etc. */
|
|
|
|
static void write2stdout(const void *buf, unsigned size)
|
|
|
|
{
|
|
|
|
fwrite(buf, 1, size, stdout);
|
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int fold_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2009-11-04 20:01:19 +05:30
|
|
|
int fold_main(int argc UNUSED_PARAM, char **argv)
|
2003-04-27 11:32:14 +05:30
|
|
|
{
|
2007-06-21 18:13:45 +05:30
|
|
|
char *line_out = NULL;
|
2010-01-05 01:19:58 +05:30
|
|
|
const char *w_opt = "80";
|
|
|
|
unsigned width;
|
|
|
|
smallint exitcode = EXIT_SUCCESS;
|
|
|
|
|
|
|
|
init_unicode();
|
2003-04-27 11:32:14 +05:30
|
|
|
|
2006-12-22 19:26:36 +05:30
|
|
|
if (ENABLE_INCLUDE_SUSv2) {
|
2006-01-30 07:00:39 +05:30
|
|
|
/* Turn any numeric options into -w options. */
|
2010-01-05 01:19:58 +05:30
|
|
|
int i;
|
2009-11-04 20:01:19 +05:30
|
|
|
for (i = 1; argv[i]; i++) {
|
2010-01-05 01:19:58 +05:30
|
|
|
const char *a = argv[i];
|
|
|
|
if (*a == '-') {
|
|
|
|
a++;
|
2008-03-17 14:37:36 +05:30
|
|
|
if (*a == '-' && !a[1]) /* "--" */
|
2006-01-30 07:00:39 +05:30
|
|
|
break;
|
2008-03-17 14:37:36 +05:30
|
|
|
if (isdigit(*a))
|
2006-08-03 21:11:12 +05:30
|
|
|
argv[i] = xasprintf("-w%s", a);
|
2003-04-27 11:32:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-17 14:37:36 +05:30
|
|
|
getopt32(argv, "bsw:", &w_opt);
|
2010-01-05 01:19:58 +05:30
|
|
|
width = xatou_range(w_opt, 1, 10000);
|
2003-04-27 11:32:14 +05:30
|
|
|
|
|
|
|
argv += optind;
|
2008-03-17 14:37:36 +05:30
|
|
|
if (!*argv)
|
2007-01-30 04:21:00 +05:30
|
|
|
*--argv = (char*)"-";
|
2003-04-27 11:32:14 +05:30
|
|
|
|
|
|
|
do {
|
2006-10-27 04:55:17 +05:30
|
|
|
FILE *istream = fopen_or_warn_stdin(*argv);
|
2006-01-30 23:11:06 +05:30
|
|
|
int c;
|
2010-01-05 01:19:58 +05:30
|
|
|
unsigned column = 0; /* Screen column where next char will go */
|
|
|
|
unsigned offset_out = 0; /* Index in 'line_out' for next char */
|
2003-04-27 11:32:14 +05:30
|
|
|
|
2006-01-30 23:11:06 +05:30
|
|
|
if (istream == NULL) {
|
2010-01-05 01:19:58 +05:30
|
|
|
exitcode = EXIT_FAILURE;
|
2006-01-30 23:11:06 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((c = getc(istream)) != EOF) {
|
2010-01-05 01:19:58 +05:30
|
|
|
/* We grow line_out in chunks of 0x1000 bytes */
|
|
|
|
if ((offset_out & 0xfff) == 0) {
|
|
|
|
line_out = xrealloc(line_out, offset_out + 0x1000);
|
2006-01-30 23:11:06 +05:30
|
|
|
}
|
2010-01-05 01:19:58 +05:30
|
|
|
rescan:
|
|
|
|
line_out[offset_out] = c;
|
2006-01-30 23:11:06 +05:30
|
|
|
if (c == '\n') {
|
2010-01-05 01:19:58 +05:30
|
|
|
write2stdout(line_out, offset_out + 1);
|
2006-01-30 23:11:06 +05:30
|
|
|
column = offset_out = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
column = adjust_column(column, c);
|
2010-01-05 01:19:58 +05:30
|
|
|
if (column <= width || offset_out == 0) {
|
|
|
|
/* offset_out == 0 case happens
|
|
|
|
* with small width (say, 1) and tabs.
|
|
|
|
* The very first tab already goes to column 8,
|
|
|
|
* but we must not wrap it */
|
|
|
|
offset_out++;
|
|
|
|
continue;
|
|
|
|
}
|
2006-01-30 23:11:06 +05:30
|
|
|
|
2010-01-05 01:19:58 +05:30
|
|
|
/* This character would make the line too long.
|
|
|
|
* Print the line plus a newline, and make this character
|
|
|
|
* start the next line */
|
|
|
|
if (option_mask32 & FLAG_BREAK_SPACES) {
|
|
|
|
unsigned i;
|
|
|
|
unsigned logical_end;
|
|
|
|
|
|
|
|
/* Look for the last blank. */
|
|
|
|
for (logical_end = offset_out - 1; (int)logical_end >= 0; logical_end--) {
|
|
|
|
if (!isblank(line_out[logical_end]))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Found a space or tab.
|
|
|
|
* Output up to and including it, and start a new line */
|
|
|
|
logical_end++;
|
|
|
|
/*line_out[logical_end] = '\n'; - NO! this nukes one buffered character */
|
|
|
|
write2stdout(line_out, logical_end);
|
|
|
|
putchar('\n');
|
|
|
|
/* Move the remainder to the beginning of the next line.
|
|
|
|
* The areas being copied here might overlap. */
|
|
|
|
memmove(line_out, line_out + logical_end, offset_out - logical_end);
|
|
|
|
offset_out -= logical_end;
|
|
|
|
for (column = i = 0; i < offset_out; i++) {
|
|
|
|
column = adjust_column(column, line_out[i]);
|
2006-01-30 23:11:06 +05:30
|
|
|
}
|
2010-01-05 01:19:58 +05:30
|
|
|
goto rescan;
|
2003-04-27 11:32:14 +05:30
|
|
|
}
|
2010-01-05 01:19:58 +05:30
|
|
|
/* No blank found, wrap will split the overlong word */
|
2003-04-27 11:32:14 +05:30
|
|
|
}
|
2010-01-05 01:19:58 +05:30
|
|
|
/* Output what we accumulated up to now, and start a new line */
|
|
|
|
line_out[offset_out] = '\n';
|
|
|
|
write2stdout(line_out, offset_out + 1);
|
|
|
|
column = offset_out = 0;
|
|
|
|
goto rescan;
|
|
|
|
} /* while (not EOF) */
|
2006-01-30 23:11:06 +05:30
|
|
|
|
|
|
|
if (offset_out) {
|
2010-01-05 01:19:58 +05:30
|
|
|
write2stdout(line_out, offset_out);
|
2006-01-30 23:11:06 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:37:36 +05:30
|
|
|
if (fclose_if_not_stdin(istream)) {
|
2010-01-05 01:19:58 +05:30
|
|
|
bb_simple_perror_msg(*argv);
|
|
|
|
exitcode = EXIT_FAILURE;
|
2003-04-27 11:32:14 +05:30
|
|
|
}
|
|
|
|
} while (*++argv);
|
|
|
|
|
2010-01-05 01:19:58 +05:30
|
|
|
fflush_stdout_and_exit(exitcode);
|
2003-04-27 11:32:14 +05:30
|
|
|
}
|