slstatus/slstatus.c

142 lines
2.6 KiB
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <signal.h>
2016-03-04 17:07:42 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <X11/Xlib.h>
2017-01-07 21:33:28 +00:00
#include "arg.h"
#include "slstatus.h"
#include "util.h"
2017-08-11 11:39:19 +00:00
struct arg {
const char *(*func)(const char *);
2016-09-17 15:06:06 +00:00
const char *fmt;
const char *args;
};
char buf[1024];
static volatile sig_atomic_t done;
static Display *dpy;
#include "config.h"
static void
2017-08-13 18:33:44 +00:00
terminate(const int signo)
{
if (signo != SIGUSR1)
done = 1;
}
static void
difftimespec(struct timespec *res, struct timespec *a, struct timespec *b)
{
res->tv_sec = a->tv_sec - b->tv_sec - (a->tv_nsec < b->tv_nsec);
res->tv_nsec = a->tv_nsec - b->tv_nsec +
2018-05-27 15:57:52 +00:00
(a->tv_nsec < b->tv_nsec) * 1E9;
}
static void
usage(void)
{
die("usage: %s [-s] [-1]", argv0);
}
2016-03-04 17:07:42 +00:00
int
main(int argc, char *argv[])
2016-03-04 17:07:42 +00:00
{
struct sigaction act;
struct timespec start, current, diff, intspec, wait;
size_t i, len;
int sflag, ret;
char status[MAXLEN];
const char *res;
sflag = 0;
ARGBEGIN {
case '1':
done = 1;
/* FALLTHROUGH */
case 's':
sflag = 1;
break;
default:
usage();
} ARGEND
if (argc) {
usage();
}
memset(&act, 0, sizeof(act));
2017-08-13 18:33:44 +00:00
act.sa_handler = terminate;
sigaction(SIGINT, &act, NULL);
sigaction(SIGTERM, &act, NULL);
act.sa_flags |= SA_RESTART;
sigaction(SIGUSR1, &act, NULL);
if (!sflag && !(dpy = XOpenDisplay(NULL))) {
die("XOpenDisplay: Failed to open display");
}
do {
if (clock_gettime(CLOCK_MONOTONIC, &start) < 0) {
die("clock_gettime:");
}
status[0] = '\0';
for (i = len = 0; i < LEN(args); i++) {
if (!(res = args[i].func(args[i].args))) {
res = unknown_str;
}
if ((ret = esnprintf(status + len, sizeof(status) - len,
args[i].fmt, res)) < 0) {
break;
2016-09-04 22:21:03 +00:00
}
len += ret;
2016-09-03 21:10:49 +00:00
}
if (sflag) {
puts(status);
fflush(stdout);
if (ferror(stdout))
die("puts:");
} else {
if (XStoreName(dpy, DefaultRootWindow(dpy), status)
< 0) {
die("XStoreName: Allocation failed");
}
XFlush(dpy);
2016-09-17 14:51:21 +00:00
}
if (!done) {
if (clock_gettime(CLOCK_MONOTONIC, &current) < 0) {
die("clock_gettime:");
}
difftimespec(&diff, &current, &start);
intspec.tv_sec = interval / 1000;
2018-05-27 15:57:52 +00:00
intspec.tv_nsec = (interval % 1000) * 1E6;
difftimespec(&wait, &intspec, &diff);
if (wait.tv_sec >= 0) {
if (nanosleep(&wait, NULL) < 0 &&
errno != EINTR) {
die("nanosleep:");
}
}
2016-12-27 16:12:39 +00:00
}
} while (!done);
2016-09-09 17:26:06 +00:00
if (!sflag) {
XStoreName(dpy, DefaultRootWindow(dpy), NULL);
if (XCloseDisplay(dpy) < 0) {
die("XCloseDisplay: Failed to close display");
}
2016-09-17 14:51:21 +00:00
}
2016-09-13 17:34:25 +00:00
return 0;
2016-03-04 17:07:42 +00:00
}