Changed names of functions in utility.c and all affected files, to make
[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 "busybox.h"
28 #include <stdio.h>
29 #include <string.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32 #include <sys/types.h>
33 #define BB_DECLARE_EXTERN
34 #define bb_need_write_error
35 #include "messages.c"
36
37 #define ASCII           0377
38
39 /* some glabals shared across this file */
40 static char com_fl, del_fl, sq_fl;
41 static unsigned char output[BUFSIZ], input[BUFSIZ];
42 static unsigned char vector[ASCII + 1];
43 static char invec[ASCII + 1], outvec[ASCII + 1];
44 static short in_index, out_index;
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 *) input, BUFSIZ)) <= 0) {
56                                 if (write(1, (char *) output, out_index) != out_index)
57                                         write(2, write_error, strlen(write_error));
58                                 exit(0);
59                         }
60                         in_index = 0;
61                 }
62                 c = input[in_index++];
63                 coded = vector[c];
64                 if (del_fl && invec[c])
65                         continue;
66                 if (sq_fl && last == coded && (invec[c] || outvec[coded]))
67                         continue;
68                 output[out_index++] = last = coded;
69                 if (out_index == BUFSIZ) {
70                         if (write(1, (char *) output, 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                         vector[string1[i]] = last;
90                 else
91                         vector[string1[i]] = last = string2[j++];
92         }
93 }
94
95 static unsigned int expand(char *arg, register unsigned char *buffer)
96 {
97         unsigned char *buffer_start = buffer;
98         int i, ac;
99
100         while (*arg) {
101                 if (*arg == '\\') {
102                         arg++;
103                         *buffer++ = process_escape_sequence(&arg);
104                 } else if (*arg == '[') {
105                         arg++;
106                         i = *arg++;
107                         if (*arg++ != '-') {
108                                 *buffer++ = '[';
109                                 arg -= 2;
110                                 continue;
111                         }
112                         ac = *arg++;
113                         while (i <= ac)
114                                 *buffer++ = i++;
115                         arg++;                          /* Skip ']' */
116                 } else
117                         *buffer++ = *arg++;
118         }
119
120         return (buffer - buffer_start);
121 }
122
123 static int complement(unsigned char *buffer, int buffer_len)
124 {
125         register short i, j, index;
126         char conv[ASCII + 2];
127
128         index = 0;
129         for (i = 0; i <= ASCII; i++) {
130                 for (j = 0; j < buffer_len; j++)
131                         if (buffer[j] == i)
132                                 break;
133                 if (j == buffer_len)
134                         conv[index++] = i & ASCII;
135         }
136         memcpy(buffer, conv, index);
137         return index;
138 }
139
140 extern int tr_main(int argc, char **argv)
141 {
142         register unsigned char *ptr;
143         int output_length=0, input_length;
144         int index = 1;
145         int i;
146
147         if (argc > 1 && argv[index][0] == '-') {
148                 for (ptr = (unsigned char *) &argv[index][1]; *ptr; ptr++) {
149                         switch (*ptr) {
150                         case 'c':
151                                 com_fl = TRUE;
152                                 break;
153                         case 'd':
154                                 del_fl = TRUE;
155                                 break;
156                         case 's':
157                                 sq_fl = TRUE;
158                                 break;
159                         default:
160                                 usage(tr_usage);
161                         }
162                 }
163                 index++;
164         }
165         for (i = 0; i <= ASCII; i++) {
166                 vector[i] = i;
167                 invec[i] = outvec[i] = FALSE;
168         }
169
170         if (argv[index] != NULL) {
171                 input_length = expand(argv[index++], input);
172                 if (com_fl)
173                         input_length = complement(input, input_length);
174                 if (argv[index] != NULL) {
175                         if (*argv[index] == '\0')
176                                 error_msg_and_die("STRING2 cannot be empty\n");
177                         output_length = expand(argv[index], output);
178                         map(input, input_length, output, output_length);
179                 }
180                 for (i = 0; i < input_length; i++)
181                         invec[input[i]] = TRUE;
182                 for (i = 0; i < output_length; i++)
183                         outvec[output[i]] = TRUE;
184         }
185         convert();
186         return (0);
187 }
188
189 /*
190  * Copyright (c) 1987,1997, Prentice Hall
191  * All rights reserved.
192  * 
193  * Redistribution and use of the MINIX operating system in source and
194  * binary forms, with or without modification, are permitted provided
195  * that the following conditions are met:
196  * 
197  * Redistributions of source code must retain the above copyright
198  * notice, this list of conditions and the following disclaimer.
199  * 
200  * Redistributions in binary form must reproduce the above
201  * copyright notice, this list of conditions and the following
202  * disclaimer in the documentation and/or other materials provided
203  * with the distribution.
204  * 
205  * Neither the name of Prentice Hall nor the names of the software
206  * authors or contributors may be used to endorse or promote
207  * products derived from this software without specific prior
208  * written permission.
209  * 
210  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS, AUTHORS, AND
211  * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
212  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
213  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
214  * IN NO EVENT SHALL PRENTICE HALL OR ANY AUTHORS OR CONTRIBUTORS BE
215  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
216  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
217  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
218  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
219  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
220  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
221  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
222  *
223  */
224