1 /* expand - convert tabs to spaces
2 * unexpand - convert spaces to tabs
4 * Copyright (C) 89, 91, 1995-2006 Free Software Foundation, Inc.
6 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8 * David MacKenzie <djm@gnu.ai.mit.edu>
11 * -t num --tabs=NUM Convert tabs to num spaces (default 8 spaces).
12 * -i --initial Only convert initial tabs on each line to spaces.
14 * Options for unexpand:
15 * -a --all Convert all blanks, instead of just initial blanks.
16 * -f --first-only Convert only leading sequences of blanks (default).
17 * -t num --tabs=NUM Have tabs num characters apart instead of 8.
19 * Busybox version (C) 2007 by Tito Ragusa <farmatito@tiscali.it>
21 * Caveat: this versions of expand and unexpand don't accept tab lists.
33 static void expand(FILE *file, int tab_size, unsigned opt)
39 while ((line = xmalloc_fgets(file)) != NULL) {
45 while ((c = *ptr) != '\0') {
46 if ((opt & OPT_INITIAL) && !isblank(c)) {
68 static void unexpand(FILE *file, unsigned tab_size, unsigned opt)
72 while ((line = xmalloc_fgets(file)) != NULL) {
84 column += tab_size - (column % tab_size);
89 n = column / tab_size;
90 column = column % tab_size;
94 if ((opt & OPT_INITIAL) && ptr != line) {
95 printf("%*s%s", column, "", ptr);
98 n = strcspn(ptr, "\t ");
99 printf("%*s%.*s", column, "", n, ptr);
101 column = (column + n) % tab_size;
108 int expand_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
109 int expand_main(int argc UNUSED_PARAM, char **argv)
111 /* Default 8 spaces for 1 tab */
112 const char *opt_t = "8";
116 int exit_status = EXIT_SUCCESS;
118 #if ENABLE_FEATURE_EXPAND_LONG_OPTIONS
119 static const char expand_longopts[] ALIGN1 =
120 /* name, has_arg, val */
121 "initial\0" No_argument "i"
122 "tabs\0" Required_argument "t"
125 #if ENABLE_FEATURE_UNEXPAND_LONG_OPTIONS
126 static const char unexpand_longopts[] ALIGN1 =
127 /* name, has_arg, val */
128 "first-only\0" No_argument "i"
129 "tabs\0" Required_argument "t"
130 "all\0" No_argument "a"
134 if (ENABLE_EXPAND && (!ENABLE_UNEXPAND || applet_name[0] == 'e')) {
135 USE_FEATURE_EXPAND_LONG_OPTIONS(applet_long_options = expand_longopts);
136 opt = getopt32(argv, "it:", &opt_t);
138 USE_FEATURE_UNEXPAND_LONG_OPTIONS(applet_long_options = unexpand_longopts);
139 /* -t NUM sets also -a */
140 opt_complementary = "ta";
141 opt = getopt32(argv, "ft:a", &opt_t);
142 /* -f --first-only is the default */
143 if (!(opt & OPT_ALL)) opt |= OPT_INITIAL;
145 tab_size = xatou_range(opt_t, 1, UINT_MAX);
150 *--argv = (char*)bb_msg_standard_input;
153 file = fopen_or_warn_stdin(*argv);
155 exit_status = EXIT_FAILURE;
159 if (ENABLE_EXPAND && (!ENABLE_UNEXPAND || applet_name[0] == 'e'))
160 USE_EXPAND(expand(file, tab_size, opt));
162 USE_UNEXPAND(unexpand(file, tab_size, opt));
164 /* Check and close the file */
165 if (fclose_if_not_stdin(file)) {
166 bb_simple_perror_msg(*argv);
167 exit_status = EXIT_FAILURE;
169 /* If stdin also clear EOF */
174 /* Now close stdin also */
175 /* (if we didn't read from it, it's a no-op) */
177 bb_perror_msg_and_die(bb_msg_standard_input);
179 fflush_stdout_and_exit(exit_status);