2016-09-18 22:00:50 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-05-17 23:23:28 +02:00
|
|
|
#include <errno.h>
|
2016-09-13 19:09:01 +02:00
|
|
|
#include <signal.h>
|
2016-03-04 18:07:42 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2017-01-07 22:33:28 +01:00
|
|
|
#include "arg.h"
|
2017-09-17 17:21:54 +02:00
|
|
|
#include "slstatus.h"
|
2017-09-17 16:18:17 +02:00
|
|
|
#include "util.h"
|
2017-08-11 13:39:19 +02:00
|
|
|
|
2016-08-18 14:55:05 +02:00
|
|
|
struct arg {
|
2017-06-13 00:06:04 +02:00
|
|
|
const char *(*func)();
|
2016-09-17 17:06:06 +02:00
|
|
|
const char *fmt;
|
2016-08-18 14:55:05 +02:00
|
|
|
const char *args;
|
|
|
|
};
|
|
|
|
|
2017-09-17 17:21:54 +02:00
|
|
|
char buf[1024];
|
2018-05-17 17:28:32 +02:00
|
|
|
static int done;
|
2016-08-18 14:55:05 +02:00
|
|
|
static Display *dpy;
|
|
|
|
|
2016-03-14 20:17:14 +01:00
|
|
|
#include "config.h"
|
2016-03-10 14:59:37 +01:00
|
|
|
|
2016-09-13 19:09:01 +02:00
|
|
|
static void
|
2017-08-13 20:33:44 +02:00
|
|
|
terminate(const int signo)
|
2016-09-13 19:09:01 +02:00
|
|
|
{
|
2017-09-17 17:21:54 +02:00
|
|
|
(void)signo;
|
|
|
|
|
2017-08-13 20:33:44 +02:00
|
|
|
done = 1;
|
2016-09-13 19:09:01 +02:00
|
|
|
}
|
|
|
|
|
2017-08-13 23:21:23 +02:00
|
|
|
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 +
|
|
|
|
(a->tv_nsec < b->tv_nsec) * 1000000000;
|
|
|
|
}
|
|
|
|
|
2016-09-16 23:31:24 +02:00
|
|
|
static void
|
2017-08-10 21:36:29 +02:00
|
|
|
usage(void)
|
2016-09-16 23:31:24 +02:00
|
|
|
{
|
2018-05-18 10:59:05 +02:00
|
|
|
die("usage: %s [-s]", argv0);
|
2016-09-16 23:31:24 +02:00
|
|
|
}
|
|
|
|
|
2016-03-04 18:07:42 +01:00
|
|
|
int
|
2016-09-16 23:31:24 +02:00
|
|
|
main(int argc, char *argv[])
|
2016-03-04 18:07:42 +01:00
|
|
|
{
|
2016-09-13 19:09:01 +02:00
|
|
|
struct sigaction act;
|
2017-08-13 23:21:23 +02:00
|
|
|
struct timespec start, current, diff, intspec, wait;
|
2017-08-10 22:22:39 +02:00
|
|
|
size_t i, len;
|
2018-05-17 23:23:28 +02:00
|
|
|
int sflag, ret;
|
2017-08-13 23:21:23 +02:00
|
|
|
char status[MAXLEN];
|
2018-05-18 10:07:50 +02:00
|
|
|
const char *res;
|
2016-09-13 19:09:01 +02:00
|
|
|
|
2018-05-07 15:57:32 +02:00
|
|
|
sflag = 0;
|
2016-09-16 23:31:24 +02:00
|
|
|
ARGBEGIN {
|
2017-08-10 22:22:39 +02:00
|
|
|
case 's':
|
|
|
|
sflag = 1;
|
2017-05-11 19:06:45 +02:00
|
|
|
break;
|
2016-09-16 23:31:24 +02:00
|
|
|
default:
|
2017-08-10 21:36:29 +02:00
|
|
|
usage();
|
2016-09-16 23:31:24 +02:00
|
|
|
} ARGEND
|
|
|
|
|
2017-08-10 22:23:55 +02:00
|
|
|
if (argc) {
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
2016-09-13 19:09:01 +02:00
|
|
|
memset(&act, 0, sizeof(act));
|
2017-08-13 20:33:44 +02:00
|
|
|
act.sa_handler = terminate;
|
|
|
|
sigaction(SIGINT, &act, NULL);
|
|
|
|
sigaction(SIGTERM, &act, NULL);
|
2016-08-16 11:41:43 +02:00
|
|
|
|
2018-05-18 10:07:50 +02:00
|
|
|
if (sflag) {
|
|
|
|
setbuf(stdout, NULL);
|
|
|
|
}
|
|
|
|
|
2017-08-13 23:21:23 +02:00
|
|
|
if (!sflag && !(dpy = XOpenDisplay(NULL))) {
|
2018-05-18 10:59:05 +02:00
|
|
|
die("XOpenDisplay: Failed to open display");
|
2016-09-17 16:53:45 +02:00
|
|
|
}
|
2016-09-05 00:13:48 +02:00
|
|
|
|
2016-09-13 19:09:01 +02:00
|
|
|
while (!done) {
|
2018-05-18 10:07:50 +02:00
|
|
|
if (clock_gettime(CLOCK_MONOTONIC, &start) < 0) {
|
2018-05-18 10:59:05 +02:00
|
|
|
die("clock_gettime:");
|
2018-05-18 10:07:50 +02:00
|
|
|
}
|
2017-08-13 23:21:23 +02:00
|
|
|
|
|
|
|
status[0] = '\0';
|
|
|
|
for (i = len = 0; i < LEN(args); i++) {
|
2018-05-18 10:07:50 +02:00
|
|
|
if (!(res = args[i].func(args[i].args))) {
|
|
|
|
res = unknown_str;
|
|
|
|
}
|
2018-05-19 19:33:04 +02:00
|
|
|
if ((ret = esnprintf(status + len, sizeof(status) - len,
|
2018-05-17 23:23:28 +02:00
|
|
|
args[i].fmt, res)) < 0) {
|
|
|
|
break;
|
2016-09-05 00:21:03 +02:00
|
|
|
}
|
2018-05-17 23:23:28 +02:00
|
|
|
len += ret;
|
2016-09-03 23:10:49 +02:00
|
|
|
}
|
2016-09-16 23:31:24 +02:00
|
|
|
|
2017-08-10 22:22:39 +02:00
|
|
|
if (sflag) {
|
2017-08-13 23:21:23 +02:00
|
|
|
printf("%s\n", status);
|
2017-05-11 19:06:45 +02:00
|
|
|
} else {
|
2018-05-18 10:07:50 +02:00
|
|
|
if (XStoreName(dpy, DefaultRootWindow(dpy), status) < 0) {
|
2018-05-18 10:59:05 +02:00
|
|
|
die("XStoreName: Allocation failed");
|
2018-05-18 10:07:50 +02:00
|
|
|
}
|
|
|
|
XFlush(dpy);
|
2016-09-17 16:51:21 +02:00
|
|
|
}
|
2016-09-16 23:31:24 +02:00
|
|
|
|
2017-08-13 23:21:23 +02:00
|
|
|
if (!done) {
|
2018-05-18 10:07:50 +02:00
|
|
|
if (clock_gettime(CLOCK_MONOTONIC, ¤t) < 0) {
|
2018-05-18 10:59:05 +02:00
|
|
|
die("clock_gettime:");
|
2018-05-18 10:07:50 +02:00
|
|
|
}
|
2017-08-13 23:21:23 +02:00
|
|
|
difftimespec(&diff, ¤t, &start);
|
|
|
|
|
|
|
|
intspec.tv_sec = interval / 1000;
|
|
|
|
intspec.tv_nsec = (interval % 1000) * 1000000;
|
|
|
|
difftimespec(&wait, &intspec, &diff);
|
|
|
|
|
|
|
|
if (wait.tv_sec >= 0) {
|
2018-05-18 10:07:50 +02:00
|
|
|
if (nanosleep(&wait, NULL) < 0 &&
|
|
|
|
errno != EINTR) {
|
2018-05-18 10:59:05 +02:00
|
|
|
die("nanosleep:");
|
2018-05-18 10:07:50 +02:00
|
|
|
}
|
2017-08-13 23:21:23 +02:00
|
|
|
}
|
2016-12-27 17:12:39 +01:00
|
|
|
}
|
2016-09-03 23:10:49 +02:00
|
|
|
}
|
2016-09-09 19:26:06 +02:00
|
|
|
|
2017-08-10 22:22:39 +02:00
|
|
|
if (!sflag) {
|
2016-12-27 17:56:11 +01:00
|
|
|
XStoreName(dpy, DefaultRootWindow(dpy), NULL);
|
2018-05-18 10:07:50 +02:00
|
|
|
if (XCloseDisplay(dpy) < 0) {
|
2018-05-18 10:59:05 +02:00
|
|
|
die("XCloseDisplay: Failed to close display");
|
2018-05-18 10:07:50 +02:00
|
|
|
}
|
2016-09-17 16:51:21 +02:00
|
|
|
}
|
2016-09-13 19:34:25 +02:00
|
|
|
|
2016-08-16 11:41:43 +02:00
|
|
|
return 0;
|
2016-03-04 18:07:42 +01:00
|
|
|
}
|