]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - usr.bin/systat/cmds.c
Merge r226396, r240605
[FreeBSD/stable/8.git] / usr.bin / systat / cmds.c
1 /*-
2  * Copyright (c) 1980, 1992, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #include <sys/cdefs.h>
35
36 __FBSDID("$FreeBSD$");
37
38 #ifdef lint
39 static const char sccsid[] = "@(#)cmds.c        8.2 (Berkeley) 4/29/95";
40 #endif
41
42 #include <sys/param.h>
43
44 #include <ctype.h>
45 #include <signal.h>
46 #include <stdlib.h>
47 #include <string.h>
48 #include <unistd.h>
49
50 #include "systat.h"
51 #include "extern.h"
52
53 void
54 command(const char *cmd)
55 {
56         struct cmdtab *p;
57         char *cp, *tmpstr, *tmpstr1;
58         double t;
59
60         tmpstr = tmpstr1 = strdup(cmd);
61         for (cp = tmpstr1; *cp && !isspace(*cp); cp++)
62                 ;
63         if (*cp)
64                 *cp++ = '\0';
65         if (*tmpstr1 == '\0')
66                 return;
67         for (; *cp && isspace(*cp); cp++)
68                 ;
69         if (strcmp(tmpstr1, "quit") == 0 || strcmp(tmpstr1, "q") == 0)
70                 die(0);
71         if (strcmp(tmpstr1, "load") == 0) {
72                 load();
73                 goto done;
74         }
75         if (strcmp(tmpstr1, "stop") == 0) {
76                 delay = 0;
77                 mvaddstr(CMDLINE, 0, "Refresh disabled.");
78                 clrtoeol();
79                 goto done;
80         }
81         if (strcmp(tmpstr1, "help") == 0) {
82                 int _col, _len;
83
84                 move(CMDLINE, _col = 0);
85                 for (p = cmdtab; p->c_name; p++) {
86                         _len = strlen(p->c_name);
87                         if (_col + _len > COLS)
88                                 break;
89                         addstr(p->c_name); _col += _len;
90                         if (_col + 1 < COLS)
91                                 addch(' ');
92                 }
93                 clrtoeol();
94                 goto done;
95         }
96         t = strtod(tmpstr1, NULL) * 1000000.0;
97         if (t > 0 && t < (double)UINT_MAX)
98                 delay = (unsigned int)t;
99         if ((t <= 0 || t > (double)UINT_MAX) &&
100             (strcmp(tmpstr1, "start") == 0 ||
101             strcmp(tmpstr1, "interval") == 0)) {
102                 if (*cp != '\0') {
103                         t = strtod(cp, NULL) * 1000000.0;
104                         if (t <= 0 || t >= (double)UINT_MAX) {
105                                 error("%d: bad interval.", (int)t);
106                                 goto done;
107                         }
108                 }
109         }
110         if (t > 0) {
111                 delay = (unsigned int)t;
112                 display();
113                 status();
114                 goto done;
115         }
116         p = lookup(tmpstr1);
117         if (p == (struct cmdtab *)-1) {
118                 error("%s: Ambiguous command.", tmpstr1);
119                 goto done;
120         }
121         if (p) {
122                 if (curcmd == p)
123                         goto done;
124                 (*curcmd->c_close)(wnd);
125                 curcmd->c_flags &= ~CF_INIT;
126                 wnd = (*p->c_open)();
127                 if (wnd == 0) {
128                         error("Couldn't open new display");
129                         wnd = (*curcmd->c_open)();
130                         if (wnd == 0) {
131                                 error("Couldn't change back to previous cmd");
132                                 exit(1);
133                         }
134                         p = curcmd;
135                 }
136                 if ((p->c_flags & CF_INIT) == 0) {
137                         if ((*p->c_init)())
138                                 p->c_flags |= CF_INIT;
139                         else
140                                 goto done;
141                 }
142                 curcmd = p;
143                 labels();
144                 display();
145                 status();
146                 goto done;
147         }
148         if (curcmd->c_cmd == 0 || !(*curcmd->c_cmd)(tmpstr1, cp))
149                 error("%s: Unknown command.", tmpstr1);
150 done:
151         free(tmpstr);
152 }
153
154 struct cmdtab *
155 lookup(const char *name)
156 {
157         const char *p, *q;
158         struct cmdtab *ct, *found;
159         int nmatches, longest;
160
161         longest = 0;
162         nmatches = 0;
163         found = (struct cmdtab *) 0;
164         for (ct = cmdtab; (p = ct->c_name); ct++) {
165                 for (q = name; *q == *p++; q++)
166                         if (*q == 0)            /* exact match? */
167                                 return (ct);
168                 if (!*q) {                      /* the name was a prefix */
169                         if (q - name > longest) {
170                                 longest = q - name;
171                                 nmatches = 1;
172                                 found = ct;
173                         } else if (q - name == longest)
174                                 nmatches++;
175                 }
176         }
177         if (nmatches > 1)
178                 return ((struct cmdtab *)-1);
179         return (found);
180 }
181
182 void
183 status(void)
184 {
185
186         error("Showing %s, refresh every %d seconds.",
187           curcmd->c_name, delay / 1000000);
188 }
189
190 int
191 prefix(const char *s1, const char *s2)
192 {
193
194         while (*s1 == *s2) {
195                 if (*s1 == '\0')
196                         return (1);
197                 s1++, s2++;
198         }
199         return (*s1 == '\0');
200 }