#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include <ctype.h>
#include <string.h>
#include "systat.h"
#include "extern.h"
void
command(const char *cmd)
{
struct cmdtab *p;
char *cp;
int omask;
double interval;
omask = sigblock(sigmask(SIGALRM));
for (cp = __DECONST(char *, cmd); *cp && !isspace(*cp); cp++)
;
if (*cp)
*cp++ = '\0';
if (*cmd == '\0')
return;
for (; *cp && isspace(*cp); cp++)
;
if (strcmp(cmd, "quit") == 0 || strcmp(cmd, "q") == 0)
die(0);
if (strcmp(cmd, "load") == 0) {
load();
goto done;
}
if (strcmp(cmd, "stop") == 0) {
alarm(0);
mvaddstr(CMDLINE, 0, "Refresh disabled.");
clrtoeol();
goto done;
}
if (strcmp(cmd, "help") == 0) {
int _col, _len;
move(CMDLINE, _col = 0);
for (p = cmdtab; p->c_name; p++) {
_len = strlen(p->c_name);
if (_col + _len > COLS)
break;
addstr(p->c_name); _col += _len;
if (_col + 1 < COLS)
addch(' ');
}
clrtoeol();
goto done;
}
interval = strtod(cmd, NULL);
if (interval <= 0.0 &&
(strcmp(cmd, "start") == 0 || strcmp(cmd, "interval") == 0)) {
interval = *cp ? strtod(cp, NULL) : naptime;
if (interval <= 0.0) {
error("%3.2f: bad interval.", interval);
goto done;
}
}
if (interval > 0.0) {
alarm(0);
naptime = interval;
display(0);
status();
goto done;
}
p = lookup(cmd);
if (p == (struct cmdtab *)-1) {
error("%s: Ambiguous command.", cmd);
goto done;
}
if (p) {
if (curcmd == p)
goto done;
alarm(0);
(*curcmd->c_close)(wnd);
wnd = (*p->c_open)();
if (wnd == 0) {
error("Couldn't open new display");
wnd = (*curcmd->c_open)();
if (wnd == 0) {
error("Couldn't change back to previous cmd");
exit(1);
}
p = curcmd;
}
if ((p->c_flags & CF_INIT) == 0) {
if ((*p->c_init)())
p->c_flags |= CF_INIT;
else
goto done;
}
curcmd = p;
labels();
display(0);
status();
goto done;
}
if (curcmd->c_cmd == 0 || !(*curcmd->c_cmd)(cmd, cp))
error("%s: Unknown command.", cmd);
done:
sigsetmask(omask);
}
struct cmdtab *
lookup(const char *name)
{
const char *p, *q;
struct cmdtab *ct, *found;
int nmatches, longest;
longest = 0;
nmatches = 0;
found = NULL;
for (ct = cmdtab; (p = ct->c_name); ct++) {
for (q = name; *q == *p++; q++)
if (*q == 0)
return (ct);
if (!*q) {
if (q - name > longest) {
longest = q - name;
nmatches = 1;
found = ct;
} else if (q - name == longest)
nmatches++;
}
}
if (nmatches > 1)
return ((struct cmdtab *)-1);
return (found);
}
void
status(void)
{
error("Showing %s, refresh every %3.2f seconds.",
curcmd->c_name, naptime);
}
int
prefix(const char *s1, const char *s2)
{
while (*s1 == *s2) {
if (*s1 == '\0')
return (1);
s1++, s2++;
}
return (*s1 == '\0');
}