blob: 6fc9f7db7794b1e0b9aec6d6b90ffc02b6ce67d1 [file] [log] [blame]
Glenn L McGrath18b76e62002-09-16 09:10:04 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Mini watch implementation for busybox
4 *
5 * Copyright (C) 2001 by Michael Habermann <mhabermann@gmx.de>
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +00006 * Copyrigjt (C) Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
Glenn L McGrath18b76e62002-09-16 09:10:04 +00007 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrath18b76e62002-09-16 09:10:04 +00009 */
10
Manuel Novoa III cad53642003-03-19 09:13:01 +000011/* BB_AUDIT SUSv3 N/A */
12/* BB_AUDIT GNU defects -- only option -n is supported. */
13
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010014//config:config WATCH
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020015//config: bool "watch (4.1 kb)"
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010016//config: default y
17//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020018//config: watch is used to execute a program periodically, showing
19//config: output to the screen.
Denys Vlasenkof8f81ed2016-11-23 06:23:44 +010020
21//applet:IF_WATCH(APPLET(watch, BB_DIR_BIN, BB_SUID_DROP))
22
23//kbuild:lib-$(CONFIG_WATCH) += watch.o
24
Pere Orga5bc8c002011-04-11 03:29:49 +020025//usage:#define watch_trivial_usage
26//usage: "[-n SEC] [-t] PROG ARGS"
27//usage:#define watch_full_usage "\n\n"
28//usage: "Run PROG periodically\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020029//usage: "\n -n Loop period in seconds (default 2)"
30//usage: "\n -t Don't print header"
31//usage:
32//usage:#define watch_example_usage
33//usage: "$ watch date\n"
34//usage: "Mon Dec 17 10:31:40 GMT 2000\n"
35//usage: "Mon Dec 17 10:31:42 GMT 2000\n"
36//usage: "Mon Dec 17 10:31:44 GMT 2000"
37
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000038#include "libbb.h"
Glenn L McGrath18b76e62002-09-16 09:10:04 +000039
Denis Vlasenko8d73c352006-10-20 23:48:30 +000040// procps 2.0.18:
41// watch [-d] [-n seconds]
42// [--differences[=cumulative]] [--interval=seconds] command
43//
44// procps-3.2.3:
45// watch [-dt] [-n seconds]
46// [--differences[=cumulative]] [--interval=seconds] [--no-title] command
47//
48// (procps 3.x and procps 2.x are forks, not newer/older versions of the same)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000049
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000050int watch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000051int watch_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath18b76e62002-09-16 09:10:04 +000052{
Denis Vlasenko8d73c352006-10-20 23:48:30 +000053 unsigned opt;
Manuel Novoa III cad53642003-03-19 09:13:01 +000054 unsigned period = 2;
Denis Vlasenko55995022008-05-18 22:28:26 +000055 unsigned width, new_width;
Denis Vlasenko28b29912008-02-24 14:33:17 +000056 char *header;
Denis Vlasenko8d73c352006-10-20 23:48:30 +000057 char *cmd;
Glenn L McGrath18b76e62002-09-16 09:10:04 +000058
Denys Vlasenko302af9e2010-01-19 02:26:38 +010059#if 0 // maybe ENABLE_DESKTOP?
60 // procps3 compat - "echo TEST | watch cat" doesn't show TEST:
61 close(STDIN_FILENO);
62 xopen("/dev/null", O_RDONLY);
63#endif
64
Denys Vlasenko22542ec2017-08-08 21:55:02 +020065 // "+": stop at first non-option (procps 3.x only); -n NUM
66 // at least one param
67 opt = getopt32(argv, "^+" "dtn:+" "\0" "-1", &period);
Denis Vlasenko8d73c352006-10-20 23:48:30 +000068 argv += optind;
Rob Landley399d2b52006-05-25 23:02:40 +000069
Denis Vlasenko28b29912008-02-24 14:33:17 +000070 // watch from both procps 2.x and 3.x does concatenation. Example:
Denys Vlasenko302af9e2010-01-19 02:26:38 +010071 // watch ls -l "a /tmp" "2>&1" - ls won't see "a /tmp" as one param
Denis Vlasenko28b29912008-02-24 14:33:17 +000072 cmd = *argv;
73 while (*++argv)
74 cmd = xasprintf("%s %s", cmd, *argv); // leaks cmd
Glenn L McGrath18b76e62002-09-16 09:10:04 +000075
Denis Vlasenko55995022008-05-18 22:28:26 +000076 width = (unsigned)-1; // make sure first time new_width != width
Denis Vlasenko28b29912008-02-24 14:33:17 +000077 header = NULL;
Glenn L McGrath18b76e62002-09-16 09:10:04 +000078 while (1) {
Denys Vlasenkod9a3e892010-05-16 23:42:13 +020079 /* home; clear to the end of screen */
80 printf("\033[H""\033[J");
Denis Vlasenko8d73c352006-10-20 23:48:30 +000081 if (!(opt & 0x2)) { // no -t
Denis Vlasenko55995022008-05-18 22:28:26 +000082 const unsigned time_len = sizeof("1234-67-90 23:56:89");
Glenn L McGrath18b76e62002-09-16 09:10:04 +000083
Denys Vlasenko302af9e2010-01-19 02:26:38 +010084 // STDERR_FILENO is procps3 compat:
85 // "watch ls 2>/dev/null" does not detect tty size
Denys Vlasenko641caae2015-10-23 01:44:22 +020086 new_width = get_terminal_width(STDERR_FILENO);
Denis Vlasenko28b29912008-02-24 14:33:17 +000087 if (new_width != width) {
88 width = new_width;
89 free(header);
Denis Vlasenko55995022008-05-18 22:28:26 +000090 header = xasprintf("Every %us: %-*s", period, (int)width, cmd);
Denis Vlasenko28b29912008-02-24 14:33:17 +000091 }
Denys Vlasenko8f2cb7a2013-03-29 12:30:33 +010092 if (time_len < width) {
93 strftime_YYYYMMDDHHMMSS(
94 header + width - time_len,
95 time_len,
96 /*time_t*:*/ NULL
97 );
98 }
Denis Vlasenko28b29912008-02-24 14:33:17 +000099
Denys Vlasenko302af9e2010-01-19 02:26:38 +0100100 // compat: empty line between header and cmd output
101 printf("%s\n\n", header);
Denis Vlasenko8d73c352006-10-20 23:48:30 +0000102 }
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100103 fflush_all();
Denis Vlasenko8d73c352006-10-20 23:48:30 +0000104 // TODO: 'real' watch pipes cmd's output to itself
105 // and does not allow it to overflow the screen
106 // (taking into account linewrap!)
107 system(cmd);
Rob Landley399d2b52006-05-25 23:02:40 +0000108 sleep(period);
Glenn L McGrath18b76e62002-09-16 09:10:04 +0000109 }
Denis Vlasenko703aa132006-10-23 22:43:02 +0000110 return 0; // gcc thinks we can reach this :)
Glenn L McGrath18b76e62002-09-16 09:10:04 +0000111}