Merge branch 'defect-1480' of https://github.com/Airblader/i3-original into Airblader-defect-1480
This commit is contained in:
commit
91476e2c11
|
@ -16,8 +16,6 @@
|
||||||
typedef struct rect_t rect;
|
typedef struct rect_t rect;
|
||||||
|
|
||||||
struct ev_loop *main_loop;
|
struct ev_loop *main_loop;
|
||||||
char *statusline;
|
|
||||||
char *statusline_buffer;
|
|
||||||
|
|
||||||
struct rect_t {
|
struct rect_t {
|
||||||
int x;
|
int x;
|
||||||
|
|
|
@ -54,26 +54,41 @@ typedef struct parser_ctx {
|
||||||
|
|
||||||
parser_ctx parser_context;
|
parser_ctx parser_context;
|
||||||
|
|
||||||
/* The buffer statusline points to */
|
|
||||||
struct statusline_head statusline_head = TAILQ_HEAD_INITIALIZER(statusline_head);
|
struct statusline_head statusline_head = TAILQ_HEAD_INITIALIZER(statusline_head);
|
||||||
char *statusline_buffer = NULL;
|
/* Used temporarily while reading a statusline */
|
||||||
|
struct statusline_head statusline_buffer = TAILQ_HEAD_INITIALIZER(statusline_buffer);
|
||||||
|
|
||||||
int child_stdin;
|
int child_stdin;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Clears all blocks from the statusline structure in memory and frees their
|
* Remove all blocks from the given statusline.
|
||||||
* associated resources.
|
* If free_resources is set, the fields of each status block will be free'd.
|
||||||
*/
|
*/
|
||||||
static void clear_status_blocks() {
|
static void clear_statusline(struct statusline_head *head, bool free_resources) {
|
||||||
struct status_block *first;
|
struct status_block *first;
|
||||||
while (!TAILQ_EMPTY(&statusline_head)) {
|
while (!TAILQ_EMPTY(head)) {
|
||||||
first = TAILQ_FIRST(&statusline_head);
|
first = TAILQ_FIRST(head);
|
||||||
I3STRING_FREE(first->full_text);
|
if (free_resources) {
|
||||||
TAILQ_REMOVE(&statusline_head, first, blocks);
|
I3STRING_FREE(first->full_text);
|
||||||
|
FREE(first->color);
|
||||||
|
FREE(first->name);
|
||||||
|
FREE(first->instance);
|
||||||
|
}
|
||||||
|
|
||||||
|
TAILQ_REMOVE(head, first, blocks);
|
||||||
free(first);
|
free(first);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void copy_statusline(struct statusline_head *from, struct statusline_head *to) {
|
||||||
|
struct status_block *current;
|
||||||
|
TAILQ_FOREACH (current, from, blocks) {
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Replaces the statusline in memory with an error message. Pass a format
|
* Replaces the statusline in memory with an error message. Pass a format
|
||||||
* string and format parameters as you would in `printf'. The next time
|
* string and format parameters as you would in `printf'. The next time
|
||||||
|
@ -81,7 +96,7 @@ static void clear_status_blocks() {
|
||||||
* the space allocated for the statusline.
|
* the space allocated for the statusline.
|
||||||
*/
|
*/
|
||||||
__attribute__((format(printf, 1, 2))) static void set_statusline_error(const char *format, ...) {
|
__attribute__((format(printf, 1, 2))) static void set_statusline_error(const char *format, ...) {
|
||||||
clear_status_blocks();
|
clear_statusline(&statusline_head, true);
|
||||||
|
|
||||||
char *message;
|
char *message;
|
||||||
va_list args;
|
va_list args;
|
||||||
|
@ -115,9 +130,6 @@ void cleanup(void) {
|
||||||
if (stdin_io != NULL) {
|
if (stdin_io != NULL) {
|
||||||
ev_io_stop(main_loop, stdin_io);
|
ev_io_stop(main_loop, stdin_io);
|
||||||
FREE(stdin_io);
|
FREE(stdin_io);
|
||||||
FREE(statusline_buffer);
|
|
||||||
/* statusline pointed to memory within statusline_buffer */
|
|
||||||
statusline = NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (child_sig != NULL) {
|
if (child_sig != NULL) {
|
||||||
|
@ -130,20 +142,12 @@ void cleanup(void) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The start of a new array is the start of a new status line, so we clear all
|
* The start of a new array is the start of a new status line, so we clear all
|
||||||
* previous entries.
|
* previous entries from the buffer.
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
static int stdin_start_array(void *context) {
|
static int stdin_start_array(void *context) {
|
||||||
struct status_block *first;
|
// the blocks are still used by statusline_head, so we won't free the
|
||||||
while (!TAILQ_EMPTY(&statusline_head)) {
|
// resources here.
|
||||||
first = TAILQ_FIRST(&statusline_head);
|
clear_statusline(&statusline_buffer, false);
|
||||||
I3STRING_FREE(first->full_text);
|
|
||||||
FREE(first->color);
|
|
||||||
FREE(first->name);
|
|
||||||
FREE(first->instance);
|
|
||||||
TAILQ_REMOVE(&statusline_head, first, blocks);
|
|
||||||
free(first);
|
|
||||||
}
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -226,6 +230,10 @@ static int stdin_integer(void *context, long long val) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* When a map is finished, we have an entire status block.
|
||||||
|
* Move it from the parser's context to the statusline buffer.
|
||||||
|
*/
|
||||||
static int stdin_end_map(void *context) {
|
static int stdin_end_map(void *context) {
|
||||||
parser_ctx *ctx = context;
|
parser_ctx *ctx = context;
|
||||||
struct status_block *new_block = smalloc(sizeof(struct status_block));
|
struct status_block *new_block = smalloc(sizeof(struct status_block));
|
||||||
|
@ -236,11 +244,19 @@ static int stdin_end_map(void *context) {
|
||||||
new_block->full_text = i3string_from_utf8("SPEC VIOLATION: full_text is NULL!");
|
new_block->full_text = i3string_from_utf8("SPEC VIOLATION: full_text is NULL!");
|
||||||
if (new_block->urgent)
|
if (new_block->urgent)
|
||||||
ctx->has_urgent = true;
|
ctx->has_urgent = true;
|
||||||
TAILQ_INSERT_TAIL(&statusline_head, new_block, blocks);
|
TAILQ_INSERT_TAIL(&statusline_buffer, new_block, blocks);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* When an array is finished, we have an entire statusline.
|
||||||
|
* Copy it from the buffer to the actual statusline.
|
||||||
|
*/
|
||||||
static int stdin_end_array(void *context) {
|
static int stdin_end_array(void *context) {
|
||||||
|
DLOG("copying statusline_buffer to statusline_head\n");
|
||||||
|
clear_statusline(&statusline_head, true);
|
||||||
|
copy_statusline(&statusline_buffer, &statusline_head);
|
||||||
|
|
||||||
DLOG("dumping statusline:\n");
|
DLOG("dumping statusline:\n");
|
||||||
struct status_block *current;
|
struct status_block *current;
|
||||||
TAILQ_FOREACH(current, &statusline_head, blocks) {
|
TAILQ_FOREACH(current, &statusline_head, blocks) {
|
||||||
|
|
|
@ -171,8 +171,6 @@ int main(int argc, char **argv) {
|
||||||
|
|
||||||
kill_child();
|
kill_child();
|
||||||
|
|
||||||
FREE(statusline_buffer);
|
|
||||||
|
|
||||||
clean_xcb();
|
clean_xcb();
|
||||||
ev_default_destroy();
|
ev_default_destroy();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue