Glenn L McGrath | 18b76e6 | 2002-09-16 09:10:04 +0000 | [diff] [blame] | 1 | /* 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-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 6 | * Copyrigjt (C) Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) |
Glenn L McGrath | 18b76e6 | 2002-09-16 09:10:04 +0000 | [diff] [blame] | 7 | * |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Glenn L McGrath | 18b76e6 | 2002-09-16 09:10:04 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 11 | /* BB_AUDIT SUSv3 N/A */ |
| 12 | /* BB_AUDIT GNU defects -- only option -n is supported. */ |
| 13 | |
Glenn L McGrath | 18b76e6 | 2002-09-16 09:10:04 +0000 | [diff] [blame] | 14 | #include "busybox.h" |
| 15 | |
Denis Vlasenko | 8d73c35 | 2006-10-20 23:48:30 +0000 | [diff] [blame] | 16 | // procps 2.0.18: |
| 17 | // watch [-d] [-n seconds] |
| 18 | // [--differences[=cumulative]] [--interval=seconds] command |
| 19 | // |
| 20 | // procps-3.2.3: |
| 21 | // watch [-dt] [-n seconds] |
| 22 | // [--differences[=cumulative]] [--interval=seconds] [--no-title] command |
| 23 | // |
| 24 | // (procps 3.x and procps 2.x are forks, not newer/older versions of the same) |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 25 | |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 26 | int watch_main(int argc, char **argv) |
Glenn L McGrath | 18b76e6 | 2002-09-16 09:10:04 +0000 | [diff] [blame] | 27 | { |
Denis Vlasenko | 8d73c35 | 2006-10-20 23:48:30 +0000 | [diff] [blame] | 28 | unsigned opt; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 29 | unsigned period = 2; |
Denis Vlasenko | 8d73c35 | 2006-10-20 23:48:30 +0000 | [diff] [blame] | 30 | unsigned cmdlen = 1; // 1 for terminal NUL |
| 31 | char *header = NULL; |
| 32 | char *cmd; |
| 33 | char *tmp; |
| 34 | char **p; |
Glenn L McGrath | 18b76e6 | 2002-09-16 09:10:04 +0000 | [diff] [blame] | 35 | |
Denis Vlasenko | 8d73c35 | 2006-10-20 23:48:30 +0000 | [diff] [blame] | 36 | opt_complementary = "-1"; // at least one param please |
| 37 | opt = getopt32(argc, argv, "+dtn:", &tmp); |
| 38 | //if (opt & 0x1) // -d (ignore) |
| 39 | //if (opt & 0x2) // -t |
| 40 | if (opt & 0x4) period = xatou(tmp); |
| 41 | argv += optind; |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 42 | |
Denis Vlasenko | 8d73c35 | 2006-10-20 23:48:30 +0000 | [diff] [blame] | 43 | p = argv; |
| 44 | while (*p) |
| 45 | cmdlen += strlen(*p++) + 1; |
| 46 | tmp = cmd = xmalloc(cmdlen); |
| 47 | while (*argv) { |
| 48 | tmp += sprintf(tmp, " %s", *argv); |
| 49 | argv++; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 50 | } |
Denis Vlasenko | 8d73c35 | 2006-10-20 23:48:30 +0000 | [diff] [blame] | 51 | cmd++; // skip initial space |
Glenn L McGrath | 18b76e6 | 2002-09-16 09:10:04 +0000 | [diff] [blame] | 52 | |
| 53 | while (1) { |
Denis Vlasenko | 8d73c35 | 2006-10-20 23:48:30 +0000 | [diff] [blame] | 54 | printf("\033[H\033[J"); |
| 55 | if (!(opt & 0x2)) { // no -t |
| 56 | int width, len; |
| 57 | char *thyme; |
| 58 | time_t t; |
Glenn L McGrath | 18b76e6 | 2002-09-16 09:10:04 +0000 | [diff] [blame] | 59 | |
Denis Vlasenko | 8d73c35 | 2006-10-20 23:48:30 +0000 | [diff] [blame] | 60 | get_terminal_width_height(STDOUT_FILENO, &width, 0); |
| 61 | header = xrealloc(header, width--); |
Denis Vlasenko | 703aa13 | 2006-10-23 22:43:02 +0000 | [diff] [blame] | 62 | // '%-*s' pads header with spaces to the full width |
Denis Vlasenko | 8d73c35 | 2006-10-20 23:48:30 +0000 | [diff] [blame] | 63 | snprintf(header, width, "Every %ds: %-*s", period, width, cmd); |
| 64 | time(&t); |
| 65 | thyme = ctime(&t); |
| 66 | len = strlen(thyme); |
| 67 | if (len < width) |
| 68 | strcpy(header + width - len, thyme); |
| 69 | puts(header); |
| 70 | } |
| 71 | fflush(stdout); |
| 72 | // TODO: 'real' watch pipes cmd's output to itself |
| 73 | // and does not allow it to overflow the screen |
| 74 | // (taking into account linewrap!) |
| 75 | system(cmd); |
Rob Landley | 399d2b5 | 2006-05-25 23:02:40 +0000 | [diff] [blame] | 76 | sleep(period); |
Glenn L McGrath | 18b76e6 | 2002-09-16 09:10:04 +0000 | [diff] [blame] | 77 | } |
Denis Vlasenko | 703aa13 | 2006-10-23 22:43:02 +0000 | [diff] [blame] | 78 | return 0; // gcc thinks we can reach this :) |
Glenn L McGrath | 18b76e6 | 2002-09-16 09:10:04 +0000 | [diff] [blame] | 79 | } |