1 /* unexpand - convert spaces to tabs
2 Copyright (C) 89, 91, 1995-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 official name of this program (e.g., no `g' prefix). */
48 #define PROGRAM_NAME "unexpand"
50 #define AUTHORS "David MacKenzie"
52 /* The number of bytes added at a time to the amount of memory
53 allocated for the output line. */
54 #define OUTPUT_BLOCK 256
56 /* The number of bytes added at a time to the amount of memory
57 allocated for the list of tabstops. */
58 #define TABLIST_BLOCK 256
60 /* The name this program was run with. */
63 /* If nonzero, convert blanks even after nonblank characters have been
65 static int convert_entire_line
;
67 /* If nonzero, the size of all tab stops. If zero, use `tab_list' instead. */
70 /* Array of the explicit column numbers of the tab stops;
71 after `tab_list' is exhausted, the rest of the line is printed
72 unchanged. The first column is column 0. */
75 /* The index of the first invalid element of `tab_list',
76 where the next element can be added. */
77 static int first_free_tab
;
79 /* Null-terminated array of input filenames. */
80 static char **file_list
;
82 /* Default for `file_list' if no files are given on the command line. */
83 static char *stdin_argv
[] =
88 /* Nonzero if we have ever read standard input. */
89 static int have_read_stdin
;
91 /* Status to return to the system. */
92 static int exit_status
;
94 static struct option
const longopts
[] =
96 {"tabs", required_argument
, NULL
, 't'},
97 {"all", no_argument
, NULL
, 'a'},
98 {GETOPT_HELP_OPTION_DECL
},
99 {GETOPT_VERSION_OPTION_DECL
},
103 /* Add tab stop TABVAL to the end of `tab_list', except
104 if TABVAL is -1, do nothing. */
107 add_tabstop (int tabval
)
111 if (first_free_tab
% TABLIST_BLOCK
== 0)
112 tab_list
= (int *) xrealloc ((char *) tab_list
,
113 first_free_tab
+ TABLIST_BLOCK
);
114 tab_list
[first_free_tab
++] = tabval
;
117 /* Add the comma or blank separated list of tabstops STOPS
118 to the list of tabstops. */
121 parse_tabstops (const char *stops
)
125 for (; *stops
; stops
++)
127 if (*stops
== ',' || ISBLANK (*stops
))
129 add_tabstop (tabval
);
132 else if (ISDIGIT (*stops
))
136 tabval
= tabval
* 10 + *stops
- '0';
139 error (EXIT_FAILURE
, 0, _("tab size contains an invalid character"));
142 add_tabstop (tabval
);
145 /* Check that the list of tabstops TABS, with ENTRIES entries,
146 contains only nonzero, ascending values. */
149 validate_tabstops (const int *tabs
, int entries
)
154 for (i
= 0; i
< entries
; i
++)
157 error (EXIT_FAILURE
, 0, _("tab size cannot be 0"));
158 if (tabs
[i
] <= prev_tab
)
159 error (EXIT_FAILURE
, 0, _("tab sizes must be ascending"));
164 /* Close the old stream pointer FP if it is non-NULL,
165 and return a new one opened to read the next input file.
166 Open a filename of `-' as the standard input.
167 Return NULL if there are no more input files. */
172 static char *prev_file
;
179 error (0, errno
, "%s", prev_file
);
183 clearerr (fp
); /* Also clear EOF. */
184 else if (fclose (fp
) == EOF
)
186 error (0, errno
, "%s", prev_file
);
191 while ((file
= *file_list
++) != NULL
)
193 if (file
[0] == '-' && file
[1] == '\0')
199 fp
= fopen (file
, "r");
205 error (0, errno
, "%s", file
);
211 /* Change spaces to tabs, writing to stdout.
212 Read each file in `file_list', in order. */
217 FILE *fp
; /* Input stream. */
218 int c
; /* Each input character. */
219 /* Index in `tab_list' of next tabstop: */
220 int tab_index
= 0; /* For calculating width of pending tabs. */
221 int print_tab_index
= 0; /* For printing as many tabs as possible. */
222 int column
= 0; /* Column on screen of next char. */
223 int next_tab_column
; /* Column the next tab stop is on. */
224 int convert
= 1; /* If nonzero, perform translations. */
225 int pending
= 0; /* Pending columns of blanks. */
227 fp
= next_file ((FILE *) NULL
);
231 /* Binary I/O will preserve the original EOL style (DOS/Unix) of files. */
232 SET_BINARY2 (fileno (fp
), STDOUT_FILENO
);
238 if (c
== ' ' && convert
)
243 else if (c
== '\t' && convert
)
247 /* Do not let tab_index == first_free_tab;
248 stop when it is 1 less. */
249 while (tab_index
< first_free_tab
- 1
250 && column
>= tab_list
[tab_index
])
252 next_tab_column
= tab_list
[tab_index
];
253 if (tab_index
< first_free_tab
- 1)
255 if (column
>= next_tab_column
)
257 convert
= 0; /* Ran out of tab stops. */
263 next_tab_column
= column
+ tab_size
- column
% tab_size
;
265 pending
+= next_tab_column
- column
;
266 column
= next_tab_column
;
271 /* Flush pending spaces. Print as many tabs as possible,
272 then print the rest as spaces. */
283 /* Do not let print_tab_index == first_free_tab;
284 stop when it is 1 less. */
285 while (print_tab_index
< first_free_tab
- 1
286 && column
>= tab_list
[print_tab_index
])
288 next_tab_column
= tab_list
[print_tab_index
];
289 if (print_tab_index
< first_free_tab
- 1)
294 next_tab_column
= column
+ tab_size
- column
% tab_size
;
296 if (next_tab_column
- column
<= pending
)
299 pending
-= next_tab_column
- column
;
300 column
= next_tab_column
;
318 break; /* No more files. */
321 SET_BINARY2 (fileno (fp
), STDOUT_FILENO
);
336 if (convert_entire_line
== 0)
345 tab_index
= print_tab_index
= 0;
346 column
= pending
= 0;
357 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
362 Usage: %s [OPTION]... [FILE]...\n\
366 Convert spaces in each FILE to tabs, writing to standard output.\n\
367 With no FILE, or when FILE is -, read standard input.\n\
369 -a, --all convert all whitespace, instead of initial whitespace\n\
370 -t, --tabs=NUMBER have tabs NUMBER characters apart instead of 8\n\
371 -t, --tabs=LIST use comma separated list of explicit tab positions\n\
372 --help display this help and exit\n\
373 --version output version information and exit\n\
375 Instead of -t NUMBER or -t LIST, -NUMBER or -LIST may be used.\n\
377 puts (_("\nReport bugs to <bug-textutils@gnu.org>."));
379 exit (status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);
383 main (int argc
, char **argv
)
385 int tabval
= -1; /* Value of tabstop being read, or -1. */
386 int c
; /* Option character. */
388 program_name
= argv
[0];
389 setlocale (LC_ALL
, "");
390 bindtextdomain (PACKAGE
, LOCALEDIR
);
391 textdomain (PACKAGE
);
395 convert_entire_line
= 0;
399 while ((c
= getopt_long (argc
, argv
, "at:,0123456789", longopts
, NULL
)) != -1)
409 convert_entire_line
= 1;
412 convert_entire_line
= 1;
413 parse_tabstops (optarg
);
416 add_tabstop (tabval
);
419 case_GETOPT_HELP_CHAR
;
420 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
424 tabval
= tabval
* 10 + c
- '0';
429 add_tabstop (tabval
);
431 validate_tabstops (tab_list
, first_free_tab
);
433 if (first_free_tab
== 0)
435 else if (first_free_tab
== 1)
436 tab_size
= tab_list
[0];
439 /* Append a sentinel to the list of tab stop indices. */
440 add_tabstop (INT_MAX
);
445 file_list
= stdin_argv
;
447 file_list
= &argv
[optind
];
451 if (have_read_stdin
&& fclose (stdin
) == EOF
)
452 error (EXIT_FAILURE
, errno
, "-");
453 if (fclose (stdout
) == EOF
)
454 error (EXIT_FAILURE
, errno
, _("write error"));
455 exit (exit_status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);