blob: c0d0dfacbb92624d7214769a7a6a90a54d2a7ab5 [file] [log] [blame]
Erik Andersenfb002d02000-03-05 08:07:00 +00001/* vi: set sw=4 ts=4: */
2/*
Erik Andersen8f8d6d52000-05-01 22:30:37 +00003 * Mini tr implementation for busybox
Erik Andersenfb002d02000-03-05 08:07:00 +00004 *
Rob Landleycd545282006-06-30 16:35:40 +00005 ** Copyright (c) 1987,1997, Prentice Hall All rights reserved.
6 *
7 * The name of Prentice Hall may not be used to endorse or promote
8 * products derived from this software without specific prior
9 * written permission.
10 *
Erik Andersen5afc8642000-05-02 00:07:56 +000011 * Copyright (c) Michiel Huisjes
12 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +000013 * This version of tr is adapted from Minix tr and was modified
Eric Andersencb81e642003-07-14 21:21:08 +000014 * by Erik Andersen <andersen@codepoet.org> to be used in busybox.
Erik Andersenfb002d02000-03-05 08:07:00 +000015 *
Rob Landleycd545282006-06-30 16:35:40 +000016 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Erik Andersenfb002d02000-03-05 08:07:00 +000017 */
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000018/* http://www.opengroup.org/onlinepubs/009695399/utilities/tr.html
19 * TODO: xdigit, graph, print
20 */
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000021#include "libbb.h"
Erik Andersen330fd2b2000-05-19 05:35:19 +000022
Eric Andersen22ecf042001-07-02 17:32:40 +000023#define ASCII 0377
Erik Andersenfb002d02000-03-05 08:07:00 +000024
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000025#define TR_OPT_complement (1<<0)
26#define TR_OPT_delete (1<<1)
27#define TR_OPT_squeeze_reps (1<<2)
Erik Andersenfb002d02000-03-05 08:07:00 +000028
Denis Vlasenko74324c82007-06-04 10:16:52 +000029static void map(char *pvector,
30 unsigned char *string1, unsigned int string1_len,
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000031 unsigned char *string2, unsigned int string2_len)
Erik Andersen8f8d6d52000-05-01 22:30:37 +000032{
Rob Landleyab58d5c2006-06-30 19:04:09 +000033 char last = '0';
Eric Andersen00143ba2000-07-13 16:40:41 +000034 unsigned int i, j;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000035
Eric Andersen00143ba2000-07-13 16:40:41 +000036 for (j = 0, i = 0; i < string1_len; i++) {
37 if (string2_len <= j)
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000038 pvector[string1[i]] = last;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000039 else
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000040 pvector[string1[i]] = last = string2[j++];
Erik Andersen8f8d6d52000-05-01 22:30:37 +000041 }
42}
43
Mark Whitley8b7a0d82001-05-24 21:31:09 +000044/* supported constructs:
45 * Ranges, e.g., [0-9] ==> 0123456789
46 * Escapes, e.g., \a ==> Control-G
Rob Landleyf1048142005-10-08 21:21:08 +000047 * Character classes, e.g. [:upper:] ==> A ... Z
Mark Whitley8b7a0d82001-05-24 21:31:09 +000048 */
Rob Landleyab58d5c2006-06-30 19:04:09 +000049static unsigned int expand(const char *arg, char *buffer)
Erik Andersen8f8d6d52000-05-01 22:30:37 +000050{
Rob Landleyab58d5c2006-06-30 19:04:09 +000051 char *buffer_start = buffer;
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000052 unsigned i; /* XXX: FIXME: use unsigned char? */
53 unsigned char ac;
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000054#define CLO ":]"
Denis Vlasenko240a1cf2007-04-08 16:07:02 +000055 static const char * const classes[] = {
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000056 "alpha"CLO, "alnum"CLO, "digit"CLO, "lower"CLO, "upper"CLO, "space"CLO,
57 "blank"CLO, "punct"CLO, "cntrl"CLO, NULL
58 };
59#define CLASS_invalid 0 /* we increment the retval */
60#define CLASS_alpha 1
61#define CLASS_alnum 2
62#define CLASS_digit 3
63#define CLASS_lower 4
64#define CLASS_upper 5
65#define CLASS_space 6
66#define CLASS_blank 7
67#define CLASS_punct 8
68#define CLASS_cntrl 9
69//#define CLASS_xdigit 10
70//#define CLASS_graph 11
71//#define CLASS_print 12
Erik Andersen8f8d6d52000-05-01 22:30:37 +000072 while (*arg) {
73 if (*arg == '\\') {
74 arg++;
Manuel Novoa III cad53642003-03-19 09:13:01 +000075 *buffer++ = bb_process_escape_sequence(&arg);
Eric Andersen5a4a46a2001-07-09 21:32:29 +000076 } else if (*(arg+1) == '-') {
77 ac = *(arg+2);
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000078 if (ac == 0) {
Eric Andersen5a4a46a2001-07-09 21:32:29 +000079 *buffer++ = *arg++;
80 continue;
81 }
82 i = *arg;
83 while (i <= ac)
84 *buffer++ = i++;
85 arg += 3; /* Skip the assumed a-z */
Erik Andersen8f8d6d52000-05-01 22:30:37 +000086 } else if (*arg == '[') {
87 arg++;
Rob Landley998dbee2006-04-19 22:22:06 +000088 i = *arg++;
89 if (ENABLE_FEATURE_TR_CLASSES && i == ':') {
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000090 smalluint j;
91 { /* not really pretty.. */
Denis Vlasenko74324c82007-06-04 10:16:52 +000092 char *tmp = xstrndup(arg, 7); // warning: xdigit needs 8, not 7
93 j = index_in_str_array(classes, tmp) + 1;
94 free(tmp);
Rob Landleyf1048142005-10-08 21:21:08 +000095 }
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000096 if (j == CLASS_alnum || j == CLASS_digit) {
Rob Landley998dbee2006-04-19 22:22:06 +000097 for (i = '0'; i <= '9'; i++)
98 *buffer++ = i;
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000099 }
100 if (j == CLASS_alpha || j == CLASS_alnum || j == CLASS_upper) {
Rob Landleyf1048142005-10-08 21:21:08 +0000101 for (i = 'A'; i <= 'Z'; i++)
102 *buffer++ = i;
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000103 }
104 if (j == CLASS_alpha || j == CLASS_alnum || j == CLASS_lower) {
Rob Landleyf1048142005-10-08 21:21:08 +0000105 for (i = 'a'; i <= 'z'; i++)
106 *buffer++ = i;
Rob Landleyf1048142005-10-08 21:21:08 +0000107 }
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000108 if (j == CLASS_space || j == CLASS_blank) {
Rob Landley998dbee2006-04-19 22:22:06 +0000109 *buffer++ = '\t';
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000110 if (j == CLASS_space) {
111 *buffer++ = '\n';
112 *buffer++ = '\v';
113 *buffer++ = '\f';
114 *buffer++ = '\r';
115 }
Rob Landley998dbee2006-04-19 22:22:06 +0000116 *buffer++ = ' ';
117 }
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000118 if (j == CLASS_punct || j == CLASS_cntrl) {
Rob Landleyf1048142005-10-08 21:21:08 +0000119 for (i = 0; i <= ASCII; i++)
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000120 if ((j == CLASS_punct &&
121 isprint(i) && (!isalnum(i)) && (!isspace(i))) ||
122 (j == CLASS_cntrl && iscntrl(i)))
Rob Landleyf1048142005-10-08 21:21:08 +0000123 *buffer++ = i;
124 }
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000125 if (j == CLASS_invalid) {
Rob Landley998dbee2006-04-19 22:22:06 +0000126 *buffer++ = '[';
127 *buffer++ = ':';
Rob Landleyf1048142005-10-08 21:21:08 +0000128 continue;
129 }
130 break;
131 }
Rob Landley998dbee2006-04-19 22:22:06 +0000132 if (ENABLE_FEATURE_TR_EQUIV && i == '=') {
Rob Landleyf1048142005-10-08 21:21:08 +0000133 *buffer++ = *arg;
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000134 arg += 3; /* Skip the closing =] */
Rob Landleyf1048142005-10-08 21:21:08 +0000135 continue;
136 }
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000137 if (*arg++ != '-') {
138 *buffer++ = '[';
139 arg -= 2;
140 continue;
141 }
142 ac = *arg++;
143 while (i <= ac)
144 *buffer++ = i++;
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000145 arg++; /* Skip the assumed ']' */
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000146 } else
147 *buffer++ = *arg++;
148 }
Eric Andersen00143ba2000-07-13 16:40:41 +0000149 return (buffer - buffer_start);
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000150}
151
Rob Landleyab58d5c2006-06-30 19:04:09 +0000152static int complement(char *buffer, int buffer_len)
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000153{
Denis Vlasenko74324c82007-06-04 10:16:52 +0000154 int i, j, ix;
Eric Andersenfad04fd2000-07-14 06:49:52 +0000155 char conv[ASCII + 2];
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000156
Eric Andersen1ca20a72001-03-21 07:34:27 +0000157 ix = 0;
Eric Andersen00143ba2000-07-13 16:40:41 +0000158 for (i = 0; i <= ASCII; i++) {
159 for (j = 0; j < buffer_len; j++)
160 if (buffer[j] == i)
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000161 break;
Eric Andersen00143ba2000-07-13 16:40:41 +0000162 if (j == buffer_len)
Eric Andersen1ca20a72001-03-21 07:34:27 +0000163 conv[ix++] = i & ASCII;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000164 }
Eric Andersen1ca20a72001-03-21 07:34:27 +0000165 memcpy(buffer, conv, ix);
166 return ix;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000167}
168
Denis Vlasenko06af2162007-02-03 17:28:39 +0000169int tr_main(int argc, char **argv);
Rob Landleydfba7412006-03-06 20:47:33 +0000170int tr_main(int argc, char **argv)
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000171{
"Robert P. J. Day"68229832006-07-01 13:08:46 +0000172 unsigned char *ptr;
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000173 int output_length = 0, input_length;
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000174 int idx = 1;
Eric Andersenfad04fd2000-07-14 06:49:52 +0000175 int i;
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000176 smalluint flags = 0;
Denis Vlasenko74324c82007-06-04 10:16:52 +0000177 size_t read_chars = 0, in_index = 0, out_index = 0, c, coded, last = -1;
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000178 RESERVE_CONFIG_UBUFFER(output, BUFSIZ);
Rob Landley998f4492006-04-10 16:40:47 +0000179 RESERVE_CONFIG_BUFFER(vector, ASCII+1);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000180 RESERVE_CONFIG_BUFFER(invec, ASCII+1);
181 RESERVE_CONFIG_BUFFER(outvec, ASCII+1);
Mark Whitley59ab0252001-01-23 22:30:04 +0000182
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000183 if (argc > 1 && argv[idx][0] == '-') {
184 for (ptr = (unsigned char *) &argv[idx][1]; *ptr; ptr++) {
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000185 if (*ptr == 'c')
186 flags |= TR_OPT_complement;
187 else if (*ptr == 'd')
188 flags |= TR_OPT_delete;
189 else if (*ptr == 's')
190 flags |= TR_OPT_squeeze_reps;
191 else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000192 bb_show_usage();
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000193 }
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000194 idx++;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000195 }
196 for (i = 0; i <= ASCII; i++) {
197 vector[i] = i;
198 invec[i] = outvec[i] = FALSE;
199 }
200
Denis Vlasenko74324c82007-06-04 10:16:52 +0000201#define tr_buf bb_common_bufsiz1
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000202 if (argv[idx] != NULL) {
Denis Vlasenko74324c82007-06-04 10:16:52 +0000203 input_length = expand(argv[idx++], tr_buf);
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000204 if (flags & TR_OPT_complement)
Denis Vlasenko74324c82007-06-04 10:16:52 +0000205 input_length = complement(tr_buf, input_length);
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000206 if (argv[idx] != NULL) {
207 if (*argv[idx] == '\0')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000208 bb_error_msg_and_die("STRING2 cannot be empty");
Rob Landleyab58d5c2006-06-30 19:04:09 +0000209 output_length = expand(argv[idx], output);
Denis Vlasenko74324c82007-06-04 10:16:52 +0000210 map(vector, tr_buf, input_length, output, output_length);
Eric Andersena03d86c2000-07-10 16:38:50 +0000211 }
Eric Andersen00143ba2000-07-13 16:40:41 +0000212 for (i = 0; i < input_length; i++)
Denis Vlasenko74324c82007-06-04 10:16:52 +0000213 invec[(unsigned char)tr_buf[i]] = TRUE;
Eric Andersen00143ba2000-07-13 16:40:41 +0000214 for (i = 0; i < output_length; i++)
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000215 outvec[output[i]] = TRUE;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000216 }
Denis Vlasenko74324c82007-06-04 10:16:52 +0000217
218 for (;;) {
219 /* If we're out of input, flush output and read more input. */
220 if (in_index == read_chars) {
221 if (out_index) {
222 xwrite(STDOUT_FILENO, (char *)output, out_index);
223 out_index = 0;
224 }
225 read_chars = read(STDIN_FILENO, tr_buf, BUFSIZ);
226 if (read_chars <= 0) {
227 if (write(STDOUT_FILENO, (char *)output, out_index) != out_index)
228 bb_perror_msg(bb_msg_write_error);
229 exit(EXIT_SUCCESS);
230 }
231 in_index = 0;
232 }
233 c = tr_buf[in_index++];
234 coded = vector[c];
235 if ((flags & TR_OPT_delete) && invec[c])
236 continue;
237 if ((flags & TR_OPT_squeeze_reps) && last == coded &&
238 (invec[c] || outvec[coded]))
239 continue;
240 output[out_index++] = last = coded;
241 }
242 /* NOTREACHED */
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +0000243 return EXIT_SUCCESS;
Erik Andersenfb002d02000-03-05 08:07:00 +0000244}