dwmblocks/dwmblocks.c

304 lines
9.4 KiB
C
Raw Normal View History

2020-07-06 21:23:31 +00:00
#include <errno.h>
#include <fcntl.h>
2020-07-09 20:10:34 +00:00
#include <limits.h>
2020-07-06 21:23:31 +00:00
#include <signal.h>
2020-07-03 21:04:11 +00:00
#include <stdio.h>
2020-07-06 21:23:31 +00:00
#include <stdlib.h>
2020-07-03 21:04:11 +00:00
#include <string.h>
#include <unistd.h>
#include <X11/Xlib.h>
2020-07-06 21:23:31 +00:00
#define CMDLENGTH 25
#define STTLENGTH 256
2020-07-03 21:04:11 +00:00
#define LOCKFILE "/tmp/dwmblocks.pid"
2020-07-09 20:10:34 +00:00
#define NILL INT_MIN
2020-07-03 21:04:11 +00:00
#define EMPTYCMDOUT(block) (block->cmdoutcur[0] == '\n' || block->cmdoutcur[0] == '\0')
#define NOTATCMDOUTEND(block, i) (i < CMDLENGTH && block->cmdoutcur[i] != '\n' && block->cmdoutcur[i] != '\0')
typedef struct {
2020-07-24 21:33:29 +00:00
char *pathu;
char *pathc;
const int interval;
const int signal;
2020-07-03 21:04:11 +00:00
char cmdoutcur[CMDLENGTH];
char cmdoutprv[CMDLENGTH];
} Block;
2020-07-07 10:17:13 +00:00
#include "blocks.h"
2020-07-03 21:04:11 +00:00
static void buttonhandler(int signal, siginfo_t *si, void *ucontext);
2020-07-09 20:10:34 +00:00
static void getcmd(Block *block, int sigval);
2020-07-03 21:04:11 +00:00
static void setroot();
static void setupsignals();
2020-07-06 20:28:41 +00:00
static void sighandler(int signal, siginfo_t *si, void *ucontext);
2020-07-03 21:04:11 +00:00
static void statusloop();
static void termhandler(int signum);
static int updatestatus();
static void writepid();
2020-07-24 21:33:29 +00:00
static int statuscontinue = 1;
2020-07-03 21:04:11 +00:00
static char statusstr[STTLENGTH];
static size_t delimlength;
static Display *dpy;
void
buttonhandler(int signal, siginfo_t *si, void *ucontext)
{
2020-07-24 21:33:29 +00:00
signal = si->si_value.sival_int >> 8;
switch (fork()) {
2020-07-03 21:04:11 +00:00
case -1:
perror("buttonhandler - fork");
exit(1);
case 0:
close(ConnectionNumber(dpy));
2020-07-03 21:04:11 +00:00
for (Block *current = blocks; current->pathu; current++) {
if (current->signal == signal) {
char button[] = { '0' + (si->si_value.sival_int & 0xff), '\0' };
char *arg[] = { current->pathc, button, NULL };
setsid();
execv(arg[0], arg);
2020-07-08 17:25:19 +00:00
perror("buttonhandler - child - execv");
2020-07-03 21:04:11 +00:00
_exit(127);
}
}
exit(0);
}
}
void
2020-07-09 20:10:34 +00:00
getcmd(Block *block, int sigval)
2020-07-03 21:04:11 +00:00
{
int fd[2];
if (pipe(fd) == -1) {
perror("getcmd - pipe");
exit(1);
}
switch (fork()) {
case -1:
perror("getcmd - fork");
exit(1);
case 0:
close(ConnectionNumber(dpy));
2020-07-03 21:04:11 +00:00
close(fd[0]);
if (dup2(fd[1], STDOUT_FILENO) != STDOUT_FILENO) {
2020-07-08 17:25:19 +00:00
perror("getcmd - child - dup2");
2020-07-03 21:04:11 +00:00
exit(1);
}
close(fd[1]);
2020-07-09 20:10:34 +00:00
if (sigval == NILL) {
char *arg[] = { block->pathu, NULL };
2020-07-03 21:04:11 +00:00
execv(arg[0], arg);
} else {
2020-07-09 20:10:34 +00:00
char buf[12];
char *arg[] = { block->pathu, buf, NULL };
2020-07-03 21:04:11 +00:00
2020-07-09 20:10:34 +00:00
snprintf(buf, sizeof buf, "%d", sigval);
2020-07-03 21:04:11 +00:00
execv(arg[0], arg);
}
2020-07-08 17:25:19 +00:00
perror("getcmd - child - execv");
2020-07-03 21:04:11 +00:00
_exit(127);
default:
close(fd[1]);
if (read(fd[0], block->cmdoutcur, CMDLENGTH) == -1) {
perror("getcmd - read");
exit(1);
}
close(fd[0]);
}
}
void
setroot()
{
2020-07-25 11:50:09 +00:00
if (updatestatus()) {
XStoreName(dpy, DefaultRootWindow(dpy), statusstr);
XFlush(dpy);
}
2020-07-03 21:04:11 +00:00
}
void
setupsignals()
{
struct sigaction sa;
sigemptyset(&sa.sa_mask);
sa.sa_flags = SA_RESTART;
/* to handle INT, HUP and TERM */
sa.sa_handler = termhandler;
2020-07-24 21:33:29 +00:00
sigaction(SIGINT, &sa, NULL);
sigaction(SIGHUP, &sa, NULL);
sigaction(SIGTERM, &sa, NULL);
2020-07-03 21:04:11 +00:00
/* to ignore unused realtime signals */
sa.sa_handler = SIG_IGN;
for (int i = SIGRTMIN; i <= SIGRTMAX; i++)
sigaction(i, &sa, NULL);
/* to handle signals generated by dwm on click events */
2020-07-24 21:33:29 +00:00
sa.sa_flags = SA_RESTART | SA_SIGINFO;
sa.sa_sigaction = buttonhandler;
sigaction(SIGRTMIN, &sa, NULL);
2020-07-03 21:04:11 +00:00
/* to handle update signals for individual blocks */
sa.sa_sigaction = sighandler;
2020-07-24 21:33:29 +00:00
for (Block *current = blocks; current->pathu; current++)
if (current->signal > 0)
sigaction(SIGRTMIN + current->signal, &sa, NULL);
2020-07-03 21:04:11 +00:00
/* to prevent forked children from becoming zombies */
2020-07-24 21:33:29 +00:00
sa.sa_flags = SA_NOCLDWAIT | SA_RESTART;
sa.sa_handler = SIG_DFL;
2020-07-03 21:04:11 +00:00
sigaction(SIGCHLD, &sa, NULL);
}
void
2020-07-06 20:28:41 +00:00
sighandler(int signal, siginfo_t *si, void *ucontext)
2020-07-03 21:04:11 +00:00
{
2020-07-24 21:33:29 +00:00
signal -= SIGRTMIN;
for (Block *current = blocks; current->pathu; current++)
if (current->signal == signal)
getcmd(current, si->si_value.sival_int);
setroot();
2020-07-03 21:04:11 +00:00
}
void
statusloop()
{
2020-07-24 21:33:29 +00:00
int i;
2020-07-03 21:04:11 +00:00
2020-07-24 21:33:29 +00:00
setupsignals();
2020-07-03 21:04:11 +00:00
for (Block *current = blocks; current->pathu; current++)
if (current->interval >= 0)
2020-07-09 20:10:34 +00:00
getcmd(current, NILL);
2020-07-03 21:04:11 +00:00
setroot();
sleep(SLEEPINTERVAL);
i = SLEEPINTERVAL;
2020-07-24 21:33:29 +00:00
while (statuscontinue) {
2020-07-03 21:04:11 +00:00
for (Block *current = blocks; current->pathu; current++)
if (current->interval > 0 && i % current->interval == 0)
2020-07-09 20:10:34 +00:00
getcmd(current, NILL);
2020-07-24 21:33:29 +00:00
setroot();
sleep(SLEEPINTERVAL);
i += SLEEPINTERVAL;
}
2020-07-03 21:04:11 +00:00
}
void
termhandler(int signum)
{
2020-07-24 21:33:29 +00:00
statuscontinue = 0;
2020-07-03 21:04:11 +00:00
}
/* returns whether block outputs have changed and updates statusstr if they have */
int
updatestatus()
{
int i;
char *str = statusstr;
Block *current;
for (current = blocks; current->pathu; current++) {
if (EMPTYCMDOUT(current)) {
if (current->cmdoutprv[0] != current->cmdoutcur[0]) {
current->cmdoutprv[0] = current->cmdoutcur[0];
current++;
goto update0;
}
2020-07-03 21:04:11 +00:00
continue;
}
i = 0;
do {
if (current->cmdoutcur[i] == current->cmdoutprv[i]) {
i++;
continue;
} else {
str += i;
goto update1;
2020-07-03 21:04:11 +00:00
}
} while (NOTATCMDOUTEND(current, i));
str += i;
if (current->pathc && current->signal)
str++;
2020-07-22 15:43:23 +00:00
if (*str == '\0')
goto update2;
2020-07-03 21:04:11 +00:00
str += delimlength;
}
2020-07-25 11:50:09 +00:00
return 0;
update0:
for (; current->pathu; current++) {
2020-07-03 21:04:11 +00:00
if (EMPTYCMDOUT(current)) {
current->cmdoutprv[0] = current->cmdoutcur[0];
continue;
}
i = 0;
update1:
2020-07-03 21:04:11 +00:00
do {
*(str++) = current->cmdoutcur[i];
current->cmdoutprv[i] = current->cmdoutcur[i];
i++;
} while (NOTATCMDOUTEND(current, i));
if (current->pathc && current->signal)
*(str++) = current->signal;
2020-07-22 15:43:23 +00:00
update2:
2020-07-03 21:04:11 +00:00
for (i = 0; delim[i]; i++)
*(str++) = delim[i];
*(str++) = '\n';
}
/* remove delimiter at the end if not all blocks are empty */
2020-07-03 21:04:11 +00:00
if (str != statusstr)
*(str - delimlength) = '\0';
2020-07-25 11:50:09 +00:00
return 1;
2020-07-03 21:04:11 +00:00
}
void
writepid()
{
int fd;
struct flock fl;
fd = open(LOCKFILE, O_RDWR|O_CREAT, 0644);
if (fd == -1) {
perror("writepid - fd");
exit(1);
}
fl.l_type = F_WRLCK;
fl.l_start = 0;
fl.l_whence = SEEK_SET;
fl.l_len = 0;
if (fcntl(fd, F_SETLK, &fl) == -1) {
if (errno == EACCES || errno == EAGAIN) {
fputs("Error: another instance of dwmblocks is already running.\n", stderr);
exit(2);
}
2020-07-24 16:25:56 +00:00
perror("writepid - fcntl");
2020-07-03 21:04:11 +00:00
exit(1);
}
if (ftruncate(fd, 0) == -1) {
perror("writepid - ftruncate");
exit(1);
}
2020-07-24 20:31:56 +00:00
if (dprintf(fd, "%ld", (long)getpid()) < 0) {
perror("writepid - dprintf");
2020-07-03 21:04:11 +00:00
exit(1);
}
}
int
main(int argc, char *argv[])
{
writepid();
2020-07-07 10:14:42 +00:00
if (argc > 2)
2020-07-13 21:19:38 +00:00
if (strcmp(argv[1], "-d") == 0)
2020-07-03 21:04:11 +00:00
delim = argv[2];
delimlength = strlen(delim) + 1;
if (!(dpy = XOpenDisplay(NULL))) {
fputs("Error: could not open display.\n", stderr);
return 1;
}
2020-07-24 21:33:29 +00:00
statusloop();
2020-07-03 21:04:11 +00:00
unlink(LOCKFILE);
2020-07-06 20:28:41 +00:00
XStoreName(dpy, DefaultRootWindow(dpy), "");
2020-07-03 21:04:11 +00:00
XCloseDisplay(dpy);
return 0;
}