Declared lots of external functions and variables static.
[platform/upstream/coreutils.git] / src / fold.c
1 /* fold -- wrap each input line to fit in specified width.
2    Copyright (C) 1991 Free Software Foundation, Inc.
3
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)
7    any later version.
8
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.
13
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
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
18 /* Written by David MacKenzie. */
19
20 #define _GNU_SOURCE
21 #include <ctype.h>
22 #ifndef isblank
23 #define isblank(c) ((c) == ' ' || (c) == '\t')
24 #endif
25 #include <stdio.h>
26 #include <getopt.h>
27 #include <sys/types.h>
28 #include "system.h"
29
30 char *xrealloc ();
31 void error ();
32
33 static int adjust_column ();
34 static int fold_file ();
35
36 /* If nonzero, try to break on whitespace. */
37 static int break_spaces;
38
39 /* If nonzero, count bytes, not column positions. */
40 static int count_bytes;
41
42 /* If nonzero, at least one of the files we read was standard input. */
43 static int have_read_stdin;
44
45 /* The name this program was run with. */
46 char *program_name;
47
48 static struct option const longopts[] =
49 {
50   {"bytes", 0, NULL, 'b'},
51   {"spaces", 0, NULL, 's'},
52   {"width", 1, NULL, 'w'},
53   {NULL, 0, NULL, 0}
54 };
55 \f
56 void
57 main (argc, argv)
58      int argc;
59      char **argv;
60 {
61   int width = 80;
62   int i;
63   int optc;
64   int errs = 0;
65
66   program_name = argv[0];
67   break_spaces = count_bytes = have_read_stdin = 0;
68
69   while ((optc = getopt_long (argc, argv, "bsw:", longopts, (int *) 0))
70          != EOF)
71     {
72       switch (optc)
73         {
74         case 'b':               /* Count bytes rather than columns. */
75           count_bytes = 1;
76           break;
77
78         case 's':               /* Break at word boundaries. */
79           break_spaces = 1;
80           break;
81
82         case 'w':               /* Line width. */
83           width = atoi (optarg);
84           if (width < 1)
85             error (1, 0, "%s: invalid line width", optarg);
86           break;
87
88         default:
89           fprintf (stderr, "\
90 Usage: %s [-bs] [-w width] [--bytes] [--spaces] [--width=width] [file...]\n",
91                    argv[0]);
92           exit (1);
93         }
94     }
95
96   if (argc == optind)
97     errs |= fold_file ("-", width);
98   else
99     for (i = optind; i < argc; i++)
100       errs |= fold_file (argv[i], width);
101
102   if (have_read_stdin && fclose (stdin) == EOF)
103     error (1, errno, "-");
104   if (fclose (stdout) == EOF)
105     error (1, errno, "write error");
106
107   exit (errs);
108 }
109
110 /* Fold file FILENAME, or standard input if FILENAME is "-",
111    to stdout, with maximum line length WIDTH.
112    Return 0 if successful, 1 if an error occurs. */
113
114 static int
115 fold_file (filename, width)
116      char *filename;
117      int width;
118 {
119   FILE *istream;
120   register int c;
121   int column = 0;               /* Screen column where next char will go. */
122   int offset_out = 0;           /* Index in `line_out' for next char. */
123   static char *line_out = NULL;
124   static size_t allocated_out = 0;
125
126   if (!strcmp (filename, "-"))
127     {
128       istream = stdin;
129       have_read_stdin = 1;
130     }
131   else
132     istream = fopen (filename, "r");
133
134   if (istream == NULL)
135     {
136       error (0, errno, "%s", filename);
137       return 1;
138     }
139
140   while ((c = getc (istream)) != EOF)
141     {
142       if (offset_out + 1 >= allocated_out)
143         {
144           allocated_out += 1024;
145           line_out = xrealloc (line_out, allocated_out);
146         }
147       
148       if (c == '\n')
149         {
150           line_out[offset_out++] = c;
151           fwrite (line_out, sizeof (char), offset_out, stdout);
152           column = offset_out = 0;
153           continue;
154         }
155
156     rescan:
157       column = adjust_column (column, c);
158
159       if (column > width)
160         {
161           /* This character would make the line too long.
162              Print the line plus a newline, and make this character
163              start the next line. */
164           if (break_spaces)
165             {
166               /* Look for the last blank. */
167               int logical_end;
168
169               for (logical_end = offset_out - 1; logical_end >= 0;
170                    logical_end--)
171                 if (isblank (line_out[logical_end]))
172                   break;
173               if (logical_end >= 0)
174                 {
175                   int i;
176
177                   /* Found a blank.  Don't output the part after it. */
178                   logical_end++;
179                   fwrite (line_out, sizeof (char), logical_end, stdout);
180                   putchar ('\n');
181                   /* Move the remainder to the beginning of the next line.
182                      The areas being copied here might overlap. */
183                   bcopy (line_out + logical_end, line_out,
184                          offset_out - logical_end);
185                   offset_out -= logical_end;
186                   for (column = i = 0; i < offset_out; i++)
187                     column = adjust_column (column, line_out[i]);
188                   goto rescan;
189                 }
190             }
191           line_out[offset_out++] = '\n';
192           fwrite (line_out, sizeof (char), offset_out, stdout);
193           column = offset_out = 0;
194           goto rescan;
195         }
196
197       line_out[offset_out++] = c;
198     }
199
200   if (offset_out)
201     fwrite (line_out, sizeof (char), offset_out, stdout);
202
203   if (ferror (istream))
204     {
205       error (0, errno, "%s", filename);
206       if (strcmp (filename, "-"))
207         fclose (istream);
208       return 1;
209     }
210   if (strcmp (filename, "-") && fclose (istream) == EOF)
211     {
212       error (0, errno, "%s", filename);
213       return 1;
214     }
215
216   if (ferror (stdout))
217     {
218       error (0, errno, "write error");
219       return 1;
220     }
221
222   return 0;
223 }
224
225 /* Assuming the current column is COLUMN, return the column that
226    printing C will move the cursor to.
227    The first column is 0. */
228
229 static int
230 adjust_column (column, c)
231      int column;
232      char c;
233 {
234   if (!count_bytes)
235     {
236       if (c == '\b')
237         {
238           if (column > 0)
239             column--;
240         }
241       else if (c == '\r')
242         column = 0;
243       else if (c == '\t')
244         column = column + 8 - column % 8;
245       else /* if (isprint (c)) */
246         column++;
247     }
248   else
249     column++;
250   return column;
251 }