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