]> git.sur5r.net Git - i3/i3/blob - src/workspace.c
Don't leak this descriptor (thanks dothebart).
[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, *child;
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(child, &(output_get_content(output)->nodes_head), nodes) {
28             if (strcasecmp(child->name, num) != 0)
29                 continue;
30
31             workspace = child;
32             break;
33         }
34
35     LOG("getting ws %s\n", num);
36     if (workspace == NULL) {
37         LOG("need to create this one\n");
38         output = con_get_output(focused);
39         Con *content = output_get_content(output);
40         LOG("got output %p with content %p\n", output, content);
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, content, 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 = NULL;
203
204     workspace = workspace_get(num);
205
206     /* disable fullscreen for the other workspaces and get the workspace we are
207      * currently on. */
208     TAILQ_FOREACH(current, &(workspace->parent->nodes_head), nodes) {
209         if (current->fullscreen_mode == CF_OUTPUT)
210             old = current;
211         current->fullscreen_mode = CF_NONE;
212     }
213     assert(old != NULL);
214
215     /* Check if the the currently focused con is on the same Output as the
216      * workspace we chose as 'old'. If not, use the workspace of the currently
217      * focused con */
218     Con *ws = con_get_workspace(focused);
219     if (ws && ws->parent != old->parent)
220         old = ws;
221
222     /* enable fullscreen for the target workspace. If it happens to be the
223      * same one we are currently on anyways, we can stop here. */
224     workspace->fullscreen_mode = CF_OUTPUT;
225     if (workspace == old)
226         return;
227
228     workspace_reassign_sticky(workspace);
229
230     LOG("switching to %p\n", workspace);
231     Con *next = con_descend_focused(workspace);
232
233     if (old && TAILQ_EMPTY(&(old->nodes_head)) && TAILQ_EMPTY(&(old->floating_head))) {
234         /* check if this workspace is currently visible */
235         if (!workspace_is_visible(old)) {
236             LOG("Closing old workspace (%p / %s), it is empty\n", old, old->name);
237             tree_close(old, false, false);
238             ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
239         }
240     }
241
242     con_focus(next);
243     workspace->fullscreen_mode = CF_OUTPUT;
244     LOG("focused now = %p / %s\n", focused, focused->name);
245
246     ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
247 #if 0
248
249         /* Check if the workspace has not been used yet */
250         workspace_initialize(t_ws, c_ws->output, false);
251
252         if (c_ws->output != t_ws->output) {
253                 /* We need to switch to the other output first */
254                 DLOG("moving over to other output.\n");
255
256                 /* Store the old client */
257                 Client *old_client = CUR_CELL->currently_focused;
258
259                 c_ws = t_ws->output->current_workspace;
260                 current_col = c_ws->current_col;
261                 current_row = c_ws->current_row;
262                 if (CUR_CELL->currently_focused != NULL)
263                         need_warp = true;
264                 else {
265                         Rect *dims = &(c_ws->output->rect);
266                         xcb_warp_pointer(conn, XCB_NONE, root, 0, 0, 0, 0,
267                                          dims->x + (dims->width / 2), dims->y + (dims->height / 2));
268                 }
269
270                 /* Re-decorate the old client, it’s not focused anymore */
271                 if ((old_client != NULL) && !old_client->dock)
272                         redecorate_window(conn, old_client);
273                 else xcb_flush(conn);
274
275                 /* We need to check if a global fullscreen-client is blocking
276                  * the t_ws and if necessary switch that to local fullscreen */
277                 Client* client = c_ws->fullscreen_client;
278                 if (client != NULL && client->workspace != c_ws) {
279                         if (c_ws->fullscreen_client->workspace != c_ws)
280                                 c_ws->fullscreen_client = NULL;
281                         client_enter_fullscreen(conn, client, false);
282                 }
283         }
284
285         /* Check if we need to change something or if we’re already there */
286         if (c_ws->output->current_workspace->num == (workspace-1)) {
287                 Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
288                 if (last_focused != SLIST_END(&(c_ws->focus_stack)))
289                         set_focus(conn, last_focused, true);
290                 if (need_warp) {
291                         client_warp_pointer_into(conn, last_focused);
292                         xcb_flush(conn);
293                 }
294
295                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
296
297                 return;
298         }
299
300         Workspace *old_workspace = c_ws;
301         c_ws = t_ws->output->current_workspace = workspace_get(workspace-1);
302
303         /* Unmap all clients of the old workspace */
304         workspace_unmap_clients(conn, old_workspace);
305
306         current_row = c_ws->current_row;
307         current_col = c_ws->current_col;
308         DLOG("new current row = %d, current col = %d\n", current_row, current_col);
309
310         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
311
312         workspace_map_clients(conn, c_ws);
313
314         /* POTENTIAL TO IMPROVE HERE: due to the call to _map_clients first and
315          * render_layout afterwards, there is a short flickering on the source
316          * workspace (assign ws 3 to output 0, ws 4 to output 1, create single
317          * client on ws 4, move it to ws 3, switch to ws 3, you’ll see the
318          * flickering). */
319
320         /* Restore focus on the new workspace */
321         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
322         if (last_focused != SLIST_END(&(c_ws->focus_stack)))
323                 set_focus(conn, last_focused, true);
324         else xcb_set_input_focus(conn, XCB_INPUT_FOCUS_POINTER_ROOT, root, XCB_CURRENT_TIME);
325
326         render_layout(conn);
327
328         /* We can warp the pointer only after the window has been
329          * reconfigured in render_layout, otherwise the pointer will
330          * be warped to the old position, which will not work when we
331          * moved it to another output. */
332         if (last_focused != SLIST_END(&(c_ws->focus_stack)) && need_warp) {
333                 client_warp_pointer_into(conn, last_focused);
334                 xcb_flush(conn);
335         }
336 #endif
337 }
338
339 #if 0
340 /*
341  * Assigns the given workspace to the given output by correctly updating its
342  * state and reconfiguring all the clients on this workspace.
343  *
344  * This is called when initializing a output and when re-assigning it to a
345  * different output which just got available (if you configured it to be on
346  * output 1 and you just plugged in output 1).
347  *
348  */
349 void workspace_assign_to(Workspace *ws, Output *output, bool hide_it) {
350         Client *client;
351         bool empty = true;
352         bool visible = workspace_is_visible(ws);
353
354         ws->output = output;
355
356         /* Copy the dimensions from the virtual output */
357         memcpy(&(ws->rect), &(ws->output->rect), sizeof(Rect));
358
359         ewmh_update_workarea();
360
361         /* Force reconfiguration for each client on that workspace */
362         SLIST_FOREACH(client, &(ws->focus_stack), focus_clients) {
363                 client->force_reconfigure = true;
364                 empty = false;
365         }
366
367         if (empty)
368                 return;
369
370         /* Render the workspace to reconfigure the clients. However, they will be visible now, so… */
371         render_workspace(global_conn, output, ws);
372
373         /* …unless we want to see them at the moment, we should hide that workspace */
374         if (visible && !hide_it)
375                 return;
376
377         /* however, if this is the current workspace, we only need to adjust
378          * the output’s current_workspace pointer (and must not unmap the
379          * windows) */
380         if (c_ws == ws) {
381                 DLOG("Need to adjust output->current_workspace...\n");
382                 output->current_workspace = c_ws;
383                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"focus\"}");
384                 return;
385         }
386
387         workspace_unmap_clients(global_conn, ws);
388 }
389
390 /*
391  * Initializes the given workspace if it is not already initialized. The given
392  * screen is to be understood as a fallback, if the workspace itself either
393  * was not assigned to a particular screen or cannot be placed there because
394  * the screen is not attached at the moment.
395  *
396  */
397 void workspace_initialize(Workspace *ws, Output *output, bool recheck) {
398         Output *old_output;
399
400         if (ws->output != NULL && !recheck) {
401                 DLOG("Workspace already initialized\n");
402                 return;
403         }
404
405         old_output = ws->output;
406
407         /* If this workspace has no preferred output or if the output it wants
408          * to be on is not available at the moment, we initialize it with
409          * the output which was given */
410         if (ws->preferred_output == NULL ||
411             (ws->output = get_output_by_name(ws->preferred_output)) == NULL)
412                 ws->output = output;
413
414         DLOG("old_output = %p, ws->output = %p\n", old_output, ws->output);
415         /* If the assignment did not change, we do not need to update anything */
416         if (old_output != NULL && ws->output == old_output)
417                 return;
418
419         workspace_assign_to(ws, ws->output, false);
420 }
421
422 /*
423  * Gets the first unused workspace for the given screen, taking into account
424  * the preferred_output setting of every workspace (workspace assignments).
425  *
426  */
427 Workspace *get_first_workspace_for_output(Output *output) {
428         Workspace *result = NULL;
429
430         Workspace *ws;
431         TAILQ_FOREACH(ws, workspaces, workspaces) {
432                 if (ws->preferred_output == NULL ||
433                     get_output_by_name(ws->preferred_output) != output)
434                         continue;
435
436                 result = ws;
437                 break;
438         }
439
440         if (result == NULL) {
441                 /* No assignment found, returning first unused workspace */
442                 TAILQ_FOREACH(ws, workspaces, workspaces) {
443                         if (ws->output != NULL)
444                                 continue;
445
446                         result = ws;
447                         break;
448                 }
449         }
450
451         if (result == NULL) {
452                 DLOG("No existing free workspace found to assign, creating a new one\n");
453
454                 int last_ws = 0;
455                 TAILQ_FOREACH(ws, workspaces, workspaces)
456                         last_ws = ws->num;
457                 result = workspace_get(last_ws + 1);
458         }
459
460         workspace_initialize(result, output, false);
461         return result;
462 }
463
464 #endif
465
466 static bool get_urgency_flag(Con *con) {
467     Con *child;
468     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
469         if (child->urgent || get_urgency_flag(child))
470             return true;
471
472     TAILQ_FOREACH(child, &(con->floating_head), floating_windows)
473         if (child->urgent || get_urgency_flag(child))
474             return true;
475
476     return false;
477 }
478
479 /*
480  * Goes through all clients on the given workspace and updates the workspace’s
481  * urgent flag accordingly.
482  *
483  */
484 void workspace_update_urgent_flag(Con *ws) {
485     bool old_flag = ws->urgent;
486     ws->urgent = get_urgency_flag(ws);
487     DLOG("Workspace urgency flag changed from %d to %d\n", old_flag, ws->urgent);
488
489     if (old_flag != ws->urgent)
490         ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"urgent\"}");
491 }
492
493 /*
494  * 'Forces' workspace orientation by moving all cons into a new split-con with
495  * the same orientation as the workspace and then changing the workspace
496  * orientation.
497  *
498  */
499 void ws_force_orientation(Con *ws, orientation_t orientation) {
500     /* 1: create a new split container */
501     Con *split = con_new(NULL);
502     split->parent = ws;
503
504     /* 2: copy layout and orientation from workspace */
505     split->layout = ws->layout;
506     split->orientation = ws->orientation;
507
508     Con *old_focused = TAILQ_FIRST(&(ws->focus_head));
509
510     /* 3: move the existing cons of this workspace below the new con */
511     DLOG("Moving cons\n");
512     while (!TAILQ_EMPTY(&(ws->nodes_head))) {
513         Con *child = TAILQ_FIRST(&(ws->nodes_head));
514         con_detach(child);
515         con_attach(child, split, true);
516     }
517
518     /* 4: switch workspace orientation */
519     ws->orientation = orientation;
520
521     /* 5: attach the new split container to the workspace */
522     DLOG("Attaching new split to ws\n");
523     con_attach(split, ws, false);
524
525     /* 6: fix the percentages */
526     con_fix_percent(ws);
527
528     if (old_focused)
529         con_focus(old_focused);
530 }