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