gri3-wm/i3bar/src/child.c

179 lines
4.3 KiB
C
Raw Normal View History

#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <signal.h>
#include <stdio.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <ev.h>
#include "common.h"
2010-08-07 02:10:05 +02:00
/* stdin- and sigchild-watchers */
ev_io *stdin_io;
ev_child *child_sig;
2010-08-07 02:10:05 +02:00
/*
* Stop and free() the stdin- and sigchild-watchers
*
*/
void cleanup() {
2010-08-07 02:10:05 +02:00
ev_io_stop(main_loop, stdin_io);
ev_child_stop(main_loop, child_sig);
2010-08-07 02:10:05 +02:00
FREE(stdin_io);
FREE(child_sig);
FREE(statusline);
}
2010-08-07 02:10:05 +02:00
/*
* Since we don't use colors and stuff, we strip the dzen-formatstrings
*
*/
void strip_dzen_formats(char *buffer) {
char *src = buffer;
char *dest = buffer;
while (*src != '\0') {
2010-08-07 02:10:05 +02:00
/* ^ starts a format-string, ) ends it */
if (*src == '^') {
2010-08-07 02:10:05 +02:00
/* We replace the seperators from i3status by pipe-symbols */
if (!strncmp(src, "^ro", strlen("^ro"))) {
*(dest++) = ' ';
*(dest++) = '|';
*(dest++) = ' ';
}
while (*src != ')') {
src++;
}
src++;
} else {
*dest = *src;
src++;
dest++;
}
}
2010-08-07 02:10:05 +02:00
/* The last character is \n, which xcb cannot display */
*(--dest) = '\0';
}
2010-08-07 02:10:05 +02:00
/*
* Callbalk for stdin. We read a line from stdin, strip dzen-formats and store
* the result in statusline
*
*/
void stdin_io_cb(struct ev_loop *loop, ev_io *watcher, int revents) {
int fd = watcher->fd;
int n = 0;
int rec = 0;
int buffer_len = STDIN_CHUNK_SIZE;
char *buffer = malloc(buffer_len);
memset(buffer, '\0', buffer_len);
while(1) {
n = read(fd, buffer + rec, buffer_len - rec);
if (n == -1) {
if (errno == EAGAIN) {
break;
}
printf("ERROR: read() failed!");
exit(EXIT_FAILURE);
}
if (n == 0) {
if (rec == buffer_len) {
char *tmp = buffer;
buffer = malloc(buffer_len + STDIN_CHUNK_SIZE);
memset(buffer, '\0', buffer_len);
strncpy(buffer, tmp, buffer_len);
buffer_len += STDIN_CHUNK_SIZE;
FREE(tmp);
} else {
break;
}
}
rec += n;
}
if (strlen(buffer) == 0) {
FREE(buffer);
return;
}
strip_dzen_formats(buffer);
FREE(statusline);
statusline = buffer;
2010-08-06 03:32:05 +02:00
printf("%s\n", buffer);
draw_bars();
}
2010-08-07 02:10:05 +02:00
/*
* We received a sigchild, meaning, that the child-process terminated.
* We simply free the respective data-structures and don't care for input
* anymore
*
*/
void child_sig_cb(struct ev_loop *loop, ev_child *watcher, int revents) {
2010-08-07 02:10:05 +02:00
printf("Child (pid: %d) unexpectedly exited with status %d\n",
child_pid,
watcher->rstatus);
cleanup();
}
2010-08-07 02:10:05 +02:00
/*
* Start a child-process with the specified command and reroute stdin.
* We actually start a $SHELL to execute the command so we don't have to care
* about arguments and such
*
*/
void start_child(char *command) {
2010-08-06 03:32:05 +02:00
child_pid = 0;
if (command != NULL) {
int fd[2];
pipe(fd);
child_pid = fork();
switch (child_pid) {
case -1:
printf("ERROR: Couldn't fork()");
exit(EXIT_FAILURE);
case 0:
close(fd[0]);
dup2(fd[1], STDOUT_FILENO);
2010-08-06 03:32:05 +02:00
static const char *shell = NULL;
2010-08-06 03:32:05 +02:00
if ((shell = getenv("SHELL")) == NULL)
shell = "/bin/sh";
2010-08-06 03:32:05 +02:00
execl(shell, shell, "-c", command, (char*) NULL);
return;
default:
close(fd[1]);
2010-08-06 03:32:05 +02:00
dup2(fd[0], STDIN_FILENO);
break;
}
}
2010-08-06 03:32:05 +02:00
fcntl(STDIN_FILENO, F_SETFL, O_NONBLOCK);
2010-08-07 02:10:05 +02:00
stdin_io = malloc(sizeof(ev_io));
ev_io_init(stdin_io, &stdin_io_cb, STDIN_FILENO, EV_READ);
ev_io_start(main_loop, stdin_io);
2010-08-06 03:32:05 +02:00
/* We must cleanup, if the child unexpectedly terminates */
child_sig = malloc(sizeof(ev_io));
ev_child_init(child_sig, &child_sig_cb, child_pid, 0);
ev_child_start(main_loop, child_sig);
}
2010-08-07 02:10:05 +02:00
/*
* kill()s the child-prozess (if existend) and closes and
* free()s the stdin- and sigchild-watchers
*
*/
void kill_child() {
2010-08-06 03:32:05 +02:00
if (child_pid != 0) {
kill(child_pid, SIGQUIT);
}
cleanup();
}