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