]> git.sur5r.net Git - i3/i3/blob - src/assignments.c
05da75546a39636f1939682f9d4a005b792d5bb1
[i3/i3] / src / assignments.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2012 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * assignments.c: Assignments for specific windows (for_window).
8  *
9  */
10 #include "all.h"
11
12 /*
13  * Checks the list of assignments for the given window and runs all matching
14  * ones (unless they have already been run for this specific window).
15  *
16  */
17 void run_assignments(i3Window *window) {
18     DLOG("Checking if any assignments match this window\n");
19
20     /* Check if any assignments match */
21     Assignment *current;
22     TAILQ_FOREACH(current, &assignments, assignments) {
23         if (!match_matches_window(&(current->match), window))
24             continue;
25
26         bool skip = false;
27         for (int c = 0; c < window->nr_assignments; c++) {
28             if (window->ran_assignments[c] != current)
29                 continue;
30
31             DLOG("This assignment already ran for the given window, not executing it again.\n");
32             skip = true;
33             break;
34         }
35
36         if (skip)
37             continue;
38
39         DLOG("matching assignment, would do:\n");
40         if (current->type == A_COMMAND) {
41             DLOG("execute command %s\n", current->dest.command);
42             char *full_command;
43             sasprintf(&full_command, "[id=\"%d\"] %s", window->id, current->dest.command);
44             char *json_result = parse_command(full_command);
45             FREE(full_command);
46             FREE(json_result);
47         }
48
49         /* Store that we ran this assignment to not execute it again */
50         window->nr_assignments++;
51         window->ran_assignments = srealloc(window->ran_assignments, sizeof(Assignment*) * window->nr_assignments);
52         window->ran_assignments[window->nr_assignments-1] = current;
53     }
54 }
55
56 /*
57  * Returns the first matching assignment for the given window.
58  *
59  */
60 Assignment *assignment_for(i3Window *window, int type) {
61     Assignment *assignment;
62
63     TAILQ_FOREACH(assignment, &assignments, assignments) {
64         if ((type != A_ANY && (assignment->type & type) == 0) ||
65             !match_matches_window(&(assignment->match), window))
66             continue;
67         DLOG("got a matching assignment (to %s)\n", assignment->dest.workspace);
68         return assignment;
69     }
70
71     return NULL;
72 }