1 /* unexpand - convert spaces to tabs
2 Copyright (C) 89, 91, 95, 96, 1997, 1998 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
);
236 if (c
== ' ' && convert
)
241 else if (c
== '\t' && convert
)
245 /* Do not let tab_index == first_free_tab;
246 stop when it is 1 less. */
247 while (tab_index
< first_free_tab
- 1
248 && column
>= tab_list
[tab_index
])
250 next_tab_column
= tab_list
[tab_index
];
251 if (tab_index
< first_free_tab
- 1)
253 if (column
>= next_tab_column
)
255 convert
= 0; /* Ran out of tab stops. */
261 next_tab_column
= column
+ tab_size
- column
% tab_size
;
263 pending
+= next_tab_column
- column
;
264 column
= next_tab_column
;
269 /* Flush pending spaces. Print as many tabs as possible,
270 then print the rest as spaces. */
281 /* Do not let print_tab_index == first_free_tab;
282 stop when it is 1 less. */
283 while (print_tab_index
< first_free_tab
- 1
284 && column
>= tab_list
[print_tab_index
])
286 next_tab_column
= tab_list
[print_tab_index
];
287 if (print_tab_index
< first_free_tab
- 1)
292 next_tab_column
= column
+ tab_size
- column
% tab_size
;
294 if (next_tab_column
- column
<= pending
)
297 pending
-= next_tab_column
- column
;
298 column
= next_tab_column
;
316 break; /* No more files. */
331 if (convert_entire_line
== 0)
340 tab_index
= print_tab_index
= 0;
341 column
= pending
= 0;
352 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
357 Usage: %s [OPTION]... [FILE]...\n\
361 Convert spaces in each FILE to tabs, writing to standard output.\n\
362 With no FILE, or when FILE is -, read standard input.\n\
364 -a, --all convert all whitespace, instead of initial whitespace\n\
365 -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n\
366 -t, --tabs=LIST use comma separated list of explicit tab positions\n\
367 --help display this help and exit\n\
368 --version output version information and exit\n\
370 Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n\
372 puts (_("\nReport bugs to <bug-textutils@gnu.org>."));
374 exit (status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);
378 main (int argc
, char **argv
)
380 int tabval
= -1; /* Value of tabstop being read, or -1. */
381 int c
; /* Option character. */
383 program_name
= argv
[0];
384 setlocale (LC_ALL
, "");
385 bindtextdomain (PACKAGE
, LOCALEDIR
);
386 textdomain (PACKAGE
);
390 convert_entire_line
= 0;
394 while ((c
= getopt_long (argc
, argv
, "at:,0123456789", longopts
, NULL
)) != -1)
404 convert_entire_line
= 1;
407 convert_entire_line
= 1;
408 parse_tabstops (optarg
);
411 add_tabstop (tabval
);
417 tabval
= tabval
* 10 + c
- '0';
424 printf ("unexpand (%s) %s\n", GNU_PACKAGE
, VERSION
);
431 add_tabstop (tabval
);
433 validate_tabstops (tab_list
, first_free_tab
);
435 if (first_free_tab
== 0)
437 else if (first_free_tab
== 1)
438 tab_size
= tab_list
[0];
441 /* Append a sentinel to the list of tab stop indices. */
442 add_tabstop (INT_MAX
);
447 file_list
= stdin_argv
;
449 file_list
= &argv
[optind
];
453 if (have_read_stdin
&& fclose (stdin
) == EOF
)
454 error (EXIT_FAILURE
, errno
, "-");
455 if (fclose (stdout
) == EOF
)
456 error (EXIT_FAILURE
, errno
, _("write error"));
457 exit (exit_status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);