blob: e9eca4c60e11033423aab19e9939e2b2a8c66561 [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 *
Erik Andersen5afc8642000-05-02 00:07:56 +00005 * Copyright (c) Michiel Huisjes
6 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00007 * This version of tr is adapted from Minix tr and was modified
Eric Andersencb81e642003-07-14 21:21:08 +00008 * by Erik Andersen <andersen@codepoet.org> to be used in busybox.
Erik Andersenfb002d02000-03-05 08:07:00 +00009 *
Erik Andersen8f8d6d52000-05-01 22:30:37 +000010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Eric Andersenc7bda1c2004-03-15 08:29:22 +000023 *
Erik Andersen8f8d6d52000-05-01 22:30:37 +000024 * Original copyright notice is retained at the end of this file.
Erik Andersenfb002d02000-03-05 08:07:00 +000025 */
26
Erik Andersenfb002d02000-03-05 08:07:00 +000027#include <stdio.h>
Erik Andersenfb002d02000-03-05 08:07:00 +000028#include <string.h>
Erik Andersen8f8d6d52000-05-01 22:30:37 +000029#include <stdlib.h>
Erik Andersenfb002d02000-03-05 08:07:00 +000030#include <unistd.h>
Rob Landleyf1048142005-10-08 21:21:08 +000031#include <ctype.h>
Erik Andersen8f8d6d52000-05-01 22:30:37 +000032#include <sys/types.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000033#include "busybox.h"
Erik Andersen330fd2b2000-05-19 05:35:19 +000034
Eric Andersen22ecf042001-07-02 17:32:40 +000035#define ASCII 0377
Erik Andersenfb002d02000-03-05 08:07:00 +000036
Mark Whitley8b7a0d82001-05-24 21:31:09 +000037/* some "globals" shared across this file */
Erik Andersen8f8d6d52000-05-01 22:30:37 +000038static char com_fl, del_fl, sq_fl;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000039static short in_index, out_index;
Mark Whitley59ab0252001-01-23 22:30:04 +000040/* these last are pointers to static buffers declared in tr_main */
"Vladimir N. Oleynik"6f347ef2005-10-15 10:23:55 +000041static unsigned char *poutput;
Mark Whitley59ab0252001-01-23 22:30:04 +000042static unsigned char *pvector;
43static char *pinvec, *poutvec;
Erik Andersenfb002d02000-03-05 08:07:00 +000044
"Vladimir N. Oleynik"6f347ef2005-10-15 10:23:55 +000045#define input bb_common_bufsiz1
Erik Andersenfb002d02000-03-05 08:07:00 +000046
Eric Anderseneaecbf32001-10-31 10:41:31 +000047static void convert(void)
Erik Andersenfb002d02000-03-05 08:07:00 +000048{
Erik Andersen8f8d6d52000-05-01 22:30:37 +000049 short read_chars = 0;
50 short c, coded;
51 short last = -1;
Erik Andersenfb002d02000-03-05 08:07:00 +000052
Erik Andersen8f8d6d52000-05-01 22:30:37 +000053 for (;;) {
54 if (in_index == read_chars) {
"Vladimir N. Oleynik"6f347ef2005-10-15 10:23:55 +000055 if ((read_chars = read(0, input, BUFSIZ)) <= 0) {
Mark Whitley59ab0252001-01-23 22:30:04 +000056 if (write(1, (char *) poutput, out_index) != out_index)
Manuel Novoa III cad53642003-03-19 09:13:01 +000057 bb_error_msg(bb_msg_write_error);
Erik Andersen8f8d6d52000-05-01 22:30:37 +000058 exit(0);
Erik Andersenfb002d02000-03-05 08:07:00 +000059 }
Erik Andersen8f8d6d52000-05-01 22:30:37 +000060 in_index = 0;
61 }
"Vladimir N. Oleynik"6f347ef2005-10-15 10:23:55 +000062 c = input[in_index++];
Mark Whitley59ab0252001-01-23 22:30:04 +000063 coded = pvector[c];
64 if (del_fl && pinvec[c])
Erik Andersen8f8d6d52000-05-01 22:30:37 +000065 continue;
Mark Whitley59ab0252001-01-23 22:30:04 +000066 if (sq_fl && last == coded && (pinvec[c] || poutvec[coded]))
Erik Andersen8f8d6d52000-05-01 22:30:37 +000067 continue;
Mark Whitley59ab0252001-01-23 22:30:04 +000068 poutput[out_index++] = last = coded;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000069 if (out_index == BUFSIZ) {
Eric Andersen5a4a46a2001-07-09 21:32:29 +000070 if (write(1, (char *) poutput, out_index) != out_index)
Manuel Novoa III cad53642003-03-19 09:13:01 +000071 bb_error_msg_and_die(bb_msg_write_error);
Erik Andersen8f8d6d52000-05-01 22:30:37 +000072 out_index = 0;
73 }
Erik Andersenfb002d02000-03-05 08:07:00 +000074 }
75
Erik Andersenfb002d02000-03-05 08:07:00 +000076 /* NOTREACHED */
Erik Andersen8f8d6d52000-05-01 22:30:37 +000077}
78
Eric Andersen00143ba2000-07-13 16:40:41 +000079static void map(register unsigned char *string1, unsigned int string1_len,
80 register unsigned char *string2, unsigned int string2_len)
Erik Andersen8f8d6d52000-05-01 22:30:37 +000081{
82 unsigned char last = '0';
Eric Andersen00143ba2000-07-13 16:40:41 +000083 unsigned int i, j;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000084
Eric Andersen00143ba2000-07-13 16:40:41 +000085 for (j = 0, i = 0; i < string1_len; i++) {
86 if (string2_len <= j)
Mark Whitley59ab0252001-01-23 22:30:04 +000087 pvector[string1[i]] = last;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000088 else
Mark Whitley59ab0252001-01-23 22:30:04 +000089 pvector[string1[i]] = last = string2[j++];
Erik Andersen8f8d6d52000-05-01 22:30:37 +000090 }
91}
92
Mark Whitley8b7a0d82001-05-24 21:31:09 +000093/* supported constructs:
94 * Ranges, e.g., [0-9] ==> 0123456789
95 * Escapes, e.g., \a ==> Control-G
Rob Landleyf1048142005-10-08 21:21:08 +000096 * Character classes, e.g. [:upper:] ==> A ... Z
Mark Whitley8b7a0d82001-05-24 21:31:09 +000097 */
Eric Andersene5dfced2001-04-09 22:48:12 +000098static unsigned int expand(const char *arg, register unsigned char *buffer)
Erik Andersen8f8d6d52000-05-01 22:30:37 +000099{
Eric Andersen00143ba2000-07-13 16:40:41 +0000100 unsigned char *buffer_start = buffer;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000101 int i, ac;
102
103 while (*arg) {
104 if (*arg == '\\') {
105 arg++;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000106 *buffer++ = bb_process_escape_sequence(&arg);
Eric Andersen5a4a46a2001-07-09 21:32:29 +0000107 } else if (*(arg+1) == '-') {
108 ac = *(arg+2);
109 if(ac == 0) {
110 *buffer++ = *arg++;
111 continue;
112 }
113 i = *arg;
114 while (i <= ac)
115 *buffer++ = i++;
116 arg += 3; /* Skip the assumed a-z */
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000117 } else if (*arg == '[') {
118 arg++;
Rob Landleyf1048142005-10-08 21:21:08 +0000119 if (ENABLE_FEATURE_TR_CLASSES && *arg++ == ':') {
120 if (strncmp(arg, "alpha", 5) == 0) {
121 for (i = 'A'; i <= 'Z'; i++)
122 *buffer++ = i;
123 for (i = 'a'; i <= 'z'; i++)
124 *buffer++ = i;
125 }
126 else if (strncmp(arg, "alnum", 5) == 0) {
127 for (i = 'A'; i <= 'Z'; i++)
128 *buffer++ = i;
129 for (i = 'a'; i <= 'z'; i++)
130 *buffer++ = i;
131 for (i = '0'; i <= '9'; i++)
132 *buffer++ = i;
133 }
134 else if (strncmp(arg, "digit", 5) == 0)
135 for (i = '0'; i <= '9'; i++)
136 *buffer++ = i;
137 else if (strncmp(arg, "lower", 5) == 0)
138 for (i = 'a'; i <= 'z'; i++)
139 *buffer++ = i;
140 else if (strncmp(arg, "upper", 5) == 0)
141 for (i = 'A'; i <= 'Z'; i++)
142 *buffer++ = i;
143 else if (strncmp(arg, "space", 5) == 0)
144 strcat(buffer, " \f\n\r\t\v");
145 else if (strncmp(arg, "blank", 5) == 0)
146 strcat(buffer, " \t");
147 /* gcc gives a warning if braces aren't used here */
148 else if (strncmp(arg, "punct", 5) == 0) {
149 for (i = 0; i <= ASCII; i++)
150 if (isprint(i) && (!isalnum(i)) && (!isspace(i)))
151 *buffer++ = i;
152 }
153 else if (strncmp(arg, "cntrl", 5) == 0) {
154 for (i = 0; i <= ASCII; i++)
155 if (iscntrl(i))
156 *buffer++ = i;
157 }
158 else {
159 strcat(buffer, "[:");
160 arg++;
161 continue;
162 }
163 break;
164 }
165 if (ENABLE_FEATURE_TR_EQUIV && *arg++ == '=') {
166 *buffer++ = *arg;
167 /* skip the closing =] */
168 arg += 3;
169 continue;
170 }
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000171 if (*arg++ != '-') {
172 *buffer++ = '[';
173 arg -= 2;
174 continue;
175 }
Rob Landleyf1048142005-10-08 21:21:08 +0000176 i = *arg++;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000177 ac = *arg++;
178 while (i <= ac)
179 *buffer++ = i++;
Mark Whitley8b7a0d82001-05-24 21:31:09 +0000180 arg++; /* Skip the assumed ']' */
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000181 } else
182 *buffer++ = *arg++;
183 }
Eric Andersen00143ba2000-07-13 16:40:41 +0000184
185 return (buffer - buffer_start);
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000186}
187
Eric Andersenfad04fd2000-07-14 06:49:52 +0000188static int complement(unsigned char *buffer, int buffer_len)
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000189{
Eric Andersen1ca20a72001-03-21 07:34:27 +0000190 register short i, j, ix;
Eric Andersenfad04fd2000-07-14 06:49:52 +0000191 char conv[ASCII + 2];
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000192
Eric Andersen1ca20a72001-03-21 07:34:27 +0000193 ix = 0;
Eric Andersen00143ba2000-07-13 16:40:41 +0000194 for (i = 0; i <= ASCII; i++) {
195 for (j = 0; j < buffer_len; j++)
196 if (buffer[j] == i)
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000197 break;
Eric Andersen00143ba2000-07-13 16:40:41 +0000198 if (j == buffer_len)
Eric Andersen1ca20a72001-03-21 07:34:27 +0000199 conv[ix++] = i & ASCII;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000200 }
Eric Andersen1ca20a72001-03-21 07:34:27 +0000201 memcpy(buffer, conv, ix);
202 return ix;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000203}
204
205extern int tr_main(int argc, char **argv)
206{
207 register unsigned char *ptr;
Eric Andersenfad04fd2000-07-14 06:49:52 +0000208 int output_length=0, input_length;
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000209 int idx = 1;
Eric Andersenfad04fd2000-07-14 06:49:52 +0000210 int i;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000211 RESERVE_CONFIG_BUFFER(output, BUFSIZ);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000212 RESERVE_CONFIG_UBUFFER(vector, ASCII+1);
213 RESERVE_CONFIG_BUFFER(invec, ASCII+1);
214 RESERVE_CONFIG_BUFFER(outvec, ASCII+1);
Mark Whitley59ab0252001-01-23 22:30:04 +0000215
216 /* ... but make them available globally */
217 poutput = output;
Mark Whitley59ab0252001-01-23 22:30:04 +0000218 pvector = vector;
219 pinvec = invec;
220 poutvec = outvec;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000221
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000222 if (argc > 1 && argv[idx][0] == '-') {
223 for (ptr = (unsigned char *) &argv[idx][1]; *ptr; ptr++) {
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000224 switch (*ptr) {
225 case 'c':
226 com_fl = TRUE;
227 break;
228 case 'd':
229 del_fl = TRUE;
230 break;
231 case 's':
232 sq_fl = TRUE;
233 break;
234 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000235 bb_show_usage();
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000236 }
237 }
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000238 idx++;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000239 }
240 for (i = 0; i <= ASCII; i++) {
241 vector[i] = i;
242 invec[i] = outvec[i] = FALSE;
243 }
244
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000245 if (argv[idx] != NULL) {
246 input_length = expand(argv[idx++], input);
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000247 if (com_fl)
Eric Andersen00143ba2000-07-13 16:40:41 +0000248 input_length = complement(input, input_length);
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000249 if (argv[idx] != NULL) {
250 if (*argv[idx] == '\0')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000251 bb_error_msg_and_die("STRING2 cannot be empty");
Eric Andersenf6aa13d2001-03-23 17:08:21 +0000252 output_length = expand(argv[idx], output);
Eric Andersen00143ba2000-07-13 16:40:41 +0000253 map(input, input_length, output, output_length);
Eric Andersena03d86c2000-07-10 16:38:50 +0000254 }
Eric Andersen00143ba2000-07-13 16:40:41 +0000255 for (i = 0; i < input_length; i++)
Eric Andersened438062004-03-12 22:10:40 +0000256 invec[(unsigned char)input[i]] = TRUE;
Eric Andersen00143ba2000-07-13 16:40:41 +0000257 for (i = 0; i < output_length; i++)
Eric Andersened438062004-03-12 22:10:40 +0000258 outvec[(unsigned char)output[i]] = TRUE;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000259 }
260 convert();
Erik Andersenfb002d02000-03-05 08:07:00 +0000261 return (0);
262}
263
Erik Andersenfb002d02000-03-05 08:07:00 +0000264/*
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000265 * Copyright (c) 1987,1997, Prentice Hall
266 * All rights reserved.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000267 *
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000268 * Redistribution and use of the MINIX operating system in source and
269 * binary forms, with or without modification, are permitted provided
270 * that the following conditions are met:
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000271 *
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000272 * Redistributions of source code must retain the above copyright
273 * notice, this list of conditions and the following disclaimer.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000274 *
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000275 * Redistributions in binary form must reproduce the above
276 * copyright notice, this list of conditions and the following
277 * disclaimer in the documentation and/or other materials provided
278 * with the distribution.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000279 *
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000280 * Neither the name of Prentice Hall nor the names of the software
281 * authors or contributors may be used to endorse or promote
282 * products derived from this software without specific prior
283 * written permission.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000284 *
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000285 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS, AUTHORS, AND
286 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
287 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
288 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
289 * IN NO EVENT SHALL PRENTICE HALL OR ANY AUTHORS OR CONTRIBUTORS BE
290 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
291 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
292 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
293 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
294 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
295 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
296 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
297 *
Erik Andersenfb002d02000-03-05 08:07:00 +0000298 */
Erik Andersenfb002d02000-03-05 08:07:00 +0000299