blob: d21e672fe0a864c7b294fdb861cadcc87ba02ac4 [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 *
7 * This version of tr is adapted from Minix tr and was modified
8 * by Erik Andersen <andersee@debian.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
23 *
24 * Original copyright notice is retained at the end of this file.
Erik Andersenfb002d02000-03-05 08:07:00 +000025 */
26
Eric Andersen3570a342000-09-25 21:45:58 +000027#include "busybox.h"
Erik Andersenfb002d02000-03-05 08:07:00 +000028#include <stdio.h>
Erik Andersenfb002d02000-03-05 08:07:00 +000029#include <string.h>
Erik Andersen8f8d6d52000-05-01 22:30:37 +000030#include <stdlib.h>
Erik Andersenfb002d02000-03-05 08:07:00 +000031#include <unistd.h>
Erik Andersen8f8d6d52000-05-01 22:30:37 +000032#include <sys/types.h>
Erik Andersen330fd2b2000-05-19 05:35:19 +000033#define BB_DECLARE_EXTERN
34#define bb_need_write_error
35#include "messages.c"
36
Mark Whitley59ab0252001-01-23 22:30:04 +000037static const int ASCII = 0377;
Erik Andersenfb002d02000-03-05 08:07:00 +000038
Erik Andersen8f8d6d52000-05-01 22:30:37 +000039/* some glabals shared across this file */
40static char com_fl, del_fl, sq_fl;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000041static short in_index, out_index;
Mark Whitley59ab0252001-01-23 22:30:04 +000042/* these last are pointers to static buffers declared in tr_main */
43static unsigned char *poutput, *pinput;
44static unsigned char *pvector;
45static char *pinvec, *poutvec;
Erik Andersenfb002d02000-03-05 08:07:00 +000046
Erik Andersenfb002d02000-03-05 08:07:00 +000047
Erik Andersen8f8d6d52000-05-01 22:30:37 +000048static void convert()
Erik Andersenfb002d02000-03-05 08:07:00 +000049{
Erik Andersen8f8d6d52000-05-01 22:30:37 +000050 short read_chars = 0;
51 short c, coded;
52 short last = -1;
Erik Andersenfb002d02000-03-05 08:07:00 +000053
Erik Andersen8f8d6d52000-05-01 22:30:37 +000054 for (;;) {
55 if (in_index == read_chars) {
Mark Whitley59ab0252001-01-23 22:30:04 +000056 if ((read_chars = read(0, (char *) pinput, BUFSIZ)) <= 0) {
57 if (write(1, (char *) poutput, out_index) != out_index)
Erik Andersen330fd2b2000-05-19 05:35:19 +000058 write(2, write_error, strlen(write_error));
Erik Andersen8f8d6d52000-05-01 22:30:37 +000059 exit(0);
Erik Andersenfb002d02000-03-05 08:07:00 +000060 }
Erik Andersen8f8d6d52000-05-01 22:30:37 +000061 in_index = 0;
62 }
Mark Whitley59ab0252001-01-23 22:30:04 +000063 c = pinput[in_index++];
64 coded = pvector[c];
65 if (del_fl && pinvec[c])
Erik Andersen8f8d6d52000-05-01 22:30:37 +000066 continue;
Mark Whitley59ab0252001-01-23 22:30:04 +000067 if (sq_fl && last == coded && (pinvec[c] || poutvec[coded]))
Erik Andersen8f8d6d52000-05-01 22:30:37 +000068 continue;
Mark Whitley59ab0252001-01-23 22:30:04 +000069 poutput[out_index++] = last = coded;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000070 if (out_index == BUFSIZ) {
Mark Whitley59ab0252001-01-23 22:30:04 +000071 if (write(1, (char *) poutput, out_index) != out_index) {
Erik Andersen330fd2b2000-05-19 05:35:19 +000072 write(2, write_error, strlen(write_error));
Erik Andersen8f8d6d52000-05-01 22:30:37 +000073 exit(1);
Erik Andersenfb002d02000-03-05 08:07:00 +000074 }
Erik Andersen8f8d6d52000-05-01 22:30:37 +000075 out_index = 0;
76 }
Erik Andersenfb002d02000-03-05 08:07:00 +000077 }
78
Erik Andersenfb002d02000-03-05 08:07:00 +000079 /* NOTREACHED */
Erik Andersen8f8d6d52000-05-01 22:30:37 +000080}
81
Eric Andersen00143ba2000-07-13 16:40:41 +000082static void map(register unsigned char *string1, unsigned int string1_len,
83 register unsigned char *string2, unsigned int string2_len)
Erik Andersen8f8d6d52000-05-01 22:30:37 +000084{
85 unsigned char last = '0';
Eric Andersen00143ba2000-07-13 16:40:41 +000086 unsigned int i, j;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000087
Eric Andersen00143ba2000-07-13 16:40:41 +000088 for (j = 0, i = 0; i < string1_len; i++) {
89 if (string2_len <= j)
Mark Whitley59ab0252001-01-23 22:30:04 +000090 pvector[string1[i]] = last;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000091 else
Mark Whitley59ab0252001-01-23 22:30:04 +000092 pvector[string1[i]] = last = string2[j++];
Erik Andersen8f8d6d52000-05-01 22:30:37 +000093 }
94}
95
Eric Andersen00143ba2000-07-13 16:40:41 +000096static unsigned int expand(char *arg, register unsigned char *buffer)
Erik Andersen8f8d6d52000-05-01 22:30:37 +000097{
Eric Andersen00143ba2000-07-13 16:40:41 +000098 unsigned char *buffer_start = buffer;
Erik Andersen8f8d6d52000-05-01 22:30:37 +000099 int i, ac;
100
101 while (*arg) {
102 if (*arg == '\\') {
103 arg++;
Eric Andersenf7cf2f72000-07-05 17:26:35 +0000104 *buffer++ = process_escape_sequence(&arg);
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000105 } else if (*arg == '[') {
106 arg++;
107 i = *arg++;
108 if (*arg++ != '-') {
109 *buffer++ = '[';
110 arg -= 2;
111 continue;
112 }
113 ac = *arg++;
114 while (i <= ac)
115 *buffer++ = i++;
116 arg++; /* Skip ']' */
117 } else
118 *buffer++ = *arg++;
119 }
Eric Andersen00143ba2000-07-13 16:40:41 +0000120
121 return (buffer - buffer_start);
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000122}
123
Eric Andersenfad04fd2000-07-14 06:49:52 +0000124static int complement(unsigned char *buffer, int buffer_len)
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000125{
Eric Andersen00143ba2000-07-13 16:40:41 +0000126 register short i, j, index;
Eric Andersenfad04fd2000-07-14 06:49:52 +0000127 char conv[ASCII + 2];
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000128
129 index = 0;
Eric Andersen00143ba2000-07-13 16:40:41 +0000130 for (i = 0; i <= ASCII; i++) {
131 for (j = 0; j < buffer_len; j++)
132 if (buffer[j] == i)
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000133 break;
Eric Andersen00143ba2000-07-13 16:40:41 +0000134 if (j == buffer_len)
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000135 conv[index++] = i & ASCII;
136 }
Eric Andersen00143ba2000-07-13 16:40:41 +0000137 memcpy(buffer, conv, index);
138 return index;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000139}
140
141extern int tr_main(int argc, char **argv)
142{
143 register unsigned char *ptr;
Eric Andersenfad04fd2000-07-14 06:49:52 +0000144 int output_length=0, input_length;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000145 int index = 1;
Eric Andersenfad04fd2000-07-14 06:49:52 +0000146 int i;
Mark Whitley59ab0252001-01-23 22:30:04 +0000147 /* set up big arrays here (better than making a bunch of static arrays up top) */
148 unsigned char output[BUFSIZ], input[BUFSIZ];
149 unsigned char vector[ASCII + 1];
150 char invec[ASCII + 1], outvec[ASCII + 1];
151
152 /* ... but make them available globally */
153 poutput = output;
154 pinput = input;
155 pvector = vector;
156 pinvec = invec;
157 poutvec = outvec;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000158
159 if (argc > 1 && argv[index][0] == '-') {
160 for (ptr = (unsigned char *) &argv[index][1]; *ptr; ptr++) {
161 switch (*ptr) {
162 case 'c':
163 com_fl = TRUE;
164 break;
165 case 'd':
166 del_fl = TRUE;
167 break;
168 case 's':
169 sq_fl = TRUE;
170 break;
171 default:
Erik Andersen330fd2b2000-05-19 05:35:19 +0000172 usage(tr_usage);
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000173 }
174 }
175 index++;
176 }
177 for (i = 0; i <= ASCII; i++) {
178 vector[i] = i;
179 invec[i] = outvec[i] = FALSE;
180 }
181
182 if (argv[index] != NULL) {
Eric Andersen00143ba2000-07-13 16:40:41 +0000183 input_length = expand(argv[index++], input);
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000184 if (com_fl)
Eric Andersen00143ba2000-07-13 16:40:41 +0000185 input_length = complement(input, input_length);
Eric Andersena03d86c2000-07-10 16:38:50 +0000186 if (argv[index] != NULL) {
187 if (*argv[index] == '\0')
Mark Whitleyf57c9442000-12-07 19:56:48 +0000188 error_msg_and_die("STRING2 cannot be empty\n");
Eric Andersen00143ba2000-07-13 16:40:41 +0000189 output_length = expand(argv[index], output);
190 map(input, input_length, output, output_length);
Eric Andersena03d86c2000-07-10 16:38:50 +0000191 }
Eric Andersen00143ba2000-07-13 16:40:41 +0000192 for (i = 0; i < input_length; i++)
193 invec[input[i]] = TRUE;
194 for (i = 0; i < output_length; i++)
195 outvec[output[i]] = TRUE;
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000196 }
197 convert();
Erik Andersenfb002d02000-03-05 08:07:00 +0000198 return (0);
199}
200
Erik Andersenfb002d02000-03-05 08:07:00 +0000201/*
Erik Andersen8f8d6d52000-05-01 22:30:37 +0000202 * Copyright (c) 1987,1997, Prentice Hall
203 * All rights reserved.
204 *
205 * Redistribution and use of the MINIX operating system in source and
206 * binary forms, with or without modification, are permitted provided
207 * that the following conditions are met:
208 *
209 * Redistributions of source code must retain the above copyright
210 * notice, this list of conditions and the following disclaimer.
211 *
212 * Redistributions in binary form must reproduce the above
213 * copyright notice, this list of conditions and the following
214 * disclaimer in the documentation and/or other materials provided
215 * with the distribution.
216 *
217 * Neither the name of Prentice Hall nor the names of the software
218 * authors or contributors may be used to endorse or promote
219 * products derived from this software without specific prior
220 * written permission.
221 *
222 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS, AUTHORS, AND
223 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
224 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
225 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
226 * IN NO EVENT SHALL PRENTICE HALL OR ANY AUTHORS OR CONTRIBUTORS BE
227 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
228 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
229 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
230 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
231 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
232 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
233 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
234 *
Erik Andersenfb002d02000-03-05 08:07:00 +0000235 */
Erik Andersenfb002d02000-03-05 08:07:00 +0000236