blob: ac914be9826d471eb4ed85f313430b3e22c5b0a8 [file] [log] [blame]
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04001/*
Kristian Høgsberg96aa7da2011-09-15 15:43:14 -04002 * Copyright © 2008-2011 Kristian Høgsberg
3 * Copyright © 2010-2011 Intel Corporation
Kristian Høgsbergce5325d2010-06-14 11:54:00 -04004 *
Kristian Høgsberg96aa7da2011-09-15 15:43:14 -04005 * Permission to use, copy, modify, distribute, and sell this software and
6 * its documentation for any purpose is hereby granted without fee, provided
7 * that the above copyright notice appear in all copies and that both that
8 * copyright notice and this permission notice appear in supporting
9 * documentation, and that the name of the copyright holders not be used in
10 * advertising or publicity pertaining to distribution of the software
11 * without specific, written prior permission. The copyright holders make
12 * no representations about the suitability of this software for any
13 * purpose. It is provided "as is" without express or implied warranty.
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040014 *
Kristian Høgsberg96aa7da2011-09-15 15:43:14 -040015 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
16 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
18 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
20 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040022 */
23
Chia-I Wu1b6c0ed2010-10-29 15:20:18 +080024#ifdef HAVE_CONFIG_H
25#include <config.h>
26#endif
27
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040028#include <stddef.h>
29#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
32#include <fcntl.h>
33#include <unistd.h>
34#include <errno.h>
35#include <sys/time.h>
Kristian Høgsbergf9112b22010-06-14 12:53:43 -040036#include <linux/input.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040037
38#include <xcb/xcb.h>
Benjamin Franzke3b288af2011-02-20 19:58:42 +010039#include <X11/Xlib.h>
40#include <X11/Xlib-xcb.h>
41
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040042#include <GLES2/gl2.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040043#include <EGL/egl.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040044
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040045#include "compositor.h"
Kristian Høgsbergf02a6492012-03-12 01:05:25 -040046#include "../shared/config-parser.h"
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040047
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040048struct x11_compositor {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050049 struct weston_compositor base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040050
Kristian Høgsbergb5ef5912012-03-28 22:53:49 -040051 EGLSurface dummy_pbuffer;
52
Benjamin Franzke3b288af2011-02-20 19:58:42 +010053 Display *dpy;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040054 xcb_connection_t *conn;
55 xcb_screen_t *screen;
56 xcb_cursor_t null_cursor;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -050057 struct wl_array keys;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040058 struct wl_event_source *xcb_source;
59 struct {
60 xcb_atom_t wm_protocols;
61 xcb_atom_t wm_normal_hints;
62 xcb_atom_t wm_size_hints;
63 xcb_atom_t wm_delete_window;
Kristian Høgsberg24ed6212011-01-26 14:02:31 -050064 xcb_atom_t wm_class;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040065 xcb_atom_t net_wm_name;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -050066 xcb_atom_t net_wm_icon;
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -040067 xcb_atom_t net_wm_state;
68 xcb_atom_t net_wm_state_fullscreen;
Kristian Høgsberg24ed6212011-01-26 14:02:31 -050069 xcb_atom_t string;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040070 xcb_atom_t utf8_string;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -050071 xcb_atom_t cardinal;
Daniel Stone855028f2012-05-01 20:37:10 +010072 xcb_atom_t xkb_names;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040073 } atom;
74};
75
76struct x11_output {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050077 struct weston_output base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040078
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040079 xcb_window_t window;
Benjamin Franzke84290d02011-03-02 10:07:59 +010080 EGLSurface egl_surface;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050081 struct weston_mode mode;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -040082 struct wl_event_source *finish_frame_timer;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040083};
84
85struct x11_input {
Daniel Stone37816df2012-05-16 18:45:18 +010086 struct weston_seat base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040087};
88
89
Darxus55973f22010-11-22 21:24:39 -050090static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040091x11_input_create(struct x11_compositor *c)
92{
93 struct x11_input *input;
94
95 input = malloc(sizeof *input);
96 if (input == NULL)
Darxus55973f22010-11-22 21:24:39 -050097 return -1;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040098
99 memset(input, 0, sizeof *input);
Daniel Stone37816df2012-05-16 18:45:18 +0100100 weston_seat_init(&input->base, &c->base);
Daniel Stone74419a22012-05-30 16:32:02 +0100101 weston_seat_init_pointer(&input->base);
102 weston_seat_init_keyboard(&input->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400103
Daniel Stone37816df2012-05-16 18:45:18 +0100104 c->base.seat = &input->base;
Darxus55973f22010-11-22 21:24:39 -0500105
106 return 0;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400107}
108
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200109static void
110x11_input_destroy(struct x11_compositor *compositor)
111{
Daniel Stone37816df2012-05-16 18:45:18 +0100112 struct x11_input *input = container_of(compositor->base.seat,
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200113 struct x11_input,
Daniel Stone37816df2012-05-16 18:45:18 +0100114 base);
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200115
Daniel Stone37816df2012-05-16 18:45:18 +0100116 weston_seat_release(&input->base);
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200117 free(input);
118}
119
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400120static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400121x11_compositor_init_egl(struct x11_compositor *c)
122{
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400123 EGLint major, minor;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100124 EGLint n;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100125 EGLint config_attribs[] = {
126 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
127 EGL_RED_SIZE, 1,
128 EGL_GREEN_SIZE, 1,
129 EGL_BLUE_SIZE, 1,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100130 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
131 EGL_NONE
132 };
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400133 static const EGLint context_attribs[] = {
134 EGL_CONTEXT_CLIENT_VERSION, 2,
135 EGL_NONE
136 };
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400137
Kristian Høgsbergb5ef5912012-03-28 22:53:49 -0400138 static const EGLint pbuffer_attribs[] = {
139 EGL_WIDTH, 10,
140 EGL_HEIGHT, 10,
141 EGL_NONE
142 };
143
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100144 c->base.display = eglGetDisplay(c->dpy);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400145 if (c->base.display == NULL) {
146 fprintf(stderr, "failed to create display\n");
147 return -1;
148 }
149
150 if (!eglInitialize(c->base.display, &major, &minor)) {
151 fprintf(stderr, "failed to initialize display\n");
152 return -1;
153 }
154
Darxus55973f22010-11-22 21:24:39 -0500155 if (!eglBindAPI(EGL_OPENGL_ES_API)) {
156 fprintf(stderr, "failed to bind EGL_OPENGL_ES_API\n");
157 return -1;
158 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100159 if (!eglChooseConfig(c->base.display, config_attribs,
160 &c->base.config, 1, &n) || n == 0) {
161 fprintf(stderr, "failed to choose config: %d\n", n);
162 return -1;
163 }
Darxus55973f22010-11-22 21:24:39 -0500164
Benjamin Franzke84290d02011-03-02 10:07:59 +0100165 c->base.context = eglCreateContext(c->base.display, c->base.config,
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400166 EGL_NO_CONTEXT, context_attribs);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400167 if (c->base.context == NULL) {
168 fprintf(stderr, "failed to create context\n");
169 return -1;
170 }
171
Kristian Høgsbergb5ef5912012-03-28 22:53:49 -0400172 c->dummy_pbuffer = eglCreatePbufferSurface(c->base.display,
173 c->base.config,
174 pbuffer_attribs);
Kristian Høgsbergc0bc8442012-05-17 09:40:23 -0400175 if (c->dummy_pbuffer == NULL) {
Kristian Høgsbergb5ef5912012-03-28 22:53:49 -0400176 fprintf(stderr, "failed to create dummy pbuffer\n");
177 return -1;
178 }
179
Cooper Yuan4577adc2012-04-30 14:16:46 -0400180 if (!eglMakeCurrent(c->base.display, c->dummy_pbuffer,
181 c->dummy_pbuffer, c->base.context)) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400182 fprintf(stderr, "failed to make context current\n");
183 return -1;
184 }
185
186 return 0;
187}
188
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200189static void
190x11_compositor_fini_egl(struct x11_compositor *compositor)
191{
192 eglMakeCurrent(compositor->base.display,
193 EGL_NO_SURFACE, EGL_NO_SURFACE,
194 EGL_NO_CONTEXT);
195
196 eglTerminate(compositor->base.display);
197 eglReleaseThread();
198}
199
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500200static void
Kristian Høgsberg6ddcdae2012-02-28 22:31:58 -0500201x11_output_repaint(struct weston_output *output_base,
202 pixman_region32_t *damage)
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500203{
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500204 struct x11_output *output = (struct x11_output *)output_base;
205 struct x11_compositor *compositor =
206 (struct x11_compositor *)output->base.compositor;
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500207 struct weston_surface *surface;
208
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500209 if (!eglMakeCurrent(compositor->base.display, output->egl_surface,
210 output->egl_surface, compositor->base.context)) {
211 fprintf(stderr, "failed to make current\n");
212 return;
213 }
214
215 wl_list_for_each_reverse(surface, &compositor->base.surface_list, link)
Kristian Høgsberg6ddcdae2012-02-28 22:31:58 -0500216 weston_surface_draw(surface, &output->base, damage);
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500217
Scott Moreau062be7e2012-04-20 13:37:33 -0600218 weston_output_do_read_pixels(&output->base);
219
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500220 eglSwapBuffers(compositor->base.display, output->egl_surface);
221
222 wl_event_source_timer_update(output->finish_frame_timer, 10);
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500223}
224
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100225static int
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400226finish_frame_handler(void *data)
227{
228 struct x11_output *output = data;
229 uint32_t msec;
230 struct timeval tv;
231
232 gettimeofday(&tv, NULL);
233 msec = tv.tv_sec * 1000 + tv.tv_usec / 1000;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500234 weston_output_finish_frame(&output->base, msec);
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400235
236 return 1;
237}
238
Matt Roper361d2ad2011-08-29 13:52:23 -0700239static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500240x11_output_destroy(struct weston_output *output_base)
Matt Roper361d2ad2011-08-29 13:52:23 -0700241{
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200242 struct x11_output *output = (struct x11_output *)output_base;
243 struct x11_compositor *compositor =
244 (struct x11_compositor *)output->base.compositor;
245
246 wl_list_remove(&output->base.link);
247 wl_event_source_remove(output->finish_frame_timer);
248
249 eglDestroySurface(compositor->base.display, output->egl_surface);
250
251 xcb_destroy_window(compositor->conn, output->window);
252
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500253 weston_output_destroy(&output->base);
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200254
255 free(output);
Matt Roper361d2ad2011-08-29 13:52:23 -0700256}
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200257
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400258static void
259x11_output_set_wm_protocols(struct x11_output *output)
260{
261 xcb_atom_t list[1];
262 struct x11_compositor *c =
263 (struct x11_compositor *) output->base.compositor;
264
265 list[0] = c->atom.wm_delete_window;
266 xcb_change_property (c->conn,
267 XCB_PROP_MODE_REPLACE,
268 output->window,
269 c->atom.wm_protocols,
270 XCB_ATOM_ATOM,
271 32,
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500272 ARRAY_LENGTH(list),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400273 list);
274}
275
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400276static void
277x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state)
278{
279 xcb_client_message_event_t event;
280 struct x11_compositor *c =
281 (struct x11_compositor *) output->base.compositor;
282 xcb_screen_iterator_t iter;
283
284#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
285#define _NET_WM_STATE_ADD 1 /* add/set property */
286#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
287
288 memset(&event, 0, sizeof event);
289 event.response_type = XCB_CLIENT_MESSAGE;
290 event.format = 32;
291 event.window = output->window;
292 event.type = c->atom.net_wm_state;
293
294 event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
295 event.data.data32[1] = state;
296 event.data.data32[2] = 0;
297 event.data.data32[3] = 0;
298 event.data.data32[4] = 0;
299
300 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
301 xcb_send_event(c->conn, 0, iter.data->root,
302 XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY |
303 XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT,
304 (void *) &event);
305}
306
307
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400308struct wm_normal_hints {
309 uint32_t flags;
310 uint32_t pad[4];
311 int32_t min_width, min_height;
312 int32_t max_width, max_height;
313 int32_t width_inc, height_inc;
314 int32_t min_aspect_x, min_aspect_y;
315 int32_t max_aspect_x, max_aspect_y;
316 int32_t base_width, base_height;
317 int32_t win_gravity;
318};
319
320#define WM_NORMAL_HINTS_MIN_SIZE 16
321#define WM_NORMAL_HINTS_MAX_SIZE 32
322
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500323static void
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400324x11_output_set_icon(struct x11_compositor *c,
325 struct x11_output *output, const char *filename)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500326{
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400327 uint32_t *icon;
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400328 int32_t width, height;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400329 pixman_image_t *image;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500330
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400331 image = load_image(filename);
332 if (!image)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500333 return;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400334 width = pixman_image_get_width(image);
335 height = pixman_image_get_height(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500336 icon = malloc(width * height * 4 + 8);
337 if (!icon) {
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400338 pixman_image_unref(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500339 return;
340 }
341
342 icon[0] = width;
343 icon[1] = height;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400344 memcpy(icon + 2, pixman_image_get_data(image), width * height * 4);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500345 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
346 c->atom.net_wm_icon, c->atom.cardinal, 32,
347 width * height + 2, icon);
348 free(icon);
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400349 pixman_image_unref(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500350}
351
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400352static int
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700353x11_compositor_create_output(struct x11_compositor *c, int x, int y,
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400354 int width, int height, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400355{
Kristian Høgsberg86000402012-01-03 23:24:14 -0500356 static const char name[] = "Weston Compositor";
357 static const char class[] = "weston-1\0Weston Compositor";
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400358 struct x11_output *output;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400359 xcb_screen_iterator_t iter;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400360 struct wm_normal_hints normal_hints;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400361 struct wl_event_loop *loop;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400362 uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR;
363 uint32_t values[2] = {
364 XCB_EVENT_MASK_KEY_PRESS |
365 XCB_EVENT_MASK_KEY_RELEASE |
366 XCB_EVENT_MASK_BUTTON_PRESS |
367 XCB_EVENT_MASK_BUTTON_RELEASE |
368 XCB_EVENT_MASK_POINTER_MOTION |
369 XCB_EVENT_MASK_EXPOSURE |
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400370 XCB_EVENT_MASK_STRUCTURE_NOTIFY |
371 XCB_EVENT_MASK_ENTER_WINDOW |
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500372 XCB_EVENT_MASK_LEAVE_WINDOW |
373 XCB_EVENT_MASK_KEYMAP_STATE |
374 XCB_EVENT_MASK_FOCUS_CHANGE,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400375 0
376 };
377
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400378 output = malloc(sizeof *output);
379 if (output == NULL)
380 return -1;
381
382 memset(output, 0, sizeof *output);
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -0400383
384 output->mode.flags =
385 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
386 output->mode.width = width;
387 output->mode.height = height;
Kristian Høgsbergc4621b02012-05-10 12:23:53 -0400388 output->mode.refresh = 60000;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -0400389 wl_list_init(&output->base.mode_list);
390 wl_list_insert(&output->base.mode_list, &output->mode.link);
391
392 output->base.current = &output->mode;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500393 weston_output_init(&output->base, &c->base, x, y, width, height,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100394 WL_OUTPUT_FLIPPED);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400395
396 values[1] = c->null_cursor;
397 output->window = xcb_generate_id(c->conn);
398 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
399 xcb_create_window(c->conn,
400 XCB_COPY_FROM_PARENT,
401 output->window,
402 iter.data->root,
403 0, 0,
404 width, height,
405 0,
406 XCB_WINDOW_CLASS_INPUT_OUTPUT,
407 iter.data->root_visual,
408 mask, values);
409
410 /* Don't resize me. */
411 memset(&normal_hints, 0, sizeof normal_hints);
412 normal_hints.flags =
413 WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE;
414 normal_hints.min_width = width;
415 normal_hints.min_height = height;
416 normal_hints.max_width = width;
417 normal_hints.max_height = height;
418 xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window,
419 c->atom.wm_normal_hints,
420 c->atom.wm_size_hints, 32,
421 sizeof normal_hints / 4,
422 (uint8_t *) &normal_hints);
423
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400424 /* Set window name. Don't bother with non-EWMH WMs. */
425 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
426 c->atom.net_wm_name, c->atom.utf8_string, 8,
427 strlen(name), name);
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500428 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
429 c->atom.wm_class, c->atom.string, 8,
430 sizeof class, class);
431
Kristian Høgsberg86000402012-01-03 23:24:14 -0500432 x11_output_set_icon(c, output, DATADIR "/weston/wayland.png");
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500433
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500434 xcb_map_window(c->conn, output->window);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400435
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400436 x11_output_set_wm_protocols(output);
437
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400438 if (fullscreen)
439 x11_output_change_state(output, 1,
440 c->atom.net_wm_state_fullscreen);
441
Benjamin Franzke84290d02011-03-02 10:07:59 +0100442 output->egl_surface =
443 eglCreateWindowSurface(c->base.display, c->base.config,
444 output->window, NULL);
445 if (!output->egl_surface) {
446 fprintf(stderr, "failed to create window surface\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400447 return -1;
448 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100449 if (!eglMakeCurrent(c->base.display, output->egl_surface,
450 output->egl_surface, c->base.context)) {
451 fprintf(stderr, "failed to make surface current\n");
452 return -1;
453 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400454
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400455 loop = wl_display_get_event_loop(c->base.wl_display);
456 output->finish_frame_timer =
457 wl_event_loop_add_timer(loop, finish_frame_handler, output);
458
Alex Wubd3354b2012-04-17 17:20:49 +0800459 output->base.origin = output->base.current;
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500460 output->base.repaint = x11_output_repaint;
Matt Roper361d2ad2011-08-29 13:52:23 -0700461 output->base.destroy = x11_output_destroy;
Jesse Barnes5308a5e2012-02-09 13:12:57 -0800462 output->base.assign_planes = NULL;
Tiago Vignatti8e53c7f2012-02-29 19:53:50 +0200463 output->base.set_backlight = NULL;
464 output->base.set_dpms = NULL;
Alex Wu2dda6042012-04-17 17:20:47 +0800465 output->base.switch_mode = NULL;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100466
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400467 wl_list_insert(c->base.output_list.prev, &output->base.link);
468
469 return 0;
470}
471
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400472static struct x11_output *
473x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window)
474{
475 struct x11_output *output;
476
477 wl_list_for_each(output, &c->base.output_list, base.link) {
478 if (output->window == window)
479 return output;
480 }
481
482 return NULL;
483}
484
Tiago Vignattia3a71622011-12-08 17:03:17 +0200485static void
486x11_compositor_deliver_button_event(struct x11_compositor *c,
487 xcb_generic_event_t *event, int state)
488{
489 xcb_button_press_event_t *button_event =
490 (xcb_button_press_event_t *) event;
Daniel Stone5d663712012-05-04 11:21:55 +0100491 uint32_t button;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200492
493 switch (button_event->detail) {
494 default:
495 button = button_event->detail + BTN_LEFT - 1;
496 break;
497 case 2:
498 button = BTN_MIDDLE;
499 break;
500 case 3:
501 button = BTN_RIGHT;
502 break;
503 case 4:
Scott Moreau210d0792012-03-22 10:47:01 -0600504 if (state)
Daniel Stone37816df2012-05-16 18:45:18 +0100505 notify_axis(&c->base.seat->seat,
Scott Moreau210d0792012-03-22 10:47:01 -0600506 weston_compositor_get_time(),
Daniel Stone878f0b72012-05-30 16:31:57 +0100507 WL_POINTER_AXIS_VERTICAL_SCROLL,
508 wl_fixed_from_int(1));
Scott Moreau210d0792012-03-22 10:47:01 -0600509 return;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200510 case 5:
Scott Moreau210d0792012-03-22 10:47:01 -0600511 if (state)
Daniel Stone37816df2012-05-16 18:45:18 +0100512 notify_axis(&c->base.seat->seat,
Scott Moreau210d0792012-03-22 10:47:01 -0600513 weston_compositor_get_time(),
Daniel Stone878f0b72012-05-30 16:31:57 +0100514 WL_POINTER_AXIS_VERTICAL_SCROLL,
515 wl_fixed_from_int(-1));
Scott Moreau210d0792012-03-22 10:47:01 -0600516 return;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200517 case 6:
Scott Moreau210d0792012-03-22 10:47:01 -0600518 if (state)
Daniel Stone37816df2012-05-16 18:45:18 +0100519 notify_axis(&c->base.seat->seat,
Scott Moreau210d0792012-03-22 10:47:01 -0600520 weston_compositor_get_time(),
Daniel Stone878f0b72012-05-30 16:31:57 +0100521 WL_POINTER_AXIS_HORIZONTAL_SCROLL,
522 wl_fixed_from_int(1));
Scott Moreau210d0792012-03-22 10:47:01 -0600523 return;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200524 case 7:
Scott Moreau210d0792012-03-22 10:47:01 -0600525 if (state)
Daniel Stone37816df2012-05-16 18:45:18 +0100526 notify_axis(&c->base.seat->seat,
Scott Moreau210d0792012-03-22 10:47:01 -0600527 weston_compositor_get_time(),
Daniel Stone878f0b72012-05-30 16:31:57 +0100528 WL_POINTER_AXIS_HORIZONTAL_SCROLL,
529 wl_fixed_from_int(-1));
Tiago Vignattia3a71622011-12-08 17:03:17 +0200530 return;
531 }
532
Daniel Stone37816df2012-05-16 18:45:18 +0100533 notify_button(&c->base.seat->seat,
Daniel Stone4dbadb12012-05-30 16:31:51 +0100534 weston_compositor_get_time(), button,
535 state ? WL_POINTER_BUTTON_STATE_PRESSED :
536 WL_POINTER_BUTTON_STATE_RELEASED);
Tiago Vignattia3a71622011-12-08 17:03:17 +0200537}
538
Kristian Høgsbergee724822011-04-21 14:51:44 -0400539static int
540x11_compositor_next_event(struct x11_compositor *c,
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400541 xcb_generic_event_t **event, uint32_t mask)
Kristian Høgsbergee724822011-04-21 14:51:44 -0400542{
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400543 if (mask & WL_EVENT_READABLE) {
544 *event = xcb_poll_for_event(c->conn);
Kristian Høgsbergee724822011-04-21 14:51:44 -0400545 } else {
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400546#ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400547 *event = xcb_poll_for_queued_event(c->conn);
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400548#else
549 *event = xcb_poll_for_event(c->conn);
550#endif
Kristian Høgsbergee724822011-04-21 14:51:44 -0400551 }
552
553 return *event != NULL;
554}
555
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400556static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400557x11_compositor_handle_event(int fd, uint32_t mask, void *data)
558{
559 struct x11_compositor *c = data;
560 struct x11_output *output;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400561 xcb_generic_event_t *event, *prev;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400562 xcb_client_message_event_t *client_message;
563 xcb_motion_notify_event_t *motion_notify;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500564 xcb_enter_notify_event_t *enter_notify;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400565 xcb_key_press_event_t *key_press, *key_release;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500566 xcb_keymap_notify_event_t *keymap_notify;
567 xcb_focus_in_event_t *focus_in;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400568 xcb_atom_t atom;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500569 uint32_t *k;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400570 uint32_t i, set;
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400571 wl_fixed_t x, y;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400572
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400573 prev = NULL;
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400574 while (x11_compositor_next_event(c, &event, mask)) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400575 switch (prev ? prev->response_type & ~0x80 : 0x80) {
576 case XCB_KEY_RELEASE:
577 key_release = (xcb_key_press_event_t *) prev;
578 key_press = (xcb_key_press_event_t *) event;
Daniel Stone351eb612012-05-31 15:27:47 -0400579 /* XXX use XkbSetDetectableAutoRepeat */
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400580 if ((event->response_type & ~0x80) == XCB_KEY_PRESS &&
Dima Ryazanovc2247482011-08-16 17:25:32 -0700581 key_release->time == key_press->time &&
582 key_release->detail == key_press->detail) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400583 /* Don't deliver the held key release
584 * event or the new key press event. */
585 free(event);
586 free(prev);
587 prev = NULL;
588 continue;
589 } else {
590 /* Deliver the held key release now
591 * and fall through and handle the new
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400592 * event below. */
Daniel Stone37816df2012-05-16 18:45:18 +0100593 notify_key(&c->base.seat->seat,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500594 weston_compositor_get_time(),
Daniel Stonec9785ea2012-05-30 16:31:52 +0100595 key_release->detail - 8,
596 WL_KEYBOARD_KEY_STATE_RELEASED);
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400597 free(prev);
598 prev = NULL;
599 break;
600 }
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400601
602 case XCB_FOCUS_IN:
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400603 /* assert event is keymap_notify */
604 focus_in = (xcb_focus_in_event_t *) prev;
605 keymap_notify = (xcb_keymap_notify_event_t *) event;
606 c->keys.size = 0;
607 for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) {
608 set = keymap_notify->keys[i >> 3] &
609 (1 << (i & 7));
610 if (set) {
611 k = wl_array_add(&c->keys, sizeof *k);
612 *k = i;
613 }
614 }
615
616 output = x11_compositor_find_output(c, focus_in->event);
Daniel Stone37816df2012-05-16 18:45:18 +0100617 notify_keyboard_focus(&c->base.seat->seat, &c->keys);
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400618
619 free(prev);
620 prev = NULL;
621 break;
622
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400623 default:
624 /* No previous event held */
625 break;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400626 }
627
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400628 switch (event->response_type & ~0x80) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400629 case XCB_KEY_PRESS:
630 key_press = (xcb_key_press_event_t *) event;
Daniel Stone37816df2012-05-16 18:45:18 +0100631 notify_key(&c->base.seat->seat,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500632 weston_compositor_get_time(),
Daniel Stonec9785ea2012-05-30 16:31:52 +0100633 key_press->detail - 8,
634 WL_KEYBOARD_KEY_STATE_PRESSED);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400635 break;
636 case XCB_KEY_RELEASE:
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400637 prev = event;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400638 break;
639 case XCB_BUTTON_PRESS:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200640 x11_compositor_deliver_button_event(c, event, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400641 break;
642 case XCB_BUTTON_RELEASE:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200643 x11_compositor_deliver_button_event(c, event, 0);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400644 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400645 case XCB_MOTION_NOTIFY:
646 motion_notify = (xcb_motion_notify_event_t *) event;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700647 output = x11_compositor_find_output(c, motion_notify->event);
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400648 x = wl_fixed_from_int(output->base.x + motion_notify->event_x);
649 y = wl_fixed_from_int(output->base.y + motion_notify->event_y);
Daniel Stone37816df2012-05-16 18:45:18 +0100650 notify_motion(&c->base.seat->seat,
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400651 weston_compositor_get_time(), x, y);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400652 break;
653
654 case XCB_EXPOSE:
Benjamin Franzke84290d02011-03-02 10:07:59 +0100655 /* FIXME: schedule output repaint */
656 /* output = x11_compositor_find_output(c, expose->window); */
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400657
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500658 weston_compositor_schedule_repaint(&c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400659 break;
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400660
661 case XCB_ENTER_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500662 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500663 if (enter_notify->state >= Button1Mask)
664 break;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500665 output = x11_compositor_find_output(c, enter_notify->event);
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400666 x = wl_fixed_from_int(output->base.x + enter_notify->event_x);
667 y = wl_fixed_from_int(output->base.y + enter_notify->event_y);
Daniel Stone351eb612012-05-31 15:27:47 -0400668 /* XXX notify_modifiers() */
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400669
Daniel Stone37816df2012-05-16 18:45:18 +0100670 notify_pointer_focus(&c->base.seat->seat,
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400671 &output->base, x, y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400672 break;
673
674 case XCB_LEAVE_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500675 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500676 if (enter_notify->state >= Button1Mask)
677 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700678 output = x11_compositor_find_output(c, enter_notify->event);
Daniel Stone37816df2012-05-16 18:45:18 +0100679 notify_pointer_focus(&c->base.seat->seat, NULL, 0, 0);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400680 break;
681
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400682 case XCB_CLIENT_MESSAGE:
683 client_message = (xcb_client_message_event_t *) event;
684 atom = client_message->data.data32[0];
685 if (atom == c->atom.wm_delete_window)
Kristian Høgsberg50dc6982010-12-01 16:43:56 -0500686 wl_display_terminate(c->base.wl_display);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400687 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400688
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500689 case XCB_FOCUS_IN:
690 focus_in = (xcb_focus_in_event_t *) event;
691 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED)
692 break;
693
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400694 prev = event;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500695 break;
696
697 case XCB_FOCUS_OUT:
698 focus_in = (xcb_focus_in_event_t *) event;
Kristian Høgsberg42e40ae2011-12-19 14:36:50 -0500699 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED ||
700 focus_in->mode == XCB_NOTIFY_MODE_UNGRAB)
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500701 break;
Daniel Stone37816df2012-05-16 18:45:18 +0100702 notify_keyboard_focus(&c->base.seat->seat, NULL);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500703 break;
704
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500705 default:
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400706 break;
707 }
708
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400709 if (prev != event)
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400710 free (event);
711 }
712
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400713 switch (prev ? prev->response_type & ~0x80 : 0x80) {
714 case XCB_KEY_RELEASE:
715 key_release = (xcb_key_press_event_t *) prev;
Daniel Stone37816df2012-05-16 18:45:18 +0100716 notify_key(&c->base.seat->seat,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500717 weston_compositor_get_time(),
Daniel Stonec9785ea2012-05-30 16:31:52 +0100718 key_release->detail - 8,
719 WL_KEYBOARD_KEY_STATE_RELEASED);
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400720 free(prev);
721 prev = NULL;
722 break;
723 default:
724 break;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500725 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400726
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400727 return event != NULL;
Kristian Høgsbergee724822011-04-21 14:51:44 -0400728}
729
Daniel Stone855028f2012-05-01 20:37:10 +0100730static void
731x11_compositor_get_keymap(struct x11_compositor *c)
732{
733 xcb_get_property_cookie_t cookie;
734 xcb_get_property_reply_t *reply;
735 xcb_generic_error_t *error;
736 const char *value_all, *value_part;
737 int length_all, length_part;
738
739 cookie = xcb_get_property(c->conn, 0, c->screen->root,
740 c->atom.xkb_names, c->atom.string, 0, 1024);
741 reply = xcb_get_property_reply(c->conn, cookie, &error);
742 if (reply == NULL)
743 return;
744
745 value_all = xcb_get_property_value(reply);
746 length_all = xcb_get_property_value_length(reply);
747 value_part = value_all;
748
749#define copy_prop_value(to) \
750 length_part = strlen(value_part); \
751 if (value_part + length_part > (value_all + length_all) && \
752 length_part > 0 && c->base.xkb_info.names.to == NULL) { \
Kristian Høgsbergbef52d12012-05-11 11:24:29 -0400753 free((char *) c->base.xkb_info.names.to); \
Daniel Stone855028f2012-05-01 20:37:10 +0100754 c->base.xkb_info.names.to = strdup(value_part); \
755 } \
756 value_part += length_part + 1;
757
758 copy_prop_value(rules);
759 copy_prop_value(model);
760 copy_prop_value(layout);
761 copy_prop_value(variant);
762 copy_prop_value(options);
763
764#undef copy_prop_value
765}
766
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400767#define F(field) offsetof(struct x11_compositor, field)
768
769static void
770x11_compositor_get_resources(struct x11_compositor *c)
771{
772 static const struct { const char *name; int offset; } atoms[] = {
773 { "WM_PROTOCOLS", F(atom.wm_protocols) },
774 { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) },
775 { "WM_SIZE_HINTS", F(atom.wm_size_hints) },
776 { "WM_DELETE_WINDOW", F(atom.wm_delete_window) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500777 { "WM_CLASS", F(atom.wm_class) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400778 { "_NET_WM_NAME", F(atom.net_wm_name) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500779 { "_NET_WM_ICON", F(atom.net_wm_icon) },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400780 { "_NET_WM_STATE", F(atom.net_wm_state) },
781 { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500782 { "STRING", F(atom.string) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400783 { "UTF8_STRING", F(atom.utf8_string) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500784 { "CARDINAL", F(atom.cardinal) },
Daniel Stone855028f2012-05-01 20:37:10 +0100785 { "_XKB_RULES_NAMES", F(atom.xkb_names) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400786 };
787
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500788 xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)];
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400789 xcb_intern_atom_reply_t *reply;
790 xcb_pixmap_t pixmap;
791 xcb_gc_t gc;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400792 unsigned int i;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400793 uint8_t data[] = { 0, 0, 0, 0 };
794
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500795 for (i = 0; i < ARRAY_LENGTH(atoms); i++)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400796 cookies[i] = xcb_intern_atom (c->conn, 0,
797 strlen(atoms[i].name),
798 atoms[i].name);
799
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500800 for (i = 0; i < ARRAY_LENGTH(atoms); i++) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400801 reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL);
802 *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom;
803 free(reply);
804 }
805
806 pixmap = xcb_generate_id(c->conn);
807 gc = xcb_generate_id(c->conn);
808 xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1);
809 xcb_create_gc(c->conn, gc, pixmap, 0, NULL);
810 xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP,
811 pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data);
812 c->null_cursor = xcb_generate_id(c->conn);
813 xcb_create_cursor (c->conn, c->null_cursor,
814 pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1);
815 xcb_free_gc(c->conn, gc);
816 xcb_free_pixmap(c->conn, pixmap);
Daniel Stone855028f2012-05-01 20:37:10 +0100817
818 x11_compositor_get_keymap(c);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400819}
820
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500821static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500822x11_destroy(struct weston_compositor *ec)
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500823{
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200824 struct x11_compositor *compositor = (struct x11_compositor *)ec;
Matt Roper361d2ad2011-08-29 13:52:23 -0700825
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200826 wl_event_source_remove(compositor->xcb_source);
827 x11_input_destroy(compositor);
828
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500829 weston_compositor_shutdown(ec); /* destroys outputs, too */
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200830
831 x11_compositor_fini_egl(compositor);
832
833 XCloseDisplay(compositor->dpy);
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500834 free(ec);
835}
836
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500837static struct weston_compositor *
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400838x11_compositor_create(struct wl_display *display,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700839 int width, int height, int count, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400840{
841 struct x11_compositor *c;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400842 xcb_screen_iterator_t s;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700843 int i, x;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400844
845 c = malloc(sizeof *c);
846 if (c == NULL)
847 return NULL;
848
849 memset(c, 0, sizeof *c);
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100850
851 c->dpy = XOpenDisplay(NULL);
Cyril Brulebois20798292011-04-06 18:05:40 +0200852 if (c->dpy == NULL)
853 return NULL;
854
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100855 c->conn = XGetXCBConnection(c->dpy);
Benjamin Franzkee997c5f2011-03-25 14:06:37 +0100856 XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue);
857
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400858 if (xcb_connection_has_error(c->conn))
859 return NULL;
860
861 s = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
862 c->screen = s.data;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500863 wl_array_init(&c->keys);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400864
865 x11_compositor_get_resources(c);
866
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400867 c->base.wl_display = display;
Tiago Vignatti997ce642010-11-10 02:42:35 +0200868 if (x11_compositor_init_egl(c) < 0)
Darxus55973f22010-11-22 21:24:39 -0500869 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400870
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500871 c->base.destroy = x11_destroy;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500872
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400873 /* Can't init base class until we have a current egl context */
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500874 if (weston_compositor_init(&c->base, display) < 0)
Kristian Høgsberga9468212010-06-14 21:03:11 -0400875 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400876
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700877 for (i = 0, x = 0; i < count; i++) {
878 if (x11_compositor_create_output(c, x, 0, width, height,
879 fullscreen) < 0)
880 return NULL;
881 x += width;
882 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400883
Darxus55973f22010-11-22 21:24:39 -0500884 if (x11_input_create(c) < 0)
885 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400886
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400887 c->xcb_source =
Kristian Høgsberg22ba60e2012-03-12 01:18:24 -0400888 wl_event_loop_add_fd(c->base.input_loop,
889 xcb_get_file_descriptor(c->conn),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400890 WL_EVENT_READABLE,
891 x11_compositor_handle_event, c);
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400892 wl_event_source_check(c->xcb_source);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400893
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400894 return &c->base;
895}
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400896
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500897WL_EXPORT struct weston_compositor *
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400898backend_init(struct wl_display *display, int argc, char *argv[])
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400899{
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400900 int width = 1024, height = 640, fullscreen = 0, count = 1;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400901
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400902 const struct weston_option x11_options[] = {
903 { WESTON_OPTION_INTEGER, "width", 0, &width },
904 { WESTON_OPTION_INTEGER, "height", 0, &height },
905 { WESTON_OPTION_BOOLEAN, "fullscreen", 0, &fullscreen },
906 { WESTON_OPTION_INTEGER, "output-count", 0, &count },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400907 };
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400908
909 parse_options(x11_options, ARRAY_LENGTH(x11_options), argc, argv);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400910
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700911 return x11_compositor_create(display,
912 width, height, count, fullscreen);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400913}