X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fassignments.c;h=abacc0a3658990b0e752749e6ff8146afdf24039;hb=4143f3abfc45895ac109cdcbd22c4268d39b9ef1;hp=7795d46a75105a1603c2111b07d257bc8c21b92d;hpb=9d15a00ba83ccf0e5750f2d3b552c24188099edf;p=i3%2Fi3 diff --git a/src/assignments.c b/src/assignments.c index 7795d46a..abacc0a3 100644 --- a/src/assignments.c +++ b/src/assignments.c @@ -2,7 +2,7 @@ * vim:ts=4:sw=4:expandtab * * i3 - an improved dynamic tiling window manager - * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE) + * © 2009 Michael Stapelberg and contributors (see also: LICENSE) * * assignments.c: Assignments for specific windows (for_window). * @@ -15,16 +15,18 @@ * */ void run_assignments(i3Window *window) { - DLOG("Checking if any assignments matches this window\n"); + DLOG("Checking if any assignments match this window\n"); + + bool needs_tree_render = false; /* Check if any assignments match */ Assignment *current; TAILQ_FOREACH(current, &assignments, assignments) { - if (!match_matches_window(&(current->match), window)) + if (current->type != A_COMMAND || !match_matches_window(&(current->match), window)) continue; bool skip = false; - for (int c = 0; c < window->nr_assignments; c++) { + for (uint32_t c = 0; c < window->nr_assignments; c++) { if (window->ran_assignments[c] != current) continue; @@ -36,21 +38,28 @@ void run_assignments(i3Window *window) { if (skip) continue; - DLOG("matching assignment, would do:\n"); - if (current->type == A_COMMAND) { - DLOG("execute command %s\n", current->dest.command); - char *full_command; - sasprintf(&full_command, "[id=\"%d\"] %s", window->id, current->dest.command); - char *json_result = parse_cmd(full_command); - FREE(full_command); - FREE(json_result); - } - - /* Store that we ran this assignment to not execute it again */ + /* Store that we ran this assignment to not execute it again. We have + * to do this before running the actual command to prevent infinite + * loops. */ window->nr_assignments++; - window->ran_assignments = srealloc(window->ran_assignments, sizeof(Assignment*) * window->nr_assignments); - window->ran_assignments[window->nr_assignments-1] = current; + window->ran_assignments = srealloc(window->ran_assignments, sizeof(Assignment *) * window->nr_assignments); + window->ran_assignments[window->nr_assignments - 1] = current; + + DLOG("matching assignment, execute command %s\n", current->dest.command); + char *full_command; + sasprintf(&full_command, "[id=\"%d\"] %s", window->id, current->dest.command); + CommandResult *result = parse_command(full_command, NULL); + free(full_command); + + if (result->needs_tree_render) + needs_tree_render = true; + + command_result_free(result); } + + /* If any of the commands required re-rendering, we will do that now. */ + if (needs_tree_render) + tree_render(); } /* @@ -64,7 +73,7 @@ Assignment *assignment_for(i3Window *window, int type) { if ((type != A_ANY && (assignment->type & type) == 0) || !match_matches_window(&(assignment->match), window)) continue; - DLOG("got a matching assignment (to %s)\n", assignment->dest.workspace); + DLOG("got a matching assignment\n"); return assignment; }