Home | History | Annotate | Line # | Download | only in systat
cmds.c revision 1.13
      1  1.13     jwise /*	$NetBSD: cmds.c,v 1.13 1999/12/16 06:16:16 jwise Exp $	*/
      2   1.2       jtc 
      3   1.1       jtc /*-
      4   1.1       jtc  * Copyright (c) 1980, 1992, 1993
      5   1.1       jtc  *	The Regents of the University of California.  All rights reserved.
      6   1.1       jtc  *
      7   1.1       jtc  * Redistribution and use in source and binary forms, with or without
      8   1.1       jtc  * modification, are permitted provided that the following conditions
      9   1.1       jtc  * are met:
     10   1.1       jtc  * 1. Redistributions of source code must retain the above copyright
     11   1.1       jtc  *    notice, this list of conditions and the following disclaimer.
     12   1.1       jtc  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       jtc  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       jtc  *    documentation and/or other materials provided with the distribution.
     15   1.1       jtc  * 3. All advertising materials mentioning features or use of this software
     16   1.1       jtc  *    must display the following acknowledgement:
     17   1.1       jtc  *	This product includes software developed by the University of
     18   1.1       jtc  *	California, Berkeley and its contributors.
     19   1.1       jtc  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       jtc  *    may be used to endorse or promote products derived from this software
     21   1.1       jtc  *    without specific prior written permission.
     22   1.1       jtc  *
     23   1.1       jtc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       jtc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       jtc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       jtc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       jtc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       jtc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       jtc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       jtc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       jtc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       jtc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       jtc  * SUCH DAMAGE.
     34   1.1       jtc  */
     35   1.1       jtc 
     36   1.7       mrg #include <sys/cdefs.h>
     37   1.1       jtc #ifndef lint
     38   1.2       jtc #if 0
     39   1.3       jtc static char sccsid[] = "@(#)cmds.c	8.2 (Berkeley) 4/29/95";
     40   1.2       jtc #endif
     41  1.13     jwise __RCSID("$NetBSD: cmds.c,v 1.13 1999/12/16 06:16:16 jwise Exp $");
     42   1.1       jtc #endif /* not lint */
     43   1.1       jtc 
     44   1.1       jtc #include <stdlib.h>
     45   1.1       jtc #include <unistd.h>
     46   1.1       jtc #include <signal.h>
     47   1.1       jtc #include <ctype.h>
     48   1.1       jtc #include <string.h>
     49   1.1       jtc #include "systat.h"
     50   1.1       jtc #include "extern.h"
     51   1.1       jtc 
     52  1.13     jwise void	switch_mode __P((struct mode *p));
     53  1.13     jwise 
     54   1.1       jtc void
     55   1.1       jtc command(cmd)
     56   1.5    scottr 	char *cmd;
     57   1.1       jtc {
     58  1.11     jwise 	struct command *c;
     59  1.11     jwise 	struct mode *p;
     60   1.8     lukem 	char *cp;
     61   1.5    scottr 	sigset_t set;
     62   1.5    scottr 
     63   1.5    scottr 	sigemptyset(&set);
     64   1.5    scottr 	sigaddset(&set, SIGALRM);
     65   1.5    scottr 	sigprocmask(SIG_BLOCK, &set, NULL);
     66   1.9  christos 	for (cp = cmd; *cp && !isspace((unsigned char)*cp); cp++)
     67   1.5    scottr 		;
     68   1.5    scottr 	if (*cp)
     69   1.5    scottr 		*cp++ = '\0';
     70   1.1       jtc 	if (*cmd == '\0')
     71   1.1       jtc 		return;
     72   1.9  christos 	for (; *cp && isspace((unsigned char)*cp); cp++)
     73   1.1       jtc 		;
     74   1.1       jtc 
     75  1.11     jwise 	for (c = global_commands; c->c_name; c++) {
     76  1.11     jwise 		if (strcmp(cmd, c->c_name) == 0) {
     77  1.12     jwise 			(c->c_cmd)(cp);
     78  1.11     jwise 			goto done;
     79   1.1       jtc 		}
     80   1.1       jtc 	}
     81  1.11     jwise 
     82  1.13     jwise 	if (isdigit(cmd[0])) {
     83  1.13     jwise 		global_interval(cmd);
     84   1.1       jtc 		goto done;
     85   1.5    scottr 	}
     86  1.13     jwise 
     87  1.13     jwise 	for (p = modes; p->c_name; p++) {
     88  1.13     jwise 		if (strcmp(cmd, p->c_name) == 0) {
     89  1.13     jwise 			switch_mode(p);
     90   1.1       jtc 			goto done;
     91   1.1       jtc 		}
     92   1.5    scottr 	}
     93  1.13     jwise 
     94  1.11     jwise 	if (curmode->c_cmd == 0 || !(*curmode->c_cmd)(cmd, cp))
     95   1.6  matthias 		error("%s: Unknown command.", cmd);
     96   1.1       jtc done:
     97   1.5    scottr 	sigprocmask(SIG_UNBLOCK, &set, NULL);
     98   1.1       jtc }
     99   1.1       jtc 
    100  1.13     jwise void
    101  1.13     jwise switch_mode(p)
    102  1.13     jwise 	struct mode *p;
    103   1.1       jtc {
    104  1.13     jwise 	if (curmode == p)
    105  1.13     jwise 		return;
    106  1.13     jwise 
    107  1.13     jwise 	alarm(0);
    108  1.13     jwise 	(*curmode->c_close)(wnd);
    109  1.13     jwise 	wnd = (*p->c_open)();
    110  1.13     jwise 	if (wnd == 0) {
    111  1.13     jwise 		error("Couldn't open new display");
    112  1.13     jwise 		wnd = (*curmode->c_open)();
    113  1.13     jwise 		if (wnd == 0) {
    114  1.13     jwise 			error("Couldn't change back to previous mode");
    115  1.13     jwise 			exit(1);
    116   1.1       jtc 		}
    117  1.13     jwise 
    118  1.13     jwise 		p = curmode;
    119   1.1       jtc 	}
    120  1.13     jwise 
    121  1.13     jwise 	if ((p->c_flags & CF_INIT) == 0) {
    122  1.13     jwise 		if ((*p->c_init)())
    123  1.13     jwise 			p->c_flags |= CF_INIT;
    124  1.13     jwise 		else
    125  1.13     jwise 			return;
    126  1.13     jwise 	}
    127  1.13     jwise 
    128  1.13     jwise 	curmode = p;
    129  1.13     jwise 	labels();
    130  1.13     jwise 	display(0);
    131  1.13     jwise 	status();
    132   1.1       jtc }
    133   1.1       jtc 
    134   1.1       jtc void
    135   1.1       jtc status()
    136   1.1       jtc {
    137  1.11     jwise 	error("Showing %s, refresh every %d seconds.", curmode->c_name, naptime);
    138   1.1       jtc }
    139   1.1       jtc 
    140  1.10  sommerfe /* case insensitive prefix comparison */
    141   1.1       jtc int
    142   1.1       jtc prefix(s1, s2)
    143   1.8     lukem 	char *s1, *s2;
    144   1.1       jtc {
    145  1.10  sommerfe 	char c1, c2;
    146   1.1       jtc 
    147  1.10  sommerfe 	while (1) {
    148  1.10  sommerfe 		c1 = *s1 >= 'A' && *s1 <= 'Z' ? *s1 + 'a' - 'A' : *s1;
    149  1.10  sommerfe 		c2 = *s2 >= 'A' && *s2 <= 'Z' ? *s2 + 'a' - 'A' : *s2;
    150  1.10  sommerfe 		if (c1 != c2)
    151  1.10  sommerfe 			break;
    152  1.10  sommerfe 		if (c1 == '\0')
    153   1.5    scottr 			return (1);
    154   1.5    scottr 		s1++, s2++;
    155   1.5    scottr 	}
    156   1.5    scottr 	return (*s1 == '\0');
    157   1.1       jtc }
    158