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