2000-03-05 13:37:00 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2000-05-02 04:00:37 +05:30
|
|
|
* Mini tr implementation for busybox
|
2000-03-05 13:37:00 +05:30
|
|
|
*
|
2000-05-02 05:37:56 +05:30
|
|
|
* Copyright (c) Michiel Huisjes
|
|
|
|
*
|
|
|
|
* This version of tr is adapted from Minix tr and was modified
|
|
|
|
* by Erik Andersen <andersee@debian.org> to be used in busybox.
|
2000-03-05 13:37:00 +05:30
|
|
|
*
|
2000-05-02 04:00:37 +05:30
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
* Original copyright notice is retained at the end of this file.
|
2000-03-05 13:37:00 +05:30
|
|
|
*/
|
|
|
|
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
2000-03-05 13:37:00 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2000-05-02 04:00:37 +05:30
|
|
|
#include <stdlib.h>
|
2000-03-05 13:37:00 +05:30
|
|
|
#include <unistd.h>
|
2000-05-02 04:00:37 +05:30
|
|
|
#include <sys/types.h>
|
2000-05-19 11:05:19 +05:30
|
|
|
#define BB_DECLARE_EXTERN
|
|
|
|
#define bb_need_write_error
|
|
|
|
#include "messages.c"
|
|
|
|
|
2001-01-24 04:00:04 +05:30
|
|
|
static const int ASCII = 0377;
|
2000-03-05 13:37:00 +05:30
|
|
|
|
2000-05-02 04:00:37 +05:30
|
|
|
/* some glabals shared across this file */
|
|
|
|
static char com_fl, del_fl, sq_fl;
|
|
|
|
static short in_index, out_index;
|
2001-01-24 04:00:04 +05:30
|
|
|
/* these last are pointers to static buffers declared in tr_main */
|
|
|
|
static unsigned char *poutput, *pinput;
|
|
|
|
static unsigned char *pvector;
|
|
|
|
static char *pinvec, *poutvec;
|
2000-03-05 13:37:00 +05:30
|
|
|
|
|
|
|
|
2000-05-02 04:00:37 +05:30
|
|
|
static void convert()
|
2000-03-05 13:37:00 +05:30
|
|
|
{
|
2000-05-02 04:00:37 +05:30
|
|
|
short read_chars = 0;
|
|
|
|
short c, coded;
|
|
|
|
short last = -1;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
if (in_index == read_chars) {
|
2001-01-24 04:00:04 +05:30
|
|
|
if ((read_chars = read(0, (char *) pinput, BUFSIZ)) <= 0) {
|
|
|
|
if (write(1, (char *) poutput, out_index) != out_index)
|
2000-05-19 11:05:19 +05:30
|
|
|
write(2, write_error, strlen(write_error));
|
2000-05-02 04:00:37 +05:30
|
|
|
exit(0);
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
2000-05-02 04:00:37 +05:30
|
|
|
in_index = 0;
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
2001-01-24 04:00:04 +05:30
|
|
|
c = pinput[in_index++];
|
|
|
|
coded = pvector[c];
|
|
|
|
if (del_fl && pinvec[c])
|
2000-05-02 04:00:37 +05:30
|
|
|
continue;
|
2001-01-24 04:00:04 +05:30
|
|
|
if (sq_fl && last == coded && (pinvec[c] || poutvec[coded]))
|
2000-05-02 04:00:37 +05:30
|
|
|
continue;
|
2001-01-24 04:00:04 +05:30
|
|
|
poutput[out_index++] = last = coded;
|
2000-05-02 04:00:37 +05:30
|
|
|
if (out_index == BUFSIZ) {
|
2001-01-24 04:00:04 +05:30
|
|
|
if (write(1, (char *) poutput, out_index) != out_index) {
|
2000-05-19 11:05:19 +05:30
|
|
|
write(2, write_error, strlen(write_error));
|
2000-05-02 04:00:37 +05:30
|
|
|
exit(1);
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
2000-05-02 04:00:37 +05:30
|
|
|
out_index = 0;
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
2000-07-13 22:10:41 +05:30
|
|
|
static void map(register unsigned char *string1, unsigned int string1_len,
|
|
|
|
register unsigned char *string2, unsigned int string2_len)
|
2000-03-05 13:37:00 +05:30
|
|
|
{
|
2000-05-02 04:00:37 +05:30
|
|
|
unsigned char last = '0';
|
2000-07-13 22:10:41 +05:30
|
|
|
unsigned int i, j;
|
2000-05-02 04:00:37 +05:30
|
|
|
|
2000-07-13 22:10:41 +05:30
|
|
|
for (j = 0, i = 0; i < string1_len; i++) {
|
|
|
|
if (string2_len <= j)
|
2001-01-24 04:00:04 +05:30
|
|
|
pvector[string1[i]] = last;
|
2000-05-02 04:00:37 +05:30
|
|
|
else
|
2001-01-24 04:00:04 +05:30
|
|
|
pvector[string1[i]] = last = string2[j++];
|
2000-05-02 04:00:37 +05:30
|
|
|
}
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
|
|
|
|
2000-07-13 22:10:41 +05:30
|
|
|
static unsigned int expand(char *arg, register unsigned char *buffer)
|
2000-03-05 13:37:00 +05:30
|
|
|
{
|
2000-07-13 22:10:41 +05:30
|
|
|
unsigned char *buffer_start = buffer;
|
2000-05-02 04:00:37 +05:30
|
|
|
int i, ac;
|
|
|
|
|
|
|
|
while (*arg) {
|
|
|
|
if (*arg == '\\') {
|
|
|
|
arg++;
|
2000-07-05 22:56:35 +05:30
|
|
|
*buffer++ = process_escape_sequence(&arg);
|
2000-05-02 04:00:37 +05:30
|
|
|
} else if (*arg == '[') {
|
|
|
|
arg++;
|
|
|
|
i = *arg++;
|
|
|
|
if (*arg++ != '-') {
|
|
|
|
*buffer++ = '[';
|
|
|
|
arg -= 2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ac = *arg++;
|
|
|
|
while (i <= ac)
|
|
|
|
*buffer++ = i++;
|
|
|
|
arg++; /* Skip ']' */
|
|
|
|
} else
|
|
|
|
*buffer++ = *arg++;
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
2000-07-13 22:10:41 +05:30
|
|
|
|
|
|
|
return (buffer - buffer_start);
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
|
|
|
|
2000-07-14 12:19:52 +05:30
|
|
|
static int complement(unsigned char *buffer, int buffer_len)
|
2000-03-05 13:37:00 +05:30
|
|
|
{
|
2000-07-13 22:10:41 +05:30
|
|
|
register short i, j, index;
|
2000-07-14 12:19:52 +05:30
|
|
|
char conv[ASCII + 2];
|
2000-05-02 04:00:37 +05:30
|
|
|
|
|
|
|
index = 0;
|
2000-07-13 22:10:41 +05:30
|
|
|
for (i = 0; i <= ASCII; i++) {
|
|
|
|
for (j = 0; j < buffer_len; j++)
|
|
|
|
if (buffer[j] == i)
|
2000-05-02 04:00:37 +05:30
|
|
|
break;
|
2000-07-13 22:10:41 +05:30
|
|
|
if (j == buffer_len)
|
2000-05-02 04:00:37 +05:30
|
|
|
conv[index++] = i & ASCII;
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
2000-07-13 22:10:41 +05:30
|
|
|
memcpy(buffer, conv, index);
|
|
|
|
return index;
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
|
|
|
|
2000-05-02 04:00:37 +05:30
|
|
|
extern int tr_main(int argc, char **argv)
|
2000-03-05 13:37:00 +05:30
|
|
|
{
|
2000-05-02 04:00:37 +05:30
|
|
|
register unsigned char *ptr;
|
2000-07-14 12:19:52 +05:30
|
|
|
int output_length=0, input_length;
|
2000-05-02 04:00:37 +05:30
|
|
|
int index = 1;
|
2000-07-14 12:19:52 +05:30
|
|
|
int i;
|
2001-01-26 05:19:09 +05:30
|
|
|
RESERVE_BB_BUFFER(output, BUFSIZ);
|
|
|
|
RESERVE_BB_BUFFER(input, BUFSIZ);
|
|
|
|
RESERVE_BB_UBUFFER(vector, ASCII+1);
|
|
|
|
RESERVE_BB_BUFFER(invec, ASCII+1);
|
|
|
|
RESERVE_BB_BUFFER(outvec, ASCII+1);
|
2001-01-24 04:00:04 +05:30
|
|
|
|
|
|
|
/* ... but make them available globally */
|
|
|
|
poutput = output;
|
|
|
|
pinput = input;
|
|
|
|
pvector = vector;
|
|
|
|
pinvec = invec;
|
|
|
|
poutvec = outvec;
|
2000-05-02 04:00:37 +05:30
|
|
|
|
|
|
|
if (argc > 1 && argv[index][0] == '-') {
|
|
|
|
for (ptr = (unsigned char *) &argv[index][1]; *ptr; ptr++) {
|
|
|
|
switch (*ptr) {
|
|
|
|
case 'c':
|
|
|
|
com_fl = TRUE;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
del_fl = TRUE;
|
2000-03-05 13:37:00 +05:30
|
|
|
break;
|
2000-05-02 04:00:37 +05:30
|
|
|
case 's':
|
|
|
|
sq_fl = TRUE;
|
|
|
|
break;
|
|
|
|
default:
|
2000-05-19 11:05:19 +05:30
|
|
|
usage(tr_usage);
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
|
|
|
}
|
2000-05-02 04:00:37 +05:30
|
|
|
index++;
|
|
|
|
}
|
|
|
|
for (i = 0; i <= ASCII; i++) {
|
|
|
|
vector[i] = i;
|
|
|
|
invec[i] = outvec[i] = FALSE;
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
|
|
|
|
2000-05-02 04:00:37 +05:30
|
|
|
if (argv[index] != NULL) {
|
2000-07-13 22:10:41 +05:30
|
|
|
input_length = expand(argv[index++], input);
|
2000-05-02 04:00:37 +05:30
|
|
|
if (com_fl)
|
2000-07-13 22:10:41 +05:30
|
|
|
input_length = complement(input, input_length);
|
2000-07-10 22:08:50 +05:30
|
|
|
if (argv[index] != NULL) {
|
|
|
|
if (*argv[index] == '\0')
|
2001-02-01 00:30:21 +05:30
|
|
|
error_msg_and_die("STRING2 cannot be empty");
|
2000-07-13 22:10:41 +05:30
|
|
|
output_length = expand(argv[index], output);
|
|
|
|
map(input, input_length, output, output_length);
|
2000-07-10 22:08:50 +05:30
|
|
|
}
|
2000-07-13 22:10:41 +05:30
|
|
|
for (i = 0; i < input_length; i++)
|
2001-01-27 13:54:39 +05:30
|
|
|
invec[(int)input[i]] = TRUE;
|
2000-07-13 22:10:41 +05:30
|
|
|
for (i = 0; i < output_length; i++)
|
2001-01-27 13:54:39 +05:30
|
|
|
outvec[(int)output[i]] = TRUE;
|
2000-05-02 04:00:37 +05:30
|
|
|
}
|
|
|
|
convert();
|
|
|
|
return (0);
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-05-02 04:00:37 +05:30
|
|
|
* Copyright (c) 1987,1997, Prentice Hall
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use of the MINIX operating system in source and
|
|
|
|
* binary forms, with or without modification, are permitted provided
|
|
|
|
* that the following conditions are met:
|
|
|
|
*
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
* copyright notice, this list of conditions and the following
|
|
|
|
* disclaimer in the documentation and/or other materials provided
|
|
|
|
* with the distribution.
|
|
|
|
*
|
|
|
|
* Neither the name of Prentice Hall nor the names of the software
|
|
|
|
* authors or contributors may be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS, AUTHORS, AND
|
|
|
|
* CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL PRENTICE HALL OR ANY AUTHORS OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
|
|
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
|
|
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
|
|
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2000-03-05 13:37:00 +05:30
|
|
|
*/
|
|
|
|
|