hush/coreutils/tr.c

254 lines
6.0 KiB
C
Raw Normal View History

2000-03-05 08:07:00 +00:00
/* vi: set sw=4 ts=4: */
/*
* Mini tr implementation for busybox
2000-03-05 08:07:00 +00:00
*
** Copyright (c) 1987,1997, Prentice Hall All rights reserved.
*
* The name of Prentice Hall may not be used to endorse or promote
* products derived from this software without specific prior
* written permission.
*
2000-05-02 00:07:56 +00:00
* Copyright (c) Michiel Huisjes
*
* This version of tr is adapted from Minix tr and was modified
* by Erik Andersen <andersen@codepoet.org> to be used in busybox.
2000-03-05 08:07:00 +00:00
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
2000-03-05 08:07:00 +00:00
*/
#include "busybox.h"
2006-06-30 19:04:09 +00:00
// Even with -funsigned-char, gcc still complains about char as an array index.
#define GCC4_IS_STUPID int
#define ASCII 0377
2000-03-05 08:07:00 +00:00
/* some "globals" shared across this file */
static char com_fl, del_fl, sq_fl;
/* these last are pointers to static buffers declared in tr_main */
2006-06-30 19:04:09 +00:00
static char *poutput, *pvector, *pinvec, *poutvec;
2000-03-05 08:07:00 +00:00
2001-10-31 10:41:31 +00:00
static void convert(void)
2000-03-05 08:07:00 +00:00
{
int read_chars = 0, in_index = 0, out_index = 0, c, coded, last = -1;
for (;;) {
// If we're out of input, flush output and read more input.
if (in_index == read_chars) {
if (out_index) {
if (write(1, (char *) poutput, out_index) != out_index)
bb_error_msg_and_die(bb_msg_write_error);
out_index = 0;
}
if ((read_chars = read(0, bb_common_bufsiz1, BUFSIZ)) <= 0) {
if (write(1, (char *) poutput, out_index) != out_index)
2003-03-19 09:13:01 +00:00
bb_error_msg(bb_msg_write_error);
exit(0);
2000-03-05 08:07:00 +00:00
}
in_index = 0;
2000-03-05 08:07:00 +00:00
}
c = bb_common_bufsiz1[in_index++];
coded = pvector[c];
if (del_fl && pinvec[c])
continue;
if (sq_fl && last == coded && (pinvec[c] || poutvec[coded]))
continue;
poutput[out_index++] = last = coded;
2000-03-05 08:07:00 +00:00
}
/* NOTREACHED */
}
2006-06-30 19:04:09 +00:00
static void map(char *string1, unsigned int string1_len,
char *string2, unsigned int string2_len)
2000-03-05 08:07:00 +00:00
{
2006-06-30 19:04:09 +00:00
char last = '0';
unsigned int i, j;
for (j = 0, i = 0; i < string1_len; i++) {
if (string2_len <= j)
2006-06-30 19:04:09 +00:00
pvector[(GCC4_IS_STUPID)string1[i]] = last;
else
2006-06-30 19:04:09 +00:00
pvector[(GCC4_IS_STUPID)string1[i]] = last = string2[j++];
}
2000-03-05 08:07:00 +00:00
}
/* supported constructs:
* Ranges, e.g., [0-9] ==> 0123456789
* Escapes, e.g., \a ==> Control-G
* Character classes, e.g. [:upper:] ==> A ... Z
*/
2006-06-30 19:04:09 +00:00
static unsigned int expand(const char *arg, char *buffer)
2000-03-05 08:07:00 +00:00
{
2006-06-30 19:04:09 +00:00
char *buffer_start = buffer;
int i, ac;
while (*arg) {
if (*arg == '\\') {
arg++;
2003-03-19 09:13:01 +00:00
*buffer++ = bb_process_escape_sequence(&arg);
} else if (*(arg+1) == '-') {
ac = *(arg+2);
if(ac == 0) {
*buffer++ = *arg++;
continue;
}
i = *arg;
while (i <= ac)
*buffer++ = i++;
arg += 3; /* Skip the assumed a-z */
} else if (*arg == '[') {
arg++;
i = *arg++;
if (ENABLE_FEATURE_TR_CLASSES && i == ':') {
if (strncmp(arg, "alpha", 5) == 0) {
for (i = 'A'; i <= 'Z'; i++)
*buffer++ = i;
for (i = 'a'; i <= 'z'; i++)
*buffer++ = i;
}
else if (strncmp(arg, "alnum", 5) == 0) {
for (i = '0'; i <= '9'; i++)
*buffer++ = i;
for (i = 'A'; i <= 'Z'; i++)
*buffer++ = i;
for (i = 'a'; i <= 'z'; i++)
*buffer++ = i;
}
else if (strncmp(arg, "digit", 5) == 0)
for (i = '0'; i <= '9'; i++)
*buffer++ = i;
else if (strncmp(arg, "lower", 5) == 0)
for (i = 'a'; i <= 'z'; i++)
*buffer++ = i;
else if (strncmp(arg, "upper", 5) == 0)
for (i = 'A'; i <= 'Z'; i++)
*buffer++ = i;
else if (strncmp(arg, "space", 5) == 0) {
const char s[] = "\t\n\v\f\r ";
strcat((char*)buffer, s);
buffer += sizeof(s) - 1;
}
else if (strncmp(arg, "blank", 5) == 0) {
*buffer++ = '\t';
*buffer++ = ' ';
}
/* gcc gives a warning if braces aren't used here */
else if (strncmp(arg, "punct", 5) == 0) {
for (i = 0; i <= ASCII; i++)
if (isprint(i) && (!isalnum(i)) && (!isspace(i)))
*buffer++ = i;
}
else if (strncmp(arg, "cntrl", 5) == 0) {
for (i = 0; i <= ASCII; i++)
if (iscntrl(i))
*buffer++ = i;
}
else {
*buffer++ = '[';
*buffer++ = ':';
continue;
}
break;
}
if (ENABLE_FEATURE_TR_EQUIV && i == '=') {
*buffer++ = *arg;
/* skip the closing =] */
arg += 3;
continue;
}
if (*arg++ != '-') {
*buffer++ = '[';
arg -= 2;
continue;
}
ac = *arg++;
while (i <= ac)
*buffer++ = i++;
arg++; /* Skip the assumed ']' */
} else
*buffer++ = *arg++;
2000-03-05 08:07:00 +00:00
}
return (buffer - buffer_start);
2000-03-05 08:07:00 +00:00
}
2006-06-30 19:04:09 +00:00
static int complement(char *buffer, int buffer_len)
2000-03-05 08:07:00 +00:00
{
short i, j, ix;
2000-07-14 06:49:52 +00:00
char conv[ASCII + 2];
ix = 0;
for (i = 0; i <= ASCII; i++) {
for (j = 0; j < buffer_len; j++)
if (buffer[j] == i)
break;
if (j == buffer_len)
conv[ix++] = i & ASCII;
2000-03-05 08:07:00 +00:00
}
memcpy(buffer, conv, ix);
return ix;
2000-03-05 08:07:00 +00:00
}
int tr_main(int argc, char **argv)
2000-03-05 08:07:00 +00:00
{
unsigned char *ptr;
2000-07-14 06:49:52 +00:00
int output_length=0, input_length;
2001-03-23 17:08:21 +00:00
int idx = 1;
2000-07-14 06:49:52 +00:00
int i;
RESERVE_CONFIG_BUFFER(output, BUFSIZ);
RESERVE_CONFIG_BUFFER(vector, ASCII+1);
RESERVE_CONFIG_BUFFER(invec, ASCII+1);
RESERVE_CONFIG_BUFFER(outvec, ASCII+1);
/* ... but make them available globally */
2006-06-30 19:04:09 +00:00
poutput = output;
pvector = vector;
pinvec = invec;
poutvec = outvec;
2001-03-23 17:08:21 +00:00
if (argc > 1 && argv[idx][0] == '-') {
for (ptr = (unsigned char *) &argv[idx][1]; *ptr; ptr++) {
switch (*ptr) {
case 'c':
com_fl = TRUE;
break;
case 'd':
del_fl = TRUE;
2000-03-05 08:07:00 +00:00
break;
case 's':
sq_fl = TRUE;
break;
default:
2003-03-19 09:13:01 +00:00
bb_show_usage();
2000-03-05 08:07:00 +00:00
}
}
2001-03-23 17:08:21 +00:00
idx++;
}
for (i = 0; i <= ASCII; i++) {
vector[i] = i;
invec[i] = outvec[i] = FALSE;
2000-03-05 08:07:00 +00:00
}
2001-03-23 17:08:21 +00:00
if (argv[idx] != NULL) {
input_length = expand(argv[idx++], bb_common_bufsiz1);
if (com_fl)
input_length = complement(bb_common_bufsiz1, input_length);
2001-03-23 17:08:21 +00:00
if (argv[idx] != NULL) {
if (*argv[idx] == '\0')
2003-03-19 09:13:01 +00:00
bb_error_msg_and_die("STRING2 cannot be empty");
2006-06-30 19:04:09 +00:00
output_length = expand(argv[idx], output);
map(bb_common_bufsiz1, input_length, output, output_length);
}
for (i = 0; i < input_length; i++)
2006-06-30 19:04:09 +00:00
invec[(GCC4_IS_STUPID)bb_common_bufsiz1[i]] = TRUE;
for (i = 0; i < output_length; i++)
2006-06-30 19:04:09 +00:00
outvec[(GCC4_IS_STUPID)output[i]] = TRUE;
}
convert();
return (0);
2000-03-05 08:07:00 +00:00
}