#include <sys/param.h>
#include <sys/conf.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <kvm.h>
#include <nlist.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <err.h>
#include "systat.h"
#include "extern.h"
void showspace(char *header, int hlen, long blocksize);
static long blocksize;
static int hlen;
WINDOW *
openswap(void)
{
return (subwin(stdscr, LINES-5-1, 0, 5, 0));
}
void
closeswap(WINDOW *w)
{
if (w == NULL)
return;
wclear(w);
wrefresh(w);
delwin(w);
}
int
initswap(void)
{
char msgbuf[BUFSIZ];
static int once = 0;
struct kvm_swap dummy;
if (once)
return (1);
if (kvm_getswapinfo(kd, &dummy, 1, 0) < 0) {
snprintf(msgbuf, sizeof(msgbuf), "systat: kvm_getswapinfo failed");
error("%s", msgbuf);
return (0);
}
once = 1;
return (1);
}
static struct kvm_swap kvmsw[16];
static int kvnsw;
void
fetchswap(void)
{
kvnsw = kvm_getswapinfo(kd, kvmsw, 16, 0);
}
void
labelswap(void)
{
char *header;
int row, i;
fetchswap();
row = 0;
wmove(wnd, row, 0); wclrtobot(wnd);
header = getbsize(&hlen, &blocksize);
mvwprintw(wnd, row++, 0, "%-5s%*s%9s %55s",
"Disk", hlen, header, "Used",
"/0% /10% /20% /30% /40% /50% /60% /70% /80% /90% /100");
for (i = 0; i < kvnsw; ++i) {
mvwprintw(wnd, i + 1, 0, "%-5s", kvmsw[i].ksw_devname);
}
}
void
showswap(void)
{
int i;
int pagesize = getpagesize();
#define CONVERT(v) ((int)((quad_t)(v) * pagesize / blocksize))
for (i = 0; i <= kvnsw; ++i) {
int _col = 5;
int count;
if (i == kvnsw) {
if (kvnsw == 1)
break;
mvwprintw(
wnd,
i + 1,
0,
"%-5s",
"Total"
);
}
if (kvmsw[i].ksw_total == 0) {
mvwprintw(
wnd,
i + 1,
_col + 5,
"(swap not configured)"
);
continue;
}
mvwprintw(
wnd,
i + 1,
_col,
"%*d",
hlen,
CONVERT(kvmsw[i].ksw_total)
);
_col += hlen;
mvwprintw(
wnd,
i + 1,
_col,
"%9d ",
CONVERT(kvmsw[i].ksw_used)
);
count = (int)((double)kvmsw[i].ksw_used * 49.999 /
(double)kvmsw[i].ksw_total);
while (count >= 0) {
waddch(wnd, 'X');
--count;
}
}
}