clean up yet more annoying signed/unsigned mismatches and fixup
[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 <andersen@codepoet.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 <ctype.h>
32 #include <sys/types.h>
33 #include "busybox.h"
34
35 #define ASCII 0377
36
37 /* some "globals" shared across this file */
38 static char com_fl, del_fl, sq_fl;
39 static short in_index, out_index;
40 /* these last are pointers to static buffers declared in tr_main */
41 static unsigned char *poutput;
42 static unsigned char *pvector;
43 static unsigned char *pinvec, *poutvec;
44
45 #define input bb_common_bufsiz1
46
47 static void convert(void)
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, input, BUFSIZ)) <= 0) {
56                                 if (write(1, (char *) poutput, out_index) != out_index)
57                                         bb_error_msg(bb_msg_write_error);
58                                 exit(0);
59                         }
60                         in_index = 0;
61                 }
62                 c = input[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                                 bb_error_msg_and_die(bb_msg_write_error);
72                         out_index = 0;
73                 }
74         }
75
76         /* NOTREACHED */
77 }
78
79 static void map(register unsigned char *string1, unsigned int string1_len,
80                 register unsigned char *string2, unsigned int string2_len)
81 {
82         unsigned char last = '0';
83         unsigned int i, j;
84
85         for (j = 0, i = 0; i < string1_len; i++) {
86                 if (string2_len <= j)
87                         pvector[string1[i]] = last;
88                 else
89                         pvector[string1[i]] = last = string2[j++];
90         }
91 }
92
93 /* supported constructs:
94  *   Ranges,  e.g.,  [0-9]  ==>  0123456789
95  *   Escapes, e.g.,  \a     ==>  Control-G
96  *       Character classes, e.g. [:upper:] ==> A ... Z
97  */
98 static unsigned int expand(const char *arg, register unsigned char *buffer)
99 {
100         unsigned char *buffer_start = buffer;
101         int i, ac;
102
103         while (*arg) {
104                 if (*arg == '\\') {
105                         arg++;
106                         *buffer++ = bb_process_escape_sequence(&arg);
107                 } 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 */
117                 } else if (*arg == '[') {
118                         arg++;
119                         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((char*)buffer, " \f\n\r\t\v");
145                                 else if (strncmp(arg, "blank", 5) == 0)
146                                         strcat((char*)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((char*)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                         }
171                         if (*arg++ != '-') {
172                                 *buffer++ = '[';
173                                 arg -= 2;
174                                 continue;
175                         }
176                         i = *arg++;
177                         ac = *arg++;
178                         while (i <= ac)
179                                 *buffer++ = i++;
180                         arg++;                          /* Skip the assumed ']' */
181                 } else
182                         *buffer++ = *arg++;
183         }
184
185         return (buffer - buffer_start);
186 }
187
188 static int complement(unsigned char *buffer, int buffer_len)
189 {
190         register short i, j, ix;
191         char conv[ASCII + 2];
192
193         ix = 0;
194         for (i = 0; i <= ASCII; i++) {
195                 for (j = 0; j < buffer_len; j++)
196                         if (buffer[j] == i)
197                                 break;
198                 if (j == buffer_len)
199                         conv[ix++] = i & ASCII;
200         }
201         memcpy(buffer, conv, ix);
202         return ix;
203 }
204
205 extern int tr_main(int argc, char **argv)
206 {
207         register unsigned char *ptr;
208         int output_length=0, input_length;
209         int idx = 1;
210         int i;
211         RESERVE_CONFIG_BUFFER(output, BUFSIZ);
212         RESERVE_CONFIG_UBUFFER(vector, ASCII+1);
213         RESERVE_CONFIG_BUFFER(invec,  ASCII+1);
214         RESERVE_CONFIG_BUFFER(outvec, ASCII+1);
215
216         /* ... but make them available globally */
217         poutput = (unsigned char*)output;
218         pvector = (unsigned char*)vector;
219         pinvec  = (unsigned char*)invec;
220         poutvec = (unsigned char*)outvec;
221
222         if (argc > 1 && argv[idx][0] == '-') {
223                 for (ptr = (unsigned char *) &argv[idx][1]; *ptr; ptr++) {
224                         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:
235                                 bb_show_usage();
236                         }
237                 }
238                 idx++;
239         }
240         for (i = 0; i <= ASCII; i++) {
241                 vector[i] = i;
242                 invec[i] = outvec[i] = FALSE;
243         }
244
245         if (argv[idx] != NULL) {
246                 input_length = expand(argv[idx++], (unsigned char*)input);
247                 if (com_fl)
248                         input_length = complement((unsigned char*)input, input_length);
249                 if (argv[idx] != NULL) {
250                         if (*argv[idx] == '\0')
251                                 bb_error_msg_and_die("STRING2 cannot be empty");
252                         output_length = expand(argv[idx], (unsigned char*)output);
253                         map((unsigned char*)input, input_length, (unsigned char*)output, output_length);
254                 }
255                 for (i = 0; i < input_length; i++)
256                         invec[(unsigned char)input[i]] = TRUE;
257                 for (i = 0; i < output_length; i++)
258                         outvec[(unsigned char)output[i]] = TRUE;
259         }
260         convert();
261         return (0);
262 }
263
264 /*
265  * Copyright (c) 1987,1997, Prentice Hall
266  * All rights reserved.
267  *
268  * 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:
271  *
272  * Redistributions of source code must retain the above copyright
273  * notice, this list of conditions and the following disclaimer.
274  *
275  * 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.
279  *
280  * 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.
284  *
285  * 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  *
298  */
299