1 /* unexpand - convert spaces to tabs
2 Copyright (C) 89, 91, 95, 1996 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> */
40 /* Get isblank from GNU libc. */
45 #include <sys/types.h>
53 # define UINT_MAX ((unsigned int) ~(unsigned int) 0)
57 # define INT_MAX ((int) (UINT_MAX >> 1))
62 /* The number of bytes added at a time to the amount of memory
63 allocated for the output line. */
64 #define OUTPUT_BLOCK 256
66 /* The number of bytes added at a time to the amount of memory
67 allocated for the list of tabstops. */
68 #define TABLIST_BLOCK 256
73 /* The name this program was run with. */
76 /* If nonzero, convert blanks even after nonblank characters have been
78 static int convert_entire_line
;
80 /* If nonzero, the size of all tab stops. If zero, use `tab_list' instead. */
83 /* Array of the explicit column numbers of the tab stops;
84 after `tab_list' is exhausted, the rest of the line is printed
85 unchanged. The first column is column 0. */
88 /* The index of the first invalid element of `tab_list',
89 where the next element can be added. */
90 static int first_free_tab
;
92 /* Null-terminated array of input filenames. */
93 static char **file_list
;
95 /* Default for `file_list' if no files are given on the command line. */
96 static char *stdin_argv
[] =
101 /* Nonzero if we have ever read standard input. */
102 static int have_read_stdin
;
104 /* Status to return to the system. */
105 static int exit_status
;
107 /* If nonzero, display usage information and exit. */
108 static int show_help
;
110 /* If nonzero, print the version on standard output then exit. */
111 static int show_version
;
113 static struct option
const longopts
[] =
115 {"tabs", required_argument
, NULL
, 't'},
116 {"all", no_argument
, NULL
, 'a'},
117 {"help", no_argument
, &show_help
, 1},
118 {"version", no_argument
, &show_version
, 1},
122 /* Add tab stop TABVAL to the end of `tab_list', except
123 if TABVAL is -1, do nothing. */
126 add_tabstop (int tabval
)
130 if (first_free_tab
% TABLIST_BLOCK
== 0)
131 tab_list
= (int *) xrealloc (tab_list
, first_free_tab
+ TABLIST_BLOCK
);
132 tab_list
[first_free_tab
++] = tabval
;
135 /* Add the comma or blank separated list of tabstops STOPS
136 to the list of tabstops. */
139 parse_tabstops (const char *stops
)
143 for (; *stops
; stops
++)
145 if (*stops
== ',' || ISBLANK (*stops
))
147 add_tabstop (tabval
);
150 else if (ISDIGIT (*stops
))
154 tabval
= tabval
* 10 + *stops
- '0';
157 error (EXIT_FAILURE
, 0, _("tab size contains an invalid character"));
160 add_tabstop (tabval
);
163 /* Check that the list of tabstops TABS, with ENTRIES entries,
164 contains only nonzero, ascending values. */
167 validate_tabstops (const int *tabs
, int entries
)
172 for (i
= 0; i
< entries
; i
++)
175 error (EXIT_FAILURE
, 0, _("tab size cannot be 0"));
176 if (tabs
[i
] <= prev_tab
)
177 error (EXIT_FAILURE
, 0, _("tab sizes must be ascending"));
182 /* Close the old stream pointer FP if it is non-NULL,
183 and return a new one opened to read the next input file.
184 Open a filename of `-' as the standard input.
185 Return NULL if there are no more input files. */
190 static char *prev_file
;
197 error (0, errno
, "%s", prev_file
);
201 clearerr (fp
); /* Also clear EOF. */
202 else if (fclose (fp
) == EOF
)
204 error (0, errno
, "%s", prev_file
);
209 while ((file
= *file_list
++) != NULL
)
211 if (file
[0] == '-' && file
[1] == '\0')
217 fp
= fopen (file
, "r");
223 error (0, errno
, "%s", file
);
229 /* Change spaces to tabs, writing to stdout.
230 Read each file in `file_list', in order. */
235 FILE *fp
; /* Input stream. */
236 int c
; /* Each input character. */
237 /* Index in `tab_list' of next tabstop: */
238 int tab_index
= 0; /* For calculating width of pending tabs. */
239 int print_tab_index
= 0; /* For printing as many tabs as possible. */
240 int column
= 0; /* Column on screen of next char. */
241 int next_tab_column
; /* Column the next tab stop is on. */
242 int convert
= 1; /* If nonzero, perform translations. */
243 int pending
= 0; /* Pending columns of blanks. */
245 fp
= next_file ((FILE *) NULL
);
253 if (c
== ' ' && convert
)
258 else if (c
== '\t' && convert
)
262 /* Do not let tab_index == first_free_tab;
263 stop when it is 1 less. */
264 while (tab_index
< first_free_tab
- 1
265 && column
>= tab_list
[tab_index
])
267 next_tab_column
= tab_list
[tab_index
];
268 if (tab_index
< first_free_tab
- 1)
270 if (column
>= next_tab_column
)
272 convert
= 0; /* Ran out of tab stops. */
278 next_tab_column
= column
+ tab_size
- column
% tab_size
;
280 pending
+= next_tab_column
- column
;
281 column
= next_tab_column
;
286 /* Flush pending spaces. Print as many tabs as possible,
287 then print the rest as spaces. */
298 /* Do not let print_tab_index == first_free_tab;
299 stop when it is 1 less. */
300 while (print_tab_index
< first_free_tab
- 1
301 && column
>= tab_list
[print_tab_index
])
303 next_tab_column
= tab_list
[print_tab_index
];
304 if (print_tab_index
< first_free_tab
- 1)
309 next_tab_column
= column
+ tab_size
- column
% tab_size
;
311 if (next_tab_column
- column
<= pending
)
314 pending
-= next_tab_column
- column
;
315 column
= next_tab_column
;
333 break; /* No more files. */
348 if (convert_entire_line
== 0)
357 tab_index
= print_tab_index
= 0;
358 column
= pending
= 0;
369 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
374 Usage: %s [OPTION]... [FILE]...\n\
378 Convert spaces in each FILE to tabs, writing to standard output.\n\
379 With no FILE, or when FILE is -, read standard input.\n\
381 -a, --all convert all whitespace, instead of initial whitespace\n\
382 -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n\
383 -t, --tabs=LIST use comma separated list of explicit tab positions\n\
384 --help display this help and exit\n\
385 --version output version information and exit\n\
387 Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n\
389 puts (_("\nReport bugs to textutils-bugs@gnu.ai.mit.edu"));
391 exit (status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);
395 main (int argc
, char **argv
)
397 int tabval
= -1; /* Value of tabstop being read, or -1. */
398 int c
; /* Option character. */
400 program_name
= argv
[0];
401 setlocale (LC_ALL
, "");
402 bindtextdomain (PACKAGE
, LOCALEDIR
);
403 textdomain (PACKAGE
);
407 convert_entire_line
= 0;
411 while ((c
= getopt_long (argc
, argv
, "at:,0123456789", longopts
, (int *) 0))
422 convert_entire_line
= 1;
425 convert_entire_line
= 1;
426 parse_tabstops (optarg
);
429 add_tabstop (tabval
);
435 tabval
= tabval
* 10 + c
- '0';
442 printf ("unexpand (%s) %s\n", GNU_PACKAGE
, VERSION
);
449 add_tabstop (tabval
);
451 validate_tabstops (tab_list
, first_free_tab
);
453 if (first_free_tab
== 0)
455 else if (first_free_tab
== 1)
456 tab_size
= tab_list
[0];
459 /* Append a sentinel to the list of tab stop indices. */
460 add_tabstop (INT_MAX
);
465 file_list
= stdin_argv
;
467 file_list
= &argv
[optind
];
471 if (have_read_stdin
&& fclose (stdin
) == EOF
)
472 error (EXIT_FAILURE
, errno
, "-");
473 if (fclose (stdout
) == EOF
)
474 error (EXIT_FAILURE
, errno
, _("write error"));
475 exit (exit_status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);