slstatus/components/swap.c
Laslo Hunhold 80fc20d1d6 Add warn() and die()
Given slstatus is a tool that runs in the background, most likely run
from .xinitrc, it's important to prepend the name of the tool to error
messages so it becomes clear where the error is coming from.

To make this much more consistent, this commit adds warn() and die()
utility functions consistent with other suckless projects and adapts all
calls to fprintf(stderr, *) to the warn() and die() functions, greatly
increasing the readability of the code.
2018-05-18 11:13:05 +02:00

210 lines
3.7 KiB
C

/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include "../util.h"
#if defined(__linux__)
static size_t
pread(const char *path, char *buf, size_t bufsiz)
{
FILE *fp;
size_t bytes_read;
if (!(fp = fopen(path, "r"))) {
warn("fopen '%s':", path);
return 0;
}
if (!(bytes_read = fread(buf, sizeof(char), bufsiz, fp))) {
warn("fread '%s':", path);
fclose(fp);
return 0;
}
fclose(fp);
buf[bytes_read] = '\0';
return bytes_read;
}
const char *
swap_free(void)
{
long total, free;
char *match;
if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
return NULL;
}
if (!(match = strstr(buf, "SwapTotal"))) {
return NULL;
}
sscanf(match, "SwapTotal: %ld kB\n", &total);
if (!(match = strstr(buf, "SwapFree"))) {
return NULL;
}
sscanf(match, "SwapFree: %ld kB\n", &free);
return bprintf("%f", (float)free / 1024 / 1024);
}
const char *
swap_perc(void)
{
long total, free, cached;
char *match;
if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
return NULL;
}
if (!(match = strstr(buf, "SwapTotal"))) {
return NULL;
}
sscanf(match, "SwapTotal: %ld kB\n", &total);
if (!(match = strstr(buf, "SwapCached"))) {
return NULL;
}
sscanf(match, "SwapCached: %ld kB\n", &cached);
if (!(match = strstr(buf, "SwapFree"))) {
return NULL;
}
sscanf(match, "SwapFree: %ld kB\n", &free);
return bprintf("%d", 100 * (total - free - cached) / total);
}
const char *
swap_total(void)
{
long total;
char *match;
if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
return NULL;
}
if (!(match = strstr(buf, "SwapTotal"))) {
return NULL;
}
sscanf(match, "SwapTotal: %ld kB\n", &total);
return bprintf("%f", (float)total / 1024 / 1024);
}
const char *
swap_used(void)
{
long total, free, cached;
char *match;
if (!pread("/proc/meminfo", buf, sizeof(buf) - 1)) {
return NULL;
}
if (!(match = strstr(buf, "SwapTotal"))) {
return NULL;
}
sscanf(match, "SwapTotal: %ld kB\n", &total);
if (!(match = strstr(buf, "SwapCached"))) {
return NULL;
}
sscanf(match, "SwapCached: %ld kB\n", &cached);
if (!(match = strstr(buf, "SwapFree"))) {
return NULL;
}
sscanf(match, "SwapFree: %ld kB\n", &free);
return bprintf("%f", (float)(total - free - cached) / 1024 / 1024);
}
#elif defined(__OpenBSD__)
#include <stdlib.h>
#include <sys/param.h> /* dbtob */
#include <sys/swap.h>
#include <sys/types.h>
#include <unistd.h>
static void
getstats(int *total, int *used)
{
struct swapent *sep, *fsep;
int rnswap, nswap, i;
nswap = swapctl(SWAP_NSWAP, 0, 0);
if (nswap < 1) {
warn("swaptctl 'SWAP_NSWAP':");
}
fsep = sep = calloc(nswap, sizeof(*sep));
if (!sep) {
warn("calloc 'nswap':");
}
rnswap = swapctl(SWAP_STATS, (void *)sep, nswap);
if (rnswap < 0) {
warn("swapctl 'SWAP_STATA':");
}
if (nswap != rnswap) {
warn("getstats: SWAP_STATS != SWAP_NSWAP");
}
*total = 0;
*used = 0;
for (i = 0; i < rnswap; i++) {
*total += sep->se_nblks >> 1;
*used += sep->se_inuse >> 1;
}
free(fsep);
}
const char *
swap_free(void)
{
int total, used;
getstats(&total, &used);
return bprintf("%f", (float)(total - used) / 1024 / 1024);
}
const char *
swap_perc(void)
{
int total, used;
getstats(&total, &used);
return bprintf("%d", 100 * used / total);
}
const char *
swap_total(void)
{
int total, used;
getstats(&total, &used);
return bprintf("%f", (float)total / 1024 / 1024);
}
const char *
swap_used(void)
{
int total, used;
getstats(&total, &used);
return bprintf("%f", (float)used / 1024 / 1024);
}
#endif