2010-08-07 18:05:16 +02:00
|
|
|
|
/*
|
2011-10-09 15:28:20 +02:00
|
|
|
|
* vim:ts=4:sw=4:expandtab
|
|
|
|
|
*
|
2010-08-07 18:05:16 +02:00
|
|
|
|
* i3bar - an xcb-based status- and ws-bar for i3
|
2012-08-23 12:55:28 +02:00
|
|
|
|
* © 2010-2012 Axel Wagner and contributors (see also: LICENSE)
|
2010-08-07 18:05:16 +02:00
|
|
|
|
*
|
2011-10-25 22:19:38 +02:00
|
|
|
|
* child.c: Getting Input for the statusline
|
2010-08-07 18:05:16 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2010-08-05 05:09:59 +02:00
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/types.h>
|
2011-03-14 09:17:06 +01:00
|
|
|
|
#include <sys/wait.h>
|
2010-08-05 05:09:59 +02:00
|
|
|
|
#include <signal.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
2011-10-23 15:31:43 +02:00
|
|
|
|
#include <err.h>
|
2010-08-05 05:09:59 +02:00
|
|
|
|
#include <ev.h>
|
2012-02-17 00:27:11 +01:00
|
|
|
|
#include <yajl/yajl_common.h>
|
|
|
|
|
#include <yajl/yajl_parse.h>
|
2012-02-17 00:41:58 +01:00
|
|
|
|
#include <yajl/yajl_version.h>
|
2010-08-05 05:09:59 +02:00
|
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
|
2010-09-17 03:03:43 +02:00
|
|
|
|
/* Global variables for child_*() */
|
2012-09-03 10:23:25 +02:00
|
|
|
|
i3bar_child child = { 0 };
|
2010-09-17 03:03:43 +02:00
|
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
|
/* stdin- and sigchild-watchers */
|
|
|
|
|
ev_io *stdin_io;
|
2010-08-05 05:09:59 +02:00
|
|
|
|
ev_child *child_sig;
|
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
|
/* JSON parser for stdin */
|
|
|
|
|
yajl_callbacks callbacks;
|
|
|
|
|
yajl_handle parser;
|
|
|
|
|
|
|
|
|
|
typedef struct parser_ctx {
|
2012-08-21 13:52:15 +02:00
|
|
|
|
/* True if one of the parsed blocks was urgent */
|
|
|
|
|
bool has_urgent;
|
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
|
/* A copy of the last JSON map key. */
|
|
|
|
|
char *last_map_key;
|
|
|
|
|
|
|
|
|
|
/* The current block. Will be filled, then copied and put into the list of
|
|
|
|
|
* blocks. */
|
|
|
|
|
struct status_block block;
|
|
|
|
|
} parser_ctx;
|
|
|
|
|
|
|
|
|
|
parser_ctx parser_context;
|
|
|
|
|
|
2011-01-03 01:39:49 +01:00
|
|
|
|
/* The buffer statusline points to */
|
2012-02-17 00:27:11 +01:00
|
|
|
|
struct statusline_head statusline_head = TAILQ_HEAD_INITIALIZER(statusline_head);
|
2011-01-03 01:39:49 +01:00
|
|
|
|
char *statusline_buffer = NULL;
|
|
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
|
/*
|
|
|
|
|
* Stop and free() the stdin- and sigchild-watchers
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-08-23 12:55:28 +02:00
|
|
|
|
void cleanup(void) {
|
2011-03-14 09:17:06 +01:00
|
|
|
|
if (stdin_io != NULL) {
|
|
|
|
|
ev_io_stop(main_loop, stdin_io);
|
|
|
|
|
FREE(stdin_io);
|
2011-07-08 23:16:33 +02:00
|
|
|
|
FREE(statusline_buffer);
|
2011-11-07 22:34:50 +01:00
|
|
|
|
/* statusline pointed to memory within statusline_buffer */
|
|
|
|
|
statusline = NULL;
|
2011-07-08 23:16:33 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (child_sig != NULL) {
|
|
|
|
|
ev_child_stop(main_loop, child_sig);
|
2011-03-14 09:17:06 +01:00
|
|
|
|
FREE(child_sig);
|
|
|
|
|
}
|
2012-09-03 10:23:25 +02:00
|
|
|
|
|
|
|
|
|
memset(&child, 0, sizeof(i3bar_child));
|
2010-08-05 05:09:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
|
/*
|
|
|
|
|
* The start of a new array is the start of a new status line, so we clear all
|
|
|
|
|
* previous entries.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static int stdin_start_array(void *context) {
|
|
|
|
|
struct status_block *first;
|
|
|
|
|
while (!TAILQ_EMPTY(&statusline_head)) {
|
|
|
|
|
first = TAILQ_FIRST(&statusline_head);
|
2012-09-03 00:41:51 +02:00
|
|
|
|
I3STRING_FREE(first->full_text);
|
2012-02-17 00:27:11 +01:00
|
|
|
|
FREE(first->color);
|
|
|
|
|
TAILQ_REMOVE(&statusline_head, first, blocks);
|
|
|
|
|
free(first);
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The start of a map is the start of a single block of the status line.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
static int stdin_start_map(void *context) {
|
|
|
|
|
parser_ctx *ctx = context;
|
|
|
|
|
memset(&(ctx->block), '\0', sizeof(struct status_block));
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-17 00:41:58 +01:00
|
|
|
|
#if YAJL_MAJOR >= 2
|
2012-02-17 00:27:11 +01:00
|
|
|
|
static int stdin_map_key(void *context, const unsigned char *key, size_t len) {
|
2012-02-17 00:41:58 +01:00
|
|
|
|
#else
|
|
|
|
|
static int stdin_map_key(void *context, const unsigned char *key, unsigned int len) {
|
|
|
|
|
#endif
|
2012-02-17 00:27:11 +01:00
|
|
|
|
parser_ctx *ctx = context;
|
|
|
|
|
FREE(ctx->last_map_key);
|
|
|
|
|
sasprintf(&(ctx->last_map_key), "%.*s", len, key);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-21 13:52:15 +02:00
|
|
|
|
static int stdin_boolean(void *context, int val) {
|
|
|
|
|
parser_ctx *ctx = context;
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "urgent") == 0) {
|
|
|
|
|
ctx->block.urgent = val;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-17 00:41:58 +01:00
|
|
|
|
#if YAJL_MAJOR >= 2
|
2012-02-17 00:27:11 +01:00
|
|
|
|
static int stdin_string(void *context, const unsigned char *val, size_t len) {
|
2012-02-17 00:41:58 +01:00
|
|
|
|
#else
|
|
|
|
|
static int stdin_string(void *context, const unsigned char *val, unsigned int len) {
|
|
|
|
|
#endif
|
2012-02-17 00:27:11 +01:00
|
|
|
|
parser_ctx *ctx = context;
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "full_text") == 0) {
|
2012-08-07 19:46:23 +02:00
|
|
|
|
ctx->block.full_text = i3string_from_utf8_with_length((const char *)val, len);
|
2012-02-17 00:27:11 +01:00
|
|
|
|
}
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "color") == 0) {
|
|
|
|
|
sasprintf(&(ctx->block.color), "%.*s", len, val);
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int stdin_end_map(void *context) {
|
|
|
|
|
parser_ctx *ctx = context;
|
|
|
|
|
struct status_block *new_block = smalloc(sizeof(struct status_block));
|
|
|
|
|
memcpy(new_block, &(ctx->block), sizeof(struct status_block));
|
2012-05-12 08:23:37 +02:00
|
|
|
|
/* Ensure we have a full_text set, so that when it is missing (or null),
|
|
|
|
|
* i3bar doesn’t crash and the user gets an annoying message. */
|
|
|
|
|
if (!new_block->full_text)
|
2012-08-07 19:46:23 +02:00
|
|
|
|
new_block->full_text = i3string_from_utf8("SPEC VIOLATION (null)");
|
2012-08-21 13:52:15 +02:00
|
|
|
|
if (new_block->urgent)
|
|
|
|
|
ctx->has_urgent = true;
|
2012-02-17 00:27:11 +01:00
|
|
|
|
TAILQ_INSERT_TAIL(&statusline_head, new_block, blocks);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int stdin_end_array(void *context) {
|
|
|
|
|
DLOG("dumping statusline:\n");
|
|
|
|
|
struct status_block *current;
|
|
|
|
|
TAILQ_FOREACH(current, &statusline_head, blocks) {
|
2012-08-07 19:46:23 +02:00
|
|
|
|
DLOG("full_text = %s\n", i3string_as_utf8(current->full_text));
|
2012-02-17 00:27:11 +01:00
|
|
|
|
DLOG("color = %s\n", current->color);
|
|
|
|
|
}
|
|
|
|
|
DLOG("end of dump\n");
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
|
/*
|
2012-09-03 09:45:59 +02:00
|
|
|
|
* Helper function to read stdin
|
2010-08-07 02:10:05 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2012-09-03 09:45:59 +02:00
|
|
|
|
static unsigned char *get_buffer(ev_io *watcher, int *ret_buffer_len) {
|
2010-08-05 05:09:59 +02:00
|
|
|
|
int fd = watcher->fd;
|
|
|
|
|
int n = 0;
|
|
|
|
|
int rec = 0;
|
|
|
|
|
int buffer_len = STDIN_CHUNK_SIZE;
|
2012-04-07 19:15:41 +02:00
|
|
|
|
unsigned char *buffer = smalloc(buffer_len+1);
|
2011-01-03 01:39:49 +01:00
|
|
|
|
buffer[0] = '\0';
|
2010-08-05 05:09:59 +02:00
|
|
|
|
while(1) {
|
|
|
|
|
n = read(fd, buffer + rec, buffer_len - rec);
|
|
|
|
|
if (n == -1) {
|
|
|
|
|
if (errno == EAGAIN) {
|
2012-02-17 00:27:11 +01:00
|
|
|
|
/* finish up */
|
2010-08-05 05:09:59 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
2011-01-01 16:48:30 +01:00
|
|
|
|
ELOG("read() failed!: %s\n", strerror(errno));
|
2010-08-05 05:09:59 +02:00
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
}
|
|
|
|
|
if (n == 0) {
|
2011-07-08 23:16:33 +02:00
|
|
|
|
/* end of file, kill the watcher */
|
2011-08-25 17:10:45 +02:00
|
|
|
|
ELOG("stdin: received EOF\n");
|
2011-07-10 04:34:18 +02:00
|
|
|
|
cleanup();
|
2012-08-21 13:51:40 +02:00
|
|
|
|
draw_bars(false);
|
2012-09-03 09:45:59 +02:00
|
|
|
|
*ret_buffer_len = -1;
|
|
|
|
|
return NULL;
|
2010-08-05 05:09:59 +02:00
|
|
|
|
}
|
|
|
|
|
rec += n;
|
2011-07-08 23:16:33 +02:00
|
|
|
|
|
|
|
|
|
if (rec == buffer_len) {
|
|
|
|
|
buffer_len += STDIN_CHUNK_SIZE;
|
2011-10-21 20:30:46 +02:00
|
|
|
|
buffer = srealloc(buffer, buffer_len);
|
2011-08-12 18:43:09 +02:00
|
|
|
|
}
|
2010-08-05 05:09:59 +02:00
|
|
|
|
}
|
2011-01-01 15:07:28 +01:00
|
|
|
|
if (*buffer == '\0') {
|
2010-08-05 05:09:59 +02:00
|
|
|
|
FREE(buffer);
|
2012-09-03 09:45:59 +02:00
|
|
|
|
rec = -1;
|
2010-08-05 05:09:59 +02:00
|
|
|
|
}
|
2012-09-03 09:45:59 +02:00
|
|
|
|
*ret_buffer_len = rec;
|
|
|
|
|
return buffer;
|
|
|
|
|
}
|
2012-02-17 00:27:11 +01:00
|
|
|
|
|
2012-09-03 09:52:17 +02:00
|
|
|
|
static void read_flat_input(char *buffer, int length) {
|
|
|
|
|
struct status_block *first = TAILQ_FIRST(&statusline_head);
|
|
|
|
|
/* Clear the old buffer if any. */
|
|
|
|
|
I3STRING_FREE(first->full_text);
|
|
|
|
|
/* Remove the trailing newline and terminate the string at the same
|
|
|
|
|
* time. */
|
|
|
|
|
if (buffer[length-1] == '\n' || buffer[length-1] == '\r')
|
|
|
|
|
buffer[length-1] = '\0';
|
|
|
|
|
else buffer[length] = '\0';
|
|
|
|
|
first->full_text = i3string_from_utf8(buffer);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-21 13:52:15 +02:00
|
|
|
|
static bool read_json_input(unsigned char *input, int length) {
|
2012-09-03 09:52:17 +02:00
|
|
|
|
yajl_status status = yajl_parse(parser, input, length);
|
2012-08-21 13:52:15 +02:00
|
|
|
|
bool has_urgent = false;
|
2012-09-03 09:52:17 +02:00
|
|
|
|
#if YAJL_MAJOR >= 2
|
|
|
|
|
if (status != yajl_status_ok) {
|
|
|
|
|
#else
|
|
|
|
|
if (status != yajl_status_ok && status != yajl_status_insufficient_data) {
|
|
|
|
|
#endif
|
|
|
|
|
fprintf(stderr, "[i3bar] Could not parse JSON input (code %d): %.*s\n",
|
|
|
|
|
status, length, input);
|
2012-08-21 13:52:15 +02:00
|
|
|
|
} else if (parser_context.has_urgent) {
|
|
|
|
|
has_urgent = true;
|
2012-09-03 09:52:17 +02:00
|
|
|
|
}
|
2012-08-21 13:52:15 +02:00
|
|
|
|
return has_urgent;
|
2012-09-03 09:52:17 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-09-03 09:45:59 +02:00
|
|
|
|
/*
|
|
|
|
|
* Callbalk for stdin. We read a line from stdin and store the result
|
|
|
|
|
* in statusline
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void stdin_io_cb(struct ev_loop *loop, ev_io *watcher, int revents) {
|
|
|
|
|
int rec;
|
|
|
|
|
unsigned char *buffer = get_buffer(watcher, &rec);
|
|
|
|
|
if (buffer == NULL)
|
|
|
|
|
return;
|
2012-08-21 13:52:15 +02:00
|
|
|
|
bool has_urgent = false;
|
2012-09-03 10:23:25 +02:00
|
|
|
|
if (child.version > 0) {
|
2012-08-21 13:52:15 +02:00
|
|
|
|
has_urgent = read_json_input(buffer, rec);
|
2012-02-17 00:27:11 +01:00
|
|
|
|
} else {
|
2012-09-03 09:52:17 +02:00
|
|
|
|
read_flat_input((char*)buffer, rec);
|
2011-01-03 01:39:49 +01:00
|
|
|
|
}
|
2012-09-03 00:41:15 +02:00
|
|
|
|
free(buffer);
|
2012-08-21 13:52:15 +02:00
|
|
|
|
draw_bars(has_urgent);
|
2010-08-05 05:09:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-09-03 10:11:01 +02:00
|
|
|
|
/*
|
|
|
|
|
* Callbalk for stdin first line. We read the first line to detect
|
|
|
|
|
* whether this is JSON or plain text
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
void stdin_io_first_line_cb(struct ev_loop *loop, ev_io *watcher, int revents) {
|
|
|
|
|
int rec;
|
|
|
|
|
unsigned char *buffer = get_buffer(watcher, &rec);
|
|
|
|
|
if (buffer == NULL)
|
|
|
|
|
return;
|
|
|
|
|
DLOG("Detecting input type based on buffer *%.*s*\n", rec, buffer);
|
|
|
|
|
/* Detect whether this is JSON or plain text. */
|
|
|
|
|
unsigned int consumed = 0;
|
|
|
|
|
/* At the moment, we don’t care for the version. This might change
|
|
|
|
|
* in the future, but for now, we just discard it. */
|
2012-09-03 10:43:29 +02:00
|
|
|
|
parse_json_header(&child, buffer, rec, &consumed);
|
2012-09-03 10:23:25 +02:00
|
|
|
|
if (child.version > 0) {
|
2012-08-20 22:20:37 +02:00
|
|
|
|
/* If hide-on-modifier is set, we start of by sending the
|
|
|
|
|
* child a SIGSTOP, because the bars aren't mapped at start */
|
|
|
|
|
if (config.hide_on_modifier) {
|
|
|
|
|
stop_child();
|
|
|
|
|
}
|
2012-09-03 10:23:25 +02:00
|
|
|
|
read_json_input(buffer + consumed, rec - consumed);
|
|
|
|
|
} else {
|
2012-09-03 10:11:01 +02:00
|
|
|
|
/* In case of plaintext, we just add a single block and change its
|
|
|
|
|
* full_text pointer later. */
|
|
|
|
|
struct status_block *new_block = scalloc(sizeof(struct status_block));
|
|
|
|
|
TAILQ_INSERT_TAIL(&statusline_head, new_block, blocks);
|
|
|
|
|
read_flat_input((char*)buffer, rec);
|
|
|
|
|
}
|
|
|
|
|
free(buffer);
|
|
|
|
|
ev_io_stop(main_loop, stdin_io);
|
|
|
|
|
ev_io_init(stdin_io, &stdin_io_cb, STDIN_FILENO, EV_READ);
|
|
|
|
|
ev_io_start(main_loop, stdin_io);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
*
|
|
|
|
|
*/
|
2010-08-05 05:09:59 +02:00
|
|
|
|
void child_sig_cb(struct ev_loop *loop, ev_child *watcher, int revents) {
|
2011-08-25 17:10:45 +02:00
|
|
|
|
ELOG("Child (pid: %d) unexpectedly exited with status %d\n",
|
2012-09-03 10:23:25 +02:00
|
|
|
|
child.pid,
|
2010-08-07 02:10:05 +02:00
|
|
|
|
watcher->rstatus);
|
2010-08-05 05:09:59 +02:00
|
|
|
|
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
|
2010-12-26 14:34:54 +01:00
|
|
|
|
* about arguments and such
|
2010-08-07 02:10:05 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2010-08-05 05:09:59 +02:00
|
|
|
|
void start_child(char *command) {
|
2012-02-17 00:27:11 +01:00
|
|
|
|
/* Allocate a yajl parser which will be used to parse stdin. */
|
|
|
|
|
memset(&callbacks, '\0', sizeof(yajl_callbacks));
|
|
|
|
|
callbacks.yajl_map_key = stdin_map_key;
|
2012-08-21 13:52:15 +02:00
|
|
|
|
callbacks.yajl_boolean = stdin_boolean;
|
2012-02-17 00:27:11 +01:00
|
|
|
|
callbacks.yajl_string = stdin_string;
|
|
|
|
|
callbacks.yajl_start_array = stdin_start_array;
|
|
|
|
|
callbacks.yajl_end_array = stdin_end_array;
|
|
|
|
|
callbacks.yajl_start_map = stdin_start_map;
|
|
|
|
|
callbacks.yajl_end_map = stdin_end_map;
|
2012-02-17 00:41:58 +01:00
|
|
|
|
#if YAJL_MAJOR < 2
|
|
|
|
|
yajl_parser_config parse_conf = { 0, 0 };
|
|
|
|
|
|
|
|
|
|
parser = yajl_alloc(&callbacks, &parse_conf, NULL, (void*)&parser_context);
|
|
|
|
|
#else
|
2012-02-17 00:27:11 +01:00
|
|
|
|
parser = yajl_alloc(&callbacks, NULL, &parser_context);
|
2012-02-17 00:41:58 +01:00
|
|
|
|
#endif
|
2012-02-17 00:27:11 +01:00
|
|
|
|
|
2010-08-06 03:32:05 +02:00
|
|
|
|
if (command != NULL) {
|
2010-12-26 14:34:54 +01:00
|
|
|
|
int fd[2];
|
2011-10-23 15:31:43 +02:00
|
|
|
|
if (pipe(fd) == -1)
|
|
|
|
|
err(EXIT_FAILURE, "pipe(fd)");
|
|
|
|
|
|
2012-09-03 10:23:25 +02:00
|
|
|
|
child.pid = fork();
|
|
|
|
|
switch (child.pid) {
|
2010-08-06 03:32:05 +02:00
|
|
|
|
case -1:
|
2011-01-01 16:48:30 +01:00
|
|
|
|
ELOG("Couldn't fork(): %s\n", strerror(errno));
|
2010-08-06 03:32:05 +02:00
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
case 0:
|
2010-12-26 14:34:54 +01:00
|
|
|
|
/* Child-process. Reroute stdout and start shell */
|
|
|
|
|
close(fd[0]);
|
|
|
|
|
|
|
|
|
|
dup2(fd[1], STDOUT_FILENO);
|
|
|
|
|
|
|
|
|
|
static const char *shell = NULL;
|
|
|
|
|
|
|
|
|
|
if ((shell = getenv("SHELL")) == NULL)
|
|
|
|
|
shell = "/bin/sh";
|
|
|
|
|
|
|
|
|
|
execl(shell, shell, "-c", command, (char*) NULL);
|
|
|
|
|
return;
|
2010-08-06 03:32:05 +02:00
|
|
|
|
default:
|
2010-09-17 05:26:31 +02:00
|
|
|
|
/* Parent-process. Rerout stdin */
|
2010-08-06 03:32:05 +02:00
|
|
|
|
close(fd[1]);
|
2010-08-05 05:09:59 +02:00
|
|
|
|
|
2010-08-06 03:32:05 +02:00
|
|
|
|
dup2(fd[0], STDIN_FILENO);
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-08-05 05:09:59 +02:00
|
|
|
|
|
2010-09-17 05:26:31 +02:00
|
|
|
|
/* We set O_NONBLOCK because blocking is evil in event-driven software */
|
2010-08-06 03:32:05 +02:00
|
|
|
|
fcntl(STDIN_FILENO, F_SETFL, O_NONBLOCK);
|
2010-08-05 05:09:59 +02:00
|
|
|
|
|
2011-10-21 20:30:46 +02:00
|
|
|
|
stdin_io = smalloc(sizeof(ev_io));
|
2012-09-03 10:11:01 +02:00
|
|
|
|
ev_io_init(stdin_io, &stdin_io_first_line_cb, STDIN_FILENO, EV_READ);
|
2010-08-07 02:10:05 +02:00
|
|
|
|
ev_io_start(main_loop, stdin_io);
|
2010-08-05 05:09:59 +02:00
|
|
|
|
|
2010-08-06 03:32:05 +02:00
|
|
|
|
/* We must cleanup, if the child unexpectedly terminates */
|
2011-10-21 20:30:46 +02:00
|
|
|
|
child_sig = smalloc(sizeof(ev_child));
|
2012-09-03 10:23:25 +02:00
|
|
|
|
ev_child_init(child_sig, &child_sig_cb, child.pid, 0);
|
2010-08-06 03:32:05 +02:00
|
|
|
|
ev_child_start(main_loop, child_sig);
|
2010-08-05 05:09:59 +02:00
|
|
|
|
|
2012-03-26 17:36:00 +02:00
|
|
|
|
atexit(kill_child_at_exit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* kill()s the child-process (if any). Called when exit()ing.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-08-23 12:55:28 +02:00
|
|
|
|
void kill_child_at_exit(void) {
|
2012-09-03 10:23:25 +02:00
|
|
|
|
if (child.pid > 0) {
|
2012-08-20 22:20:37 +02:00
|
|
|
|
if (child.cont_signal > 0 && child.stopped)
|
|
|
|
|
kill(child.pid, child.cont_signal);
|
2012-09-03 10:23:25 +02:00
|
|
|
|
kill(child.pid, SIGTERM);
|
2012-03-26 17:36:00 +02:00
|
|
|
|
}
|
2010-08-05 05:09:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
|
/*
|
2010-08-25 18:31:03 +02:00
|
|
|
|
* kill()s the child-process (if existent) and closes and
|
2010-08-07 02:10:05 +02:00
|
|
|
|
* free()s the stdin- and sigchild-watchers
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-08-23 12:55:28 +02:00
|
|
|
|
void kill_child(void) {
|
2012-09-03 10:23:25 +02:00
|
|
|
|
if (child.pid > 0) {
|
2012-08-20 22:20:37 +02:00
|
|
|
|
if (child.cont_signal > 0 && child.stopped)
|
|
|
|
|
kill(child.pid, child.cont_signal);
|
2012-09-03 10:23:25 +02:00
|
|
|
|
kill(child.pid, SIGTERM);
|
2011-03-14 09:17:06 +01:00
|
|
|
|
int status;
|
2012-09-03 10:23:25 +02:00
|
|
|
|
waitpid(child.pid, &status, 0);
|
2011-03-14 09:17:06 +01:00
|
|
|
|
cleanup();
|
2010-08-06 03:32:05 +02:00
|
|
|
|
}
|
2010-08-05 05:09:59 +02:00
|
|
|
|
}
|
2010-08-25 18:31:03 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Sends a SIGSTOP to the child-process (if existent)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-08-23 12:55:28 +02:00
|
|
|
|
void stop_child(void) {
|
2012-08-20 22:20:37 +02:00
|
|
|
|
if (child.stop_signal > 0 && !child.stopped) {
|
|
|
|
|
child.stopped = true;
|
|
|
|
|
kill(child.pid, child.stop_signal);
|
2010-08-25 18:31:03 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Sends a SIGCONT to the child-process (if existent)
|
|
|
|
|
*
|
|
|
|
|
*/
|
2012-08-23 12:55:28 +02:00
|
|
|
|
void cont_child(void) {
|
2012-08-20 22:20:37 +02:00
|
|
|
|
if (child.cont_signal > 0 && child.stopped) {
|
|
|
|
|
child.stopped = false;
|
|
|
|
|
kill(child.pid, child.cont_signal);
|
2010-08-25 18:31:03 +02:00
|
|
|
|
}
|
|
|
|
|
}
|