]> git.sur5r.net Git - i3/i3/blob - src/randr.c
Merge pull request #3327 from orestisf1993/rename-mouse-bug
[i3/i3] / src / randr.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * For more information on RandR, please see the X.org RandR specification at
8  * https://cgit.freedesktop.org/xorg/proto/randrproto/tree/randrproto.txt
9  * (take your time to read it completely, it answers all questions).
10  *
11  */
12 #include "all.h"
13
14 #include <time.h>
15 #include <xcb/randr.h>
16
17 /* Pointer to the result of the query for primary output */
18 xcb_randr_get_output_primary_reply_t *primary;
19
20 /* Stores all outputs available in your current session. */
21 struct outputs_head outputs = TAILQ_HEAD_INITIALIZER(outputs);
22
23 /* This is the output covering the root window */
24 static Output *root_output;
25 static bool has_randr_1_5 = false;
26
27 /*
28  * Get a specific output by its internal X11 id. Used by randr_query_outputs
29  * to check if the output is new (only in the first scan) or if we are
30  * re-scanning.
31  *
32  */
33 static Output *get_output_by_id(xcb_randr_output_t id) {
34     Output *output;
35     TAILQ_FOREACH(output, &outputs, outputs)
36     if (output->id == id)
37         return output;
38
39     return NULL;
40 }
41
42 /*
43  * Returns the output with the given name or NULL.
44  * If require_active is true, only active outputs are considered.
45  *
46  */
47 Output *get_output_by_name(const char *name, const bool require_active) {
48     Output *output;
49     bool get_primary = (strcasecmp("primary", name) == 0);
50     TAILQ_FOREACH(output, &outputs, outputs) {
51         if (output->primary && get_primary) {
52             return output;
53         }
54         if (require_active && !output->active) {
55             continue;
56         }
57         struct output_name *output_name;
58         SLIST_FOREACH(output_name, &output->names_head, names) {
59             if (strcasecmp(output_name->name, name) == 0) {
60                 return output;
61             }
62         }
63     }
64
65     return NULL;
66 }
67
68 /*
69  * Returns the first output which is active.
70  *
71  */
72 Output *get_first_output(void) {
73     Output *output;
74
75     TAILQ_FOREACH(output, &outputs, outputs)
76     if (output->active)
77         return output;
78
79     die("No usable outputs available.\n");
80 }
81
82 /*
83  * Check whether there are any active outputs (excluding the root output).
84  *
85  */
86 static bool any_randr_output_active(void) {
87     Output *output;
88
89     TAILQ_FOREACH(output, &outputs, outputs) {
90         if (output != root_output && !output->to_be_disabled && output->active)
91             return true;
92     }
93
94     return false;
95 }
96
97 /*
98  * Returns the active (!) output which contains the coordinates x, y or NULL
99  * if there is no output which contains these coordinates.
100  *
101  */
102 Output *get_output_containing(unsigned int x, unsigned int y) {
103     Output *output;
104     TAILQ_FOREACH(output, &outputs, outputs) {
105         if (!output->active)
106             continue;
107         DLOG("comparing x=%d y=%d with x=%d and y=%d width %d height %d\n",
108              x, y, output->rect.x, output->rect.y, output->rect.width, output->rect.height);
109         if (x >= output->rect.x && x < (output->rect.x + output->rect.width) &&
110             y >= output->rect.y && y < (output->rect.y + output->rect.height))
111             return output;
112     }
113
114     return NULL;
115 }
116
117 /*
118  * Returns the active output which contains the midpoint of the given rect. If
119  * such an output doesn't exist, returns the output which contains most of the
120  * rectangle or NULL if there is no output which intersects with it.
121  *
122  */
123 Output *get_output_from_rect(Rect rect) {
124     unsigned int mid_x = rect.x + rect.width / 2;
125     unsigned int mid_y = rect.y + rect.height / 2;
126     Output *output = get_output_containing(mid_x, mid_y);
127
128     return output ? output : output_containing_rect(rect);
129 }
130
131 /*
132  * Returns the active output which spans exactly the area specified by
133  * rect or NULL if there is no output like this.
134  *
135  */
136 Output *get_output_with_dimensions(Rect rect) {
137     Output *output;
138     TAILQ_FOREACH(output, &outputs, outputs) {
139         if (!output->active)
140             continue;
141         DLOG("comparing x=%d y=%d %dx%d with x=%d and y=%d %dx%d\n",
142              rect.x, rect.y, rect.width, rect.height,
143              output->rect.x, output->rect.y, output->rect.width, output->rect.height);
144         if (rect.x == output->rect.x && rect.width == output->rect.width &&
145             rect.y == output->rect.y && rect.height == output->rect.height)
146             return output;
147     }
148
149     return NULL;
150 }
151
152 /*
153  * In output_containing_rect, we check if any active output contains part of the container.
154  * We do this by checking if the output rect is intersected by the Rect.
155  * This is the 2-dimensional counterpart of get_output_containing.
156  * Returns the output with the maximum intersecting area.
157  *
158  */
159 Output *output_containing_rect(Rect rect) {
160     Output *output;
161     int lx = rect.x, uy = rect.y;
162     int rx = rect.x + rect.width, by = rect.y + rect.height;
163     long max_area = 0;
164     Output *result = NULL;
165     TAILQ_FOREACH(output, &outputs, outputs) {
166         if (!output->active)
167             continue;
168         int lx_o = (int)output->rect.x, uy_o = (int)output->rect.y;
169         int rx_o = (int)(output->rect.x + output->rect.width), by_o = (int)(output->rect.y + output->rect.height);
170         DLOG("comparing x=%d y=%d with x=%d and y=%d width %d height %d\n",
171              rect.x, rect.y, output->rect.x, output->rect.y, output->rect.width, output->rect.height);
172         int left = max(lx, lx_o);
173         int right = min(rx, rx_o);
174         int bottom = min(by, by_o);
175         int top = max(uy, uy_o);
176         if (left < right && bottom > top) {
177             long area = (right - left) * (bottom - top);
178             if (area > max_area) {
179                 result = output;
180             }
181         }
182     }
183     return result;
184 }
185
186 /*
187  * Like get_output_next with close_far == CLOSEST_OUTPUT, but wraps.
188  *
189  * For example if get_output_next(D_DOWN, x, FARTHEST_OUTPUT) = NULL, then
190  * get_output_next_wrap(D_DOWN, x) will return the topmost output.
191  *
192  * This function always returns a output: if no active outputs can be found,
193  * current itself is returned.
194  *
195  */
196 Output *get_output_next_wrap(direction_t direction, Output *current) {
197     Output *best = get_output_next(direction, current, CLOSEST_OUTPUT);
198     /* If no output can be found, wrap */
199     if (!best) {
200         direction_t opposite;
201         if (direction == D_RIGHT)
202             opposite = D_LEFT;
203         else if (direction == D_LEFT)
204             opposite = D_RIGHT;
205         else if (direction == D_DOWN)
206             opposite = D_UP;
207         else
208             opposite = D_DOWN;
209         best = get_output_next(opposite, current, FARTHEST_OUTPUT);
210     }
211     if (!best)
212         best = current;
213     DLOG("current = %s, best = %s\n", output_primary_name(current), output_primary_name(best));
214     return best;
215 }
216
217 /*
218  * Gets the output which is the next one in the given direction.
219  *
220  * If close_far == CLOSEST_OUTPUT, then the output next to the current one will
221  * selected. If close_far == FARTHEST_OUTPUT, the output which is the last one
222  * in the given direction will be selected.
223  *
224  * NULL will be returned when no active outputs are present in the direction
225  * specified (note that “current” counts as such an output).
226  *
227  */
228 Output *get_output_next(direction_t direction, Output *current, output_close_far_t close_far) {
229     Rect *cur = &(current->rect),
230          *other;
231     Output *output,
232         *best = NULL;
233     TAILQ_FOREACH(output, &outputs, outputs) {
234         if (!output->active)
235             continue;
236
237         other = &(output->rect);
238
239         if ((direction == D_RIGHT && other->x > cur->x) ||
240             (direction == D_LEFT && other->x < cur->x)) {
241             /* Skip the output when it doesn’t overlap the other one’s y
242              * coordinate at all. */
243             if ((other->y + other->height) <= cur->y ||
244                 (cur->y + cur->height) <= other->y)
245                 continue;
246         } else if ((direction == D_DOWN && other->y > cur->y) ||
247                    (direction == D_UP && other->y < cur->y)) {
248             /* Skip the output when it doesn’t overlap the other one’s x
249              * coordinate at all. */
250             if ((other->x + other->width) <= cur->x ||
251                 (cur->x + cur->width) <= other->x)
252                 continue;
253         } else
254             continue;
255
256         /* No candidate yet? Start with this one. */
257         if (!best) {
258             best = output;
259             continue;
260         }
261
262         if (close_far == CLOSEST_OUTPUT) {
263             /* Is this output better (closer to the current output) than our
264              * current best bet? */
265             if ((direction == D_RIGHT && other->x < best->rect.x) ||
266                 (direction == D_LEFT && other->x > best->rect.x) ||
267                 (direction == D_DOWN && other->y < best->rect.y) ||
268                 (direction == D_UP && other->y > best->rect.y)) {
269                 best = output;
270                 continue;
271             }
272         } else {
273             /* Is this output better (farther to the current output) than our
274              * current best bet? */
275             if ((direction == D_RIGHT && other->x > best->rect.x) ||
276                 (direction == D_LEFT && other->x < best->rect.x) ||
277                 (direction == D_DOWN && other->y > best->rect.y) ||
278                 (direction == D_UP && other->y < best->rect.y)) {
279                 best = output;
280                 continue;
281             }
282         }
283     }
284
285     DLOG("current = %s, best = %s\n", output_primary_name(current), (best ? output_primary_name(best) : "NULL"));
286     return best;
287 }
288
289 /*
290  * Creates an output covering the root window.
291  *
292  */
293 Output *create_root_output(xcb_connection_t *conn) {
294     Output *s = scalloc(1, sizeof(Output));
295
296     s->active = false;
297     s->rect.x = 0;
298     s->rect.y = 0;
299     s->rect.width = root_screen->width_in_pixels;
300     s->rect.height = root_screen->height_in_pixels;
301
302     struct output_name *output_name = scalloc(1, sizeof(struct output_name));
303     output_name->name = "xroot-0";
304     SLIST_INIT(&s->names_head);
305     SLIST_INSERT_HEAD(&s->names_head, output_name, names);
306
307     return s;
308 }
309
310 /*
311  * Initializes a CT_OUTPUT Con (searches existing ones from inplace restart
312  * before) to use for the given Output.
313  *
314  */
315 void output_init_con(Output *output) {
316     Con *con = NULL, *current;
317     bool reused = false;
318
319     DLOG("init_con for output %s\n", output_primary_name(output));
320
321     /* Search for a Con with that name directly below the root node. There
322      * might be one from a restored layout. */
323     TAILQ_FOREACH(current, &(croot->nodes_head), nodes) {
324         if (strcmp(current->name, output_primary_name(output)) != 0)
325             continue;
326
327         con = current;
328         reused = true;
329         DLOG("Using existing con %p / %s\n", con, con->name);
330         break;
331     }
332
333     if (con == NULL) {
334         con = con_new(croot, NULL);
335         FREE(con->name);
336         con->name = sstrdup(output_primary_name(output));
337         con->type = CT_OUTPUT;
338         con->layout = L_OUTPUT;
339         con_fix_percent(croot);
340     }
341     con->rect = output->rect;
342     output->con = con;
343
344     char *name;
345     sasprintf(&name, "[i3 con] output %s", con->name);
346     x_set_name(con, name);
347     FREE(name);
348
349     if (reused) {
350         DLOG("Not adding workspace, this was a reused con\n");
351         return;
352     }
353
354     DLOG("Changing layout, adding top/bottom dockarea\n");
355     Con *topdock = con_new(NULL, NULL);
356     topdock->type = CT_DOCKAREA;
357     topdock->layout = L_DOCKAREA;
358     /* this container swallows dock clients */
359     Match *match = scalloc(1, sizeof(Match));
360     match_init(match);
361     match->dock = M_DOCK_TOP;
362     match->insert_where = M_BELOW;
363     TAILQ_INSERT_TAIL(&(topdock->swallow_head), match, matches);
364
365     FREE(topdock->name);
366     topdock->name = sstrdup("topdock");
367
368     sasprintf(&name, "[i3 con] top dockarea %s", con->name);
369     x_set_name(topdock, name);
370     FREE(name);
371     DLOG("attaching\n");
372     con_attach(topdock, con, false);
373
374     /* content container */
375
376     DLOG("adding main content container\n");
377     Con *content = con_new(NULL, NULL);
378     content->type = CT_CON;
379     content->layout = L_SPLITH;
380     FREE(content->name);
381     content->name = sstrdup("content");
382
383     sasprintf(&name, "[i3 con] content %s", con->name);
384     x_set_name(content, name);
385     FREE(name);
386     con_attach(content, con, false);
387
388     /* bottom dock container */
389     Con *bottomdock = con_new(NULL, NULL);
390     bottomdock->type = CT_DOCKAREA;
391     bottomdock->layout = L_DOCKAREA;
392     /* this container swallows dock clients */
393     match = scalloc(1, sizeof(Match));
394     match_init(match);
395     match->dock = M_DOCK_BOTTOM;
396     match->insert_where = M_BELOW;
397     TAILQ_INSERT_TAIL(&(bottomdock->swallow_head), match, matches);
398
399     FREE(bottomdock->name);
400     bottomdock->name = sstrdup("bottomdock");
401
402     sasprintf(&name, "[i3 con] bottom dockarea %s", con->name);
403     x_set_name(bottomdock, name);
404     FREE(name);
405     DLOG("attaching\n");
406     con_attach(bottomdock, con, false);
407
408     /* Change focus to the content container */
409     TAILQ_REMOVE(&(con->focus_head), content, focused);
410     TAILQ_INSERT_HEAD(&(con->focus_head), content, focused);
411 }
412
413 /*
414  * Initializes at least one workspace for this output, trying the following
415  * steps until there is at least one workspace:
416  *
417  * • Move existing workspaces, which are assigned to be on the given output, to
418  *   the output.
419  * • Create the first assigned workspace for this output.
420  * • Create the first unused workspace.
421  *
422  */
423 void init_ws_for_output(Output *output, Con *content) {
424     /* go through all assignments and move the existing workspaces to this output */
425     struct Workspace_Assignment *assignment;
426     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
427         if (strcmp(assignment->output, output_primary_name(output)) != 0)
428             continue;
429
430         Con *workspace = get_existing_workspace_by_name(assignment->name);
431         if (workspace == NULL)
432             continue;
433
434         /* check that this workspace is not already attached (that means the
435          * user configured this assignment twice) */
436         Con *workspace_out = con_get_output(workspace);
437         if (workspace_out == output->con) {
438             LOG("Workspace \"%s\" assigned to output \"%s\", but it is already "
439                 "there. Do you have two assignment directives for the same "
440                 "workspace in your configuration file?\n",
441                 workspace->name, output_primary_name(output));
442             continue;
443         }
444
445         /* if so, move it over */
446         LOG("Moving workspace \"%s\" from output \"%s\" to \"%s\" due to assignment\n",
447             workspace->name, workspace_out->name, output_primary_name(output));
448
449         /* if the workspace is currently visible on that output, we need to
450          * switch to a different workspace - otherwise the output would end up
451          * with no active workspace */
452         bool visible = workspace_is_visible(workspace);
453         Con *previous = NULL;
454         if (visible && (previous = TAILQ_NEXT(workspace, focused))) {
455             LOG("Switching to previously used workspace \"%s\" on output \"%s\"\n",
456                 previous->name, workspace_out->name);
457             workspace_show(previous);
458         }
459
460         /* Render the output on which the workspace was to get correct Rects.
461          * Then, we need to work with the "content" container, since we cannot
462          * be sure that the workspace itself was rendered at all (in case it’s
463          * invisible, it won’t be rendered). */
464         render_con(workspace_out, false);
465         Con *ws_out_content = output_get_content(workspace_out);
466
467         Con *floating_con;
468         TAILQ_FOREACH(floating_con, &(workspace->floating_head), floating_windows)
469         /* NB: We use output->con here because content is not yet rendered,
470              * so it has a rect of {0, 0, 0, 0}. */
471         floating_fix_coordinates(floating_con, &(ws_out_content->rect), &(output->con->rect));
472
473         con_detach(workspace);
474         con_attach(workspace, content, false);
475
476         /* In case the workspace we just moved was visible but there was no
477          * other workspace to switch to, we need to initialize the source
478          * output as well */
479         if (visible && previous == NULL) {
480             LOG("There is no workspace left on \"%s\", re-initializing\n",
481                 workspace_out->name);
482             init_ws_for_output(get_output_by_name(workspace_out->name, true),
483                                output_get_content(workspace_out));
484             DLOG("Done re-initializing, continuing with \"%s\"\n", output_primary_name(output));
485         }
486     }
487
488     /* if a workspace exists, we are done now */
489     if (!TAILQ_EMPTY(&(content->nodes_head))) {
490         /* ensure that one of the workspaces is actually visible (in fullscreen
491          * mode), if they were invisible before, this might not be the case. */
492         Con *visible = NULL;
493         GREP_FIRST(visible, content, child->fullscreen_mode == CF_OUTPUT);
494         if (!visible) {
495             visible = TAILQ_FIRST(&(content->nodes_head));
496             focused = content;
497             workspace_show(visible);
498         }
499         return;
500     }
501
502     /* otherwise, we create the first assigned ws for this output */
503     TAILQ_FOREACH(assignment, &ws_assignments, ws_assignments) {
504         if (strcmp(assignment->output, output_primary_name(output)) != 0)
505             continue;
506
507         LOG("Initializing first assigned workspace \"%s\" for output \"%s\"\n",
508             assignment->name, assignment->output);
509         focused = content;
510         workspace_show_by_name(assignment->name);
511         return;
512     }
513
514     /* if there is still no workspace, we create the first free workspace */
515     DLOG("Now adding a workspace\n");
516     Con *ws = create_workspace_on_output(output, content);
517
518     /* TODO: Set focus in main.c */
519     con_activate(ws);
520 }
521
522 /*
523  * This function needs to be called when changing the mode of an output when
524  * it already has some workspaces (or a bar window) assigned.
525  *
526  * It reconfigures the bar window for the new mode, copies the new rect into
527  * each workspace on this output and forces all windows on the affected
528  * workspaces to be reconfigured.
529  *
530  * It is necessary to call render_layout() afterwards.
531  *
532  */
533 static void output_change_mode(xcb_connection_t *conn, Output *output) {
534     DLOG("Output mode changed, updating rect\n");
535     assert(output->con != NULL);
536     output->con->rect = output->rect;
537
538     Con *content, *workspace, *child;
539
540     /* Point content to the container of the workspaces */
541     content = output_get_content(output->con);
542
543     /* Fix the position of all floating windows on this output.
544      * The 'rect' of each workspace will be updated in src/render.c. */
545     TAILQ_FOREACH(workspace, &(content->nodes_head), nodes) {
546         TAILQ_FOREACH(child, &(workspace->floating_head), floating_windows) {
547             floating_fix_coordinates(child, &(workspace->rect), &(output->con->rect));
548         }
549     }
550
551     /* If default_orientation is NO_ORIENTATION, we change the orientation of
552      * the workspaces and their childs depending on output resolution. This is
553      * only done for workspaces with maximum one child. */
554     if (config.default_orientation == NO_ORIENTATION) {
555         TAILQ_FOREACH(workspace, &(content->nodes_head), nodes) {
556             /* Workspaces with more than one child are left untouched because
557              * we do not want to change an existing layout. */
558             if (con_num_children(workspace) > 1)
559                 continue;
560
561             workspace->layout = (output->rect.height > output->rect.width) ? L_SPLITV : L_SPLITH;
562             DLOG("Setting workspace [%d,%s]'s layout to %d.\n", workspace->num, workspace->name, workspace->layout);
563             if ((child = TAILQ_FIRST(&(workspace->nodes_head)))) {
564                 if (child->layout == L_SPLITV || child->layout == L_SPLITH)
565                     child->layout = workspace->layout;
566                 DLOG("Setting child [%d,%s]'s layout to %d.\n", child->num, child->name, child->layout);
567             }
568         }
569     }
570 }
571
572 /*
573  * randr_query_outputs_15 uses RandR ≥ 1.5 to update outputs.
574  *
575  */
576 static bool randr_query_outputs_15(void) {
577 #if XCB_RANDR_MINOR_VERSION < 5
578     return false;
579 #else
580     /* RandR 1.5 available at compile-time, i.e. libxcb is new enough */
581     if (!has_randr_1_5) {
582         return false;
583     }
584     /* RandR 1.5 available at run-time (supported by the server and not
585      * disabled by the user) */
586     DLOG("Querying outputs using RandR 1.5\n");
587     xcb_generic_error_t *err;
588     xcb_randr_get_monitors_reply_t *monitors =
589         xcb_randr_get_monitors_reply(
590             conn, xcb_randr_get_monitors(conn, root, true), &err);
591     if (err != NULL) {
592         ELOG("Could not get RandR monitors: X11 error code %d\n", err->error_code);
593         free(err);
594         /* Fall back to RandR ≤ 1.4 */
595         return false;
596     }
597
598     /* Mark all outputs as to_be_disabled, since xcb_randr_get_monitors() will
599      * only return active outputs. */
600     Output *output;
601     TAILQ_FOREACH(output, &outputs, outputs) {
602         if (output != root_output) {
603             output->to_be_disabled = true;
604         }
605     }
606
607     DLOG("%d RandR monitors found (timestamp %d)\n",
608          xcb_randr_get_monitors_monitors_length(monitors),
609          monitors->timestamp);
610
611     xcb_randr_monitor_info_iterator_t iter;
612     for (iter = xcb_randr_get_monitors_monitors_iterator(monitors);
613          iter.rem;
614          xcb_randr_monitor_info_next(&iter)) {
615         const xcb_randr_monitor_info_t *monitor_info = iter.data;
616         xcb_get_atom_name_reply_t *atom_reply =
617             xcb_get_atom_name_reply(
618                 conn, xcb_get_atom_name(conn, monitor_info->name), &err);
619         if (err != NULL) {
620             ELOG("Could not get RandR monitor name: X11 error code %d\n", err->error_code);
621             free(err);
622             continue;
623         }
624         char *name;
625         sasprintf(&name, "%.*s",
626                   xcb_get_atom_name_name_length(atom_reply),
627                   xcb_get_atom_name_name(atom_reply));
628         free(atom_reply);
629
630         Output *new = get_output_by_name(name, false);
631         if (new == NULL) {
632             new = scalloc(1, sizeof(Output));
633
634             SLIST_INIT(&new->names_head);
635
636             /* Register associated output names in addition to the monitor name */
637             xcb_randr_output_t *randr_outputs = xcb_randr_monitor_info_outputs(monitor_info);
638             int randr_output_len = xcb_randr_monitor_info_outputs_length(monitor_info);
639             for (int i = 0; i < randr_output_len; i++) {
640                 xcb_randr_output_t randr_output = randr_outputs[i];
641
642                 xcb_randr_get_output_info_reply_t *info =
643                     xcb_randr_get_output_info_reply(conn,
644                                                     xcb_randr_get_output_info(conn, randr_output, monitors->timestamp),
645                                                     NULL);
646
647                 if (info != NULL && info->crtc != XCB_NONE) {
648                     char *oname;
649                     sasprintf(&oname, "%.*s",
650                               xcb_randr_get_output_info_name_length(info),
651                               xcb_randr_get_output_info_name(info));
652
653                     if (strcmp(name, oname) != 0) {
654                         struct output_name *output_name = scalloc(1, sizeof(struct output_name));
655                         output_name->name = sstrdup(oname);
656                         SLIST_INSERT_HEAD(&new->names_head, output_name, names);
657                     } else {
658                         free(oname);
659                     }
660                 }
661                 FREE(info);
662             }
663
664             /* Insert the monitor name last, so that it's used as the primary name */
665             struct output_name *output_name = scalloc(1, sizeof(struct output_name));
666             output_name->name = sstrdup(name);
667             SLIST_INSERT_HEAD(&new->names_head, output_name, names);
668
669             if (monitor_info->primary) {
670                 TAILQ_INSERT_HEAD(&outputs, new, outputs);
671             } else {
672                 TAILQ_INSERT_TAIL(&outputs, new, outputs);
673             }
674         }
675         /* We specified get_active == true in xcb_randr_get_monitors(), so we
676          * will only receive active outputs. */
677         new->active = true;
678         new->to_be_disabled = false;
679
680         new->primary = monitor_info->primary;
681
682         new->changed =
683             update_if_necessary(&(new->rect.x), monitor_info->x) |
684             update_if_necessary(&(new->rect.y), monitor_info->y) |
685             update_if_necessary(&(new->rect.width), monitor_info->width) |
686             update_if_necessary(&(new->rect.height), monitor_info->height);
687
688         DLOG("name %s, x %d, y %d, width %d px, height %d px, width %d mm, height %d mm, primary %d, automatic %d\n",
689              name,
690              monitor_info->x, monitor_info->y, monitor_info->width, monitor_info->height,
691              monitor_info->width_in_millimeters, monitor_info->height_in_millimeters,
692              monitor_info->primary, monitor_info->automatic);
693         free(name);
694     }
695     free(monitors);
696     return true;
697 #endif
698 }
699
700 /*
701  * Gets called by randr_query_outputs_14() for each output. The function adds
702  * new outputs to the list of outputs, checks if the mode of existing outputs
703  * has been changed or if an existing output has been disabled. It will then
704  * change either the "changed" or the "to_be_deleted" flag of the output, if
705  * appropriate.
706  *
707  */
708 static void handle_output(xcb_connection_t *conn, xcb_randr_output_t id,
709                           xcb_randr_get_output_info_reply_t *output,
710                           xcb_timestamp_t cts,
711                           xcb_randr_get_screen_resources_current_reply_t *res) {
712     /* each CRT controller has a position in which we are interested in */
713     xcb_randr_get_crtc_info_reply_t *crtc;
714
715     Output *new = get_output_by_id(id);
716     bool existing = (new != NULL);
717     if (!existing) {
718         new = scalloc(1, sizeof(Output));
719         SLIST_INIT(&new->names_head);
720     }
721     new->id = id;
722     new->primary = (primary && primary->output == id);
723     while (!SLIST_EMPTY(&new->names_head)) {
724         FREE(SLIST_FIRST(&new->names_head)->name);
725         struct output_name *old_head = SLIST_FIRST(&new->names_head);
726         SLIST_REMOVE_HEAD(&new->names_head, names);
727         FREE(old_head);
728     }
729     struct output_name *output_name = scalloc(1, sizeof(struct output_name));
730     sasprintf(&output_name->name, "%.*s",
731               xcb_randr_get_output_info_name_length(output),
732               xcb_randr_get_output_info_name(output));
733     SLIST_INSERT_HEAD(&new->names_head, output_name, names);
734
735     DLOG("found output with name %s\n", output_primary_name(new));
736
737     /* Even if no CRTC is used at the moment, we store the output so that
738      * we do not need to change the list ever again (we only update the
739      * position/size) */
740     if (output->crtc == XCB_NONE) {
741         if (!existing) {
742             if (new->primary)
743                 TAILQ_INSERT_HEAD(&outputs, new, outputs);
744             else
745                 TAILQ_INSERT_TAIL(&outputs, new, outputs);
746         } else if (new->active)
747             new->to_be_disabled = true;
748         return;
749     }
750
751     xcb_randr_get_crtc_info_cookie_t icookie;
752     icookie = xcb_randr_get_crtc_info(conn, output->crtc, cts);
753     if ((crtc = xcb_randr_get_crtc_info_reply(conn, icookie, NULL)) == NULL) {
754         DLOG("Skipping output %s: could not get CRTC (%p)\n",
755              output_primary_name(new), crtc);
756         free(new);
757         return;
758     }
759
760     bool updated = update_if_necessary(&(new->rect.x), crtc->x) |
761                    update_if_necessary(&(new->rect.y), crtc->y) |
762                    update_if_necessary(&(new->rect.width), crtc->width) |
763                    update_if_necessary(&(new->rect.height), crtc->height);
764     free(crtc);
765     new->active = (new->rect.width != 0 && new->rect.height != 0);
766     if (!new->active) {
767         DLOG("width/height 0/0, disabling output\n");
768         return;
769     }
770
771     DLOG("mode: %dx%d+%d+%d\n", new->rect.width, new->rect.height,
772          new->rect.x, new->rect.y);
773
774     /* If we don’t need to change an existing output or if the output
775      * does not exist in the first place, the case is simple: we either
776      * need to insert the new output or we are done. */
777     if (!updated || !existing) {
778         if (!existing) {
779             if (new->primary)
780                 TAILQ_INSERT_HEAD(&outputs, new, outputs);
781             else
782                 TAILQ_INSERT_TAIL(&outputs, new, outputs);
783         }
784         return;
785     }
786
787     new->changed = true;
788 }
789
790 /*
791  * randr_query_outputs_14 uses RandR ≤ 1.4 to update outputs.
792  *
793  */
794 static void randr_query_outputs_14(void) {
795     DLOG("Querying outputs using RandR ≤ 1.4\n");
796
797     /* Get screen resources (primary output, crtcs, outputs, modes) */
798     xcb_randr_get_screen_resources_current_cookie_t rcookie;
799     rcookie = xcb_randr_get_screen_resources_current(conn, root);
800     xcb_randr_get_output_primary_cookie_t pcookie;
801     pcookie = xcb_randr_get_output_primary(conn, root);
802
803     if ((primary = xcb_randr_get_output_primary_reply(conn, pcookie, NULL)) == NULL)
804         ELOG("Could not get RandR primary output\n");
805     else
806         DLOG("primary output is %08x\n", primary->output);
807
808     xcb_randr_get_screen_resources_current_reply_t *res =
809         xcb_randr_get_screen_resources_current_reply(conn, rcookie, NULL);
810     if (res == NULL) {
811         ELOG("Could not query screen resources.\n");
812         return;
813     }
814
815     /* timestamp of the configuration so that we get consistent replies to all
816      * requests (if the configuration changes between our different calls) */
817     const xcb_timestamp_t cts = res->config_timestamp;
818
819     const int len = xcb_randr_get_screen_resources_current_outputs_length(res);
820
821     /* an output is VGA-1, LVDS-1, etc. (usually physical video outputs) */
822     xcb_randr_output_t *randr_outputs = xcb_randr_get_screen_resources_current_outputs(res);
823
824     /* Request information for each output */
825     xcb_randr_get_output_info_cookie_t ocookie[len];
826     for (int i = 0; i < len; i++)
827         ocookie[i] = xcb_randr_get_output_info(conn, randr_outputs[i], cts);
828
829     /* Loop through all outputs available for this X11 screen */
830     for (int i = 0; i < len; i++) {
831         xcb_randr_get_output_info_reply_t *output;
832
833         if ((output = xcb_randr_get_output_info_reply(conn, ocookie[i], NULL)) == NULL)
834             continue;
835
836         handle_output(conn, randr_outputs[i], output, cts, res);
837         free(output);
838     }
839
840     FREE(res);
841 }
842
843 /*
844  * (Re-)queries the outputs via RandR and stores them in the list of outputs.
845  *
846  * If no outputs are found use the root window.
847  *
848  */
849 void randr_query_outputs(void) {
850     Output *output, *other;
851
852     if (!randr_query_outputs_15()) {
853         randr_query_outputs_14();
854     }
855
856     /* If there's no randr output, enable the output covering the root window. */
857     if (any_randr_output_active()) {
858         DLOG("Active RandR output found. Disabling root output.\n");
859         if (root_output && root_output->active) {
860             root_output->to_be_disabled = true;
861         }
862     } else {
863         DLOG("No active RandR output found. Enabling root output.\n");
864         root_output->active = true;
865     }
866
867     /* Check for clones, disable the clones and reduce the mode to the
868      * lowest common mode */
869     TAILQ_FOREACH(output, &outputs, outputs) {
870         if (!output->active || output->to_be_disabled)
871             continue;
872         DLOG("output %p / %s, position (%d, %d), checking for clones\n",
873              output, output_primary_name(output), output->rect.x, output->rect.y);
874
875         for (other = output;
876              other != TAILQ_END(&outputs);
877              other = TAILQ_NEXT(other, outputs)) {
878             if (other == output || !other->active || other->to_be_disabled)
879                 continue;
880
881             if (other->rect.x != output->rect.x ||
882                 other->rect.y != output->rect.y)
883                 continue;
884
885             DLOG("output %p has the same position, his mode = %d x %d\n",
886                  other, other->rect.width, other->rect.height);
887             uint32_t width = min(other->rect.width, output->rect.width);
888             uint32_t height = min(other->rect.height, output->rect.height);
889
890             if (update_if_necessary(&(output->rect.width), width) |
891                 update_if_necessary(&(output->rect.height), height))
892                 output->changed = true;
893
894             update_if_necessary(&(other->rect.width), width);
895             update_if_necessary(&(other->rect.height), height);
896
897             DLOG("disabling output %p (%s)\n", other, output_primary_name(other));
898             other->to_be_disabled = true;
899
900             DLOG("new output mode %d x %d, other mode %d x %d\n",
901                  output->rect.width, output->rect.height,
902                  other->rect.width, other->rect.height);
903         }
904     }
905
906     /* Ensure that all outputs which are active also have a con. This is
907      * necessary because in the next step, a clone might get disabled. Example:
908      * LVDS1 active, VGA1 gets activated as a clone of LVDS1 (has no con).
909      * LVDS1 gets disabled. */
910     TAILQ_FOREACH(output, &outputs, outputs) {
911         if (output->active && output->con == NULL) {
912             DLOG("Need to initialize a Con for output %s\n", output_primary_name(output));
913             output_init_con(output);
914             output->changed = false;
915         }
916     }
917
918     /* Handle outputs which have a new mode or are disabled now (either
919      * because the user disabled them or because they are clones) */
920     TAILQ_FOREACH(output, &outputs, outputs) {
921         if (output->to_be_disabled) {
922             randr_disable_output(output);
923         }
924
925         if (output->changed) {
926             output_change_mode(conn, output);
927             output->changed = false;
928         }
929     }
930
931     /* Just go through each active output and assign one workspace */
932     TAILQ_FOREACH(output, &outputs, outputs) {
933         if (!output->active)
934             continue;
935         Con *content = output_get_content(output->con);
936         if (!TAILQ_EMPTY(&(content->nodes_head)))
937             continue;
938         DLOG("Should add ws for output %s\n", output_primary_name(output));
939         init_ws_for_output(output, content);
940     }
941
942     /* Focus the primary screen, if possible */
943     TAILQ_FOREACH(output, &outputs, outputs) {
944         if (!output->primary || !output->con)
945             continue;
946
947         DLOG("Focusing primary output %s\n", output_primary_name(output));
948         con_activate(con_descend_focused(output->con));
949     }
950
951     /* render_layout flushes */
952     tree_render();
953
954     FREE(primary);
955 }
956
957 /*
958  * Disables the output and moves its content.
959  *
960  */
961 void randr_disable_output(Output *output) {
962     assert(output->to_be_disabled);
963
964     output->active = false;
965     DLOG("Output %s disabled, re-assigning workspaces/docks\n", output_primary_name(output));
966
967     Output *first = get_first_output();
968
969     /* TODO: refactor the following code into a nice function. maybe
970      * use an on_destroy callback which is implement differently for
971      * different container types (CT_CONTENT vs. CT_DOCKAREA)? */
972     Con *first_content = output_get_content(first->con);
973
974     if (output->con != NULL) {
975         /* We need to move the workspaces from the disappearing output to the first output */
976         /* 1: Get the con to focus next, if the disappearing ws is focused */
977         Con *next = NULL;
978         if (TAILQ_FIRST(&(croot->focus_head)) == output->con) {
979             DLOG("This output (%p) was focused! Getting next\n", output->con);
980             next = focused;
981             DLOG("next = %p\n", next);
982         }
983
984         /* 2: iterate through workspaces and re-assign them, fixing the coordinates
985          * of floating containers as we go */
986         Con *current;
987         Con *old_content = output_get_content(output->con);
988         while (!TAILQ_EMPTY(&(old_content->nodes_head))) {
989             current = TAILQ_FIRST(&(old_content->nodes_head));
990             if (current != next && TAILQ_EMPTY(&(current->focus_head))) {
991                 /* the workspace is empty and not focused, get rid of it */
992                 DLOG("Getting rid of current = %p / %s (empty, unfocused)\n", current, current->name);
993                 tree_close_internal(current, DONT_KILL_WINDOW, false, false);
994                 continue;
995             }
996             DLOG("Detaching current = %p / %s\n", current, current->name);
997             con_detach(current);
998             DLOG("Re-attaching current = %p / %s\n", current, current->name);
999             con_attach(current, first_content, false);
1000             DLOG("Fixing the coordinates of floating containers\n");
1001             Con *floating_con;
1002             TAILQ_FOREACH(floating_con, &(current->floating_head), floating_windows) {
1003                 floating_fix_coordinates(floating_con, &(output->con->rect), &(first->con->rect));
1004             }
1005             DLOG("Done, next\n");
1006         }
1007         DLOG("re-attached all workspaces\n");
1008
1009         if (next) {
1010             DLOG("now focusing next = %p\n", next);
1011             con_activate(next);
1012             workspace_show(con_get_workspace(next));
1013         }
1014
1015         /* 3: move the dock clients to the first output */
1016         Con *child;
1017         TAILQ_FOREACH(child, &(output->con->nodes_head), nodes) {
1018             if (child->type != CT_DOCKAREA)
1019                 continue;
1020             DLOG("Handling dock con %p\n", child);
1021             Con *dock;
1022             while (!TAILQ_EMPTY(&(child->nodes_head))) {
1023                 dock = TAILQ_FIRST(&(child->nodes_head));
1024                 Con *nc;
1025                 Match *match;
1026                 nc = con_for_window(first->con, dock->window, &match);
1027                 DLOG("Moving dock client %p to nc %p\n", dock, nc);
1028                 con_detach(dock);
1029                 DLOG("Re-attaching\n");
1030                 con_attach(dock, nc, false);
1031                 DLOG("Done\n");
1032             }
1033         }
1034
1035         DLOG("destroying disappearing con %p\n", output->con);
1036         Con *con = output->con;
1037         /* clear the pointer before calling tree_close_internal in which the memory is freed */
1038         output->con = NULL;
1039         tree_close_internal(con, DONT_KILL_WINDOW, true, false);
1040         DLOG("Done. Should be fine now\n");
1041     }
1042
1043     output->to_be_disabled = false;
1044     output->changed = false;
1045 }
1046
1047 static void fallback_to_root_output(void) {
1048     root_output->active = true;
1049     output_init_con(root_output);
1050     init_ws_for_output(root_output, output_get_content(root_output->con));
1051 }
1052
1053 /*
1054  * We have just established a connection to the X server and need the initial
1055  * XRandR information to setup workspaces for each screen.
1056  *
1057  */
1058 void randr_init(int *event_base, const bool disable_randr15) {
1059     const xcb_query_extension_reply_t *extreply;
1060
1061     root_output = create_root_output(conn);
1062     TAILQ_INSERT_TAIL(&outputs, root_output, outputs);
1063
1064     extreply = xcb_get_extension_data(conn, &xcb_randr_id);
1065     if (!extreply->present) {
1066         DLOG("RandR is not present, activating root output.\n");
1067         fallback_to_root_output();
1068         return;
1069     }
1070
1071     xcb_generic_error_t *err;
1072     xcb_randr_query_version_reply_t *randr_version =
1073         xcb_randr_query_version_reply(
1074             conn, xcb_randr_query_version(conn, XCB_RANDR_MAJOR_VERSION, XCB_RANDR_MINOR_VERSION), &err);
1075     if (err != NULL) {
1076         ELOG("Could not query RandR version: X11 error code %d\n", err->error_code);
1077         free(err);
1078         fallback_to_root_output();
1079         return;
1080     }
1081
1082     has_randr_1_5 = (randr_version->major_version >= 1) &&
1083                     (randr_version->minor_version >= 5) &&
1084                     !disable_randr15;
1085
1086     free(randr_version);
1087
1088     randr_query_outputs();
1089
1090     if (event_base != NULL)
1091         *event_base = extreply->first_event;
1092
1093     xcb_randr_select_input(conn, root,
1094                            XCB_RANDR_NOTIFY_MASK_SCREEN_CHANGE |
1095                                XCB_RANDR_NOTIFY_MASK_OUTPUT_CHANGE |
1096                                XCB_RANDR_NOTIFY_MASK_CRTC_CHANGE |
1097                                XCB_RANDR_NOTIFY_MASK_OUTPUT_PROPERTY);
1098
1099     xcb_flush(conn);
1100 }