2006-06-01 01:06:04 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* cat -v implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Rob Landley <rob@landley.net>
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* See "Cat -v considered harmful" at
|
|
|
|
* http://cm.bell-labs.com/cm/cs/doc/84/kp.ps.gz */
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-06-01 01:06:04 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int catv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int catv_main(int argc UNUSED_PARAM, char **argv)
|
2006-06-01 01:06:04 +05:30
|
|
|
{
|
2007-08-06 17:58:24 +05:30
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
int fd;
|
2006-10-08 23:24:47 +05:30
|
|
|
unsigned flags;
|
2006-06-01 01:06:04 +05:30
|
|
|
|
2007-08-18 21:02:12 +05:30
|
|
|
flags = getopt32(argv, "etv");
|
2006-08-29 05:01:54 +05:30
|
|
|
#define CATV_OPT_e (1<<0)
|
|
|
|
#define CATV_OPT_t (1<<1)
|
|
|
|
#define CATV_OPT_v (1<<2)
|
|
|
|
flags ^= CATV_OPT_v;
|
2006-06-01 01:06:04 +05:30
|
|
|
argv += optind;
|
2007-06-12 13:43:34 +05:30
|
|
|
|
|
|
|
/* Read from stdin if there's nothing else to do. */
|
2008-03-17 14:37:36 +05:30
|
|
|
if (!argv[0])
|
|
|
|
*--argv = (char*)"-";
|
2006-06-01 01:06:04 +05:30
|
|
|
do {
|
2008-03-17 14:37:36 +05:30
|
|
|
fd = open_or_warn_stdin(*argv);
|
2007-06-12 13:43:34 +05:30
|
|
|
if (fd < 0) {
|
2006-08-29 05:01:54 +05:30
|
|
|
retval = EXIT_FAILURE;
|
2007-06-12 13:43:34 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (;;) {
|
2006-06-01 01:06:04 +05:30
|
|
|
int i, res;
|
|
|
|
|
2007-06-04 15:46:52 +05:30
|
|
|
#define read_buf bb_common_bufsiz1
|
|
|
|
res = read(fd, read_buf, COMMON_BUFSIZE);
|
2006-08-29 05:01:54 +05:30
|
|
|
if (res < 0)
|
|
|
|
retval = EXIT_FAILURE;
|
|
|
|
if (res < 1)
|
|
|
|
break;
|
|
|
|
for (i = 0; i < res; i++) {
|
2007-08-06 17:58:24 +05:30
|
|
|
unsigned char c = read_buf[i];
|
2006-06-01 01:06:04 +05:30
|
|
|
|
2006-08-29 05:01:54 +05:30
|
|
|
if (c > 126 && (flags & CATV_OPT_v)) {
|
2006-06-01 01:06:04 +05:30
|
|
|
if (c == 127) {
|
2006-10-27 04:51:47 +05:30
|
|
|
printf("^?");
|
2006-06-01 01:06:04 +05:30
|
|
|
continue;
|
|
|
|
}
|
2007-06-12 13:43:34 +05:30
|
|
|
printf("M-");
|
|
|
|
c -= 128;
|
2006-06-01 01:06:04 +05:30
|
|
|
}
|
|
|
|
if (c < 32) {
|
|
|
|
if (c == 10) {
|
2006-10-08 23:24:47 +05:30
|
|
|
if (flags & CATV_OPT_e)
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar('$');
|
2006-08-29 05:01:54 +05:30
|
|
|
} else if (flags & (c==9 ? CATV_OPT_t : CATV_OPT_v)) {
|
2006-10-27 04:51:47 +05:30
|
|
|
printf("^%c", c+'@');
|
2006-06-01 01:06:04 +05:30
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2007-09-27 15:50:47 +05:30
|
|
|
bb_putchar(c);
|
2006-06-01 01:06:04 +05:30
|
|
|
}
|
|
|
|
}
|
2006-08-29 05:01:54 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP && fd)
|
|
|
|
close(fd);
|
2006-06-01 01:06:04 +05:30
|
|
|
} while (*++argv);
|
|
|
|
|
2006-10-27 04:51:47 +05:30
|
|
|
fflush_stdout_and_exit(retval);
|
2006-06-01 01:06:04 +05:30
|
|
|
}
|