]> git.sur5r.net Git - i3/i3/blob - src/workspace.c
fix memleak: free con->name before overwriting it
[i3/i3] / src / workspace.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * workspace.c: Functions for modifying workspaces
8  *
9  */
10 #include <limits.h>
11
12 #include "all.h"
13
14 /*
15  * Returns a pointer to the workspace with the given number (starting at 0),
16  * creating the workspace if necessary (by allocating the necessary amount of
17  * memory and initializing the data structures correctly).
18  *
19  */
20 Con *workspace_get(const char *num) {
21     Con *output, *workspace = NULL, *current;
22
23     /* TODO: could that look like this in the future?
24     GET_MATCHING_NODE(workspace, croot, strcasecmp(current->name, num) != 0);
25     */
26     TAILQ_FOREACH(output, &(croot->nodes_head), nodes) {
27         TAILQ_FOREACH(current, &(output->nodes_head), nodes) {
28             if (strcasecmp(current->name, num) != 0)
29                     continue;
30
31             workspace = current;
32             break;
33         }
34     }
35
36     LOG("getting ws %s\n", num);
37     if (workspace == NULL) {
38         LOG("need to create this one\n");
39         output = con_get_output(focused);
40         LOG("got output %p\n", output);
41         /* We need to attach this container after setting its type. con_attach
42          * will handle CT_WORKSPACEs differently */
43         workspace = con_new(NULL);
44         char *name;
45         asprintf(&name, "[i3 con] workspace %s", num);
46         x_set_name(workspace, name);
47         free(name);
48         workspace->type = CT_WORKSPACE;
49         FREE(workspace->name);
50         workspace->name = sstrdup(num);
51         /* We set ->num to the number if this workspace’s name consists only of
52          * a positive number. Otherwise it’s a named ws and num will be -1. */
53         char *end;
54         long parsed_num = strtol(num, &end, 10);
55         if (parsed_num == LONG_MIN ||
56             parsed_num == LONG_MAX ||
57             parsed_num < 0 ||
58             (end && *end != '\0'))
59             workspace->num = -1;
60         else workspace->num = parsed_num;
61         LOG("num = %d\n", workspace->num);
62         workspace->orientation = HORIZ;
63         con_attach(workspace, output, false);
64
65         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"init\"}");
66     }
67
68     //ewmh_update_workarea();
69
70     return workspace;
71 }
72
73 #if 0
74
75 /*
76  * Sets the name (or just its number) for the given workspace. This has to
77  * be called for every workspace as the rendering function
78  * (render_internal_bar) relies on workspace->name and workspace->name_len
79  * being ready-to-use.
80  *
81  */
82 void workspace_set_name(Workspace *ws, const char *name) {
83         char *label;
84         int ret;
85
86         if (name != NULL)
87                 ret = asprintf(&label, "%d: %s", ws->num + 1, name);
88         else ret = asprintf(&label, "%d", ws->num + 1);
89
90         if (ret == -1)
91                 errx(1, "asprintf() failed");
92
93         FREE(ws->name);
94         FREE(ws->utf8_name);
95
96         ws->name = convert_utf8_to_ucs2(label, &(ws->name_len));
97         if (config.font != NULL)
98                 ws->text_width = predict_text_width(global_conn, config.font, ws->name, ws->name_len);
99         else ws->text_width = 0;
100         ws->utf8_name = label;
101 }
102 #endif
103
104 /*
105  * Returns true if the workspace is currently visible. Especially important for
106  * multi-monitor environments, as they can have multiple currenlty active
107  * workspaces.
108  *
109  */
110 bool workspace_is_visible(Con *ws) {
111     Con *output = con_get_output(ws);
112     if (output == NULL)
113         return false;
114     Con *fs = con_get_fullscreen_con(output);
115     LOG("workspace visible? fs = %p, ws = %p\n", fs, ws);
116     return (fs == ws);
117 }
118
119 /*
120  * XXX: we need to clean up all this recursive walking code.
121  *
122  */
123 Con *_get_sticky(Con *con, const char *sticky_group, Con *exclude) {
124     Con *current;
125
126     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
127         if (current != exclude &&
128             current->sticky_group != NULL &&
129             current->window != NULL &&
130             strcmp(current->sticky_group, sticky_group) == 0)
131             return current;
132
133         Con *recurse = _get_sticky(current, sticky_group, exclude);
134         if (recurse != NULL)
135             return recurse;
136     }
137
138     TAILQ_FOREACH(current, &(con->floating_head), floating_windows) {
139         if (current != exclude &&
140             current->sticky_group != NULL &&
141             current->window != NULL &&
142             strcmp(current->sticky_group, sticky_group) == 0)
143             return current;
144
145         Con *recurse = _get_sticky(current, sticky_group, exclude);
146         if (recurse != NULL)
147             return recurse;
148     }
149
150     return NULL;
151 }
152
153 /*
154  * Reassigns all child windows in sticky containers. Called when the user
155  * changes workspaces.
156  *
157  * XXX: what about sticky containers which contain containers?
158  *
159  */
160 static void workspace_reassign_sticky(Con *con) {
161     Con *current;
162     /* 1: go through all containers */
163
164     /* handle all children and floating windows of this node */
165     TAILQ_FOREACH(current, &(con->nodes_head), nodes) {
166         if (current->sticky_group == NULL) {
167             workspace_reassign_sticky(current);
168             continue;
169         }
170
171         LOG("Ah, this one is sticky: %s / %p\n", current->name, current);
172         /* 2: find a window which we can re-assign */
173         Con *output = con_get_output(current);
174         Con *src = _get_sticky(output, current->sticky_group, current);
175
176         if (src == NULL) {
177             LOG("No window found for this sticky group\n");
178             workspace_reassign_sticky(current);
179             continue;
180         }
181
182         x_move_win(src, current);
183         current->window = src->window;
184         current->mapped = true;
185         src->window = NULL;
186         src->mapped = false;
187
188         x_reparent_child(current, src);
189
190         LOG("re-assigned window from src %p to dest %p\n", src, current);
191     }
192
193     TAILQ_FOREACH(current, &(con->floating_head), floating_windows)
194         workspace_reassign_sticky(current);
195 }
196
197 /*
198  * Switches to the given workspace
199  *
200  */
201 void workspace_show(const char *num) {
202     Con *workspace, *current, *old;
203
204     old = con_get_workspace(focused);
205
206     workspace = workspace_get(num);
207     if (workspace == old)
208         return;
209     workspace->fullscreen_mode = CF_OUTPUT;
210     /* disable fullscreen */
211     TAILQ_FOREACH(current, &(workspace->parent->nodes_head), nodes)
212         current->fullscreen_mode = CF_NONE;
213
214     workspace_reassign_sticky(workspace);
215
216     LOG("switching to %p\n", workspace);
217     Con *next = workspace;
218
219     while (!TAILQ_EMPTY(&(next->focus_head)))
220         next = TAILQ_FIRST(&(next->focus_head));
221
222
223     if (TAILQ_EMPTY(&(old->nodes_head)) && TAILQ_EMPTY(&(old->floating_head))) {
224         /* check if this workspace is currently visible */
225         if (!workspace_is_visible(old)) {
226             LOG("Closing old workspace (%p / %s), it is empty\n", old, old->name);
227             tree_close(old, false, false);
228             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
229         }
230     }
231
232     con_focus(next);
233     workspace->fullscreen_mode = CF_OUTPUT;
234     LOG("focused now = %p / %s\n", focused, focused->name);
235
236     ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
237 #if 0
238
239         /* Check if the workspace has not been used yet */
240         workspace_initialize(t_ws, c_ws->output, false);
241
242         if (c_ws->output != t_ws->output) {
243                 /* We need to switch to the other output first */
244                 DLOG("moving over to other output.\n");
245
246                 /* Store the old client */
247                 Client *old_client = CUR_CELL->currently_focused;
248
249                 c_ws = t_ws->output->current_workspace;
250                 current_col = c_ws->current_col;
251                 current_row = c_ws->current_row;
252                 if (CUR_CELL->currently_focused != NULL)
253                         need_warp = true;
254                 else {
255                         Rect *dims = &(c_ws->output->rect);
256                         xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0,
257                                          dims->x + (dims->width / 2), dims->y + (dims->height / 2));
258                 }
259
260                 /* Re-decorate the old client, it’s not focused anymore */
261                 if ((old_client != NULL) && !old_client->dock)
262                         redecorate_window(conn, old_client);
263                 else xcb_flush(conn);
264
265                 /* We need to check if a global fullscreen-client is blocking
266                  * the t_ws and if necessary switch that to local fullscreen */
267                 Client* client = c_ws->fullscreen_client;
268                 if (client != NULL && client->workspace != c_ws) {
269                         if (c_ws->fullscreen_client->workspace != c_ws)
270                                 c_ws->fullscreen_client = NULL;
271                         client_enter_fullscreen(conn, client, false);
272                 }
273         }
274
275         /* Check if we need to change something or if we’re already there */
276         if (c_ws->output->current_workspace->num == (workspace-1)) {
277                 Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
278                 if (last_focused != SLIST_END(&(c_ws->focus_stack)))
279                         set_focus(conn, last_focused, true);
280                 if (need_warp) {
281                         client_warp_pointer_into(conn, last_focused);
282                         xcb_flush(conn);
283                 }
284
285                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
286
287                 return;
288         }
289
290         Workspace *old_workspace = c_ws;
291         c_ws = t_ws->output->current_workspace = workspace_get(workspace-1);
292
293         /* Unmap all clients of the old workspace */
294         workspace_unmap_clients(conn, old_workspace);
295
296         current_row = c_ws->current_row;
297         current_col = c_ws->current_col;
298         DLOG("new current row = %d, current col = %d\n", current_row, current_col);
299
300         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
301
302         workspace_map_clients(conn, c_ws);
303
304         /* POTENTIAL TO IMPROVE HERE: due to the call to _map_clients first and
305          * render_layout afterwards, there is a short flickering on the source
306          * workspace (assign ws 3 to output 0, ws 4 to output 1, create single
307          * client on ws 4, move it to ws 3, switch to ws 3, you’ll see the
308          * flickering). */
309
310         /* Restore focus on the new workspace */
311         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
312         if (last_focused != SLIST_END(&(c_ws->focus_stack)))
313                 set_focus(conn, last_focused, true);
314         else xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
315
316         render_layout(conn);
317
318         /* We can warp the pointer only after the window has been
319          * reconfigured in render_layout, otherwise the pointer will
320          * be warped to the old position, which will not work when we
321          * moved it to another output. */
322         if (last_focused != SLIST_END(&(c_ws->focus_stack)) && need_warp) {
323                 client_warp_pointer_into(conn, last_focused);
324                 xcb_flush(conn);
325         }
326 #endif
327 }
328
329 #if 0
330 /*
331  * Assigns the given workspace to the given output by correctly updating its
332  * state and reconfiguring all the clients on this workspace.
333  *
334  * This is called when initializing a output and when re-assigning it to a
335  * different output which just got available (if you configured it to be on
336  * output 1 and you just plugged in output 1).
337  *
338  */
339 void workspace_assign_to(Workspace *ws, Output *output, bool hide_it) {
340         Client *client;
341         bool empty = true;
342         bool visible = workspace_is_visible(ws);
343
344         ws->output = output;
345
346         /* Copy the dimensions from the virtual output */
347         memcpy(&(ws->rect), &(ws->output->rect), sizeof(Rect));
348
349         ewmh_update_workarea();
350
351         /* Force reconfiguration for each client on that workspace */
352         SLIST_FOREACH(client, &(ws->focus_stack), focus_clients) {
353                 client->force_reconfigure = true;
354                 empty = false;
355         }
356
357         if (empty)
358                 return;
359
360         /* Render the workspace to reconfigure the clients. However, they will be visible now, so… */
361         render_workspace(global_conn, output, ws);
362
363         /* …unless we want to see them at the moment, we should hide that workspace */
364         if (visible && !hide_it)
365                 return;
366
367         /* however, if this is the current workspace, we only need to adjust
368          * the output’s current_workspace pointer (and must not unmap the
369          * windows) */
370         if (c_ws == ws) {
371                 DLOG("Need to adjust output->current_workspace...\n");
372                 output->current_workspace = c_ws;
373                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
374                 return;
375         }
376
377         workspace_unmap_clients(global_conn, ws);
378 }
379
380 /*
381  * Initializes the given workspace if it is not already initialized. The given
382  * screen is to be understood as a fallback, if the workspace itself either
383  * was not assigned to a particular screen or cannot be placed there because
384  * the screen is not attached at the moment.
385  *
386  */
387 void workspace_initialize(Workspace *ws, Output *output, bool recheck) {
388         Output *old_output;
389
390         if (ws->output != NULL && !recheck) {
391                 DLOG("Workspace already initialized\n");
392                 return;
393         }
394
395         old_output = ws->output;
396
397         /* If this workspace has no preferred output or if the output it wants
398          * to be on is not available at the moment, we initialize it with
399          * the output which was given */
400         if (ws->preferred_output == NULL ||
401             (ws->output = get_output_by_name(ws->preferred_output)) == NULL)
402                 ws->output = output;
403
404         DLOG("old_output = %p, ws->output = %p\n", old_output, ws->output);
405         /* If the assignment did not change, we do not need to update anything */
406         if (old_output != NULL && ws->output == old_output)
407                 return;
408
409         workspace_assign_to(ws, ws->output, false);
410 }
411
412 /*
413  * Gets the first unused workspace for the given screen, taking into account
414  * the preferred_output setting of every workspace (workspace assignments).
415  *
416  */
417 Workspace *get_first_workspace_for_output(Output *output) {
418         Workspace *result = NULL;
419
420         Workspace *ws;
421         TAILQ_FOREACH(ws, workspaces, workspaces) {
422                 if (ws->preferred_output == NULL ||
423                     get_output_by_name(ws->preferred_output) != output)
424                         continue;
425
426                 result = ws;
427                 break;
428         }
429
430         if (result == NULL) {
431                 /* No assignment found, returning first unused workspace */
432                 TAILQ_FOREACH(ws, workspaces, workspaces) {
433                         if (ws->output != NULL)
434                                 continue;
435
436                         result = ws;
437                         break;
438                 }
439         }
440
441         if (result == NULL) {
442                 DLOG("No existing free workspace found to assign, creating a new one\n");
443
444                 int last_ws = 0;
445                 TAILQ_FOREACH(ws, workspaces, workspaces)
446                         last_ws = ws->num;
447                 result = workspace_get(last_ws + 1);
448         }
449
450         workspace_initialize(result, output, false);
451         return result;
452 }
453
454 #endif
455
456 static bool get_urgency_flag(Con *con) {
457     Con *child;
458     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
459         if (child->urgent || get_urgency_flag(child))
460             return true;
461
462     TAILQ_FOREACH(child, &(con->floating_head), floating_windows)
463         if (child->urgent || get_urgency_flag(child))
464             return true;
465
466     return false;
467 }
468
469 /*
470  * Goes through all clients on the given workspace and updates the workspace’s
471  * urgent flag accordingly.
472  *
473  */
474 void workspace_update_urgent_flag(Con *ws) {
475     bool old_flag = ws->urgent;
476     ws->urgent = get_urgency_flag(ws);
477     DLOG("Workspace urgency flag changed from %d to %d\n", old_flag, ws->urgent);
478
479     if (old_flag != ws->urgent)
480         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"urgent\"}");
481 }