NetBSD/usr.bin/systat/iostat.c

371 lines
8.3 KiB
C
Raw Normal View History

/* $NetBSD: iostat.c,v 1.27 2003/02/24 10:10:00 dsl Exp $ */
1995-01-20 11:30:50 +03:00
/*
* Copyright (c) 1980, 1992, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
1997-07-21 11:04:56 +04:00
#include <sys/cdefs.h>
1995-01-20 11:30:50 +03:00
#ifndef lint
#if 0
1995-01-20 11:30:50 +03:00
static char sccsid[] = "@(#)iostat.c 8.1 (Berkeley) 6/6/93";
#endif
__RCSID("$NetBSD: iostat.c,v 1.27 2003/02/24 10:10:00 dsl Exp $");
#endif /* not lint */
1995-01-20 11:30:50 +03:00
#include <sys/param.h>
#include <string.h>
1995-01-20 11:30:50 +03:00
#include "systat.h"
#include "extern.h"
#include "dkstats.h"
1995-01-20 11:30:50 +03:00
static int linesperregion;
static double etime;
static int numbers = 0; /* default display bar graphs */
static int secs = 0; /* default seconds shown */
static int read_write = 0; /* default read/write shown */
1995-01-20 11:30:50 +03:00
static int barlabels(int);
static void histogram(double, int, double);
static int numlabels(int);
static int stats(int, int, int);
static void stat1(int, int);
1995-01-20 11:30:50 +03:00
WINDOW *
openiostat(void)
1995-01-20 11:30:50 +03:00
{
1997-07-21 11:04:56 +04:00
return (subwin(stdscr, -1, 0, 5, 0));
1995-01-20 11:30:50 +03:00
}
void
closeiostat(WINDOW *w)
1995-01-20 11:30:50 +03:00
{
1997-07-21 11:04:56 +04:00
1995-01-20 11:30:50 +03:00
if (w == NULL)
return;
wclear(w);
wrefresh(w);
delwin(w);
}
int
initiostat(void)
1995-01-20 11:30:50 +03:00
{
1997-07-21 11:04:56 +04:00
2002-01-28 16:20:43 +03:00
dkinit(1);
dkreadstats();
1997-07-21 11:04:56 +04:00
return(1);
1995-01-20 11:30:50 +03:00
}
void
fetchiostat(void)
1995-01-20 11:30:50 +03:00
{
1997-07-21 11:04:56 +04:00
if (dk_ndrive == 0)
1995-01-20 11:30:50 +03:00
return;
dkreadstats();
1995-01-20 11:30:50 +03:00
}
#define INSET 14
1995-01-20 11:30:50 +03:00
void
labeliostat(void)
1995-01-20 11:30:50 +03:00
{
int row;
if (dk_ndrive == 0) {
error("No drives defined.");
1995-01-20 11:30:50 +03:00
return;
}
row = 0;
wmove(wnd, row, 0); wclrtobot(wnd);
mvwaddstr(wnd, row++, INSET,
"/0 /10 /20 /30 /40 /50 /60 /70 /80 /90 /100");
mvwaddstr(wnd, row++, 0, " cpu user|");
mvwaddstr(wnd, row++, 0, " nice|");
mvwaddstr(wnd, row++, 0, " system|");
mvwaddstr(wnd, row++, 0, " interrupt|");
mvwaddstr(wnd, row++, 0, " idle|");
1995-01-20 11:30:50 +03:00
if (numbers)
row = numlabels(row + 1);
else
row = barlabels(row + 1);
}
static int
numlabels(int row)
1995-01-20 11:30:50 +03:00
{
int i, col, regions, ndrives;
#define COLWIDTH (read_write ? 24 : 14)
2002-06-09 11:14:32 +04:00
#define DRIVESPERLINE ((getmaxx(wnd) - 1) / COLWIDTH)
1995-01-20 11:30:50 +03:00
for (ndrives = 0, i = 0; i < dk_ndrive; i++)
if (cur.dk_select[i])
1995-01-20 11:30:50 +03:00
ndrives++;
regions = howmany(ndrives, DRIVESPERLINE);
/*
* Deduct -regions for blank line after each scrolling region.
*/
linesperregion = (getmaxy(wnd) - row - regions) / regions;
1995-01-20 11:30:50 +03:00
/*
* Minimum region contains space for two
* label lines and one line of statistics.
*/
if (linesperregion < 3)
linesperregion = 3;
col = 0;
for (i = 0; i < dk_ndrive; i++)
if (cur.dk_select[i]) {
2002-06-09 11:14:32 +04:00
if (col + COLWIDTH > getmaxx(wnd)) {
1995-01-20 11:30:50 +03:00
col = 0, row += linesperregion + 1;
if (row > getmaxy(wnd) - (linesperregion + 1))
1995-01-20 11:30:50 +03:00
break;
}
mvwprintw(wnd, row, col + 4, "%s%s",
cur.dk_name[i], read_write ? " (write)" : "");
if (read_write)
mvwaddstr(wnd, row + 1, col,
"kBps r/s sec kBps w/s");
else
mvwaddstr(wnd, row + 1, col, "kBps tps sec");
1995-01-20 11:30:50 +03:00
col += COLWIDTH;
}
if (col)
row += linesperregion + 1;
return (row);
}
static int
barlabels(int row)
1995-01-20 11:30:50 +03:00
{
int i;
mvwaddstr(wnd, row++, INSET,
"/0 /10 /20 /30 /40 /50 /60 /70 /80 /90 /100");
linesperregion = 2 + secs + (read_write ? 2 : 0);
1995-01-20 11:30:50 +03:00
for (i = 0; i < dk_ndrive; i++)
if (cur.dk_select[i]) {
if (row > getmaxy(wnd) - linesperregion)
1995-01-20 11:30:50 +03:00
break;
2002-12-06 06:13:14 +03:00
mvwprintw(wnd, row++, 0, "%7.7s kBps|",
cur.dk_name[i]);
mvwaddstr(wnd, row++, 0, " tps|");
if (read_write) {
mvwprintw(wnd, row++, 0, " (write) kBps|");
mvwaddstr(wnd, row++, 0, " tps|");
}
if (secs)
mvwaddstr(wnd, row++, 0, " msec|");
1995-01-20 11:30:50 +03:00
}
return (row);
}
void
showiostat(void)
1995-01-20 11:30:50 +03:00
{
int i, row, col;
1995-01-20 11:30:50 +03:00
if (dk_ndrive == 0)
1995-01-20 11:30:50 +03:00
return;
dkswap();
etime = cur.cp_etime;
1995-01-20 11:30:50 +03:00
row = 1;
/*
1995-05-17 19:51:47 +04:00
* Interrupt CPU state not calculated yet.
*/
1995-05-17 19:51:47 +04:00
for (i = 0; i < CPUSTATES; i++)
1995-01-20 11:30:50 +03:00
stat1(row++, i);
if (!numbers) {
row += 2;
for (i = 0; i < dk_ndrive; i++)
if (cur.dk_select[i]) {
if (row > getmaxy(wnd) - linesperregion)
1995-01-20 11:30:50 +03:00
break;
row = stats(row, INSET, i);
}
return;
}
col = 0;
wmove(wnd, row + linesperregion, 0);
wdeleteln(wnd);
wmove(wnd, row + 3, 0);
winsertln(wnd);
for (i = 0; i < dk_ndrive; i++)
if (cur.dk_select[i]) {
2002-06-09 11:14:32 +04:00
if (col + COLWIDTH > getmaxx(wnd)) {
1995-01-20 11:30:50 +03:00
col = 0, row += linesperregion + 1;
if (row > getmaxy(wnd) - (linesperregion + 1))
1995-01-20 11:30:50 +03:00
break;
wmove(wnd, row + linesperregion, 0);
wdeleteln(wnd);
wmove(wnd, row + 3, 0);
winsertln(wnd);
}
(void) stats(row + 3, col, i);
col += COLWIDTH;
}
}
static int
stats(int row, int col, int dn)
1995-01-20 11:30:50 +03:00
{
double atime, rwords, wwords;
/* time busy in disk activity */
atime = (double)cur.dk_time[dn].tv_sec +
((double)cur.dk_time[dn].tv_usec / (double)1000000);
/* # of k transferred */
rwords = cur.dk_rbytes[dn] / 1024.0;
wwords = cur.dk_wbytes[dn] / 1024.0;
1995-01-20 11:30:50 +03:00
if (numbers) {
if (read_write)
mvwprintw(wnd, row, col, "%4.0f%4.0f%5.1f %3.0f%4.0f",
rwords / etime, cur.dk_rxfer[dn] / etime,
atime / etime,
wwords / etime, cur.dk_wxfer[dn] / etime);
else
mvwprintw(wnd, row, col, "%4.0f%4.0f%5.1f",
(rwords + wwords) / etime,
(cur.dk_rxfer[dn] + cur.dk_wxfer[dn]) / etime,
atime / etime);
1995-01-20 11:30:50 +03:00
return (row);
}
if (read_write) {
wmove(wnd, row++, col);
histogram(rwords / etime, 50, 0.5);
wmove(wnd, row++, col);
histogram(cur.dk_rxfer[dn] / etime, 50, 0.5);
wmove(wnd, row++, col);
histogram(wwords / etime, 50, 0.5);
wmove(wnd, row++, col);
histogram(cur.dk_wxfer[dn] / etime, 50, 0.5);
} else {
wmove(wnd, row++, col);
histogram((rwords + wwords) / etime, 50, 0.5);
wmove(wnd, row++, col);
histogram((cur.dk_rxfer[dn] + cur.dk_wxfer[dn]) / etime, 50, 0.5);
}
if (secs) {
1995-01-20 11:30:50 +03:00
wmove(wnd, row++, col);
atime *= 1000; /* In milliseconds */
histogram(atime / etime, 50, 0.5);
1995-01-20 11:30:50 +03:00
}
return (row);
}
static void
stat1(int row, int o)
1995-01-20 11:30:50 +03:00
{
int i;
1995-01-20 11:30:50 +03:00
double time;
time = 0;
for (i = 0; i < CPUSTATES; i++)
time += cur.cp_time[i];
1995-01-20 11:30:50 +03:00
if (time == 0.0)
time = 1.0;
wmove(wnd, row, INSET);
#define CPUSCALE 0.5
histogram(100.0 * cur.cp_time[o] / time, 50, CPUSCALE);
1995-01-20 11:30:50 +03:00
}
static void
histogram(double val, int colwidth, double scale)
1995-01-20 11:30:50 +03:00
{
int v = (int)(val * scale + 0.5);
int factor = 1;
int y, x;
while (v > colwidth) {
v = (v + 5) / 10;
factor *= 10;
1995-01-20 11:30:50 +03:00
}
getyx(wnd, y, x);
1995-01-20 11:30:50 +03:00
wclrtoeol(wnd);
whline(wnd, 'X', v);
if (factor != 1)
mvwprintw(wnd, y, x + colwidth + 1, "* %d ", factor);
1995-01-20 11:30:50 +03:00
}
void
iostat_bars(char *args)
1995-01-20 11:30:50 +03:00
{
numbers = 0;
wclear(wnd);
labeliostat();
refresh();
}
1995-01-20 11:30:50 +03:00
void
iostat_numbers(char *args)
{
numbers = 1;
wclear(wnd);
labeliostat();
refresh();
}
void
iostat_secs(char *args)
{
secs = !secs;
1995-01-20 11:30:50 +03:00
wclear(wnd);
labeliostat();
refresh();
}
void
iostat_rw(char *args)
{
read_write = 1;
wclear(wnd);
labeliostat();
refresh();
}
void
iostat_all(char *args)
{
read_write = 0;
wclear(wnd);
labeliostat();
refresh();
}