2018-09-06 04:41:06 +00:00
|
|
|
/* Copyright (C) 2018 Curtis McEnroe <june@causal.agency>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <err.h>
|
|
|
|
#include <poll.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sysexits.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
2018-09-10 23:18:26 +00:00
|
|
|
static struct {
|
|
|
|
bool wait;
|
|
|
|
bool pipe;
|
|
|
|
int fd;
|
|
|
|
} spawn;
|
|
|
|
|
2018-10-28 06:14:22 +00:00
|
|
|
void eventWait(const char *argv[static 2]) {
|
2018-09-10 23:18:26 +00:00
|
|
|
uiHide();
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid < 0) err(EX_OSERR, "fork");
|
|
|
|
if (!pid) {
|
2018-10-28 06:14:22 +00:00
|
|
|
execvp(argv[0], (char *const *)argv);
|
2018-09-10 23:18:26 +00:00
|
|
|
err(EX_CONFIG, "%s", argv[0]);
|
|
|
|
}
|
|
|
|
spawn.wait = true;
|
|
|
|
}
|
2018-09-06 04:41:06 +00:00
|
|
|
|
2018-10-28 06:14:22 +00:00
|
|
|
void eventPipe(const char *argv[static 2]) {
|
2018-09-10 23:18:26 +00:00
|
|
|
if (spawn.pipe) {
|
|
|
|
uiLog(TagStatus, UIHot, L"event: existing pipe");
|
2018-09-06 04:41:06 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int rw[2];
|
|
|
|
int error = pipe(rw);
|
|
|
|
if (error) err(EX_OSERR, "pipe");
|
|
|
|
|
|
|
|
pid_t pid = fork();
|
|
|
|
if (pid < 0) err(EX_OSERR, "fork");
|
|
|
|
if (!pid) {
|
|
|
|
close(rw[0]);
|
|
|
|
close(STDIN_FILENO);
|
|
|
|
dup2(rw[1], STDOUT_FILENO);
|
|
|
|
dup2(rw[1], STDERR_FILENO);
|
|
|
|
close(rw[1]);
|
2018-10-28 06:14:22 +00:00
|
|
|
execvp(argv[0], (char *const *)argv);
|
2018-09-06 04:41:06 +00:00
|
|
|
perror(argv[0]);
|
|
|
|
exit(EX_CONFIG);
|
|
|
|
}
|
|
|
|
|
|
|
|
close(rw[1]);
|
2018-09-10 23:18:26 +00:00
|
|
|
spawn.fd = rw[0];
|
|
|
|
spawn.pipe = true;
|
2018-09-06 04:41:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void pipeRead(void) {
|
|
|
|
char buf[256];
|
2018-09-10 23:18:26 +00:00
|
|
|
ssize_t len = read(spawn.fd, buf, sizeof(buf) - 1);
|
2018-09-06 04:41:06 +00:00
|
|
|
if (len < 0) err(EX_IOERR, "read");
|
|
|
|
if (len) {
|
|
|
|
buf[len] = '\0';
|
|
|
|
len = strcspn(buf, "\n");
|
2018-09-10 23:18:26 +00:00
|
|
|
uiFmt(TagStatus, UIHot, "event: %.*s", (int)len, buf);
|
2018-09-06 04:41:06 +00:00
|
|
|
} else {
|
2018-09-10 23:18:26 +00:00
|
|
|
close(spawn.fd);
|
|
|
|
spawn.pipe = false;
|
2018-09-06 04:41:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void sigchld(int sig) {
|
|
|
|
(void)sig;
|
|
|
|
int status;
|
|
|
|
pid_t pid = wait(&status);
|
|
|
|
if (pid < 0) err(EX_OSERR, "wait");
|
|
|
|
if (WIFEXITED(status) && WEXITSTATUS(status)) {
|
2018-09-10 23:18:26 +00:00
|
|
|
uiFmt(TagStatus, UIHot, "event: exit %d", WEXITSTATUS(status));
|
2018-09-06 04:41:06 +00:00
|
|
|
} else if (WIFSIGNALED(status)) {
|
2018-09-10 23:18:26 +00:00
|
|
|
uiFmt(TagStatus, UIHot, "event: signal %d", WTERMSIG(status));
|
2018-09-06 04:41:06 +00:00
|
|
|
}
|
2018-09-10 23:18:26 +00:00
|
|
|
spawn.wait = false;
|
2018-09-06 04:41:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void sigint(int sig) {
|
|
|
|
(void)sig;
|
|
|
|
input(TagStatus, "/quit");
|
|
|
|
uiExit();
|
|
|
|
exit(EX_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
void eventLoop(int ui, int irc) {
|
|
|
|
signal(SIGINT, sigint);
|
|
|
|
signal(SIGCHLD, sigchld);
|
|
|
|
|
2018-09-10 23:18:26 +00:00
|
|
|
struct pollfd fds[3] = {
|
|
|
|
{ irc, POLLIN, 0 },
|
|
|
|
{ ui, POLLIN, 0 },
|
|
|
|
{ -1, POLLIN, 0 },
|
|
|
|
};
|
2018-09-06 04:41:06 +00:00
|
|
|
for (;;) {
|
2018-09-10 23:18:26 +00:00
|
|
|
nfds_t nfds = 2;
|
|
|
|
if (spawn.wait) nfds = 1;
|
|
|
|
if (spawn.pipe) {
|
|
|
|
fds[2].fd = spawn.fd;
|
|
|
|
nfds = 3;
|
|
|
|
}
|
2018-09-06 04:41:06 +00:00
|
|
|
|
2018-09-10 23:18:26 +00:00
|
|
|
int ready = poll(fds, nfds, -1);
|
2018-09-06 04:41:06 +00:00
|
|
|
if (ready < 0) {
|
|
|
|
if (errno != EINTR) err(EX_IOERR, "poll");
|
|
|
|
uiRead();
|
2018-09-10 23:18:26 +00:00
|
|
|
uiDraw();
|
2018-09-06 04:41:06 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-09-10 23:18:26 +00:00
|
|
|
if (fds[0].revents) ircRead();
|
|
|
|
if (nfds > 1 && fds[1].revents) uiRead();
|
|
|
|
if (nfds > 2 && fds[2].revents) pipeRead();
|
|
|
|
|
|
|
|
if (nfds > 1) uiDraw();
|
2018-09-06 04:41:06 +00:00
|
|
|
}
|
|
|
|
}
|