]> git.sur5r.net Git - i3/i3/blob - src/match.c
Added new criteria 'tiling' / 'floating'. (#2481)
[i3/i3] / src / match.c
1 #undef I3__FILE__
2 #define I3__FILE__ "match.c"
3 /*
4  * vim:ts=4:sw=4:expandtab
5  *
6  * i3 - an improved dynamic tiling window manager
7  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
8  *
9  * A "match" is a data structure which acts like a mask or expression to match
10  * certain windows or not. For example, when using commands, you can specify a
11  * command like this: [title="*Firefox*"] kill. The title member of the match
12  * data structure will then be filled and i3 will check each window using
13  * match_matches_window() to find the windows affected by this command.
14  *
15  */
16 #include "all.h"
17
18 /* From sys/time.h, not sure if it’s available on all systems. */
19 #define _i3_timercmp(a, b, CMP) \
20     (((a).tv_sec == (b).tv_sec) ? ((a).tv_usec CMP(b).tv_usec) : ((a).tv_sec CMP(b).tv_sec))
21
22 /*
23  * Initializes the Match data structure. This function is necessary because the
24  * members representing boolean values (like dock) need to be initialized with
25  * -1 instead of 0.
26  *
27  */
28 void match_init(Match *match) {
29     memset(match, 0, sizeof(Match));
30     match->urgent = U_DONTCHECK;
31     match->window_mode = WM_ANY;
32     /* we use this as the placeholder value for "not set". */
33     match->window_type = UINT32_MAX;
34 }
35
36 /*
37  * Check if a match is empty. This is necessary while parsing commands to see
38  * whether the user specified a match at all.
39  *
40  */
41 bool match_is_empty(Match *match) {
42     /* we cannot simply use memcmp() because the structure is part of a
43      * TAILQ and I don’t want to start with things like assuming that the
44      * last member of a struct really is at the end in memory… */
45     return (match->title == NULL &&
46             match->mark == NULL &&
47             match->application == NULL &&
48             match->class == NULL &&
49             match->instance == NULL &&
50             match->window_role == NULL &&
51             match->workspace == NULL &&
52             match->urgent == U_DONTCHECK &&
53             match->id == XCB_NONE &&
54             match->window_type == UINT32_MAX &&
55             match->con_id == NULL &&
56             match->dock == M_NODOCK &&
57             match->window_mode == WM_ANY);
58 }
59
60 /*
61  * Copies the data of a match from src to dest.
62  *
63  */
64 void match_copy(Match *dest, Match *src) {
65     memcpy(dest, src, sizeof(Match));
66
67 /* The DUPLICATE_REGEX macro creates a new regular expression from the
68  * ->pattern of the old one. It therefore does use a little more memory then
69  *  with a refcounting system, but it’s easier this way. */
70 #define DUPLICATE_REGEX(field)                            \
71     do {                                                  \
72         if (src->field != NULL)                           \
73             dest->field = regex_new(src->field->pattern); \
74     } while (0)
75
76     DUPLICATE_REGEX(title);
77     DUPLICATE_REGEX(mark);
78     DUPLICATE_REGEX(application);
79     DUPLICATE_REGEX(class);
80     DUPLICATE_REGEX(instance);
81     DUPLICATE_REGEX(window_role);
82     DUPLICATE_REGEX(workspace);
83 }
84
85 /*
86  * Check if a match data structure matches the given window.
87  *
88  */
89 bool match_matches_window(Match *match, i3Window *window) {
90     LOG("Checking window 0x%08x (class %s)\n", window->id, window->class_class);
91
92     if (match->class != NULL) {
93         if (window->class_class == NULL)
94             return false;
95         if (strcmp(match->class->pattern, "__focused__") == 0 &&
96             strcmp(window->class_class, focused->window->class_class) == 0) {
97             LOG("window class matches focused window\n");
98         } else if (regex_matches(match->class, window->class_class)) {
99             LOG("window class matches (%s)\n", window->class_class);
100         } else {
101             return false;
102         }
103     }
104
105     if (match->instance != NULL) {
106         if (window->class_instance == NULL)
107             return false;
108         if (strcmp(match->instance->pattern, "__focused__") == 0 &&
109             strcmp(window->class_instance, focused->window->class_instance) == 0) {
110             LOG("window instance matches focused window\n");
111         } else if (regex_matches(match->instance, window->class_instance)) {
112             LOG("window instance matches (%s)\n", window->class_instance);
113         } else {
114             return false;
115         }
116     }
117
118     if (match->id != XCB_NONE) {
119         if (window->id == match->id) {
120             LOG("match made by window id (%d)\n", window->id);
121         } else {
122             LOG("window id does not match\n");
123             return false;
124         }
125     }
126
127     if (match->title != NULL) {
128         if (window->name == NULL)
129             return false;
130
131         const char *title = i3string_as_utf8(window->name);
132         if (strcmp(match->title->pattern, "__focused__") == 0 &&
133             strcmp(title, i3string_as_utf8(focused->window->name)) == 0) {
134             LOG("window title matches focused window\n");
135         } else if (regex_matches(match->title, title)) {
136             LOG("title matches (%s)\n", title);
137         } else {
138             return false;
139         }
140     }
141
142     if (match->window_role != NULL) {
143         if (window->role == NULL)
144             return false;
145         if (strcmp(match->window_role->pattern, "__focused__") == 0 &&
146             strcmp(window->role, focused->window->role) == 0) {
147             LOG("window role matches focused window\n");
148         } else if (regex_matches(match->window_role, window->role)) {
149             LOG("window_role matches (%s)\n", window->role);
150         } else {
151             return false;
152         }
153     }
154
155     if (match->window_type != UINT32_MAX) {
156         if (window->window_type == match->window_type) {
157             LOG("window_type matches (%i)\n", match->window_type);
158         } else {
159             return false;
160         }
161     }
162
163     Con *con = NULL;
164     if (match->urgent == U_LATEST) {
165         /* if the window isn't urgent, no sense in searching */
166         if (window->urgent.tv_sec == 0) {
167             return false;
168         }
169         /* if we find a window that is newer than this one, bail */
170         TAILQ_FOREACH(con, &all_cons, all_cons) {
171             if ((con->window != NULL) &&
172                 _i3_timercmp(con->window->urgent, window->urgent, > )) {
173                 return false;
174             }
175         }
176         LOG("urgent matches latest\n");
177     }
178
179     if (match->urgent == U_OLDEST) {
180         /* if the window isn't urgent, no sense in searching */
181         if (window->urgent.tv_sec == 0) {
182             return false;
183         }
184         /* if we find a window that is older than this one (and not 0), bail */
185         TAILQ_FOREACH(con, &all_cons, all_cons) {
186             if ((con->window != NULL) &&
187                 (con->window->urgent.tv_sec != 0) &&
188                 _i3_timercmp(con->window->urgent, window->urgent, < )) {
189                 return false;
190             }
191         }
192         LOG("urgent matches oldest\n");
193     }
194
195     if (match->workspace != NULL) {
196         if ((con = con_by_window_id(window->id)) == NULL)
197             return false;
198
199         Con *ws = con_get_workspace(con);
200         if (ws == NULL)
201             return false;
202
203         if (strcmp(match->workspace->pattern, "__focused__") == 0 &&
204             strcmp(ws->name, con_get_workspace(focused)->name) == 0) {
205             LOG("workspace matches focused workspace\n");
206         } else if (regex_matches(match->workspace, ws->name)) {
207             LOG("workspace matches (%s)\n", ws->name);
208         } else {
209             return false;
210         }
211     }
212
213     if (match->dock != M_DONTCHECK) {
214         if ((window->dock == W_DOCK_TOP && match->dock == M_DOCK_TOP) ||
215             (window->dock == W_DOCK_BOTTOM && match->dock == M_DOCK_BOTTOM) ||
216             ((window->dock == W_DOCK_TOP || window->dock == W_DOCK_BOTTOM) &&
217              match->dock == M_DOCK_ANY) ||
218             (window->dock == W_NODOCK && match->dock == M_NODOCK)) {
219             LOG("dock status matches\n");
220         } else {
221             LOG("dock status does not match\n");
222             return false;
223         }
224     }
225
226     if (match->mark != NULL) {
227         if ((con = con_by_window_id(window->id)) == NULL)
228             return false;
229
230         bool matched = false;
231         mark_t *mark;
232         TAILQ_FOREACH(mark, &(con->marks_head), marks) {
233             if (regex_matches(match->mark, mark->name)) {
234                 matched = true;
235                 break;
236             }
237         }
238
239         if (matched) {
240             LOG("mark matches\n");
241         } else {
242             LOG("mark does not match\n");
243             return false;
244         }
245     }
246
247     if (match->window_mode != WM_ANY) {
248         if ((con = con_by_window_id(window->id)) == NULL)
249             return false;
250
251         const bool floating = (con_inside_floating(con) != NULL);
252
253         if ((match->window_mode == WM_TILING && floating) ||
254             (match->window_mode == WM_FLOATING && !floating)) {
255             LOG("window_mode does not match\n");
256             return false;
257         }
258
259         LOG("window_mode matches\n");
260     }
261
262     return true;
263 }
264
265 /*
266  * Frees the given match. It must not be used afterwards!
267  *
268  */
269 void match_free(Match *match) {
270     FREE(match->error);
271     regex_free(match->title);
272     regex_free(match->application);
273     regex_free(match->class);
274     regex_free(match->instance);
275     regex_free(match->mark);
276     regex_free(match->window_role);
277     regex_free(match->workspace);
278 }
279
280 /*
281  * Interprets a ctype=cvalue pair and adds it to the given match specification.
282  *
283  */
284 void match_parse_property(Match *match, const char *ctype, const char *cvalue) {
285     assert(match != NULL);
286     DLOG("ctype=*%s*, cvalue=*%s*\n", ctype, cvalue);
287
288     if (strcmp(ctype, "class") == 0) {
289         regex_free(match->class);
290         match->class = regex_new(cvalue);
291         return;
292     }
293
294     if (strcmp(ctype, "instance") == 0) {
295         regex_free(match->instance);
296         match->instance = regex_new(cvalue);
297         return;
298     }
299
300     if (strcmp(ctype, "window_role") == 0) {
301         regex_free(match->window_role);
302         match->window_role = regex_new(cvalue);
303         return;
304     }
305
306     if (strcmp(ctype, "con_id") == 0) {
307         if (strcmp(cvalue, "__focused__") == 0) {
308             match->con_id = focused;
309             return;
310         }
311
312         char *end;
313         long parsed = strtol(cvalue, &end, 0);
314         if (parsed == LONG_MIN ||
315             parsed == LONG_MAX ||
316             parsed < 0 ||
317             (end && *end != '\0')) {
318             ELOG("Could not parse con id \"%s\"\n", cvalue);
319             match->error = sstrdup("invalid con_id");
320         } else {
321             match->con_id = (Con *)parsed;
322             DLOG("id as int = %p\n", match->con_id);
323         }
324         return;
325     }
326
327     if (strcmp(ctype, "id") == 0) {
328         char *end;
329         long parsed = strtol(cvalue, &end, 0);
330         if (parsed == LONG_MIN ||
331             parsed == LONG_MAX ||
332             parsed < 0 ||
333             (end && *end != '\0')) {
334             ELOG("Could not parse window id \"%s\"\n", cvalue);
335             match->error = sstrdup("invalid id");
336         } else {
337             match->id = parsed;
338             DLOG("window id as int = %d\n", match->id);
339         }
340         return;
341     }
342
343     if (strcmp(ctype, "window_type") == 0) {
344         if (strcasecmp(cvalue, "normal") == 0) {
345             match->window_type = A__NET_WM_WINDOW_TYPE_NORMAL;
346         } else if (strcasecmp(cvalue, "dialog") == 0) {
347             match->window_type = A__NET_WM_WINDOW_TYPE_DIALOG;
348         } else if (strcasecmp(cvalue, "utility") == 0) {
349             match->window_type = A__NET_WM_WINDOW_TYPE_UTILITY;
350         } else if (strcasecmp(cvalue, "toolbar") == 0) {
351             match->window_type = A__NET_WM_WINDOW_TYPE_TOOLBAR;
352         } else if (strcasecmp(cvalue, "splash") == 0) {
353             match->window_type = A__NET_WM_WINDOW_TYPE_SPLASH;
354         } else if (strcasecmp(cvalue, "menu") == 0) {
355             match->window_type = A__NET_WM_WINDOW_TYPE_MENU;
356         } else if (strcasecmp(cvalue, "dropdown_menu") == 0) {
357             match->window_type = A__NET_WM_WINDOW_TYPE_DROPDOWN_MENU;
358         } else if (strcasecmp(cvalue, "popup_menu") == 0) {
359             match->window_type = A__NET_WM_WINDOW_TYPE_POPUP_MENU;
360         } else if (strcasecmp(cvalue, "tooltip") == 0) {
361             match->window_type = A__NET_WM_WINDOW_TYPE_TOOLTIP;
362         } else if (strcasecmp(cvalue, "notification") == 0) {
363             match->window_type = A__NET_WM_WINDOW_TYPE_NOTIFICATION;
364         } else {
365             ELOG("unknown window_type value \"%s\"\n", cvalue);
366             match->error = sstrdup("unknown window_type value");
367         }
368
369         return;
370     }
371
372     if (strcmp(ctype, "con_mark") == 0) {
373         regex_free(match->mark);
374         match->mark = regex_new(cvalue);
375         return;
376     }
377
378     if (strcmp(ctype, "title") == 0) {
379         regex_free(match->title);
380         match->title = regex_new(cvalue);
381         return;
382     }
383
384     if (strcmp(ctype, "urgent") == 0) {
385         if (strcasecmp(cvalue, "latest") == 0 ||
386             strcasecmp(cvalue, "newest") == 0 ||
387             strcasecmp(cvalue, "recent") == 0 ||
388             strcasecmp(cvalue, "last") == 0) {
389             match->urgent = U_LATEST;
390         } else if (strcasecmp(cvalue, "oldest") == 0 ||
391                    strcasecmp(cvalue, "first") == 0) {
392             match->urgent = U_OLDEST;
393         }
394         return;
395     }
396
397     if (strcmp(ctype, "workspace") == 0) {
398         regex_free(match->workspace);
399         match->workspace = regex_new(cvalue);
400         return;
401     }
402
403     if (strcmp(ctype, "tiling") == 0) {
404         match->window_mode = WM_TILING;
405         return;
406     }
407
408     if (strcmp(ctype, "floating") == 0) {
409         match->window_mode = WM_FLOATING;
410         return;
411     }
412
413     ELOG("Unknown criterion: %s\n", ctype);
414 }