2 * Copyright (c) 1980, 1992, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * @(#) Copyright (c) 1980, 1992, 1993 The Regents of the University of California. All rights reserved.
30 * @(#)main.c 8.1 (Berkeley) 6/6/93
31 * $FreeBSD: src/usr.bin/systat/main.c,v 1.11.2.1 2001/06/06 20:26:01 tmm Exp $
34 #include <sys/param.h>
48 static struct nlist namelist
[] = {
53 { .n_name
= "_stathz" },
64 int verbose
= 1; /* to report kvm read errs */
69 char hostname
[MAXHOSTNAMELEN
];
73 static WINDOW
*wload
; /* one line window for load average */
76 main(int argc
, char **argv
)
78 char errbuf
[_POSIX2_LINE_MAX
];
81 setlocale(LC_TIME
, "");
87 if (op
[0] == '-' && op
[1] && op
[2] == 0) {
94 "systat [-w] -cmd [interval]\n");
115 } else if (op
[0] == '-') {
118 p
= lookup(&argv
[0][1]);
119 if (p
== (struct cmdtab
*)-1)
120 errx(1, "%s: ambiguous request", &argv
[0][1]);
122 errx(1, "%s: unknown request", &argv
[0][1]);
125 naptime
= strtod(argv
[0], NULL
);
131 kd
= kvm_openfiles(NULL
, NULL
, NULL
, O_RDONLY
, errbuf
);
137 signal(SIGQUIT
, die
);
138 signal(SIGTERM
, die
);
141 * Initialize display. Load average appears in a one line
142 * window of its own. Current command's display appears in
143 * an overlapping sub-window of stdscr configured by the display
144 * routines to minimize update work by curses.
148 wnd
= (*curcmd
->c_open
)();
150 warnx("couldn't initialize display");
153 wload
= newwin(1, 0, 3, 20);
155 warnx("couldn't set up load average window");
158 if (kvm_nlist(kd
, namelist
)) {
162 if (namelist
[X_FIRST
].n_type
== 0)
163 errx(1, "couldn't read namelist");
164 gethostname(hostname
, sizeof (hostname
));
165 NREAD(X_HZ
, &hz
, sizeof(hz
));
166 NREAD(X_STATHZ
, &stathz
, sizeof(stathz
));
167 hertz
= stathz
? stathz
: hz
;
169 curcmd
->c_flags
|= CF_INIT
;
174 signal(SIGALRM
, display
);
187 if (curcmd
->c_flags
& CF_LOADAV
) {
189 "/0 /1 /2 /3 /4 /5 /6 /7 /8 /9 /10");
190 mvaddstr(3, 5, "Load Average");
192 (*curcmd
->c_label
)();
194 mvprintw(21, 25, "CPU usage on %s", hostname
);
200 display(int signo __unused
)
203 struct itimerval ctv
;
205 /* Get the load average over the last minute. */
206 (void) getloadavg(avenrun
, NELEM(avenrun
));
207 (*curcmd
->c_fetch
)();
208 if (curcmd
->c_flags
& CF_LOADAV
) {
209 j
= 5.0*avenrun
[0] + 0.5;
210 dellave
= avenrun
[0];
212 wmove(wload
, 0, 0); wclrtoeol(wload
);
213 for (i
= (j
> 50) ? 50 : j
; i
> 0; i
--)
216 wprintw(wload
, " %4.1f", avenrun
[0]);
218 (*curcmd
->c_refresh
)();
219 if (curcmd
->c_flags
& CF_LOADAV
)
224 ctv
.it_interval
.tv_sec
= 0;
225 ctv
.it_interval
.tv_usec
= 0;
226 ctv
.it_value
.tv_sec
= (int)naptime
;
227 ctv
.it_value
.tv_usec
= (naptime
- (double)(int)naptime
) * 1000000.0;
228 setitimer(ITIMER_REAL
, &ctv
, NULL
);
235 (void) getloadavg(avenrun
, NELEM(avenrun
));
236 mvprintw(CMDLINE
, 0, "%4.1f %4.1f %4.1f",
237 avenrun
[0], avenrun
[1], avenrun
[2]);
242 die(int signo __unused
)
254 error(const char *fmt
, ...)
262 getyx(stdscr
, oy
, ox
);
263 (void) vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
266 mvaddstr(CMDLINE
, 0, buf
);
271 (void) vfprintf(stderr
, fmt
, ap
);
272 fprintf(stderr
, "\n");
278 nlisterr(struct nlist
*n_list
)
284 mvprintw(2, 10, "systat: nlist: can't find following symbols:");
286 n_list
[i
].n_name
!= NULL
&& *n_list
[i
].n_name
!= '\0'; i
++)
287 if (n_list
[i
].n_value
== 0)
288 mvprintw(2 + ++n
, 10, "%s", n_list
[i
].n_name
);