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
|
|
|
*
|
2006-06-30 22:05:40 +05:30
|
|
|
** 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 05:37:56 +05:30
|
|
|
* Copyright (c) Michiel Huisjes
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* This version of tr is adapted from Minix tr and was modified
|
2003-07-15 02:51:08 +05:30
|
|
|
* by Erik Andersen <andersen@codepoet.org> to be used in busybox.
|
2000-03-05 13:37:00 +05:30
|
|
|
*
|
2006-06-30 22:05:40 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2000-03-05 13:37:00 +05:30
|
|
|
*/
|
2007-03-30 20:13:27 +05:30
|
|
|
/* http://www.opengroup.org/onlinepubs/009695399/utilities/tr.html
|
|
|
|
* TODO: xdigit, graph, print
|
|
|
|
*/
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2000-05-19 11:05:19 +05:30
|
|
|
|
2001-07-02 23:02:40 +05:30
|
|
|
#define ASCII 0377
|
2000-03-05 13:37:00 +05:30
|
|
|
|
2007-06-04 15:46:52 +05:30
|
|
|
static void map(char *pvector,
|
|
|
|
unsigned char *string1, unsigned int string1_len,
|
2007-03-30 20:13:27 +05:30
|
|
|
unsigned char *string2, unsigned int string2_len)
|
2000-03-05 13:37:00 +05:30
|
|
|
{
|
2006-07-01 00:34:09 +05:30
|
|
|
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)
|
2007-03-30 20:13:27 +05:30
|
|
|
pvector[string1[i]] = last;
|
2000-05-02 04:00:37 +05:30
|
|
|
else
|
2007-03-30 20:13:27 +05:30
|
|
|
pvector[string1[i]] = last = string2[j++];
|
2000-05-02 04:00:37 +05:30
|
|
|
}
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
|
|
|
|
2001-05-25 03:01:09 +05:30
|
|
|
/* supported constructs:
|
2007-11-14 03:52:29 +05:30
|
|
|
* Ranges, e.g., 0-9 ==> 0123456789
|
|
|
|
* Ranges, e.g., [0-9] ==> 0123456789
|
|
|
|
* Escapes, e.g., \a ==> Control-G
|
|
|
|
* Character classes, e.g. [:upper:] ==> A...Z
|
|
|
|
* Equiv classess, e.g. [=A=] ==> A (hmmmmmmm?)
|
2001-05-25 03:01:09 +05:30
|
|
|
*/
|
2006-07-01 00:34:09 +05:30
|
|
|
static unsigned int expand(const char *arg, char *buffer)
|
2000-03-05 13:37:00 +05:30
|
|
|
{
|
2006-07-01 00:34:09 +05:30
|
|
|
char *buffer_start = buffer;
|
2007-11-14 03:52:29 +05:30
|
|
|
unsigned i; /* can't be unsigned char: must be able to hold 256 */
|
2007-03-30 20:13:27 +05:30
|
|
|
unsigned char ac;
|
2007-11-14 03:52:29 +05:30
|
|
|
|
|
|
|
while (*arg) {
|
|
|
|
if (*arg == '\\') {
|
|
|
|
arg++;
|
|
|
|
*buffer++ = bb_process_escape_sequence(&arg);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (arg[1] == '-') { /* "0-9..." */
|
|
|
|
ac = arg[2];
|
|
|
|
if (ac == '\0') { /* "0-": copy verbatim */
|
|
|
|
*buffer++ = *arg++; /* copy '0' */
|
|
|
|
continue; /* next iter will copy '-' and stop */
|
|
|
|
}
|
|
|
|
i = *arg;
|
|
|
|
while (i <= ac) /* ok: i is unsigned _int_ */
|
|
|
|
*buffer++ = i++;
|
|
|
|
arg += 3; /* skip 0-9 */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (*arg == '[') { /* "[xyz..." */
|
|
|
|
arg++;
|
|
|
|
i = *arg++;
|
|
|
|
/* "[xyz...", i=x, arg points to y */
|
|
|
|
if (ENABLE_FEATURE_TR_CLASSES && i == ':') {
|
2007-07-24 21:24:42 +05:30
|
|
|
#define CLO ":]\0"
|
2007-11-14 03:52:29 +05:30
|
|
|
static const char classes[] ALIGN1 =
|
|
|
|
"alpha"CLO "alnum"CLO "digit"CLO
|
|
|
|
"lower"CLO "upper"CLO "space"CLO
|
|
|
|
"blank"CLO "punct"CLO "cntrl"CLO;
|
2007-03-30 20:13:27 +05:30
|
|
|
#define CLASS_invalid 0 /* we increment the retval */
|
|
|
|
#define CLASS_alpha 1
|
|
|
|
#define CLASS_alnum 2
|
|
|
|
#define CLASS_digit 3
|
|
|
|
#define CLASS_lower 4
|
|
|
|
#define CLASS_upper 5
|
|
|
|
#define CLASS_space 6
|
|
|
|
#define CLASS_blank 7
|
|
|
|
#define CLASS_punct 8
|
|
|
|
#define CLASS_cntrl 9
|
|
|
|
//#define CLASS_xdigit 10
|
|
|
|
//#define CLASS_graph 11
|
|
|
|
//#define CLASS_print 12
|
|
|
|
smalluint j;
|
|
|
|
{ /* not really pretty.. */
|
2007-11-14 03:52:29 +05:30
|
|
|
char *tmp = xstrndup(arg, 7); // warning: xdigit would need 8, not 7
|
2007-07-24 21:24:42 +05:30
|
|
|
j = index_in_strings(classes, tmp) + 1;
|
2007-06-04 15:46:52 +05:30
|
|
|
free(tmp);
|
2005-10-09 02:51:08 +05:30
|
|
|
}
|
2007-03-30 20:13:27 +05:30
|
|
|
if (j == CLASS_alnum || j == CLASS_digit) {
|
2006-04-20 03:52:06 +05:30
|
|
|
for (i = '0'; i <= '9'; i++)
|
|
|
|
*buffer++ = i;
|
2007-03-30 20:13:27 +05:30
|
|
|
}
|
|
|
|
if (j == CLASS_alpha || j == CLASS_alnum || j == CLASS_upper) {
|
2005-10-09 02:51:08 +05:30
|
|
|
for (i = 'A'; i <= 'Z'; i++)
|
|
|
|
*buffer++ = i;
|
|
|
|
}
|
2007-03-30 20:13:27 +05:30
|
|
|
if (j == CLASS_alpha || j == CLASS_alnum || j == CLASS_lower) {
|
2005-10-09 02:51:08 +05:30
|
|
|
for (i = 'a'; i <= 'z'; i++)
|
|
|
|
*buffer++ = i;
|
2006-04-20 03:52:06 +05:30
|
|
|
}
|
2007-03-30 20:13:27 +05:30
|
|
|
if (j == CLASS_space || j == CLASS_blank) {
|
2006-04-20 03:52:06 +05:30
|
|
|
*buffer++ = '\t';
|
2007-03-30 20:13:27 +05:30
|
|
|
if (j == CLASS_space) {
|
|
|
|
*buffer++ = '\n';
|
|
|
|
*buffer++ = '\v';
|
|
|
|
*buffer++ = '\f';
|
|
|
|
*buffer++ = '\r';
|
|
|
|
}
|
2006-04-20 03:52:06 +05:30
|
|
|
*buffer++ = ' ';
|
|
|
|
}
|
2007-03-30 20:13:27 +05:30
|
|
|
if (j == CLASS_punct || j == CLASS_cntrl) {
|
2007-11-14 03:52:29 +05:30
|
|
|
for (i = '\0'; i <= ASCII; i++)
|
|
|
|
if ((j == CLASS_punct && isprint(i) && !isalnum(i) && !isspace(i))
|
|
|
|
|| (j == CLASS_cntrl && iscntrl(i)))
|
2005-10-09 02:51:08 +05:30
|
|
|
*buffer++ = i;
|
|
|
|
}
|
2007-03-30 20:13:27 +05:30
|
|
|
if (j == CLASS_invalid) {
|
2006-04-20 03:52:06 +05:30
|
|
|
*buffer++ = '[';
|
|
|
|
*buffer++ = ':';
|
2005-10-09 02:51:08 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2007-11-14 03:52:29 +05:30
|
|
|
/* "[xyz...", i=x, arg points to y */
|
|
|
|
if (ENABLE_FEATURE_TR_EQUIV && i == '=') { /* [=CHAR=] */
|
|
|
|
*buffer++ = *arg; /* copy CHAR */
|
2008-07-29 05:19:42 +05:30
|
|
|
if (!*arg || arg[1] != '=' || arg[2] != ']')
|
|
|
|
bb_show_usage();
|
2007-11-14 03:52:29 +05:30
|
|
|
arg += 3; /* skip CHAR=] */
|
2005-10-09 02:51:08 +05:30
|
|
|
continue;
|
|
|
|
}
|
2008-07-27 01:04:00 +05:30
|
|
|
if (i == '\0' || *arg != '-') { /* not [x-...] - copy verbatim */
|
2000-05-02 04:00:37 +05:30
|
|
|
*buffer++ = '[';
|
2007-11-14 03:52:29 +05:30
|
|
|
arg--; /* points to x */
|
|
|
|
continue; /* copy all, including eventual ']' */
|
2000-05-02 04:00:37 +05:30
|
|
|
}
|
2008-07-31 04:28:18 +05:30
|
|
|
/* [x-z] */
|
|
|
|
arg++; /* skip - */
|
|
|
|
if (arg[0] == '\0' || arg[1] != ']')
|
|
|
|
bb_show_usage();
|
2000-05-02 04:00:37 +05:30
|
|
|
ac = *arg++;
|
|
|
|
while (i <= ac)
|
|
|
|
*buffer++ = i++;
|
2008-07-31 04:28:18 +05:30
|
|
|
arg++; /* skip ] */
|
2007-11-14 03:52:29 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*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
|
|
|
}
|
|
|
|
|
2006-07-01 00:34:09 +05:30
|
|
|
static int complement(char *buffer, int buffer_len)
|
2000-03-05 13:37:00 +05:30
|
|
|
{
|
2007-06-04 15:46:52 +05:30
|
|
|
int i, j, ix;
|
2000-07-14 12:19:52 +05:30
|
|
|
char conv[ASCII + 2];
|
2000-05-02 04:00:37 +05:30
|
|
|
|
2001-03-21 13:04:27 +05:30
|
|
|
ix = 0;
|
2007-11-14 03:52:29 +05:30
|
|
|
for (i = '\0'; i <= ASCII; i++) {
|
2000-07-13 22:10:41 +05:30
|
|
|
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)
|
2001-03-21 13:04:27 +05:30
|
|
|
conv[ix++] = i & ASCII;
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
2001-03-21 13:04:27 +05:30
|
|
|
memcpy(buffer, conv, ix);
|
|
|
|
return ix;
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int tr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int tr_main(int argc UNUSED_PARAM, char **argv)
|
2000-03-05 13:37:00 +05:30
|
|
|
{
|
2007-03-30 20:13:27 +05:30
|
|
|
int output_length = 0, input_length;
|
2000-07-14 12:19:52 +05:30
|
|
|
int i;
|
2007-11-14 03:53:57 +05:30
|
|
|
smalluint flags;
|
2007-11-13 23:21:40 +05:30
|
|
|
ssize_t read_chars = 0;
|
2007-11-14 03:52:29 +05:30
|
|
|
size_t in_index = 0, out_index = 0;
|
|
|
|
unsigned last = UCHAR_MAX + 1; /* not equal to any char */
|
2007-12-24 19:39:19 +05:30
|
|
|
unsigned char coded, c;
|
2007-11-14 03:53:57 +05:30
|
|
|
unsigned char *output = xmalloc(BUFSIZ);
|
|
|
|
char *vector = xzalloc((ASCII+1) * 3);
|
|
|
|
char *invec = vector + (ASCII+1);
|
|
|
|
char *outvec = vector + (ASCII+1) * 2;
|
|
|
|
|
|
|
|
#define TR_OPT_complement (1 << 0)
|
|
|
|
#define TR_OPT_delete (1 << 1)
|
|
|
|
#define TR_OPT_squeeze_reps (1 << 2)
|
|
|
|
|
|
|
|
flags = getopt32(argv, "+cds"); /* '+': stop at first non-option */
|
|
|
|
argv += optind;
|
2001-01-24 04:00:04 +05:30
|
|
|
|
2000-05-02 04:00:37 +05:30
|
|
|
for (i = 0; i <= ASCII; i++) {
|
|
|
|
vector[i] = i;
|
2007-11-14 03:53:57 +05:30
|
|
|
/*invec[i] = outvec[i] = FALSE; - done by xzalloc */
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|
|
|
|
|
2007-06-04 15:46:52 +05:30
|
|
|
#define tr_buf bb_common_bufsiz1
|
2007-11-14 03:53:57 +05:30
|
|
|
if (*argv != NULL) {
|
|
|
|
input_length = expand(*argv++, tr_buf);
|
2007-03-30 20:13:27 +05:30
|
|
|
if (flags & TR_OPT_complement)
|
2007-06-04 15:46:52 +05:30
|
|
|
input_length = complement(tr_buf, input_length);
|
2007-11-14 03:53:57 +05:30
|
|
|
if (*argv) {
|
|
|
|
if (argv[0][0] == '\0')
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("STRING2 cannot be empty");
|
2008-05-09 23:37:15 +05:30
|
|
|
output_length = expand(*argv, (char *)output);
|
|
|
|
map(vector, (unsigned char *)tr_buf, 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++)
|
2007-06-04 15:46:52 +05:30
|
|
|
invec[(unsigned char)tr_buf[i]] = TRUE;
|
2000-07-13 22:10:41 +05:30
|
|
|
for (i = 0; i < output_length; i++)
|
2007-03-30 20:13:27 +05:30
|
|
|
outvec[output[i]] = TRUE;
|
2000-05-02 04:00:37 +05:30
|
|
|
}
|
2007-06-04 15:46:52 +05:30
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
/* If we're out of input, flush output and read more input. */
|
2008-05-13 07:57:31 +05:30
|
|
|
if ((ssize_t)in_index == read_chars) {
|
2007-06-04 15:46:52 +05:30
|
|
|
if (out_index) {
|
|
|
|
xwrite(STDOUT_FILENO, (char *)output, out_index);
|
|
|
|
out_index = 0;
|
|
|
|
}
|
2007-11-14 03:52:29 +05:30
|
|
|
read_chars = safe_read(STDIN_FILENO, tr_buf, BUFSIZ);
|
2007-06-04 15:46:52 +05:30
|
|
|
if (read_chars <= 0) {
|
2007-11-13 23:21:40 +05:30
|
|
|
if (read_chars < 0)
|
|
|
|
bb_perror_msg_and_die(bb_msg_read_error);
|
2007-06-04 15:46:52 +05:30
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
in_index = 0;
|
|
|
|
}
|
|
|
|
c = tr_buf[in_index++];
|
|
|
|
coded = vector[c];
|
|
|
|
if ((flags & TR_OPT_delete) && invec[c])
|
|
|
|
continue;
|
2007-11-14 03:52:29 +05:30
|
|
|
if ((flags & TR_OPT_squeeze_reps) && last == coded
|
|
|
|
&& (invec[c] || outvec[coded]))
|
2007-06-04 15:46:52 +05:30
|
|
|
continue;
|
|
|
|
output[out_index++] = last = coded;
|
|
|
|
}
|
|
|
|
/* NOTREACHED */
|
2007-03-30 20:13:27 +05:30
|
|
|
return EXIT_SUCCESS;
|
2000-03-05 13:37:00 +05:30
|
|
|
}
|