Home | History | Annotate | Line # | Download | only in systat
      1  1.30  christos /*	$NetBSD: cmds.c,v 1.30 2016/10/22 22:02:55 christos 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.26       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       jtc  *    may be used to endorse or promote products derived from this software
     17   1.1       jtc  *    without specific prior written permission.
     18   1.1       jtc  *
     19   1.1       jtc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       jtc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       jtc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       jtc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       jtc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       jtc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       jtc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       jtc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       jtc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       jtc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       jtc  * SUCH DAMAGE.
     30   1.1       jtc  */
     31   1.1       jtc 
     32   1.7       mrg #include <sys/cdefs.h>
     33   1.1       jtc #ifndef lint
     34   1.2       jtc #if 0
     35   1.3       jtc static char sccsid[] = "@(#)cmds.c	8.2 (Berkeley) 4/29/95";
     36   1.2       jtc #endif
     37  1.30  christos __RCSID("$NetBSD: cmds.c,v 1.30 2016/10/22 22:02:55 christos Exp $");
     38   1.1       jtc #endif /* not lint */
     39   1.1       jtc 
     40  1.25    simonb #include <ctype.h>
     41   1.1       jtc #include <signal.h>
     42   1.1       jtc #include <string.h>
     43  1.25    simonb #include <unistd.h>
     44  1.25    simonb 
     45   1.1       jtc #include "systat.h"
     46   1.1       jtc #include "extern.h"
     47   1.1       jtc 
     48  1.22        ad void	switch_mode(struct mode *p);
     49  1.13     jwise 
     50   1.1       jtc void
     51  1.22        ad command(char *cmd)
     52   1.1       jtc {
     53  1.11     jwise 	struct command *c;
     54  1.11     jwise 	struct mode *p;
     55  1.16     jwise 	char *args;
     56   1.5    scottr 
     57  1.24        ad 	if (cmd[0] == '\0')
     58  1.24        ad 		return;
     59  1.24        ad 
     60  1.21   mycroft 	args = cmd;
     61  1.21   mycroft 	cmd = strsep(&args, " \t");
     62   1.1       jtc 
     63  1.14     jwise 	if (curmode->c_commands) {
     64  1.14     jwise 		for (c = curmode->c_commands; c->c_name; c++) {
     65  1.20     jwise 			if (strstr(c->c_name, cmd) == c->c_name) {
     66  1.16     jwise 				(c->c_cmd)(args);
     67  1.14     jwise 				goto done;
     68  1.14     jwise 			}
     69  1.14     jwise 		}
     70  1.14     jwise 	}
     71  1.14     jwise 
     72  1.11     jwise 	for (c = global_commands; c->c_name; c++) {
     73  1.20     jwise 		if (strstr(c->c_name, cmd) == c->c_name) {
     74  1.16     jwise 			(c->c_cmd)(args);
     75  1.11     jwise 			goto done;
     76   1.1       jtc 		}
     77   1.1       jtc 	}
     78  1.11     jwise 
     79  1.13     jwise 	for (p = modes; p->c_name; p++) {
     80  1.20     jwise 		if (strstr(p->c_name, cmd) == p->c_name) {
     81  1.13     jwise 			switch_mode(p);
     82   1.1       jtc 			goto done;
     83   1.1       jtc 		}
     84  1.16     jwise 	}
     85  1.16     jwise 
     86  1.28       dsl 	if (isdigit((unsigned char)cmd[0])) {
     87  1.16     jwise 		global_interval(cmd);
     88  1.16     jwise 		goto done;
     89   1.5    scottr 	}
     90  1.13     jwise 
     91  1.14     jwise 	error("%s: Unknown command.", cmd);
     92   1.1       jtc done:
     93  1.27   mycroft 	;
     94   1.1       jtc }
     95   1.1       jtc 
     96  1.13     jwise void
     97  1.22        ad switch_mode(struct mode *p)
     98   1.1       jtc {
     99  1.19    itojun 	int switchfail;
    100  1.23   hubertf 	struct mode *r;
    101  1.19    itojun 
    102  1.19    itojun 	switchfail = 0;
    103  1.23   hubertf 	r = p;
    104  1.19    itojun 
    105  1.24        ad 	if (curmode == p) {
    106  1.24        ad 		status();
    107  1.13     jwise 		return;
    108  1.24        ad 	}
    109  1.13     jwise 
    110  1.13     jwise 	alarm(0);
    111  1.13     jwise 	(*curmode->c_close)(wnd);
    112  1.13     jwise 	wnd = (*p->c_open)();
    113  1.13     jwise 	if (wnd == 0) {
    114  1.13     jwise 		wnd = (*curmode->c_open)();
    115  1.13     jwise 		if (wnd == 0) {
    116  1.13     jwise 			error("Couldn't change back to previous mode");
    117  1.18     jwise 			die(0);
    118   1.1       jtc 		}
    119  1.13     jwise 
    120  1.13     jwise 		p = curmode;
    121  1.19    itojun 		switchfail++;
    122   1.1       jtc 	}
    123  1.13     jwise 
    124  1.13     jwise 	if ((p->c_flags & CF_INIT) == 0) {
    125  1.13     jwise 		if ((*p->c_init)())
    126  1.13     jwise 			p->c_flags |= CF_INIT;
    127  1.19    itojun 		else {
    128  1.19    itojun 			(*p->c_close)(wnd);
    129  1.19    itojun 			wnd = (*curmode->c_open)();
    130  1.19    itojun 			p = curmode;
    131  1.19    itojun 			switchfail++;
    132  1.19    itojun 		}
    133  1.13     jwise 	}
    134  1.13     jwise 
    135  1.13     jwise 	curmode = p;
    136  1.13     jwise 	labels();
    137  1.13     jwise 	display(0);
    138  1.23   hubertf 	if (switchfail && !allflag)
    139  1.19    itojun 		error("Couldn't switch mode, back to %s", curmode->c_name);
    140  1.23   hubertf 	else {
    141  1.23   hubertf 		if (switchfail && allflag) {
    142  1.23   hubertf 			r++;
    143  1.23   hubertf 			switch_mode(r);
    144  1.23   hubertf 		} else {
    145  1.23   hubertf 			status();
    146  1.23   hubertf 		}
    147  1.23   hubertf 	}
    148   1.1       jtc }
    149   1.1       jtc 
    150   1.1       jtc void
    151  1.22        ad status(void)
    152   1.1       jtc {
    153  1.30  christos 	error("Showing %s, refresh every %g seconds.", curmode->c_name, naptime);
    154   1.1       jtc }
    155  1.29     scole 
    156  1.29     scole int
    157  1.29     scole prefix(const char *s1, const char *s2)
    158  1.29     scole {
    159  1.29     scole 
    160  1.29     scole 	while (*s1 == *s2) {
    161  1.29     scole 		if (*s1 == '\0')
    162  1.29     scole 			return (1);
    163  1.29     scole 		s1++, s2++;
    164  1.29     scole 	}
    165  1.29     scole 	return (*s1 == '\0');
    166  1.29     scole }
    167