/* See LICENSE file for copyright and license details. */
-
#include <dirent.h>
#include <err.h>
#include <fcntl.h>
#include "arg.h"
+#define LEN(x) (sizeof (x) / sizeof *(x))
+
struct arg {
const char *(*func)();
const char *fmt;
const char *args;
};
-static const char *bprintf(const char *fmt, ...);
static const char *battery_perc(const char *bat);
static const char *battery_power(const char *bat);
static const char *battery_state(const char *bat);
static const char *vol_perc(const char *card);
static const char *wifi_perc(const char *iface);
static const char *wifi_essid(const char *iface);
-static void sighandler(const int signo);
-static void usage(void);
char *argv0;
static unsigned short int delay = 0;
fp = fopen(path, "r");
if (fp == NULL) {
warn("Failed to open file %s", path);
- return UNKNOWN_STR;
+ return unknown_str;
}
n = fscanf(fp, "%i", &perc);
fclose(fp);
if (n != 1)
- return UNKNOWN_STR;
+ return unknown_str;
return bprintf("%d", perc);
}
fp = fopen(path, "r");
if (fp == NULL) {
warn("Failed to open file %s", path);
- return UNKNOWN_STR;
+ return unknown_str;
}
n = fscanf(fp, "%i", &watts);
fclose(fp);
if (n != 1)
- return UNKNOWN_STR;
+ return unknown_str;
return bprintf("%d", (watts + 500000) / 1000000);
}
static const char *
battery_state(const char *bat)
{
- char path[PATH_MAX];
- char state[12];
FILE *fp;
+ struct {
+ char *state;
+ char *symbol;
+ } map[] = {
+ { "Charging", "+" },
+ { "Discharging", "-" },
+ { "Full", "=" },
+ { "Unknown", "/" },
+ };
+ size_t i;
int n;
+ char path[PATH_MAX], state[12];
snprintf(path, sizeof(path), "%s%s%s", "/sys/class/power_supply/", bat, "/status");
fp = fopen(path, "r");
if (fp == NULL) {
warn("Failed to open file %s", path);
- return UNKNOWN_STR;
+ return unknown_str;
}
n = fscanf(fp, "%12s", state);
fclose(fp);
if (n != 1)
- return UNKNOWN_STR;
+ return unknown_str;
- if (strcmp(state, "Charging") == 0) {
- return "+";
- } else if (strcmp(state, "Discharging") == 0) {
- return "-";
- } else if (strcmp(state, "Full") == 0) {
- return "=";
- } else if (strcmp(state, "Unknown") == 0) {
- return "/";
- } else {
- return "?";
+ for (i = 0; i < LEN(map); i++) {
+ if (!strcmp(map[i].state, state)) {
+ break;
+ }
}
+
+ return (i == LEN(map)) ? "?" : map[i].symbol;
}
static const char *
fp = fopen("/sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq", "r");
if (fp == NULL) {
warn("Failed to open file /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq");
- return UNKNOWN_STR;
+ return unknown_str;
}
n = fscanf(fp, "%i", &freq);
fclose(fp);
if (n != 1)
- return UNKNOWN_STR;
+ return unknown_str;
return bprintf("%d", (freq + 500) / 1000);
}
fp = fopen("/proc/stat", "r");
if (fp == NULL) {
warn("Failed to open file /proc/stat");
- return UNKNOWN_STR;
+ return unknown_str;
}
n = fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &a[0], &a[1], &a[2], &a[3]);
fclose(fp);
if (n != 4)
- return UNKNOWN_STR;
+ return unknown_str;
delay++;
sleep(delay);
fp = fopen("/proc/stat", "r");
if (fp == NULL) {
warn("Failed to open file /proc/stat");
- return UNKNOWN_STR;
+ return unknown_str;
}
n = fscanf(fp, "%*s %Lf %Lf %Lf %Lf", &b[0], &b[1], &b[2], &b[3]);
fclose(fp);
if (n != 4)
- return UNKNOWN_STR;
+ return unknown_str;
perc = 100 * ((b[0]+b[1]+b[2]) - (a[0]+a[1]+a[2])) / ((b[0]+b[1]+b[2]+b[3]) - (a[0]+a[1]+a[2]+a[3]));
return bprintf("%d", perc);
t = time(NULL);
if (strftime(buf, sizeof(buf), fmt, localtime(&t)) == 0)
- return UNKNOWN_STR;
+ return unknown_str;
return buf;
}
if (statvfs(mnt, &fs) < 0) {
warn("Failed to get filesystem info");
- return UNKNOWN_STR;
+ return unknown_str;
}
return bprintf("%f", (float)fs.f_bsize * (float)fs.f_bfree / 1024 / 1024 / 1024);
if (statvfs(mnt, &fs) < 0) {
warn("Failed to get filesystem info");
- return UNKNOWN_STR;
+ return unknown_str;
}
perc = 100 * (1.0f - ((float)fs.f_bfree / (float)fs.f_blocks));
if (statvfs(mnt, &fs) < 0) {
warn("Failed to get filesystem info");
- return UNKNOWN_STR;
+ return unknown_str;
}
return bprintf("%f", (float)fs.f_bsize * (float)fs.f_blocks / 1024 / 1024 / 1024);
if (statvfs(mnt, &fs) < 0) {
warn("Failed to get filesystem info");
- return UNKNOWN_STR;
+ return unknown_str;
}
return bprintf("%f", (float)fs.f_bsize * ((float)fs.f_blocks - (float)fs.f_bfree) / 1024 / 1024 / 1024);
fp= fopen("/proc/sys/kernel/random/entropy_avail", "r");
if (fp == NULL) {
warn("Failed to open file /proc/sys/kernel/random/entropy_avail");
- return UNKNOWN_STR;
+ return unknown_str;
}
n = fscanf(fp, "%d", &num);
fclose(fp);
if (n != 1)
- return UNKNOWN_STR;
+ return unknown_str;
return bprintf("%d", num);
}
{
if (gethostname(buf, sizeof(buf)) == -1) {
warn("hostname");
- return UNKNOWN_STR;
+ return unknown_str;
}
return buf;
if (getifaddrs(&ifaddr) == -1) {
warn("Failed to get IP address for interface %s", iface);
- return UNKNOWN_STR;
+ return unknown_str;
}
for (ifa = ifaddr; ifa != NULL; ifa = ifa->ifa_next) {
if ((strcmp(ifa->ifa_name, iface) == 0) && (ifa->ifa_addr->sa_family == AF_INET)) {
if (s != 0) {
warnx("Failed to get IP address for interface %s", iface);
- return UNKNOWN_STR;
+ return unknown_str;
}
return bprintf("%s", host);
}
freeifaddrs(ifaddr);
- return UNKNOWN_STR;
+ return unknown_str;
}
static const char *
struct utsname udata;
if (uname(&udata) < 0) {
- return UNKNOWN_STR;
+ return unknown_str;
}
return bprintf("%s", udata.release);
{
Display *dpy = XOpenDisplay(NULL);
XKeyboardState state;
+
+ if (dpy == NULL) {
+ warnx("XOpenDisplay failed");
+ return unknown_str;
+ }
XGetKeyboardControl(dpy, &state);
XCloseDisplay(dpy);
if (getloadavg(avgs, 3) < 0) {
warnx("Failed to get the load avg");
- return UNKNOWN_STR;
+ return unknown_str;
}
return bprintf("%.2f %.2f %.2f", avgs[0], avgs[1], avgs[2]);
if ((fd = opendir(dir)) == NULL) {
warn("Failed to get number of files in directory %s", dir);
- return UNKNOWN_STR;
+ return unknown_str;
}
while ((dp = readdir(fd)) != NULL) {
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
+ return unknown_str;
}
n = fscanf(fp, "MemFree: %ld kB\n", &free);
fclose(fp);
if (n != 1)
- return UNKNOWN_STR;
+ return unknown_str;
return bprintf("%f", (float)free / 1024 / 1024);
}
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
+ return unknown_str;
}
if (fscanf(fp, "MemTotal: %ld kB\n", &total) != 1 ||
fscanf(fp, "MemFree: %ld kB\n", &free) != 1 ||
scanerr:
fclose(fp);
- return UNKNOWN_STR;
+ return unknown_str;
}
static const char *
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
+ return unknown_str;
}
n = fscanf(fp, "MemTotal: %ld kB\n", &total);
fclose(fp);
if (n != 1)
- return UNKNOWN_STR;
+ return unknown_str;
return bprintf("%f", (float)total / 1024 / 1024);
}
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
+ return unknown_str;
}
if (fscanf(fp, "MemTotal: %ld kB\n", &total) != 1 ||
fscanf(fp, "MemFree: %ld kB\n", &free) != 1 ||
scanerr:
fclose(fp);
- return UNKNOWN_STR;
+ return unknown_str;
}
static const char *
fp = popen(cmd, "r");
if (fp == NULL) {
warn("Failed to get command output for %s", cmd);
- return UNKNOWN_STR;
+ return unknown_str;
}
p = fgets(buf, sizeof(buf) - 1, fp);
pclose(fp);
if (!p)
- return UNKNOWN_STR;
+ return unknown_str;
if ((p = strrchr(buf, '\n')) != NULL)
p[0] = '\0';
- return buf[0] ? buf : UNKNOWN_STR;
+ return buf[0] ? buf : unknown_str;
}
static const char *
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
+ return unknown_str;
}
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
warn("swap_free: read error");
fclose(fp);
- return UNKNOWN_STR;
+ return unknown_str;
}
fclose(fp);
if ((match = strstr(buf, "SwapTotal")) == NULL)
- return UNKNOWN_STR;
+ return unknown_str;
sscanf(match, "SwapTotal: %ld kB\n", &total);
if ((match = strstr(buf, "SwapFree")) == NULL)
- return UNKNOWN_STR;
+ return unknown_str;
sscanf(match, "SwapFree: %ld kB\n", &free);
return bprintf("%f", (float)free / 1024 / 1024);
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
+ return unknown_str;
}
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
warn("swap_perc: read error");
fclose(fp);
- return UNKNOWN_STR;
+ return unknown_str;
}
fclose(fp);
if ((match = strstr(buf, "SwapTotal")) == NULL)
- return UNKNOWN_STR;
+ return unknown_str;
sscanf(match, "SwapTotal: %ld kB\n", &total);
if ((match = strstr(buf, "SwapCached")) == NULL)
- return UNKNOWN_STR;
+ return unknown_str;
sscanf(match, "SwapCached: %ld kB\n", &cached);
if ((match = strstr(buf, "SwapFree")) == NULL)
- return UNKNOWN_STR;
+ return unknown_str;
sscanf(match, "SwapFree: %ld kB\n", &free);
return bprintf("%d", 100 * (total - free - cached) / total);
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
+ return unknown_str;
}
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
warn("swap_total: read error");
fclose(fp);
- return UNKNOWN_STR;
+ return unknown_str;
}
fclose(fp);
if ((match = strstr(buf, "SwapTotal")) == NULL)
- return UNKNOWN_STR;
+ return unknown_str;
sscanf(match, "SwapTotal: %ld kB\n", &total);
return bprintf("%f", (float)total / 1024 / 1024);
fp = fopen("/proc/meminfo", "r");
if (fp == NULL) {
warn("Failed to open file /proc/meminfo");
- return UNKNOWN_STR;
+ return unknown_str;
}
if ((bytes_read = fread(buf, sizeof(char), sizeof(buf) - 1, fp)) == 0) {
warn("swap_used: read error");
fclose(fp);
- return UNKNOWN_STR;
+ return unknown_str;
}
fclose(fp);
if ((match = strstr(buf, "SwapTotal")) == NULL)
- return UNKNOWN_STR;
+ return unknown_str;
sscanf(match, "SwapTotal: %ld kB\n", &total);
if ((match = strstr(buf, "SwapCached")) == NULL)
- return UNKNOWN_STR;
+ return unknown_str;
sscanf(match, "SwapCached: %ld kB\n", &cached);
if ((match = strstr(buf, "SwapFree")) == NULL)
- return UNKNOWN_STR;
+ return unknown_str;
sscanf(match, "SwapFree: %ld kB\n", &free);
return bprintf("%f", (float)(total - free - cached) / 1024 / 1024);
fp = fopen(file, "r");
if (fp == NULL) {
warn("Failed to open file %s", file);
- return UNKNOWN_STR;
+ return unknown_str;
}
n = fscanf(fp, "%d", &temp);
fclose(fp);
if (n != 1)
- return UNKNOWN_STR;
+ return unknown_str;
return bprintf("%d", temp / 1000);
}
if (pw == NULL) {
warn("Failed to get username");
- return UNKNOWN_STR;
+ return unknown_str;
}
return bprintf("%s", pw->pw_name);
afd = open(card, O_RDONLY | O_NONBLOCK);
if (afd == -1) {
warn("Cannot open %s", card);
- return UNKNOWN_STR;
+ return unknown_str;
}
if (ioctl(afd, SOUND_MIXER_READ_DEVMASK, &devmask) == -1) {
warn("Cannot get volume for %s", card);
close(afd);
- return UNKNOWN_STR;
+ return unknown_str;
}
- for (i = 0; i < (sizeof(vnames) / sizeof((vnames[0]))); i++) {
+ for (i = 0; i < LEN(vnames); i++) {
if (devmask & (1 << i) && !strcmp("vol", vnames[i])) {
if (ioctl(afd, MIXER_READ(i), &v) == -1) {
warn("vol_perc: ioctl");
close(afd);
- return UNKNOWN_STR;
+ return unknown_str;
}
}
}
fp = fopen(path, "r");
if (fp == NULL) {
warn("Failed to open file %s", path);
- return UNKNOWN_STR;
+ return unknown_str;
}
p = fgets(status, 5, fp);
fclose(fp);
if(!p || strcmp(status, "up\n") != 0) {
- return UNKNOWN_STR;
+ return unknown_str;
}
fp = fopen("/proc/net/wireless", "r");
if (fp == NULL) {
warn("Failed to open file /proc/net/wireless");
- return UNKNOWN_STR;
+ return unknown_str;
}
for (i = 0; i < 3; i++) {
}
fclose(fp);
if (i < 2 || !p)
- return UNKNOWN_STR;
+ return unknown_str;
if ((datastart = strstr(buf, iface)) == NULL)
- return UNKNOWN_STR;
+ return unknown_str;
datastart = (datastart+(strlen(iface)+1));
sscanf(datastart + 1, " %*d %d %*d %*d %*d %*d %*d %*d %*d %*d", &perc);
if (sockfd == -1) {
warn("Failed to get ESSID for interface %s", iface);
- return UNKNOWN_STR;
+ return unknown_str;
}
wreq.u.essid.pointer = id;
if (ioctl(sockfd,SIOCGIWESSID, &wreq) == -1) {
warn("Failed to get ESSID for interface %s", iface);
- return UNKNOWN_STR;
+ return unknown_str;
}
close(sockfd);
if (strcmp(id, "") == 0)
- return UNKNOWN_STR;
+ return unknown_str;
else
return id;
}
static void
-sighandler(const int signo)
+terminate(const int signo)
{
- if (signo == SIGTERM || signo == SIGINT) {
- done = 1;
- }
+ done = 1;
}
static void
}
memset(&act, 0, sizeof(act));
- act.sa_handler = sighandler;
- sigaction(SIGINT, &act, 0);
- sigaction(SIGTERM, &act, 0);
+ act.sa_handler = terminate;
+ sigaction(SIGINT, &act, NULL);
+ sigaction(SIGTERM, &act, NULL);
if (!sflag) {
dpy = XOpenDisplay(NULL);
+ if (!dpy) {
+ fprintf(stderr, "slstatus: cannot open display");
+ exit(1);
+ }
}
setlocale(LC_ALL, "");
while (!done) {
status_string[0] = '\0';
- for (element = status_string, i = len = 0;
- i < sizeof(args) / sizeof(args[0]);
+ for (element = status_string, i = len = 0; i < LEN(args);
++i, element += len) {
argument = args[i];
len = snprintf(element, sizeof(status_string)-1 - len,
XSync(dpy, False);
}
- if ((UPDATE_INTERVAL - delay) <= 0) {
+ if ((update_interval - delay) <= 0) {
delay = 0;
continue;
} else {
- sleep(UPDATE_INTERVAL - delay);
+ sleep(update_interval - delay);
delay = 0;
}
}