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
|
2015-04-04 02:17:56 +02:00
|
|
|
|
* © 2010 Axel Wagner and contributors (see also: LICENSE)
|
2010-08-07 18:05:16 +02:00
|
|
|
|
*
|
2015-03-24 13:41:16 +01:00
|
|
|
|
* child.c: Getting input for the statusline
|
2010-08-07 18:05:16 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2016-10-11 09:13:35 +02:00
|
|
|
|
#include "common.h"
|
2018-10-25 18:05:17 +02:00
|
|
|
|
#include "yajl_utils.h"
|
2016-10-11 09:13:35 +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>
|
2013-12-15 10:21:18 +01:00
|
|
|
|
#include <stdarg.h>
|
2010-08-05 05:09:59 +02:00
|
|
|
|
#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>
|
2013-03-21 11:48:27 +01:00
|
|
|
|
#include <yajl/yajl_gen.h>
|
2013-11-08 21:13:35 +01:00
|
|
|
|
#include <paths.h>
|
2010-08-05 05:09:59 +02:00
|
|
|
|
|
2018-10-25 18:05:17 +02:00
|
|
|
|
#include <xcb/xcb_keysyms.h>
|
|
|
|
|
|
2010-09-17 03:03:43 +02:00
|
|
|
|
/* Global variables for child_*() */
|
2014-01-04 13:18:38 +01:00
|
|
|
|
i3bar_child child;
|
2010-09-17 03:03:43 +02:00
|
|
|
|
|
2015-03-23 20:56:49 +01:00
|
|
|
|
/* stdin- and SIGCHLD-watchers */
|
2014-06-15 19:07:02 +02:00
|
|
|
|
ev_io *stdin_io;
|
2018-10-26 15:31:43 +02:00
|
|
|
|
int stdin_fd;
|
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_handle parser;
|
|
|
|
|
|
2013-03-21 11:48:27 +01:00
|
|
|
|
/* JSON generator for stdout */
|
|
|
|
|
yajl_gen gen;
|
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
struct statusline_head statusline_head = TAILQ_HEAD_INITIALIZER(statusline_head);
|
2015-02-18 20:11:42 +01:00
|
|
|
|
/* Used temporarily while reading a statusline */
|
|
|
|
|
struct statusline_head statusline_buffer = TAILQ_HEAD_INITIALIZER(statusline_buffer);
|
2011-01-03 01:39:49 +01:00
|
|
|
|
|
2013-03-24 09:30:05 +01:00
|
|
|
|
int child_stdin;
|
|
|
|
|
|
2013-12-15 10:21:18 +01:00
|
|
|
|
/*
|
2015-02-18 20:11:42 +01:00
|
|
|
|
* Remove all blocks from the given statusline.
|
|
|
|
|
* If free_resources is set, the fields of each status block will be free'd.
|
2013-12-15 10:21:18 +01:00
|
|
|
|
*/
|
2015-02-18 20:11:42 +01:00
|
|
|
|
static void clear_statusline(struct statusline_head *head, bool free_resources) {
|
2013-12-15 10:21:18 +01:00
|
|
|
|
struct status_block *first;
|
2015-02-18 20:11:42 +01:00
|
|
|
|
while (!TAILQ_EMPTY(head)) {
|
|
|
|
|
first = TAILQ_FIRST(head);
|
|
|
|
|
if (free_resources) {
|
|
|
|
|
I3STRING_FREE(first->full_text);
|
2015-03-21 21:33:38 +01:00
|
|
|
|
I3STRING_FREE(first->short_text);
|
2015-02-18 20:11:42 +01:00
|
|
|
|
FREE(first->color);
|
|
|
|
|
FREE(first->name);
|
2015-02-18 20:29:11 +01:00
|
|
|
|
FREE(first->instance);
|
2015-03-24 07:27:38 +01:00
|
|
|
|
FREE(first->min_width_str);
|
2015-10-22 16:11:08 +02:00
|
|
|
|
FREE(first->background);
|
|
|
|
|
FREE(first->border);
|
2015-02-18 20:11:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TAILQ_REMOVE(head, first, blocks);
|
2013-12-15 10:21:18 +01:00
|
|
|
|
free(first);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-18 20:11:42 +01:00
|
|
|
|
static void copy_statusline(struct statusline_head *from, struct statusline_head *to) {
|
|
|
|
|
struct status_block *current;
|
2020-02-19 11:31:09 +01:00
|
|
|
|
TAILQ_FOREACH (current, from, blocks) {
|
2015-02-18 20:11:42 +01:00
|
|
|
|
struct status_block *new_block = smalloc(sizeof(struct status_block));
|
|
|
|
|
memcpy(new_block, current, sizeof(struct status_block));
|
|
|
|
|
TAILQ_INSERT_TAIL(to, new_block, blocks);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-15 10:21:18 +01:00
|
|
|
|
/*
|
|
|
|
|
* Replaces the statusline in memory with an error message. Pass a format
|
|
|
|
|
* string and format parameters as you would in `printf'. The next time
|
|
|
|
|
* `draw_bars' is called, the error message text will be drawn on the bar in
|
|
|
|
|
* the space allocated for the statusline.
|
|
|
|
|
*/
|
2014-06-15 19:07:02 +02:00
|
|
|
|
__attribute__((format(printf, 1, 2))) static void set_statusline_error(const char *format, ...) {
|
2015-02-18 20:11:42 +01:00
|
|
|
|
clear_statusline(&statusline_head, true);
|
2013-12-15 10:21:18 +01:00
|
|
|
|
|
|
|
|
|
char *message;
|
|
|
|
|
va_list args;
|
|
|
|
|
va_start(args, format);
|
2016-10-07 13:35:06 +02:00
|
|
|
|
if (vasprintf(&message, format, args) == -1) {
|
2017-09-26 11:29:40 +02:00
|
|
|
|
goto finish;
|
2016-10-07 13:35:06 +02:00
|
|
|
|
}
|
2013-12-15 10:21:18 +01:00
|
|
|
|
|
2015-08-03 11:50:13 +02:00
|
|
|
|
struct status_block *err_block = scalloc(1, sizeof(struct status_block));
|
2013-12-15 10:21:18 +01:00
|
|
|
|
err_block->full_text = i3string_from_utf8("Error: ");
|
2015-06-02 22:08:08 +02:00
|
|
|
|
err_block->name = sstrdup("error");
|
2017-07-12 23:50:10 +02:00
|
|
|
|
err_block->color = sstrdup("#ff0000");
|
2013-12-15 10:21:18 +01:00
|
|
|
|
err_block->no_separator = true;
|
|
|
|
|
|
2015-08-03 11:50:13 +02:00
|
|
|
|
struct status_block *message_block = scalloc(1, sizeof(struct status_block));
|
2013-12-15 10:21:18 +01:00
|
|
|
|
message_block->full_text = i3string_from_utf8(message);
|
2015-06-02 22:08:08 +02:00
|
|
|
|
message_block->name = sstrdup("error_message");
|
2017-07-12 23:50:10 +02:00
|
|
|
|
message_block->color = sstrdup("#ff0000");
|
2013-12-15 10:21:18 +01:00
|
|
|
|
message_block->no_separator = true;
|
|
|
|
|
|
|
|
|
|
TAILQ_INSERT_HEAD(&statusline_head, err_block, blocks);
|
|
|
|
|
TAILQ_INSERT_TAIL(&statusline_head, message_block, blocks);
|
|
|
|
|
|
2017-09-26 11:29:40 +02:00
|
|
|
|
finish:
|
2013-12-15 10:21:18 +01:00
|
|
|
|
FREE(message);
|
|
|
|
|
va_end(args);
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
|
/*
|
2015-03-23 20:56:49 +01:00
|
|
|
|
* Stop and free() the stdin- and SIGCHLD-watchers
|
2010-08-07 02:10:05 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2018-04-21 01:28:31 +02:00
|
|
|
|
static 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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
2015-02-18 20:11:42 +01:00
|
|
|
|
* previous entries from the buffer.
|
2012-02-17 00:27:11 +01:00
|
|
|
|
*/
|
|
|
|
|
static int stdin_start_array(void *context) {
|
2015-02-18 20:11:42 +01:00
|
|
|
|
// the blocks are still used by statusline_head, so we won't free the
|
|
|
|
|
// resources here.
|
|
|
|
|
clear_statusline(&statusline_buffer, false);
|
2012-02-17 00:27:11 +01:00
|
|
|
|
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));
|
2013-01-27 21:27:21 +01:00
|
|
|
|
|
|
|
|
|
/* Default width of the separator block. */
|
2015-04-03 22:54:59 +02:00
|
|
|
|
if (config.separator_symbol == NULL)
|
|
|
|
|
ctx->block.sep_block_width = logical_px(9);
|
|
|
|
|
else
|
|
|
|
|
ctx->block.sep_block_width = logical_px(8) + separator_symbol_width;
|
2013-01-27 21:27:21 +01:00
|
|
|
|
|
2019-06-22 22:18:29 +02:00
|
|
|
|
/* By default we draw all four borders if a border is set. */
|
|
|
|
|
ctx->block.border_top = 1;
|
|
|
|
|
ctx->block.border_right = 1;
|
|
|
|
|
ctx->block.border_bottom = 1;
|
|
|
|
|
ctx->block.border_left = 1;
|
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int stdin_map_key(void *context, const unsigned char *key, size_t len) {
|
|
|
|
|
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;
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2012-08-21 13:52:15 +02:00
|
|
|
|
}
|
2013-01-27 21:27:21 +01:00
|
|
|
|
if (strcasecmp(ctx->last_map_key, "separator") == 0) {
|
|
|
|
|
ctx->block.no_separator = !val;
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2013-01-27 21:27:21 +01:00
|
|
|
|
}
|
2015-03-26 19:27:28 +01:00
|
|
|
|
|
2012-08-21 13:52:15 +02:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
|
static int stdin_string(void *context, const unsigned char *val, size_t len) {
|
|
|
|
|
parser_ctx *ctx = context;
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "full_text") == 0) {
|
2015-02-12 20:45:34 +01:00
|
|
|
|
ctx->block.full_text = i3string_from_markup_with_length((const char *)val, len);
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2012-02-17 00:27:11 +01:00
|
|
|
|
}
|
2015-03-21 21:33:38 +01:00
|
|
|
|
if (strcasecmp(ctx->last_map_key, "short_text") == 0) {
|
|
|
|
|
ctx->block.short_text = i3string_from_markup_with_length((const char *)val, len);
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2015-03-21 21:33:38 +01:00
|
|
|
|
}
|
2012-02-17 00:27:11 +01:00
|
|
|
|
if (strcasecmp(ctx->last_map_key, "color") == 0) {
|
|
|
|
|
sasprintf(&(ctx->block.color), "%.*s", len, val);
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2012-02-17 00:27:11 +01:00
|
|
|
|
}
|
2015-10-22 16:11:08 +02:00
|
|
|
|
if (strcasecmp(ctx->last_map_key, "background") == 0) {
|
|
|
|
|
sasprintf(&(ctx->block.background), "%.*s", len, val);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "border") == 0) {
|
|
|
|
|
sasprintf(&(ctx->block.border), "%.*s", len, val);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2015-03-24 07:27:38 +01:00
|
|
|
|
if (strcasecmp(ctx->last_map_key, "markup") == 0) {
|
2015-10-13 09:29:50 +02:00
|
|
|
|
ctx->block.pango_markup = (len == strlen("pango") && !strncasecmp((const char *)val, "pango", strlen("pango")));
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2015-03-24 07:27:38 +01:00
|
|
|
|
}
|
2012-12-02 13:20:06 +01:00
|
|
|
|
if (strcasecmp(ctx->last_map_key, "align") == 0) {
|
2014-12-02 21:38:30 +01:00
|
|
|
|
if (len == strlen("center") && !strncmp((const char *)val, "center", strlen("center"))) {
|
|
|
|
|
ctx->block.align = ALIGN_CENTER;
|
2014-06-15 19:07:02 +02:00
|
|
|
|
} else if (len == strlen("right") && !strncmp((const char *)val, "right", strlen("right"))) {
|
2012-12-02 13:20:06 +01:00
|
|
|
|
ctx->block.align = ALIGN_RIGHT;
|
|
|
|
|
} else {
|
2014-12-02 21:38:30 +01:00
|
|
|
|
ctx->block.align = ALIGN_LEFT;
|
2012-12-02 13:20:06 +01:00
|
|
|
|
}
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "min_width") == 0) {
|
2015-10-17 22:14:48 +02:00
|
|
|
|
sasprintf(&(ctx->block.min_width_str), "%.*s", len, val);
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2012-12-02 13:20:06 +01:00
|
|
|
|
}
|
2013-03-21 11:48:27 +01:00
|
|
|
|
if (strcasecmp(ctx->last_map_key, "name") == 0) {
|
2015-10-17 22:14:48 +02:00
|
|
|
|
sasprintf(&(ctx->block.name), "%.*s", len, val);
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2013-03-21 11:48:27 +01:00
|
|
|
|
}
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "instance") == 0) {
|
2015-10-17 22:14:48 +02:00
|
|
|
|
sasprintf(&(ctx->block.instance), "%.*s", len, val);
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2013-03-21 11:48:27 +01:00
|
|
|
|
}
|
2015-03-26 19:27:28 +01:00
|
|
|
|
|
2012-12-02 13:20:06 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int stdin_integer(void *context, long long val) {
|
|
|
|
|
parser_ctx *ctx = context;
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "min_width") == 0) {
|
|
|
|
|
ctx->block.min_width = (uint32_t)val;
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2012-12-02 13:20:06 +01:00
|
|
|
|
}
|
2013-01-27 21:27:21 +01:00
|
|
|
|
if (strcasecmp(ctx->last_map_key, "separator_block_width") == 0) {
|
|
|
|
|
ctx->block.sep_block_width = (uint32_t)val;
|
2015-03-26 19:27:28 +01:00
|
|
|
|
return 1;
|
2013-01-27 21:27:21 +01:00
|
|
|
|
}
|
2019-06-22 22:18:29 +02:00
|
|
|
|
if (strcasecmp(ctx->last_map_key, "border_top") == 0) {
|
|
|
|
|
ctx->block.border_top = (uint32_t)val;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "border_right") == 0) {
|
|
|
|
|
ctx->block.border_right = (uint32_t)val;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "border_bottom") == 0) {
|
|
|
|
|
ctx->block.border_bottom = (uint32_t)val;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
if (strcasecmp(ctx->last_map_key, "border_left") == 0) {
|
|
|
|
|
ctx->block.border_left = (uint32_t)val;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2015-03-26 19:27:28 +01:00
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-18 20:11:42 +01:00
|
|
|
|
/*
|
|
|
|
|
* When a map is finished, we have an entire status block.
|
|
|
|
|
* Move it from the parser's context to the statusline buffer.
|
|
|
|
|
*/
|
2012-02-17 00:27:11 +01:00
|
|
|
|
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)
|
2014-12-03 20:11:05 +01:00
|
|
|
|
new_block->full_text = i3string_from_utf8("SPEC VIOLATION: full_text is NULL!");
|
2012-08-21 13:52:15 +02:00
|
|
|
|
if (new_block->urgent)
|
|
|
|
|
ctx->has_urgent = true;
|
2015-03-24 07:27:38 +01:00
|
|
|
|
|
|
|
|
|
if (new_block->min_width_str) {
|
|
|
|
|
i3String *text = i3string_from_utf8(new_block->min_width_str);
|
2015-10-13 09:29:50 +02:00
|
|
|
|
i3string_set_markup(text, new_block->pango_markup);
|
2015-03-24 07:27:38 +01:00
|
|
|
|
new_block->min_width = (uint32_t)predict_text_width(text);
|
|
|
|
|
i3string_free(text);
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-13 09:29:50 +02:00
|
|
|
|
i3string_set_markup(new_block->full_text, new_block->pango_markup);
|
2015-03-24 10:45:20 +01:00
|
|
|
|
|
|
|
|
|
if (new_block->short_text != NULL)
|
2015-10-13 09:29:50 +02:00
|
|
|
|
i3string_set_markup(new_block->short_text, new_block->pango_markup);
|
2015-03-24 07:27:38 +01:00
|
|
|
|
|
2015-02-18 20:11:42 +01:00
|
|
|
|
TAILQ_INSERT_TAIL(&statusline_buffer, new_block, blocks);
|
2012-02-17 00:27:11 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-18 20:11:42 +01:00
|
|
|
|
/*
|
|
|
|
|
* When an array is finished, we have an entire statusline.
|
|
|
|
|
* Copy it from the buffer to the actual statusline.
|
|
|
|
|
*/
|
2012-02-17 00:27:11 +01:00
|
|
|
|
static int stdin_end_array(void *context) {
|
2015-02-18 20:11:42 +01:00
|
|
|
|
DLOG("copying statusline_buffer to statusline_head\n");
|
|
|
|
|
clear_statusline(&statusline_head, true);
|
|
|
|
|
copy_statusline(&statusline_buffer, &statusline_head);
|
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
|
DLOG("dumping statusline:\n");
|
|
|
|
|
struct status_block *current;
|
2020-02-19 11:31:09 +01:00
|
|
|
|
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));
|
2015-03-24 11:00:26 +01:00
|
|
|
|
DLOG("short_text = %s\n", (current->short_text == NULL ? NULL : i3string_as_utf8(current->short_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
|
|
|
|
*
|
2014-02-14 02:17:18 +01:00
|
|
|
|
* Returns NULL on EOF.
|
|
|
|
|
*
|
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;
|
2014-06-15 19:07:02 +02:00
|
|
|
|
unsigned char *buffer = smalloc(buffer_len + 1);
|
2011-01-03 01:39:49 +01:00
|
|
|
|
buffer[0] = '\0';
|
2014-06-15 19:07:02 +02:00
|
|
|
|
while (1) {
|
2010-08-05 05:09:59 +02:00
|
|
|
|
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));
|
2017-09-09 06:56:50 +02:00
|
|
|
|
FREE(buffer);
|
2010-08-05 05:09:59 +02:00
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
}
|
|
|
|
|
if (n == 0) {
|
2011-08-25 17:10:45 +02:00
|
|
|
|
ELOG("stdin: received EOF\n");
|
2017-09-09 06:56:50 +02:00
|
|
|
|
FREE(buffer);
|
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. */
|
2016-10-18 08:29:31 +02:00
|
|
|
|
if (buffer[length - 1] == '\n' || buffer[length - 1] == '\r') {
|
2014-06-15 19:07:02 +02:00
|
|
|
|
buffer[length - 1] = '\0';
|
2016-10-18 08:29:31 +02:00
|
|
|
|
} else {
|
2014-06-15 19:07:02 +02:00
|
|
|
|
buffer[length] = '\0';
|
2016-10-18 08:29:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
first->full_text = i3string_from_utf8(buffer);
|
2012-09-03 09:52:17 +02:00
|
|
|
|
}
|
|
|
|
|
|
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 (status != yajl_status_ok) {
|
2013-12-15 10:21:18 +01:00
|
|
|
|
char *message = (char *)yajl_get_error(parser, 0, input, length);
|
|
|
|
|
|
|
|
|
|
/* strip the newline yajl adds to the error message */
|
|
|
|
|
if (message[strlen(message) - 1] == '\n')
|
|
|
|
|
message[strlen(message) - 1] = '\0';
|
|
|
|
|
|
|
|
|
|
fprintf(stderr, "[i3bar] Could not parse JSON input (code = %d, message = %s): %.*s\n",
|
|
|
|
|
status, message, length, input);
|
|
|
|
|
|
|
|
|
|
set_statusline_error("Could not parse JSON (%s)", message);
|
2014-06-15 19:07:02 +02:00
|
|
|
|
yajl_free_error(parser, (unsigned char *)message);
|
2013-12-15 10:21:18 +01:00
|
|
|
|
draw_bars(false);
|
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
|
|
|
|
|
*
|
|
|
|
|
*/
|
2018-04-21 01:28:31 +02:00
|
|
|
|
static void stdin_io_cb(struct ev_loop *loop, ev_io *watcher, int revents) {
|
2012-09-03 09:45:59 +02:00
|
|
|
|
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 {
|
2014-06-15 19:07:02 +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
|
|
|
|
|
*
|
|
|
|
|
*/
|
2018-04-21 01:28:31 +02:00
|
|
|
|
static void stdin_io_first_line_cb(struct ev_loop *loop, ev_io *watcher, int revents) {
|
2012-09-03 10:11:01 +02:00
|
|
|
|
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();
|
|
|
|
|
}
|
2014-07-11 00:32:42 +02:00
|
|
|
|
draw_bars(read_json_input(buffer + consumed, rec - consumed));
|
2012-09-03 10:23:25 +02:00
|
|
|
|
} 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. */
|
2015-08-03 11:50:13 +02:00
|
|
|
|
struct status_block *new_block = scalloc(1, sizeof(struct status_block));
|
2012-09-03 10:11:01 +02:00
|
|
|
|
TAILQ_INSERT_TAIL(&statusline_head, new_block, blocks);
|
2014-06-15 19:07:02 +02:00
|
|
|
|
read_flat_input((char *)buffer, rec);
|
2012-09-03 10:11:01 +02:00
|
|
|
|
}
|
|
|
|
|
free(buffer);
|
|
|
|
|
ev_io_stop(main_loop, stdin_io);
|
2018-10-26 15:31:43 +02:00
|
|
|
|
ev_io_init(stdin_io, &stdin_io_cb, stdin_fd, EV_READ);
|
2012-09-03 10:11:01 +02:00
|
|
|
|
ev_io_start(main_loop, stdin_io);
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
|
/*
|
2015-03-23 20:56:49 +01:00
|
|
|
|
* We received a SIGCHLD, meaning, that the child process terminated.
|
|
|
|
|
* We simply free the respective data structures and don't care for input
|
2010-08-07 02:10:05 +02:00
|
|
|
|
* anymore
|
|
|
|
|
*
|
|
|
|
|
*/
|
2018-04-21 01:28:31 +02:00
|
|
|
|
static void child_sig_cb(struct ev_loop *loop, ev_child *watcher, int revents) {
|
2013-12-15 10:21:18 +01:00
|
|
|
|
int exit_status = WEXITSTATUS(watcher->rstatus);
|
|
|
|
|
|
2011-08-25 17:10:45 +02:00
|
|
|
|
ELOG("Child (pid: %d) unexpectedly exited with status %d\n",
|
2014-06-15 19:07:02 +02:00
|
|
|
|
child.pid,
|
|
|
|
|
exit_status);
|
2013-12-15 10:21:18 +01:00
|
|
|
|
|
|
|
|
|
/* this error is most likely caused by a user giving a nonexecutable or
|
|
|
|
|
* nonexistent file, so we will handle those cases separately. */
|
|
|
|
|
if (exit_status == 126)
|
|
|
|
|
set_statusline_error("status_command is not executable (exit %d)", exit_status);
|
|
|
|
|
else if (exit_status == 127)
|
2014-01-08 08:51:27 +01:00
|
|
|
|
set_statusline_error("status_command not found or is missing a library dependency (exit %d)", exit_status);
|
2013-12-15 10:21:18 +01:00
|
|
|
|
else
|
|
|
|
|
set_statusline_error("status_command process exited unexpectedly (exit %d)", exit_status);
|
|
|
|
|
|
2010-08-05 05:09:59 +02:00
|
|
|
|
cleanup();
|
2013-12-15 10:21:18 +01:00
|
|
|
|
draw_bars(false);
|
2010-08-05 05:09:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-21 01:28:31 +02:00
|
|
|
|
static void child_write_output(void) {
|
2013-03-21 11:48:27 +01:00
|
|
|
|
if (child.click_events) {
|
|
|
|
|
const unsigned char *output;
|
|
|
|
|
size_t size;
|
2015-03-24 13:57:06 +01:00
|
|
|
|
ssize_t n;
|
2014-05-04 03:02:54 +02:00
|
|
|
|
|
2013-03-21 11:48:27 +01:00
|
|
|
|
yajl_gen_get_buf(gen, &output, &size);
|
2015-03-24 13:57:06 +01:00
|
|
|
|
|
|
|
|
|
n = writeall(child_stdin, output, size);
|
|
|
|
|
if (n != -1)
|
|
|
|
|
n = writeall(child_stdin, "\n", 1);
|
|
|
|
|
|
2013-03-21 11:48:27 +01:00
|
|
|
|
yajl_gen_clear(gen);
|
2015-03-24 13:57:06 +01:00
|
|
|
|
|
|
|
|
|
if (n == -1) {
|
|
|
|
|
child.click_events = false;
|
|
|
|
|
kill_child();
|
|
|
|
|
set_statusline_error("child_write_output failed");
|
|
|
|
|
draw_bars(false);
|
|
|
|
|
}
|
2013-03-21 11:48:27 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-07 02:10:05 +02:00
|
|
|
|
/*
|
2015-03-23 20:56:49 +01:00
|
|
|
|
* Start a child process with the specified command and reroute stdin.
|
2020-02-29 20:58:21 +01:00
|
|
|
|
* We actually start a shell to execute the command so we don't have to care
|
2013-12-27 04:00:06 +01:00
|
|
|
|
* about arguments and such.
|
|
|
|
|
*
|
|
|
|
|
* If `command' is NULL, such as in the case when no `status_command' is given
|
|
|
|
|
* in the bar config, no child will be started.
|
2010-08-07 02:10:05 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
2010-08-05 05:09:59 +02:00
|
|
|
|
void start_child(char *command) {
|
2013-12-27 04:00:06 +01:00
|
|
|
|
if (command == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
2012-02-17 00:27:11 +01:00
|
|
|
|
/* Allocate a yajl parser which will be used to parse stdin. */
|
2014-01-01 17:19:55 +01:00
|
|
|
|
static yajl_callbacks callbacks = {
|
|
|
|
|
.yajl_boolean = stdin_boolean,
|
|
|
|
|
.yajl_integer = stdin_integer,
|
|
|
|
|
.yajl_string = stdin_string,
|
|
|
|
|
.yajl_start_map = stdin_start_map,
|
|
|
|
|
.yajl_map_key = stdin_map_key,
|
|
|
|
|
.yajl_end_map = stdin_end_map,
|
|
|
|
|
.yajl_start_array = stdin_start_array,
|
|
|
|
|
.yajl_end_array = stdin_end_array,
|
|
|
|
|
};
|
2012-02-17 00:27:11 +01:00
|
|
|
|
parser = yajl_alloc(&callbacks, NULL, &parser_context);
|
|
|
|
|
|
2013-03-21 11:48:27 +01:00
|
|
|
|
gen = yajl_gen_alloc(NULL);
|
|
|
|
|
|
2014-06-15 19:07:02 +02:00
|
|
|
|
int pipe_in[2]; /* pipe we read from */
|
2013-12-27 04:00:06 +01:00
|
|
|
|
int pipe_out[2]; /* pipe we write to */
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
2013-12-27 04:00:06 +01:00
|
|
|
|
if (pipe(pipe_in) == -1)
|
|
|
|
|
err(EXIT_FAILURE, "pipe(pipe_in)");
|
|
|
|
|
if (pipe(pipe_out) == -1)
|
|
|
|
|
err(EXIT_FAILURE, "pipe(pipe_out)");
|
2011-10-23 15:31:43 +02:00
|
|
|
|
|
2013-12-27 04:00:06 +01:00
|
|
|
|
child.pid = fork();
|
|
|
|
|
switch (child.pid) {
|
|
|
|
|
case -1:
|
|
|
|
|
ELOG("Couldn't fork(): %s\n", strerror(errno));
|
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
case 0:
|
|
|
|
|
/* Child-process. Reroute streams and start shell */
|
2010-12-26 14:34:54 +01:00
|
|
|
|
|
2013-12-27 04:00:06 +01:00
|
|
|
|
close(pipe_in[0]);
|
|
|
|
|
close(pipe_out[1]);
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
2013-12-27 04:00:06 +01:00
|
|
|
|
dup2(pipe_in[1], STDOUT_FILENO);
|
|
|
|
|
dup2(pipe_out[0], STDIN_FILENO);
|
2010-12-26 14:34:54 +01:00
|
|
|
|
|
2013-12-27 04:00:06 +01:00
|
|
|
|
setpgid(child.pid, 0);
|
2014-06-15 19:07:02 +02:00
|
|
|
|
execl(_PATH_BSHELL, _PATH_BSHELL, "-c", command, (char *)NULL);
|
2013-12-27 04:00:06 +01:00
|
|
|
|
return;
|
|
|
|
|
default:
|
|
|
|
|
/* Parent-process. Reroute streams */
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
2013-12-27 04:00:06 +01:00
|
|
|
|
close(pipe_in[1]);
|
|
|
|
|
close(pipe_out[0]);
|
2010-08-05 05:09:59 +02:00
|
|
|
|
|
2018-10-26 15:31:43 +02:00
|
|
|
|
stdin_fd = pipe_in[0];
|
2013-12-27 04:00:06 +01:00
|
|
|
|
child_stdin = pipe_out[1];
|
2010-08-06 03:32:05 +02:00
|
|
|
|
|
2013-12-27 04:00:06 +01:00
|
|
|
|
break;
|
2010-08-06 03:32:05 +02:00
|
|
|
|
}
|
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 */
|
2018-10-26 15:31:43 +02:00
|
|
|
|
fcntl(stdin_fd, 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));
|
2018-10-26 15:31:43 +02:00
|
|
|
|
ev_io_init(stdin_io, &stdin_io_first_line_cb, stdin_fd, 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);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-21 01:28:31 +02:00
|
|
|
|
static void child_click_events_initialize(void) {
|
2013-03-21 11:48:27 +01:00
|
|
|
|
if (!child.click_events_init) {
|
|
|
|
|
yajl_gen_array_open(gen);
|
|
|
|
|
child_write_output();
|
|
|
|
|
child.click_events_init = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Generates a click event, if enabled.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2018-10-25 18:05:17 +02:00
|
|
|
|
void send_block_clicked(int button, const char *name, const char *instance, int x, int y, int x_rel, int y_rel, int width, int height, int mods) {
|
2015-02-11 20:34:19 +01:00
|
|
|
|
if (!child.click_events) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
2015-02-11 20:34:19 +01:00
|
|
|
|
child_click_events_initialize();
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
2015-02-11 20:34:19 +01:00
|
|
|
|
yajl_gen_map_open(gen);
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
2015-02-11 20:34:19 +01:00
|
|
|
|
if (name) {
|
2018-10-25 18:05:17 +02:00
|
|
|
|
ystr("name");
|
|
|
|
|
ystr(name);
|
2015-02-11 20:34:19 +01:00
|
|
|
|
}
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
2015-02-11 20:34:19 +01:00
|
|
|
|
if (instance) {
|
2018-10-25 18:05:17 +02:00
|
|
|
|
ystr("instance");
|
|
|
|
|
ystr(instance);
|
2015-02-11 20:34:19 +01:00
|
|
|
|
}
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
2018-10-25 18:05:17 +02:00
|
|
|
|
ystr("button");
|
2015-02-11 20:34:19 +01:00
|
|
|
|
yajl_gen_integer(gen, button);
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
2018-10-25 18:05:17 +02:00
|
|
|
|
ystr("modifiers");
|
|
|
|
|
yajl_gen_array_open(gen);
|
|
|
|
|
if (mods & XCB_MOD_MASK_SHIFT)
|
|
|
|
|
ystr("Shift");
|
|
|
|
|
if (mods & XCB_MOD_MASK_CONTROL)
|
|
|
|
|
ystr("Control");
|
|
|
|
|
if (mods & XCB_MOD_MASK_1)
|
|
|
|
|
ystr("Mod1");
|
|
|
|
|
if (mods & XCB_MOD_MASK_2)
|
|
|
|
|
ystr("Mod2");
|
|
|
|
|
if (mods & XCB_MOD_MASK_3)
|
|
|
|
|
ystr("Mod3");
|
|
|
|
|
if (mods & XCB_MOD_MASK_4)
|
|
|
|
|
ystr("Mod4");
|
|
|
|
|
if (mods & XCB_MOD_MASK_5)
|
|
|
|
|
ystr("Mod5");
|
|
|
|
|
yajl_gen_array_close(gen);
|
|
|
|
|
|
|
|
|
|
ystr("x");
|
2015-02-11 20:34:19 +01:00
|
|
|
|
yajl_gen_integer(gen, x);
|
2013-03-21 11:48:27 +01:00
|
|
|
|
|
2018-10-25 18:05:17 +02:00
|
|
|
|
ystr("y");
|
2015-02-11 20:34:19 +01:00
|
|
|
|
yajl_gen_integer(gen, y);
|
|
|
|
|
|
2018-10-25 18:05:17 +02:00
|
|
|
|
ystr("relative_x");
|
2017-12-20 13:19:38 +01:00
|
|
|
|
yajl_gen_integer(gen, x_rel);
|
|
|
|
|
|
2018-10-25 18:05:17 +02:00
|
|
|
|
ystr("relative_y");
|
2017-12-20 13:19:38 +01:00
|
|
|
|
yajl_gen_integer(gen, y_rel);
|
|
|
|
|
|
2018-10-25 18:05:17 +02:00
|
|
|
|
ystr("width");
|
2017-12-20 13:19:38 +01:00
|
|
|
|
yajl_gen_integer(gen, width);
|
|
|
|
|
|
2018-10-25 18:05:17 +02:00
|
|
|
|
ystr("height");
|
2017-12-20 13:19:38 +01:00
|
|
|
|
yajl_gen_integer(gen, height);
|
|
|
|
|
|
2015-02-11 20:34:19 +01:00
|
|
|
|
yajl_gen_map_close(gen);
|
|
|
|
|
child_write_output();
|
2013-03-21 11:48:27 +01:00
|
|
|
|
}
|
|
|
|
|
|
2012-03-26 17:36:00 +02:00
|
|
|
|
/*
|
2015-03-23 20:56:49 +01:00
|
|
|
|
* kill()s the child process (if any). Called when exit()ing.
|
2012-03-26 17:36:00 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
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)
|
2013-12-01 07:37:43 +01:00
|
|
|
|
killpg(child.pid, child.cont_signal);
|
|
|
|
|
killpg(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
|
|
|
|
/*
|
2015-03-23 20:56:49 +01:00
|
|
|
|
* kill()s the child process (if existent) and closes and
|
|
|
|
|
* free()s the stdin- and SIGCHLD-watchers
|
2010-08-07 02:10:05 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
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)
|
2013-12-01 07:37:43 +01:00
|
|
|
|
killpg(child.pid, child.cont_signal);
|
|
|
|
|
killpg(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
|
|
|
|
|
|
|
|
|
/*
|
2015-03-23 20:56:49 +01:00
|
|
|
|
* Sends a SIGSTOP to the child process (if existent)
|
2010-08-25 18:31:03 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
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;
|
2013-12-01 07:37:43 +01:00
|
|
|
|
killpg(child.pid, child.stop_signal);
|
2010-08-25 18:31:03 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
2015-03-23 20:56:49 +01:00
|
|
|
|
* Sends a SIGCONT to the child process (if existent)
|
2010-08-25 18:31:03 +02:00
|
|
|
|
*
|
|
|
|
|
*/
|
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;
|
2013-12-01 07:37:43 +01:00
|
|
|
|
killpg(child.pid, child.cont_signal);
|
2010-08-25 18:31:03 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2014-03-13 13:58:15 +01:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Whether or not the child want click events
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
bool child_want_click_events(void) {
|
|
|
|
|
return child.click_events;
|
|
|
|
|
}
|