2003-08-07 15:13:06 +04:00
|
|
|
/* $NetBSD: cmds.c,v 1.26 2003/08/07 11:15:57 agc Exp $ */
|
1995-01-20 11:51:48 +03:00
|
|
|
|
1995-01-20 11:30:50 +03:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1980, 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 15:13:06 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1995-01-20 11:30:50 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-07-21 11:04:56 +04:00
|
|
|
#include <sys/cdefs.h>
|
1995-01-20 11:30:50 +03:00
|
|
|
#ifndef lint
|
1995-01-20 11:51:48 +03:00
|
|
|
#if 0
|
1995-09-01 02:11:37 +04:00
|
|
|
static char sccsid[] = "@(#)cmds.c 8.2 (Berkeley) 4/29/95";
|
1995-01-20 11:51:48 +03:00
|
|
|
#endif
|
2003-08-07 15:13:06 +04:00
|
|
|
__RCSID("$NetBSD: cmds.c,v 1.26 2003/08/07 11:15:57 agc Exp $");
|
1995-01-20 11:30:50 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <ctype.h>
|
2000-12-01 05:19:43 +03:00
|
|
|
#include <signal.h>
|
1995-01-20 11:30:50 +03:00
|
|
|
#include <string.h>
|
2000-12-01 05:19:43 +03:00
|
|
|
#include <unistd.h>
|
|
|
|
|
1995-01-20 11:30:50 +03:00
|
|
|
#include "systat.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
2000-07-05 15:03:20 +04:00
|
|
|
void switch_mode(struct mode *p);
|
1999-12-16 09:16:16 +03:00
|
|
|
|
1995-01-20 11:30:50 +03:00
|
|
|
void
|
2000-07-05 15:03:20 +04:00
|
|
|
command(char *cmd)
|
1995-01-20 11:30:50 +03:00
|
|
|
{
|
1999-12-16 07:02:22 +03:00
|
|
|
struct command *c;
|
|
|
|
struct mode *p;
|
1999-12-21 00:42:50 +03:00
|
|
|
char *args;
|
1996-12-13 22:26:18 +03:00
|
|
|
sigset_t set;
|
1995-01-20 11:30:50 +03:00
|
|
|
|
2000-09-04 16:28:12 +04:00
|
|
|
if (cmd[0] == '\0')
|
|
|
|
return;
|
|
|
|
|
1996-12-13 22:26:18 +03:00
|
|
|
sigemptyset(&set);
|
|
|
|
sigaddset(&set, SIGALRM);
|
|
|
|
sigprocmask(SIG_BLOCK, &set, NULL);
|
1999-12-21 00:42:50 +03:00
|
|
|
|
2000-06-06 01:48:25 +04:00
|
|
|
args = cmd;
|
|
|
|
cmd = strsep(&args, " \t");
|
1995-01-20 11:30:50 +03:00
|
|
|
|
1999-12-20 06:45:01 +03:00
|
|
|
if (curmode->c_commands) {
|
|
|
|
for (c = curmode->c_commands; c->c_name; c++) {
|
2000-04-11 05:01:26 +04:00
|
|
|
if (strstr(c->c_name, cmd) == c->c_name) {
|
1999-12-21 00:42:50 +03:00
|
|
|
(c->c_cmd)(args);
|
1999-12-20 06:45:01 +03:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-16 07:02:22 +03:00
|
|
|
for (c = global_commands; c->c_name; c++) {
|
2000-04-11 05:01:26 +04:00
|
|
|
if (strstr(c->c_name, cmd) == c->c_name) {
|
1999-12-21 00:42:50 +03:00
|
|
|
(c->c_cmd)(args);
|
1999-12-16 07:02:22 +03:00
|
|
|
goto done;
|
1995-01-20 11:30:50 +03:00
|
|
|
}
|
|
|
|
}
|
1999-12-16 07:02:22 +03:00
|
|
|
|
1999-12-16 09:16:16 +03:00
|
|
|
for (p = modes; p->c_name; p++) {
|
2000-04-11 05:01:26 +04:00
|
|
|
if (strstr(p->c_name, cmd) == p->c_name) {
|
1999-12-16 09:16:16 +03:00
|
|
|
switch_mode(p);
|
1995-01-20 11:30:50 +03:00
|
|
|
goto done;
|
|
|
|
}
|
1996-12-13 22:26:18 +03:00
|
|
|
}
|
1999-12-16 09:16:16 +03:00
|
|
|
|
1999-12-21 00:42:50 +03:00
|
|
|
if (isdigit(cmd[0])) {
|
|
|
|
global_interval(cmd);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
1999-12-20 06:45:01 +03:00
|
|
|
error("%s: Unknown command.", cmd);
|
1995-01-20 11:30:50 +03:00
|
|
|
done:
|
1996-12-13 22:26:18 +03:00
|
|
|
sigprocmask(SIG_UNBLOCK, &set, NULL);
|
1995-01-20 11:30:50 +03:00
|
|
|
}
|
|
|
|
|
1999-12-16 09:16:16 +03:00
|
|
|
void
|
2000-07-05 15:03:20 +04:00
|
|
|
switch_mode(struct mode *p)
|
1995-01-20 11:30:50 +03:00
|
|
|
{
|
2000-01-11 00:06:15 +03:00
|
|
|
int switchfail;
|
2000-08-25 08:48:56 +04:00
|
|
|
struct mode *r;
|
2000-01-11 00:06:15 +03:00
|
|
|
|
|
|
|
switchfail = 0;
|
2000-08-25 08:48:56 +04:00
|
|
|
r = p;
|
2000-01-11 00:06:15 +03:00
|
|
|
|
2000-09-04 16:28:12 +04:00
|
|
|
if (curmode == p) {
|
|
|
|
status();
|
1999-12-16 09:16:16 +03:00
|
|
|
return;
|
2000-09-04 16:28:12 +04:00
|
|
|
}
|
1999-12-16 09:16:16 +03:00
|
|
|
|
|
|
|
alarm(0);
|
|
|
|
(*curmode->c_close)(wnd);
|
|
|
|
wnd = (*p->c_open)();
|
|
|
|
if (wnd == 0) {
|
|
|
|
wnd = (*curmode->c_open)();
|
|
|
|
if (wnd == 0) {
|
|
|
|
error("Couldn't change back to previous mode");
|
1999-12-21 02:11:50 +03:00
|
|
|
die(0);
|
1995-01-20 11:30:50 +03:00
|
|
|
}
|
1999-12-16 09:16:16 +03:00
|
|
|
|
|
|
|
p = curmode;
|
2000-01-11 00:06:15 +03:00
|
|
|
switchfail++;
|
1995-01-20 11:30:50 +03:00
|
|
|
}
|
1999-12-16 09:16:16 +03:00
|
|
|
|
|
|
|
if ((p->c_flags & CF_INIT) == 0) {
|
|
|
|
if ((*p->c_init)())
|
|
|
|
p->c_flags |= CF_INIT;
|
2000-01-11 00:06:15 +03:00
|
|
|
else {
|
|
|
|
(*p->c_close)(wnd);
|
|
|
|
wnd = (*curmode->c_open)();
|
|
|
|
p = curmode;
|
|
|
|
switchfail++;
|
|
|
|
}
|
1999-12-16 09:16:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
curmode = p;
|
|
|
|
labels();
|
|
|
|
display(0);
|
2000-08-25 08:48:56 +04:00
|
|
|
if (switchfail && !allflag)
|
2000-01-11 00:06:15 +03:00
|
|
|
error("Couldn't switch mode, back to %s", curmode->c_name);
|
2000-08-25 08:48:56 +04:00
|
|
|
else {
|
|
|
|
if (switchfail && allflag) {
|
|
|
|
r++;
|
|
|
|
switch_mode(r);
|
|
|
|
} else {
|
|
|
|
status();
|
|
|
|
}
|
|
|
|
}
|
1995-01-20 11:30:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-07-05 15:03:20 +04:00
|
|
|
status(void)
|
1995-01-20 11:30:50 +03:00
|
|
|
{
|
1999-12-16 07:02:22 +03:00
|
|
|
error("Showing %s, refresh every %d seconds.", curmode->c_name, naptime);
|
1995-01-20 11:30:50 +03:00
|
|
|
}
|