blob: a4b1f64b60d563fc14a706d5dd5acaed3170a912 [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>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23/* getopt not needed */
24
25#include <stdio.h>
26#include <errno.h>
27#include <unistd.h>
28#include <stdlib.h>
29#include <string.h>
30#include "busybox.h"
31
32extern int watch_main(int argc, char **argv)
33{
34 const char date_argv[2][10] = { "date", "" };
Glenn L McGrath18b76e62002-09-16 09:10:04 +000035 const int header_len = 40;
36 char header[header_len + 1];
37 int period = 2;
38 char **cargv;
39 int cargc;
40 pid_t pid;
41 int old_stdout;
42 int i;
43
44 if (argc < 2) {
45 show_usage();
46 } else {
47 cargv = argv + 1;
48 cargc = argc - 1;
49
50 /* don't use getopt, because it permutes the arguments */
51 if (argc >= 3 && !strcmp(argv[1], "-n")) {
52 period = strtol(argv[2], NULL, 10);
53 if (period < 1)
54 show_usage();
55 cargv += 2;
56 cargc -= 2;
57 }
58 }
59
60
61 /* create header */
62 snprintf(header, header_len, "Every %ds: ", period);
63 for (i = 0; i < cargc && (strlen(header) + strlen(cargv[i]) < header_len);
64 i++) {
65 strcat(header, cargv[i]);
66 strcat(header, " ");
67 }
68
69 /* fill with blanks */
70 for (i = strlen(header); i < header_len; i++)
71 header[i] = ' ';
72
73 header[header_len - 1] = '\0';
74
75
76 /* thanks to lye, who showed me how to redirect stdin/stdout */
77 old_stdout = dup(1);
78
79 while (1) {
Eric Andersen60943c52002-09-17 20:53:41 +000080 printf("\033[H\033[J%s", header);
Glenn L McGrath18b76e62002-09-16 09:10:04 +000081 date_main(1, (char **) date_argv);
82 printf("\n");
83
84 pid = vfork(); /* vfork, because of ucLinux */
85 if (pid > 0) {
86 //parent
87 wait(0);
88 sleep(period);
89 } else if (0 == pid) {
90 //child
91 close(1);
92 dup(old_stdout);
93 if (execvp(*cargv, cargv))
94 error_msg_and_die("Couldn't run command\n");
95 } else {
96 error_msg_and_die("Couldn't vfork\n");
97 }
98 }
99
100
101 return EXIT_SUCCESS;
102}