a5d068262bb636488e1ed6adf7ffb70a1bc3ef3f
[oweals/busybox.git] / coreutils / tr.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini tr implementation for busybox
4  *
5  * 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.
9  *
10  * 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.
25  */
26
27 #include <stdio.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include <unistd.h>
31 #include <sys/types.h>
32 #include "busybox.h"
33
34 /* This must be a #define, since when DODEBUG and BUFFERS_GO_IN_BSS are
35  * enabled, we otherwise get a "storage size isn't constant error. */
36 #define ASCII 0377
37
38 /* some "globals" shared across this file */
39 static char com_fl, del_fl, sq_fl;
40 static short in_index, out_index;
41 /* these last are pointers to static buffers declared in tr_main */
42 static unsigned char *poutput, *pinput;
43 static unsigned char *pvector;
44 static char *pinvec, *poutvec;
45
46
47 static void convert()
48 {
49         short read_chars = 0;
50         short c, coded;
51         short last = -1;
52
53         for (;;) {
54                 if (in_index == read_chars) {
55                         if ((read_chars = read(0, (char *) pinput, BUFSIZ)) <= 0) {
56                                 if (write(1, (char *) poutput, out_index) != out_index)
57                                         write(2, write_error, strlen(write_error));
58                                 exit(0);
59                         }
60                         in_index = 0;
61                 }
62                 c = pinput[in_index++];
63                 coded = pvector[c];
64                 if (del_fl && pinvec[c])
65                         continue;
66                 if (sq_fl && last == coded && (pinvec[c] || poutvec[coded]))
67                         continue;
68                 poutput[out_index++] = last = coded;
69                 if (out_index == BUFSIZ) {
70                         if (write(1, (char *) poutput, out_index) != out_index) {
71                                 write(2, write_error, strlen(write_error));
72                                 exit(1);
73                         }
74                         out_index = 0;
75                 }
76         }
77
78         /* NOTREACHED */
79 }
80
81 static void map(register unsigned char *string1, unsigned int string1_len,
82                 register unsigned char *string2, unsigned int string2_len)
83 {
84         unsigned char last = '0';
85         unsigned int i, j;
86
87         for (j = 0, i = 0; i < string1_len; i++) {
88                 if (string2_len <= j)
89                         pvector[string1[i]] = last;
90                 else
91                         pvector[string1[i]] = last = string2[j++];
92         }
93 }
94
95 /* supported constructs:
96  *   Ranges,  e.g.,  [0-9]  ==>  0123456789
97  *   Escapes, e.g.,  \a     ==>  Control-G
98  */
99 static unsigned int expand(const char *arg, register unsigned char *buffer)
100 {
101         unsigned char *buffer_start = buffer;
102         int i, ac;
103
104         while (*arg) {
105                 if (*arg == '\\') {
106                         arg++;
107                         *buffer++ = process_escape_sequence(&arg);
108                 } else if (*arg == '[') {
109                         arg++;
110                         i = *arg++;
111                         if (*arg++ != '-') {
112                                 *buffer++ = '[';
113                                 arg -= 2;
114                                 continue;
115                         }
116                         ac = *arg++;
117                         while (i <= ac)
118                                 *buffer++ = i++;
119                         arg++;                          /* Skip the assumed ']' */
120                 } else
121                         *buffer++ = *arg++;
122         }
123
124         return (buffer - buffer_start);
125 }
126
127 static int complement(unsigned char *buffer, int buffer_len)
128 {
129         register short i, j, ix;
130         char conv[ASCII + 2];
131
132         ix = 0;
133         for (i = 0; i <= ASCII; i++) {
134                 for (j = 0; j < buffer_len; j++)
135                         if (buffer[j] == i)
136                                 break;
137                 if (j == buffer_len)
138                         conv[ix++] = i & ASCII;
139         }
140         memcpy(buffer, conv, ix);
141         return ix;
142 }
143
144 extern int tr_main(int argc, char **argv)
145 {
146         register unsigned char *ptr;
147         int output_length=0, input_length;
148         int idx = 1;
149         int i;
150         RESERVE_BB_BUFFER(output, BUFSIZ);
151         RESERVE_BB_BUFFER(input,  BUFSIZ);
152         RESERVE_BB_UBUFFER(vector, ASCII+1);
153         RESERVE_BB_BUFFER(invec,  ASCII+1);
154         RESERVE_BB_BUFFER(outvec, ASCII+1);
155
156         /* ... but make them available globally */
157         poutput = output;
158         pinput  = input;
159         pvector = vector;
160         pinvec  = invec;
161         poutvec = outvec;
162
163         if (argc > 1 && argv[idx][0] == '-') {
164                 for (ptr = (unsigned char *) &argv[idx][1]; *ptr; ptr++) {
165                         switch (*ptr) {
166                         case 'c':
167                                 com_fl = TRUE;
168                                 break;
169                         case 'd':
170                                 del_fl = TRUE;
171                                 break;
172                         case 's':
173                                 sq_fl = TRUE;
174                                 break;
175                         default:
176                                 show_usage();
177                         }
178                 }
179                 idx++;
180         }
181         for (i = 0; i <= ASCII; i++) {
182                 vector[i] = i;
183                 invec[i] = outvec[i] = FALSE;
184         }
185
186         if (argv[idx] != NULL) {
187                 input_length = expand(argv[idx++], input);
188                 if (com_fl)
189                         input_length = complement(input, input_length);
190                 if (argv[idx] != NULL) {
191                         if (*argv[idx] == '\0')
192                                 error_msg_and_die("STRING2 cannot be empty");
193                         output_length = expand(argv[idx], output);
194                         map(input, input_length, output, output_length);
195                 }
196                 for (i = 0; i < input_length; i++)
197                         invec[(int)input[i]] = TRUE;
198                 for (i = 0; i < output_length; i++)
199                         outvec[(int)output[i]] = TRUE;
200         }
201         convert();
202         return (0);
203 }
204
205 /*
206  * Copyright (c) 1987,1997, Prentice Hall
207  * All rights reserved.
208  * 
209  * Redistribution and use of the MINIX operating system in source and
210  * binary forms, with or without modification, are permitted provided
211  * that the following conditions are met:
212  * 
213  * Redistributions of source code must retain the above copyright
214  * notice, this list of conditions and the following disclaimer.
215  * 
216  * Redistributions in binary form must reproduce the above
217  * copyright notice, this list of conditions and the following
218  * disclaimer in the documentation and/or other materials provided
219  * with the distribution.
220  * 
221  * Neither the name of Prentice Hall nor the names of the software
222  * authors or contributors may be used to endorse or promote
223  * products derived from this software without specific prior
224  * written permission.
225  * 
226  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS, AUTHORS, AND
227  * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
228  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
229  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
230  * IN NO EVENT SHALL PRENTICE HALL OR ANY AUTHORS OR CONTRIBUTORS BE
231  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
232  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
233  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
234  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
235  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
236  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
237  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
238  *
239  */
240