Add 'last' as a desktop target for if/foreach
[mikachu/openbox.git] / openbox / actions / if.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    if.c for the Openbox window manager
4    Copyright (c) 2007        Mikael Magnusson
5    Copyright (c) 2007        Dana Jansens
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "openbox/actions.h"
21 #include "openbox/misc.h"
22 #include "openbox/client.h"
23 #include "openbox/frame.h"
24 #include "openbox/screen.h"
25 #include "openbox/focus.h"
26 #include <glib.h>
27
28 typedef enum {
29     QUERY_TARGET_IS_ACTION_TARGET,
30     QUERY_TARGET_IS_FOCUS_TARGET,
31 } QueryTarget;
32
33 typedef enum {
34     MATCH_TYPE_NONE = 0,
35     MATCH_TYPE_PATTERN,
36     MATCH_TYPE_REGEX,
37     MATCH_TYPE_EXACT,
38 } MatchType;
39
40 typedef struct {
41     MatchType type;
42     union m {
43         GPatternSpec *pattern;
44         GRegex *regex;
45         gchar *exact;
46     } m;
47 } TypedMatch;
48
49 typedef struct {
50     QueryTarget target;
51     gboolean shaded_on;
52     gboolean shaded_off;
53     gboolean maxvert_on;
54     gboolean maxvert_off;
55     gboolean maxhorz_on;
56     gboolean maxhorz_off;
57     gboolean maxfull_on;
58     gboolean maxfull_off;
59     gboolean iconic_on;
60     gboolean iconic_off;
61     gboolean focused;
62     gboolean unfocused;
63     gboolean urgent_on;
64     gboolean urgent_off;
65     gboolean decor_off;
66     gboolean decor_on;
67     gboolean omnipresent_on;
68     gboolean omnipresent_off;
69     gboolean desktop_current;
70     gboolean desktop_other;
71     gboolean desktop_last;
72     guint    desktop_number;
73     guint    screendesktop_number;
74     guint    client_monitor;
75     TypedMatch title;
76     TypedMatch class;
77     TypedMatch name;
78     TypedMatch role;
79     TypedMatch type;
80 } Query;
81
82 typedef struct {
83     GArray *queries;
84     GSList *thenacts;
85     GSList *elseacts;
86 } Options;
87
88 static gpointer setup_func(xmlNodePtr node);
89 static void     free_func(gpointer options);
90 static gboolean run_func_if(ObActionsData *data, gpointer options);
91 static gboolean run_func_stop(ObActionsData *data, gpointer options);
92 static gboolean run_func_foreach(ObActionsData *data, gpointer options);
93
94 static gboolean foreach_stop;
95
96 void action_if_startup(void)
97 {
98     actions_register("If", setup_func, free_func, run_func_if);
99     actions_register("Stop", NULL, NULL, run_func_stop);
100     actions_register("ForEach", setup_func, free_func, run_func_foreach);
101
102     actions_set_can_stop("Stop", TRUE);
103 }
104
105 static inline void set_bool(xmlNodePtr node,
106                             const char *name,
107                             gboolean *on,
108                             gboolean *off)
109 {
110     xmlNodePtr n;
111
112     if ((n = obt_xml_find_node(node, name))) {
113         if (obt_xml_node_bool(n))
114             *on = TRUE;
115         else
116             *off = TRUE;
117     }
118 }
119
120 static void setup_typed_match(TypedMatch *tm, xmlNodePtr n)
121 {
122     gchar *s;
123     if ((s = obt_xml_node_string(n))) {
124         gchar *type = NULL;
125         if (!obt_xml_attr_string(n, "type", &type) ||
126             !g_ascii_strcasecmp(type, "pattern"))
127         {
128             tm->type = MATCH_TYPE_PATTERN;
129             tm->m.pattern = g_pattern_spec_new(s);
130         } else if (type && !g_ascii_strcasecmp(type, "regex")) {
131             tm->type = MATCH_TYPE_REGEX;
132             tm->m.regex = g_regex_new(s, 0, 0, NULL);
133         } else if (type && !g_ascii_strcasecmp(type, "exact")) {
134             tm->type = MATCH_TYPE_EXACT;
135             tm->m.exact = g_strdup(s);
136         }
137         g_free(s);
138         g_free(type);
139     }
140 }
141
142 static void free_typed_match(TypedMatch *tm)
143 {
144     switch (tm->type) {
145     case MATCH_TYPE_PATTERN:
146         g_pattern_spec_free(tm->m.pattern);
147         break;
148     case MATCH_TYPE_REGEX:
149         g_regex_unref(tm->m.regex);
150         break;
151     case MATCH_TYPE_EXACT:
152         g_free(tm->m.exact);
153         break;
154     case MATCH_TYPE_NONE:
155         break;
156     }
157 }
158
159 static gboolean check_typed_match(TypedMatch *tm, const gchar *s)
160 {
161     switch (tm->type) {
162     case MATCH_TYPE_PATTERN:
163         return g_pattern_match_string(tm->m.pattern, s);
164     case MATCH_TYPE_REGEX:
165         return g_regex_match(tm->m.regex, s, 0, NULL);
166     case MATCH_TYPE_EXACT:
167         return !strcmp(tm->m.exact, s);
168     case MATCH_TYPE_NONE:
169         return TRUE;
170     }
171     g_assert_not_reached();
172 }
173
174 static void setup_query(Options* o, xmlNodePtr node, QueryTarget target) {
175     Query *q = g_slice_new0(Query);
176     g_array_append_val(o->queries, q);
177
178     q->target = target;
179
180     set_bool(node, "shaded", &q->shaded_on, &q->shaded_off);
181     set_bool(node, "maximized", &q->maxfull_on, &q->maxfull_off);
182     set_bool(node, "maximizedhorizontal", &q->maxhorz_on, &q->maxhorz_off);
183     set_bool(node, "maximizedvertical", &q->maxvert_on, &q->maxvert_off);
184     set_bool(node, "iconified", &q->iconic_on, &q->iconic_off);
185     set_bool(node, "focused", &q->focused, &q->unfocused);
186     set_bool(node, "urgent", &q->urgent_on, &q->urgent_off);
187     set_bool(node, "undecorated", &q->decor_off, &q->decor_on);
188     set_bool(node, "omnipresent", &q->omnipresent_on, &q->omnipresent_off);
189
190     xmlNodePtr n;
191     if ((n = obt_xml_find_node(node, "desktop"))) {
192         gchar *s;
193         if ((s = obt_xml_node_string(n))) {
194             if (!g_ascii_strcasecmp(s, "current"))
195                 q->desktop_current = TRUE;
196             else if (!g_ascii_strcasecmp(s, "other"))
197                 q->desktop_other = TRUE;
198             else if (!g_ascii_strcasecmp(s, "last"))
199                 q->desktop_last = TRUE;
200             else
201                 q->desktop_number = atoi(s);
202             g_free(s);
203         }
204     }
205     if ((n = obt_xml_find_node(node, "activedesktop"))) {
206         q->screendesktop_number = obt_xml_node_int(n);
207     }
208     if ((n = obt_xml_find_node(node, "title"))) {
209         setup_typed_match(&q->title, n);
210     }
211     if ((n = obt_xml_find_node(node, "class"))) {
212         setup_typed_match(&q->class, n);
213     }
214     if ((n = obt_xml_find_node(node, "name"))) {
215         setup_typed_match(&q->name, n);
216     }
217     if ((n = obt_xml_find_node(node, "role"))) {
218         setup_typed_match(&q->role, n);
219     }
220     if ((n = obt_xml_find_node(node, "type"))) {
221         setup_typed_match(&q->type, n);
222     }
223     if ((n = obt_xml_find_node(node, "monitor"))) {
224         q->client_monitor = obt_xml_node_int(n);
225     }
226 }
227
228 static gpointer setup_func(xmlNodePtr node)
229 {
230     Options *o = g_slice_new0(Options);
231
232     gboolean zero_terminated = FALSE;
233     gboolean clear_to_zero_on_alloc = FALSE;
234     o->queries = g_array_new(zero_terminated,
235                              clear_to_zero_on_alloc,
236                              sizeof(Query*));
237
238     xmlNodePtr n;
239     if ((n = obt_xml_find_node(node, "then"))) {
240         xmlNodePtr m;
241
242         m = obt_xml_find_node(n->children, "action");
243         while (m) {
244             ObActionsAct *action = actions_parse(m);
245             if (action) o->thenacts = g_slist_append(o->thenacts, action);
246             m = obt_xml_find_node(m->next, "action");
247         }
248     }
249     if ((n = obt_xml_find_node(node, "else"))) {
250         xmlNodePtr m;
251
252         m = obt_xml_find_node(n->children, "action");
253         while (m) {
254             ObActionsAct *action = actions_parse(m);
255             if (action) o->elseacts = g_slist_append(o->elseacts, action);
256             m = obt_xml_find_node(m->next, "action");
257         }
258     }
259
260     xmlNodePtr query_node = obt_xml_find_node(node, "query");
261     if (!query_node) {
262         /* The default query if none is specified. It uses the conditions
263            found in the action's node. */
264         setup_query(o,
265                     node,
266                     QUERY_TARGET_IS_ACTION_TARGET);
267     } else {
268         while (query_node) {
269             QueryTarget query_target = QUERY_TARGET_IS_ACTION_TARGET;
270             if (obt_xml_attr_contains(query_node, "target", "focus"))
271                 query_target = QUERY_TARGET_IS_FOCUS_TARGET;
272
273             setup_query(o, query_node->children, query_target);
274
275             query_node = obt_xml_find_node(query_node->next, "query");
276         }
277     }
278
279     return o;
280 }
281
282 static void free_func(gpointer options)
283 {
284     Options *o = options;
285
286     guint i;
287     for (i = 0; i < o->queries->len; ++i) {
288         Query *q = g_array_index(o->queries, Query*, i);
289
290         free_typed_match(&q->title);
291         free_typed_match(&q->class);
292         free_typed_match(&q->name);
293         free_typed_match(&q->role);
294         free_typed_match(&q->type);
295
296         g_slice_free(Query, q);
297     }
298
299     while (o->thenacts) {
300         actions_act_unref(o->thenacts->data);
301         o->thenacts = g_slist_delete_link(o->thenacts, o->thenacts);
302     }
303     while (o->elseacts) {
304         actions_act_unref(o->elseacts->data);
305         o->elseacts = g_slist_delete_link(o->elseacts, o->elseacts);
306     }
307
308     g_array_unref(o->queries);
309     g_slice_free(Options, o);
310 }
311
312 /* Always return FALSE because its not interactive */
313 static gboolean run_func_if(ObActionsData *data, gpointer options)
314 {
315     Options *o = options;
316     ObClient *action_target = data->client;
317     gboolean is_true = TRUE;
318
319     guint i;
320     for (i = 0; is_true && i < o->queries->len; ++i) {
321         Query *q = g_array_index(o->queries, Query*, i);
322         ObClient *query_target = NULL;
323
324         switch (q->target) {
325         case QUERY_TARGET_IS_ACTION_TARGET:
326             query_target = data->client;
327             break;
328         case QUERY_TARGET_IS_FOCUS_TARGET:
329             query_target = focus_client;
330             break;
331         }
332
333         /* If there's no client to query, then false. */
334         if (!query_target) {
335             is_true = FALSE;
336             break;
337         }
338
339         if (q->shaded_on)
340             is_true &= query_target->shaded;
341         if (q->shaded_off)
342             is_true &= !query_target->shaded;
343
344         if (q->iconic_on)
345             is_true &= query_target->iconic;
346         if (q->iconic_off)
347             is_true &= !query_target->iconic;
348
349         if (q->maxhorz_on)
350             is_true &= query_target->max_horz;
351         if (q->maxhorz_off)
352             is_true &= !query_target->max_horz;
353
354         if (q->maxvert_on)
355             is_true &= query_target->max_vert;
356         if (q->maxvert_off)
357             is_true &= !query_target->max_vert;
358
359         gboolean is_max_full =
360             query_target->max_vert && query_target->max_horz;
361         if (q->maxfull_on)
362             is_true &= is_max_full;
363         if (q->maxfull_off)
364             is_true &= !is_max_full;
365
366         if (q->focused)
367             is_true &= query_target == focus_client;
368         if (q->unfocused)
369             is_true &= query_target != focus_client;
370
371         gboolean is_urgent =
372             query_target->urgent || query_target->demands_attention;
373         if (q->urgent_on)
374             is_true &= is_urgent;
375         if (q->urgent_off)
376             is_true &= !is_urgent;
377
378         gboolean has_visible_title_bar =
379             !query_target->undecorated &&
380             (query_target->decorations & OB_FRAME_DECOR_TITLEBAR);
381         if (q->decor_on)
382             is_true &= has_visible_title_bar;
383         if (q->decor_off)
384             is_true &= !has_visible_title_bar;
385
386         if (q->omnipresent_on)
387             is_true &= query_target->desktop == DESKTOP_ALL;
388         if (q->omnipresent_off)
389             is_true &= query_target->desktop != DESKTOP_ALL;
390
391         gboolean is_on_current_desktop =
392             query_target->desktop == screen_desktop ||
393             query_target->desktop == DESKTOP_ALL;
394         if (q->desktop_current)
395             is_true &= is_on_current_desktop;
396         if (q->desktop_other)
397             is_true &= !is_on_current_desktop;
398         if (q->desktop_last)
399             is_true &= query_target->desktop == screen_last_desktop;
400
401         if (q->desktop_number) {
402             gboolean is_on_desktop =
403                 query_target->desktop == q->desktop_number - 1 ||
404                 query_target->desktop == DESKTOP_ALL;
405             is_true &= is_on_desktop;
406         }
407
408         if (q->screendesktop_number)
409             is_true &= screen_desktop == q->screendesktop_number - 1;
410
411         is_true &= check_typed_match(&q->title, query_target->original_title);
412         is_true &= check_typed_match(&q->class, query_target->class);
413         is_true &= check_typed_match(&q->name, query_target->name);
414         is_true &= check_typed_match(&q->role, query_target->role);
415         is_true &= check_typed_match(&q->type,
416                                      client_type_to_string(query_target));
417
418         if (q->client_monitor)
419             is_true &= client_monitor(query_target) == q->client_monitor - 1;
420
421     }
422
423     GSList *acts;
424     if (is_true)
425         acts = o->thenacts;
426     else
427         acts = o->elseacts;
428
429     actions_run_acts(acts, data->uact, data->state,
430                      data->x, data->y, data->button,
431                      data->context, action_target);
432
433     return FALSE;
434 }
435
436 static gboolean run_func_foreach(ObActionsData *data, gpointer options)
437 {
438     GList *it;
439
440     foreach_stop = FALSE;
441
442     for (it = client_list; it; it = g_list_next(it)) {
443         data->client = it->data;
444         run_func_if(data, options);
445         if (foreach_stop) {
446             foreach_stop = FALSE;
447             break;
448         }
449     }
450
451     return FALSE;
452 }
453
454 static gboolean run_func_stop(ObActionsData *data, gpointer options)
455 {
456     /* This stops the loop above so we don't invoke actions on any more
457        clients */
458     foreach_stop = TRUE;
459
460     /* TRUE causes actions_run_acts to not run further actions on the current
461        client */
462     return TRUE;
463 }