1 /* unexpand - convert spaces to tabs
2 Copyright (C) 89, 91, 1995-1998, 1999 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
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* By default, convert only maximal strings of initial blanks and tabs
20 Preserves backspace characters in the output; they decrement the
21 column count for tab calculations.
22 The default action is equivalent to -8.
25 --tabs=tab1[,tab2[,...]]
27 -tab1[,tab2[,...]] If only one tab stop is given, set the tabs tab1
28 spaces apart instead of the default 8. Otherwise,
29 set the tabs at columns tab1, tab2, etc. (numbered from
30 0); replace any tabs beyond the tabstops given with
33 -a Use tabs wherever they would replace 2 or more spaces,
34 not just at the beginnings of lines.
36 David MacKenzie <djm@gnu.ai.mit.edu> */
42 #include <sys/types.h>
47 /* The number of bytes added at a time to the amount of memory
48 allocated for the output line. */
49 #define OUTPUT_BLOCK 256
51 /* The number of bytes added at a time to the amount of memory
52 allocated for the list of tabstops. */
53 #define TABLIST_BLOCK 256
55 /* The name this program was run with. */
58 /* If nonzero, convert blanks even after nonblank characters have been
60 static int convert_entire_line
;
62 /* If nonzero, the size of all tab stops. If zero, use `tab_list' instead. */
65 /* Array of the explicit column numbers of the tab stops;
66 after `tab_list' is exhausted, the rest of the line is printed
67 unchanged. The first column is column 0. */
70 /* The index of the first invalid element of `tab_list',
71 where the next element can be added. */
72 static int first_free_tab
;
74 /* Null-terminated array of input filenames. */
75 static char **file_list
;
77 /* Default for `file_list' if no files are given on the command line. */
78 static char *stdin_argv
[] =
83 /* Nonzero if we have ever read standard input. */
84 static int have_read_stdin
;
86 /* Status to return to the system. */
87 static int exit_status
;
89 /* If nonzero, display usage information and exit. */
92 /* If nonzero, print the version on standard output then exit. */
93 static int show_version
;
95 static struct option
const longopts
[] =
97 {"tabs", required_argument
, NULL
, 't'},
98 {"all", no_argument
, NULL
, 'a'},
99 {"help", no_argument
, &show_help
, 1},
100 {"version", no_argument
, &show_version
, 1},
104 /* Add tab stop TABVAL to the end of `tab_list', except
105 if TABVAL is -1, do nothing. */
108 add_tabstop (int tabval
)
112 if (first_free_tab
% TABLIST_BLOCK
== 0)
113 tab_list
= (int *) xrealloc ((char *) tab_list
,
114 first_free_tab
+ TABLIST_BLOCK
);
115 tab_list
[first_free_tab
++] = tabval
;
118 /* Add the comma or blank separated list of tabstops STOPS
119 to the list of tabstops. */
122 parse_tabstops (const char *stops
)
126 for (; *stops
; stops
++)
128 if (*stops
== ',' || ISBLANK (*stops
))
130 add_tabstop (tabval
);
133 else if (ISDIGIT (*stops
))
137 tabval
= tabval
* 10 + *stops
- '0';
140 error (EXIT_FAILURE
, 0, _("tab size contains an invalid character"));
143 add_tabstop (tabval
);
146 /* Check that the list of tabstops TABS, with ENTRIES entries,
147 contains only nonzero, ascending values. */
150 validate_tabstops (const int *tabs
, int entries
)
155 for (i
= 0; i
< entries
; i
++)
158 error (EXIT_FAILURE
, 0, _("tab size cannot be 0"));
159 if (tabs
[i
] <= prev_tab
)
160 error (EXIT_FAILURE
, 0, _("tab sizes must be ascending"));
165 /* Close the old stream pointer FP if it is non-NULL,
166 and return a new one opened to read the next input file.
167 Open a filename of `-' as the standard input.
168 Return NULL if there are no more input files. */
173 static char *prev_file
;
180 error (0, errno
, "%s", prev_file
);
184 clearerr (fp
); /* Also clear EOF. */
185 else if (fclose (fp
) == EOF
)
187 error (0, errno
, "%s", prev_file
);
192 while ((file
= *file_list
++) != NULL
)
194 if (file
[0] == '-' && file
[1] == '\0')
200 fp
= fopen (file
, "r");
206 error (0, errno
, "%s", file
);
212 /* Change spaces to tabs, writing to stdout.
213 Read each file in `file_list', in order. */
218 FILE *fp
; /* Input stream. */
219 int c
; /* Each input character. */
220 /* Index in `tab_list' of next tabstop: */
221 int tab_index
= 0; /* For calculating width of pending tabs. */
222 int print_tab_index
= 0; /* For printing as many tabs as possible. */
223 int column
= 0; /* Column on screen of next char. */
224 int next_tab_column
; /* Column the next tab stop is on. */
225 int convert
= 1; /* If nonzero, perform translations. */
226 int pending
= 0; /* Pending columns of blanks. */
228 fp
= next_file ((FILE *) NULL
);
232 /* Binary I/O will preserve the original EOL style (DOS/Unix) of files. */
233 SET_BINARY2 (fileno (fp
), STDOUT_FILENO
);
239 if (c
== ' ' && convert
)
244 else if (c
== '\t' && convert
)
248 /* Do not let tab_index == first_free_tab;
249 stop when it is 1 less. */
250 while (tab_index
< first_free_tab
- 1
251 && column
>= tab_list
[tab_index
])
253 next_tab_column
= tab_list
[tab_index
];
254 if (tab_index
< first_free_tab
- 1)
256 if (column
>= next_tab_column
)
258 convert
= 0; /* Ran out of tab stops. */
264 next_tab_column
= column
+ tab_size
- column
% tab_size
;
266 pending
+= next_tab_column
- column
;
267 column
= next_tab_column
;
272 /* Flush pending spaces. Print as many tabs as possible,
273 then print the rest as spaces. */
284 /* Do not let print_tab_index == first_free_tab;
285 stop when it is 1 less. */
286 while (print_tab_index
< first_free_tab
- 1
287 && column
>= tab_list
[print_tab_index
])
289 next_tab_column
= tab_list
[print_tab_index
];
290 if (print_tab_index
< first_free_tab
- 1)
295 next_tab_column
= column
+ tab_size
- column
% tab_size
;
297 if (next_tab_column
- column
<= pending
)
300 pending
-= next_tab_column
- column
;
301 column
= next_tab_column
;
319 break; /* No more files. */
322 SET_BINARY2 (fileno (fp
), STDOUT_FILENO
);
337 if (convert_entire_line
== 0)
346 tab_index
= print_tab_index
= 0;
347 column
= pending
= 0;
358 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
363 Usage: %s [OPTION]... [FILE]...\n\
367 Convert spaces in each FILE to tabs, writing to standard output.\n\
368 With no FILE, or when FILE is -, read standard input.\n\
370 -a, --all convert all whitespace, instead of initial whitespace\n\
371 -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n\
372 -t, --tabs=LIST use comma separated list of explicit tab positions\n\
373 --help display this help and exit\n\
374 --version output version information and exit\n\
376 Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n\
378 puts (_("\nReport bugs to <bug-textutils@gnu.org>."));
380 exit (status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);
384 main (int argc
, char **argv
)
386 int tabval
= -1; /* Value of tabstop being read, or -1. */
387 int c
; /* Option character. */
389 program_name
= argv
[0];
390 setlocale (LC_ALL
, "");
391 bindtextdomain (PACKAGE
, LOCALEDIR
);
392 textdomain (PACKAGE
);
396 convert_entire_line
= 0;
400 while ((c
= getopt_long (argc
, argv
, "at:,0123456789", longopts
, NULL
)) != -1)
410 convert_entire_line
= 1;
413 convert_entire_line
= 1;
414 parse_tabstops (optarg
);
417 add_tabstop (tabval
);
423 tabval
= tabval
* 10 + c
- '0';
430 printf ("unexpand (%s) %s\n", GNU_PACKAGE
, VERSION
);
437 add_tabstop (tabval
);
439 validate_tabstops (tab_list
, first_free_tab
);
441 if (first_free_tab
== 0)
443 else if (first_free_tab
== 1)
444 tab_size
= tab_list
[0];
447 /* Append a sentinel to the list of tab stop indices. */
448 add_tabstop (INT_MAX
);
453 file_list
= stdin_argv
;
455 file_list
= &argv
[optind
];
459 if (have_read_stdin
&& fclose (stdin
) == EOF
)
460 error (EXIT_FAILURE
, errno
, "-");
461 if (fclose (stdout
) == EOF
)
462 error (EXIT_FAILURE
, errno
, _("write error"));
463 exit (exit_status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);