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