1 /* fold -- wrap each input line to fit in specified width.
2 Copyright (C) 91, 1995-2006 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
18 /* Written by David MacKenzie, djm@gnu.ai.mit.edu. */
24 #include <sys/types.h>
33 /* The official name of this program (e.g., no `g' prefix). */
34 #define PROGRAM_NAME "fold"
36 #define AUTHORS "David MacKenzie"
38 /* The name this program was run with. */
41 /* If nonzero, try to break on whitespace. */
42 static bool break_spaces
;
44 /* If nonzero, count bytes, not column positions. */
45 static bool count_bytes
;
47 /* If nonzero, at least one of the files we read was standard input. */
48 static bool have_read_stdin
;
50 static char const shortopts
[] = "bsw:0::1::2::3::4::5::6::7::8::9::";
52 static struct option
const longopts
[] =
54 {"bytes", no_argument
, NULL
, 'b'},
55 {"spaces", no_argument
, NULL
, 's'},
56 {"width", required_argument
, NULL
, 'w'},
57 {GETOPT_HELP_OPTION_DECL
},
58 {GETOPT_VERSION_OPTION_DECL
},
65 if (status
!= EXIT_SUCCESS
)
66 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
71 Usage: %s [OPTION]... [FILE]...\n\
75 Wrap input lines in each FILE (standard input by default), writing to\n\
80 Mandatory arguments to long options are mandatory for short options too.\n\
83 -b, --bytes count bytes rather than columns\n\
84 -s, --spaces break at spaces\n\
85 -w, --width=WIDTH use WIDTH columns instead of 80\n\
87 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
88 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
89 emit_bug_reporting_address ();
94 /* Assuming the current column is COLUMN, return the column that
95 printing C will move the cursor to.
96 The first column is 0. */
99 adjust_column (size_t column
, char c
)
111 column
+= TAB_WIDTH
- column
% TAB_WIDTH
;
112 else /* if (isprint (c)) */
120 /* Fold file FILENAME, or standard input if FILENAME is "-",
121 to stdout, with maximum line length WIDTH.
122 Return true if successful. */
125 fold_file (char const *filename
, size_t width
)
129 size_t column
= 0; /* Screen column where next char will go. */
130 size_t offset_out
= 0; /* Index in `line_out' for next char. */
131 static char *line_out
= NULL
;
132 static size_t allocated_out
= 0;
135 if (STREQ (filename
, "-"))
138 have_read_stdin
= true;
141 istream
= fopen (filename
, "r");
145 error (0, errno
, "%s", filename
);
149 while ((c
= getc (istream
)) != EOF
)
151 if (offset_out
+ 1 >= allocated_out
)
152 line_out
= X2REALLOC (line_out
, &allocated_out
);
156 line_out
[offset_out
++] = c
;
157 fwrite (line_out
, sizeof (char), offset_out
, stdout
);
158 column
= offset_out
= 0;
163 column
= adjust_column (column
, c
);
167 /* This character would make the line too long.
168 Print the line plus a newline, and make this character
169 start the next line. */
172 bool found_blank
= false;
173 size_t logical_end
= offset_out
;
175 /* Look for the last blank. */
179 if (isblank (to_uchar (line_out
[logical_end
])))
190 /* Found a blank. Don't output the part after it. */
192 fwrite (line_out
, sizeof (char), (size_t) logical_end
,
195 /* Move the remainder to the beginning of the next line.
196 The areas being copied here might overlap. */
197 memmove (line_out
, line_out
+ logical_end
,
198 offset_out
- logical_end
);
199 offset_out
-= logical_end
;
200 for (column
= i
= 0; i
< offset_out
; i
++)
201 column
= adjust_column (column
, line_out
[i
]);
208 line_out
[offset_out
++] = c
;
212 line_out
[offset_out
++] = '\n';
213 fwrite (line_out
, sizeof (char), (size_t) offset_out
, stdout
);
214 column
= offset_out
= 0;
218 line_out
[offset_out
++] = c
;
224 fwrite (line_out
, sizeof (char), (size_t) offset_out
, stdout
);
226 if (ferror (istream
))
228 error (0, saved_errno
, "%s", filename
);
229 if (!STREQ (filename
, "-"))
233 if (!STREQ (filename
, "-") && fclose (istream
) == EOF
)
235 error (0, errno
, "%s", filename
);
243 main (int argc
, char **argv
)
250 initialize_main (&argc
, &argv
);
251 program_name
= argv
[0];
252 setlocale (LC_ALL
, "");
253 bindtextdomain (PACKAGE
, LOCALEDIR
);
254 textdomain (PACKAGE
);
256 atexit (close_stdout
);
258 break_spaces
= count_bytes
= have_read_stdin
= false;
260 while ((optc
= getopt_long (argc
, argv
, shortopts
, longopts
, NULL
)) != -1)
266 case 'b': /* Count bytes rather than columns. */
270 case 's': /* Break at word boundaries. */
274 case '0': case '1': case '2': case '3': case '4':
275 case '5': case '6': case '7': case '8': case '9':
285 case 'w': /* Line width. */
287 unsigned long int tmp_ulong
;
288 if (! (xstrtoul (optarg
, NULL
, 10, &tmp_ulong
, "") == LONGINT_OK
289 && 0 < tmp_ulong
&& tmp_ulong
< SIZE_MAX
- TAB_WIDTH
))
290 error (EXIT_FAILURE
, 0,
291 _("invalid number of columns: %s"), quote (optarg
));
296 case_GETOPT_HELP_CHAR
;
298 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
301 usage (EXIT_FAILURE
);
306 ok
= fold_file ("-", width
);
310 for (i
= optind
; i
< argc
; i
++)
311 ok
&= fold_file (argv
[i
], width
);
314 if (have_read_stdin
&& fclose (stdin
) == EOF
)
315 error (EXIT_FAILURE
, errno
, "-");
317 exit (ok
? EXIT_SUCCESS
: EXIT_FAILURE
);