blob: 1aeebe1d96807dc0b4c62ebd9ad6b32d88dc6edf [file] [log] [blame]
Rob Landley8abbee42006-05-31 19:36:04 +00001/* vi: set sw=4 ts=4: */
2/*
3 * cat -v implementation for busybox
4 *
5 * Copyright (C) 2006 Rob Landley <rob@landley.net>
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Rob Landley8abbee42006-05-31 19:36:04 +00008 */
9
10/* See "Cat -v considered harmful" at
11 * http://cm.bell-labs.com/cm/cs/doc/84/kp.ps.gz */
12
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010013//config:config CATV
14//config: bool "catv"
15//config: default y
16//config: help
17//config: Display nonprinting characters as escape sequences (like some
18//config: implementations' cat -v option).
19
20//applet:IF_CATV(APPLET(catv, BB_DIR_BIN, BB_SUID_DROP))
21
22//kbuild:lib-$(CONFIG_CATV) += catv.o
23
Pere Orga34425382011-03-31 14:43:25 +020024//usage:#define catv_trivial_usage
25//usage: "[-etv] [FILE]..."
26//usage:#define catv_full_usage "\n\n"
27//usage: "Display nonprinting characters as ^x or M-x\n"
Pere Orga34425382011-03-31 14:43:25 +020028//usage: "\n -e End each line with $"
29//usage: "\n -t Show tabs as ^I"
30//usage: "\n -v Don't use ^x or M-x escapes"
31
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000032#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020033#include "common_bufsiz.h"
Rob Landley8abbee42006-05-31 19:36:04 +000034
Denys Vlasenko69a12fa2014-02-03 03:27:53 +010035#define CATV_OPT_e (1<<0)
36#define CATV_OPT_t (1<<1)
37#define CATV_OPT_v (1<<2)
38struct BUG_const_mismatch {
39 char BUG_const_mismatch[
40 CATV_OPT_e == VISIBLE_ENDLINE && CATV_OPT_t == VISIBLE_SHOW_TABS
41 ? 1 : -1
42 ];
43};
44
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000045int catv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000046int catv_main(int argc UNUSED_PARAM, char **argv)
Rob Landley8abbee42006-05-31 19:36:04 +000047{
Denis Vlasenko8e209c32007-08-06 12:28:24 +000048 int retval = EXIT_SUCCESS;
49 int fd;
Bartosz Golaszewski79c618c2013-07-30 06:29:42 +020050 unsigned opts;
Denys Vlasenkobfa6ed12013-07-30 11:41:58 +020051 opts = getopt32(argv, "etv");
Rob Landley8abbee42006-05-31 19:36:04 +000052 argv += optind;
Denys Vlasenkobfa6ed12013-07-30 11:41:58 +020053#if 0 /* These consts match, we can just pass "opts" to visible() */
Bartosz Golaszewski79c618c2013-07-30 06:29:42 +020054 if (opts & CATV_OPT_e)
55 flags |= VISIBLE_ENDLINE;
56 if (opts & CATV_OPT_t)
57 flags |= VISIBLE_SHOW_TABS;
Denys Vlasenkobfa6ed12013-07-30 11:41:58 +020058#endif
Denis Vlasenko16d58d72007-06-12 08:13:34 +000059
60 /* Read from stdin if there's nothing else to do. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000061 if (!argv[0])
62 *--argv = (char*)"-";
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +020063
64#define read_buf bb_common_bufsiz1
65 setup_common_bufsiz();
Rob Landley8abbee42006-05-31 19:36:04 +000066 do {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000067 fd = open_or_warn_stdin(*argv);
Denis Vlasenko16d58d72007-06-12 08:13:34 +000068 if (fd < 0) {
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000069 retval = EXIT_FAILURE;
Denis Vlasenko16d58d72007-06-12 08:13:34 +000070 continue;
71 }
Denis Vlasenko16d58d72007-06-12 08:13:34 +000072 for (;;) {
Rob Landley8abbee42006-05-31 19:36:04 +000073 int i, res;
74
Denis Vlasenko74324c82007-06-04 10:16:52 +000075 res = read(fd, read_buf, COMMON_BUFSIZE);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000076 if (res < 0)
77 retval = EXIT_FAILURE;
Bartosz Golaszewski79c618c2013-07-30 06:29:42 +020078 if (res <= 0)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000079 break;
80 for (i = 0; i < res; i++) {
Denis Vlasenko8e209c32007-08-06 12:28:24 +000081 unsigned char c = read_buf[i];
Bartosz Golaszewski79c618c2013-07-30 06:29:42 +020082 if (opts & CATV_OPT_v) {
83 putchar(c);
84 } else {
85 char buf[sizeof("M-^c")];
Denys Vlasenkobfa6ed12013-07-30 11:41:58 +020086 visible(c, buf, opts);
Bartosz Golaszewski79c618c2013-07-30 06:29:42 +020087 fputs(buf, stdout);
Rob Landley8abbee42006-05-31 19:36:04 +000088 }
Rob Landley8abbee42006-05-31 19:36:04 +000089 }
90 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000091 if (ENABLE_FEATURE_CLEAN_UP && fd)
92 close(fd);
Rob Landley8abbee42006-05-31 19:36:04 +000093 } while (*++argv);
94
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000095 fflush_stdout_and_exit(retval);
Rob Landley8abbee42006-05-31 19:36:04 +000096}