blob: 9822c2c216a205362ed934b48d8ceee88b6cef08 [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;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040072 } atom;
73};
74
75struct x11_output {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050076 struct weston_output base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040077
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040078 xcb_window_t window;
Benjamin Franzke84290d02011-03-02 10:07:59 +010079 EGLSurface egl_surface;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050080 struct weston_mode mode;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -040081 struct wl_event_source *finish_frame_timer;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040082};
83
84struct x11_input {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050085 struct weston_input_device base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040086};
87
88
Darxus55973f22010-11-22 21:24:39 -050089static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040090x11_input_create(struct x11_compositor *c)
91{
92 struct x11_input *input;
93
94 input = malloc(sizeof *input);
95 if (input == NULL)
Darxus55973f22010-11-22 21:24:39 -050096 return -1;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040097
98 memset(input, 0, sizeof *input);
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050099 weston_input_device_init(&input->base, &c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400100
Kristian Høgsberg9c3e8d72010-12-08 09:48:52 -0500101 c->base.input_device = &input->base.input_device;
Darxus55973f22010-11-22 21:24:39 -0500102
103 return 0;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400104}
105
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200106static void
107x11_input_destroy(struct x11_compositor *compositor)
108{
109 struct x11_input *input = container_of(compositor->base.input_device,
110 struct x11_input,
111 base.input_device);
112
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500113 weston_input_device_release(&input->base);
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200114 free(input);
115}
116
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400117static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400118x11_compositor_init_egl(struct x11_compositor *c)
119{
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400120 EGLint major, minor;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100121 EGLint n;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100122 EGLint config_attribs[] = {
123 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
124 EGL_RED_SIZE, 1,
125 EGL_GREEN_SIZE, 1,
126 EGL_BLUE_SIZE, 1,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100127 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
128 EGL_NONE
129 };
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400130 static const EGLint context_attribs[] = {
131 EGL_CONTEXT_CLIENT_VERSION, 2,
132 EGL_NONE
133 };
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400134
Kristian Høgsbergb5ef5912012-03-28 22:53:49 -0400135 static const EGLint pbuffer_attribs[] = {
136 EGL_WIDTH, 10,
137 EGL_HEIGHT, 10,
138 EGL_NONE
139 };
140
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100141 c->base.display = eglGetDisplay(c->dpy);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400142 if (c->base.display == NULL) {
143 fprintf(stderr, "failed to create display\n");
144 return -1;
145 }
146
147 if (!eglInitialize(c->base.display, &major, &minor)) {
148 fprintf(stderr, "failed to initialize display\n");
149 return -1;
150 }
151
Darxus55973f22010-11-22 21:24:39 -0500152 if (!eglBindAPI(EGL_OPENGL_ES_API)) {
153 fprintf(stderr, "failed to bind EGL_OPENGL_ES_API\n");
154 return -1;
155 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100156 if (!eglChooseConfig(c->base.display, config_attribs,
157 &c->base.config, 1, &n) || n == 0) {
158 fprintf(stderr, "failed to choose config: %d\n", n);
159 return -1;
160 }
Darxus55973f22010-11-22 21:24:39 -0500161
Benjamin Franzke84290d02011-03-02 10:07:59 +0100162 c->base.context = eglCreateContext(c->base.display, c->base.config,
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400163 EGL_NO_CONTEXT, context_attribs);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400164 if (c->base.context == NULL) {
165 fprintf(stderr, "failed to create context\n");
166 return -1;
167 }
168
Kristian Høgsbergb5ef5912012-03-28 22:53:49 -0400169 c->dummy_pbuffer = eglCreatePbufferSurface(c->base.display,
170 c->base.config,
171 pbuffer_attribs);
172 if (c->base.context == NULL) {
173 fprintf(stderr, "failed to create dummy pbuffer\n");
174 return -1;
175 }
176
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400177 if (!eglMakeCurrent(c->base.display, EGL_NO_SURFACE,
178 EGL_NO_SURFACE, c->base.context)) {
179 fprintf(stderr, "failed to make context current\n");
180 return -1;
181 }
182
183 return 0;
184}
185
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200186static void
187x11_compositor_fini_egl(struct x11_compositor *compositor)
188{
189 eglMakeCurrent(compositor->base.display,
190 EGL_NO_SURFACE, EGL_NO_SURFACE,
191 EGL_NO_CONTEXT);
192
193 eglTerminate(compositor->base.display);
194 eglReleaseThread();
195}
196
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500197static void
Kristian Høgsberg6ddcdae2012-02-28 22:31:58 -0500198x11_output_repaint(struct weston_output *output_base,
199 pixman_region32_t *damage)
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500200{
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500201 struct x11_output *output = (struct x11_output *)output_base;
202 struct x11_compositor *compositor =
203 (struct x11_compositor *)output->base.compositor;
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500204 struct weston_surface *surface;
205
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500206 if (!eglMakeCurrent(compositor->base.display, output->egl_surface,
207 output->egl_surface, compositor->base.context)) {
208 fprintf(stderr, "failed to make current\n");
209 return;
210 }
211
212 wl_list_for_each_reverse(surface, &compositor->base.surface_list, link)
Kristian Høgsberg6ddcdae2012-02-28 22:31:58 -0500213 weston_surface_draw(surface, &output->base, damage);
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500214
215 eglSwapBuffers(compositor->base.display, output->egl_surface);
216
217 wl_event_source_timer_update(output->finish_frame_timer, 10);
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500218}
219
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100220static int
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400221finish_frame_handler(void *data)
222{
223 struct x11_output *output = data;
224 uint32_t msec;
225 struct timeval tv;
226
227 gettimeofday(&tv, NULL);
228 msec = tv.tv_sec * 1000 + tv.tv_usec / 1000;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500229 weston_output_finish_frame(&output->base, msec);
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400230
231 return 1;
232}
233
Matt Roper361d2ad2011-08-29 13:52:23 -0700234static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500235x11_output_destroy(struct weston_output *output_base)
Matt Roper361d2ad2011-08-29 13:52:23 -0700236{
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200237 struct x11_output *output = (struct x11_output *)output_base;
238 struct x11_compositor *compositor =
239 (struct x11_compositor *)output->base.compositor;
240
241 wl_list_remove(&output->base.link);
242 wl_event_source_remove(output->finish_frame_timer);
243
244 eglDestroySurface(compositor->base.display, output->egl_surface);
245
246 xcb_destroy_window(compositor->conn, output->window);
247
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500248 weston_output_destroy(&output->base);
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200249
250 free(output);
Matt Roper361d2ad2011-08-29 13:52:23 -0700251}
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200252
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400253static void
254x11_output_set_wm_protocols(struct x11_output *output)
255{
256 xcb_atom_t list[1];
257 struct x11_compositor *c =
258 (struct x11_compositor *) output->base.compositor;
259
260 list[0] = c->atom.wm_delete_window;
261 xcb_change_property (c->conn,
262 XCB_PROP_MODE_REPLACE,
263 output->window,
264 c->atom.wm_protocols,
265 XCB_ATOM_ATOM,
266 32,
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500267 ARRAY_LENGTH(list),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400268 list);
269}
270
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400271static void
272x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state)
273{
274 xcb_client_message_event_t event;
275 struct x11_compositor *c =
276 (struct x11_compositor *) output->base.compositor;
277 xcb_screen_iterator_t iter;
278
279#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
280#define _NET_WM_STATE_ADD 1 /* add/set property */
281#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
282
283 memset(&event, 0, sizeof event);
284 event.response_type = XCB_CLIENT_MESSAGE;
285 event.format = 32;
286 event.window = output->window;
287 event.type = c->atom.net_wm_state;
288
289 event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
290 event.data.data32[1] = state;
291 event.data.data32[2] = 0;
292 event.data.data32[3] = 0;
293 event.data.data32[4] = 0;
294
295 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
296 xcb_send_event(c->conn, 0, iter.data->root,
297 XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY |
298 XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT,
299 (void *) &event);
300}
301
302
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400303struct wm_normal_hints {
304 uint32_t flags;
305 uint32_t pad[4];
306 int32_t min_width, min_height;
307 int32_t max_width, max_height;
308 int32_t width_inc, height_inc;
309 int32_t min_aspect_x, min_aspect_y;
310 int32_t max_aspect_x, max_aspect_y;
311 int32_t base_width, base_height;
312 int32_t win_gravity;
313};
314
315#define WM_NORMAL_HINTS_MIN_SIZE 16
316#define WM_NORMAL_HINTS_MAX_SIZE 32
317
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500318static void
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400319x11_output_set_icon(struct x11_compositor *c,
320 struct x11_output *output, const char *filename)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500321{
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400322 uint32_t *icon;
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400323 int32_t width, height;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400324 pixman_image_t *image;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500325
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400326 image = load_image(filename);
327 if (!image)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500328 return;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400329 width = pixman_image_get_width(image);
330 height = pixman_image_get_height(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500331 icon = malloc(width * height * 4 + 8);
332 if (!icon) {
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400333 pixman_image_unref(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500334 return;
335 }
336
337 icon[0] = width;
338 icon[1] = height;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400339 memcpy(icon + 2, pixman_image_get_data(image), width * height * 4);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500340 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
341 c->atom.net_wm_icon, c->atom.cardinal, 32,
342 width * height + 2, icon);
343 free(icon);
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400344 pixman_image_unref(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500345}
346
Scott Moreau80d27b72012-04-04 11:49:21 -0600347static void
348x11_output_read_pixels(struct weston_output *output_base, void *data)
349{
350 struct x11_output *output = (struct x11_output *) output_base;
351 struct x11_compositor *compositor =
352 (struct x11_compositor *) output->base.compositor;
353
354 eglMakeCurrent(compositor->base.display, output->egl_surface,
355 output->egl_surface, compositor->base.context);
356
357 glReadPixels(0, 0, output_base->current->width, output_base->current->height,
358 GL_BGRA_EXT, GL_UNSIGNED_BYTE, data);
359}
360
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400361static int
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700362x11_compositor_create_output(struct x11_compositor *c, int x, int y,
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400363 int width, int height, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400364{
Kristian Høgsberg86000402012-01-03 23:24:14 -0500365 static const char name[] = "Weston Compositor";
366 static const char class[] = "weston-1\0Weston Compositor";
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400367 struct x11_output *output;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400368 xcb_screen_iterator_t iter;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400369 struct wm_normal_hints normal_hints;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400370 struct wl_event_loop *loop;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400371 uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR;
372 uint32_t values[2] = {
373 XCB_EVENT_MASK_KEY_PRESS |
374 XCB_EVENT_MASK_KEY_RELEASE |
375 XCB_EVENT_MASK_BUTTON_PRESS |
376 XCB_EVENT_MASK_BUTTON_RELEASE |
377 XCB_EVENT_MASK_POINTER_MOTION |
378 XCB_EVENT_MASK_EXPOSURE |
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400379 XCB_EVENT_MASK_STRUCTURE_NOTIFY |
380 XCB_EVENT_MASK_ENTER_WINDOW |
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500381 XCB_EVENT_MASK_LEAVE_WINDOW |
382 XCB_EVENT_MASK_KEYMAP_STATE |
383 XCB_EVENT_MASK_FOCUS_CHANGE,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400384 0
385 };
386
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400387 output = malloc(sizeof *output);
388 if (output == NULL)
389 return -1;
390
391 memset(output, 0, sizeof *output);
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -0400392
393 output->mode.flags =
394 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
395 output->mode.width = width;
396 output->mode.height = height;
397 output->mode.refresh = 60;
398 wl_list_init(&output->base.mode_list);
399 wl_list_insert(&output->base.mode_list, &output->mode.link);
400
401 output->base.current = &output->mode;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500402 weston_output_init(&output->base, &c->base, x, y, width, height,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100403 WL_OUTPUT_FLIPPED);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400404
405 values[1] = c->null_cursor;
406 output->window = xcb_generate_id(c->conn);
407 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
408 xcb_create_window(c->conn,
409 XCB_COPY_FROM_PARENT,
410 output->window,
411 iter.data->root,
412 0, 0,
413 width, height,
414 0,
415 XCB_WINDOW_CLASS_INPUT_OUTPUT,
416 iter.data->root_visual,
417 mask, values);
418
419 /* Don't resize me. */
420 memset(&normal_hints, 0, sizeof normal_hints);
421 normal_hints.flags =
422 WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE;
423 normal_hints.min_width = width;
424 normal_hints.min_height = height;
425 normal_hints.max_width = width;
426 normal_hints.max_height = height;
427 xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window,
428 c->atom.wm_normal_hints,
429 c->atom.wm_size_hints, 32,
430 sizeof normal_hints / 4,
431 (uint8_t *) &normal_hints);
432
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400433 /* Set window name. Don't bother with non-EWMH WMs. */
434 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
435 c->atom.net_wm_name, c->atom.utf8_string, 8,
436 strlen(name), name);
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500437 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
438 c->atom.wm_class, c->atom.string, 8,
439 sizeof class, class);
440
Kristian Høgsberg86000402012-01-03 23:24:14 -0500441 x11_output_set_icon(c, output, DATADIR "/weston/wayland.png");
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500442
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500443 xcb_map_window(c->conn, output->window);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400444
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400445 x11_output_set_wm_protocols(output);
446
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400447 if (fullscreen)
448 x11_output_change_state(output, 1,
449 c->atom.net_wm_state_fullscreen);
450
Benjamin Franzke84290d02011-03-02 10:07:59 +0100451 output->egl_surface =
452 eglCreateWindowSurface(c->base.display, c->base.config,
453 output->window, NULL);
454 if (!output->egl_surface) {
455 fprintf(stderr, "failed to create window surface\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400456 return -1;
457 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100458 if (!eglMakeCurrent(c->base.display, output->egl_surface,
459 output->egl_surface, c->base.context)) {
460 fprintf(stderr, "failed to make surface current\n");
461 return -1;
462 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400463
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400464 loop = wl_display_get_event_loop(c->base.wl_display);
465 output->finish_frame_timer =
466 wl_event_loop_add_timer(loop, finish_frame_handler, output);
467
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500468 output->base.repaint = x11_output_repaint;
Matt Roper361d2ad2011-08-29 13:52:23 -0700469 output->base.destroy = x11_output_destroy;
Jesse Barnes5308a5e2012-02-09 13:12:57 -0800470 output->base.assign_planes = NULL;
Scott Moreau80d27b72012-04-04 11:49:21 -0600471 output->base.read_pixels = x11_output_read_pixels;
Tiago Vignatti8e53c7f2012-02-29 19:53:50 +0200472 output->base.set_backlight = NULL;
473 output->base.set_dpms = NULL;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100474
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400475 wl_list_insert(c->base.output_list.prev, &output->base.link);
476
477 return 0;
478}
479
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400480static struct x11_output *
481x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window)
482{
483 struct x11_output *output;
484
485 wl_list_for_each(output, &c->base.output_list, base.link) {
486 if (output->window == window)
487 return output;
488 }
489
490 return NULL;
491}
492
Tiago Vignattia3a71622011-12-08 17:03:17 +0200493static void
494x11_compositor_deliver_button_event(struct x11_compositor *c,
495 xcb_generic_event_t *event, int state)
496{
497 xcb_button_press_event_t *button_event =
498 (xcb_button_press_event_t *) event;
499 int button;
500
501 switch (button_event->detail) {
502 default:
503 button = button_event->detail + BTN_LEFT - 1;
504 break;
505 case 2:
506 button = BTN_MIDDLE;
507 break;
508 case 3:
509 button = BTN_RIGHT;
510 break;
511 case 4:
Scott Moreau210d0792012-03-22 10:47:01 -0600512 if (state)
513 notify_axis(c->base.input_device,
514 weston_compositor_get_time(),
515 WL_INPUT_DEVICE_AXIS_VERTICAL_SCROLL, 1);
516 return;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200517 case 5:
Scott Moreau210d0792012-03-22 10:47:01 -0600518 if (state)
519 notify_axis(c->base.input_device,
520 weston_compositor_get_time(),
521 WL_INPUT_DEVICE_AXIS_VERTICAL_SCROLL, -1);
522 return;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200523 case 6:
Scott Moreau210d0792012-03-22 10:47:01 -0600524 if (state)
525 notify_axis(c->base.input_device,
526 weston_compositor_get_time(),
527 WL_INPUT_DEVICE_AXIS_HORIZONTAL_SCROLL, 1);
528 return;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200529 case 7:
Scott Moreau210d0792012-03-22 10:47:01 -0600530 if (state)
531 notify_axis(c->base.input_device,
532 weston_compositor_get_time(),
533 WL_INPUT_DEVICE_AXIS_HORIZONTAL_SCROLL, -1);
Tiago Vignattia3a71622011-12-08 17:03:17 +0200534 return;
535 }
536
537 notify_button(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500538 weston_compositor_get_time(), button, state);
Tiago Vignattia3a71622011-12-08 17:03:17 +0200539}
540
Kristian Høgsbergee724822011-04-21 14:51:44 -0400541static int
542x11_compositor_next_event(struct x11_compositor *c,
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400543 xcb_generic_event_t **event, uint32_t mask)
Kristian Høgsbergee724822011-04-21 14:51:44 -0400544{
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400545 if (mask & WL_EVENT_READABLE) {
546 *event = xcb_poll_for_event(c->conn);
Kristian Høgsbergee724822011-04-21 14:51:44 -0400547 } else {
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400548#ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400549 *event = xcb_poll_for_queued_event(c->conn);
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400550#else
551 *event = xcb_poll_for_event(c->conn);
552#endif
Kristian Høgsbergee724822011-04-21 14:51:44 -0400553 }
554
555 return *event != NULL;
556}
557
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400558static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400559x11_compositor_handle_event(int fd, uint32_t mask, void *data)
560{
561 struct x11_compositor *c = data;
562 struct x11_output *output;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400563 xcb_generic_event_t *event, *prev;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400564 xcb_client_message_event_t *client_message;
565 xcb_motion_notify_event_t *motion_notify;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500566 xcb_enter_notify_event_t *enter_notify;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400567 xcb_key_press_event_t *key_press, *key_release;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500568 xcb_keymap_notify_event_t *keymap_notify;
569 xcb_focus_in_event_t *focus_in;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400570 xcb_atom_t atom;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500571 uint32_t *k;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400572 uint32_t i, set;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400573
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400574 prev = NULL;
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400575 while (x11_compositor_next_event(c, &event, mask)) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400576 switch (prev ? prev->response_type & ~0x80 : 0x80) {
577 case XCB_KEY_RELEASE:
578 key_release = (xcb_key_press_event_t *) prev;
579 key_press = (xcb_key_press_event_t *) event;
580 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. */
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400593 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500594 weston_compositor_get_time(),
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400595 key_release->detail - 8, 0);
596 free(prev);
597 prev = NULL;
598 break;
599 }
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400600
601 case XCB_FOCUS_IN:
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400602 /* assert event is keymap_notify */
603 focus_in = (xcb_focus_in_event_t *) prev;
604 keymap_notify = (xcb_keymap_notify_event_t *) event;
605 c->keys.size = 0;
606 for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) {
607 set = keymap_notify->keys[i >> 3] &
608 (1 << (i & 7));
609 if (set) {
610 k = wl_array_add(&c->keys, sizeof *k);
611 *k = i;
612 }
613 }
614
615 output = x11_compositor_find_output(c, focus_in->event);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -0400616 notify_keyboard_focus(c->base.input_device, &c->keys);
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400617
618 free(prev);
619 prev = NULL;
620 break;
621
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400622 default:
623 /* No previous event held */
624 break;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400625 }
626
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400627 switch (event->response_type & ~0x80) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400628 case XCB_KEY_PRESS:
629 key_press = (xcb_key_press_event_t *) event;
630 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500631 weston_compositor_get_time(),
Kristian Høgsberg293af262011-10-11 17:23:02 -0400632 key_press->detail - 8, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400633 break;
634 case XCB_KEY_RELEASE:
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400635 prev = event;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400636 break;
637 case XCB_BUTTON_PRESS:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200638 x11_compositor_deliver_button_event(c, event, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400639 break;
640 case XCB_BUTTON_RELEASE:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200641 x11_compositor_deliver_button_event(c, event, 0);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400642 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400643 case XCB_MOTION_NOTIFY:
644 motion_notify = (xcb_motion_notify_event_t *) event;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700645 output = x11_compositor_find_output(c, motion_notify->event);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400646 notify_motion(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500647 weston_compositor_get_time(),
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700648 output->base.x + motion_notify->event_x,
649 output->base.y + motion_notify->event_y);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400650 break;
651
652 case XCB_EXPOSE:
Benjamin Franzke84290d02011-03-02 10:07:59 +0100653 /* FIXME: schedule output repaint */
654 /* output = x11_compositor_find_output(c, expose->window); */
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400655
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500656 weston_compositor_schedule_repaint(&c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400657 break;
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400658
659 case XCB_ENTER_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500660 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500661 if (enter_notify->state >= Button1Mask)
662 break;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500663 output = x11_compositor_find_output(c, enter_notify->event);
664 notify_pointer_focus(c->base.input_device,
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500665 &output->base,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700666 output->base.x + enter_notify->event_x,
667 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400668 break;
669
670 case XCB_LEAVE_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500671 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500672 if (enter_notify->state >= Button1Mask)
673 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700674 output = x11_compositor_find_output(c, enter_notify->event);
Kristian Høgsbergeae5de72012-04-11 22:42:15 -0400675 notify_pointer_focus(c->base.input_device, NULL,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700676 output->base.x + enter_notify->event_x,
677 output->base.y + enter_notify->event_y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400678 break;
679
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400680 case XCB_CLIENT_MESSAGE:
681 client_message = (xcb_client_message_event_t *) event;
682 atom = client_message->data.data32[0];
683 if (atom == c->atom.wm_delete_window)
Kristian Høgsberg50dc6982010-12-01 16:43:56 -0500684 wl_display_terminate(c->base.wl_display);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400685 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400686
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500687 case XCB_FOCUS_IN:
688 focus_in = (xcb_focus_in_event_t *) event;
689 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED)
690 break;
691
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400692 prev = event;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500693 break;
694
695 case XCB_FOCUS_OUT:
696 focus_in = (xcb_focus_in_event_t *) event;
Kristian Høgsberg42e40ae2011-12-19 14:36:50 -0500697 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED ||
698 focus_in->mode == XCB_NOTIFY_MODE_UNGRAB)
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500699 break;
Kristian Høgsbergeae5de72012-04-11 22:42:15 -0400700 notify_keyboard_focus(c->base.input_device, NULL);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500701 break;
702
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500703 default:
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400704 break;
705 }
706
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400707 if (prev != event)
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400708 free (event);
709 }
710
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400711 switch (prev ? prev->response_type & ~0x80 : 0x80) {
712 case XCB_KEY_RELEASE:
713 key_release = (xcb_key_press_event_t *) prev;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400714 notify_key(c->base.input_device,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500715 weston_compositor_get_time(),
Kristian Høgsberg293af262011-10-11 17:23:02 -0400716 key_release->detail - 8, 0);
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400717 free(prev);
718 prev = NULL;
719 break;
720 default:
721 break;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500722 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400723
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400724 return event != NULL;
Kristian Høgsbergee724822011-04-21 14:51:44 -0400725}
726
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400727#define F(field) offsetof(struct x11_compositor, field)
728
729static void
730x11_compositor_get_resources(struct x11_compositor *c)
731{
732 static const struct { const char *name; int offset; } atoms[] = {
733 { "WM_PROTOCOLS", F(atom.wm_protocols) },
734 { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) },
735 { "WM_SIZE_HINTS", F(atom.wm_size_hints) },
736 { "WM_DELETE_WINDOW", F(atom.wm_delete_window) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500737 { "WM_CLASS", F(atom.wm_class) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400738 { "_NET_WM_NAME", F(atom.net_wm_name) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500739 { "_NET_WM_ICON", F(atom.net_wm_icon) },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400740 { "_NET_WM_STATE", F(atom.net_wm_state) },
741 { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500742 { "STRING", F(atom.string) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400743 { "UTF8_STRING", F(atom.utf8_string) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500744 { "CARDINAL", F(atom.cardinal) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400745 };
746
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500747 xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)];
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400748 xcb_intern_atom_reply_t *reply;
749 xcb_pixmap_t pixmap;
750 xcb_gc_t gc;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400751 unsigned int i;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400752 uint8_t data[] = { 0, 0, 0, 0 };
753
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500754 for (i = 0; i < ARRAY_LENGTH(atoms); i++)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400755 cookies[i] = xcb_intern_atom (c->conn, 0,
756 strlen(atoms[i].name),
757 atoms[i].name);
758
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500759 for (i = 0; i < ARRAY_LENGTH(atoms); i++) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400760 reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL);
761 *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom;
762 free(reply);
763 }
764
765 pixmap = xcb_generate_id(c->conn);
766 gc = xcb_generate_id(c->conn);
767 xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1);
768 xcb_create_gc(c->conn, gc, pixmap, 0, NULL);
769 xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP,
770 pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data);
771 c->null_cursor = xcb_generate_id(c->conn);
772 xcb_create_cursor (c->conn, c->null_cursor,
773 pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1);
774 xcb_free_gc(c->conn, gc);
775 xcb_free_pixmap(c->conn, pixmap);
776}
777
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500778static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500779x11_destroy(struct weston_compositor *ec)
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500780{
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200781 struct x11_compositor *compositor = (struct x11_compositor *)ec;
Matt Roper361d2ad2011-08-29 13:52:23 -0700782
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200783 wl_event_source_remove(compositor->xcb_source);
784 x11_input_destroy(compositor);
785
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500786 weston_compositor_shutdown(ec); /* destroys outputs, too */
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200787
788 x11_compositor_fini_egl(compositor);
789
790 XCloseDisplay(compositor->dpy);
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500791 free(ec);
792}
793
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500794static struct weston_compositor *
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400795x11_compositor_create(struct wl_display *display,
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700796 int width, int height, int count, int fullscreen)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400797{
798 struct x11_compositor *c;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400799 xcb_screen_iterator_t s;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700800 int i, x;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400801
802 c = malloc(sizeof *c);
803 if (c == NULL)
804 return NULL;
805
806 memset(c, 0, sizeof *c);
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100807
808 c->dpy = XOpenDisplay(NULL);
Cyril Brulebois20798292011-04-06 18:05:40 +0200809 if (c->dpy == NULL)
810 return NULL;
811
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100812 c->conn = XGetXCBConnection(c->dpy);
Benjamin Franzkee997c5f2011-03-25 14:06:37 +0100813 XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue);
814
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400815 if (xcb_connection_has_error(c->conn))
816 return NULL;
817
818 s = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
819 c->screen = s.data;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500820 wl_array_init(&c->keys);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400821
822 x11_compositor_get_resources(c);
823
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400824 c->base.wl_display = display;
Tiago Vignatti997ce642010-11-10 02:42:35 +0200825 if (x11_compositor_init_egl(c) < 0)
Darxus55973f22010-11-22 21:24:39 -0500826 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400827
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500828 c->base.destroy = x11_destroy;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500829
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400830 /* Can't init base class until we have a current egl context */
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500831 if (weston_compositor_init(&c->base, display) < 0)
Kristian Høgsberga9468212010-06-14 21:03:11 -0400832 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400833
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700834 for (i = 0, x = 0; i < count; i++) {
835 if (x11_compositor_create_output(c, x, 0, width, height,
836 fullscreen) < 0)
837 return NULL;
838 x += width;
839 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400840
Darxus55973f22010-11-22 21:24:39 -0500841 if (x11_input_create(c) < 0)
842 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400843
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400844 c->xcb_source =
Kristian Høgsberg22ba60e2012-03-12 01:18:24 -0400845 wl_event_loop_add_fd(c->base.input_loop,
846 xcb_get_file_descriptor(c->conn),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400847 WL_EVENT_READABLE,
848 x11_compositor_handle_event, c);
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400849 wl_event_source_check(c->xcb_source);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400850
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400851 return &c->base;
852}
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400853
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500854WL_EXPORT struct weston_compositor *
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400855backend_init(struct wl_display *display, int argc, char *argv[])
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400856{
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400857 int width = 1024, height = 640, fullscreen = 0, count = 1;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400858
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400859 const struct weston_option x11_options[] = {
860 { WESTON_OPTION_INTEGER, "width", 0, &width },
861 { WESTON_OPTION_INTEGER, "height", 0, &height },
862 { WESTON_OPTION_BOOLEAN, "fullscreen", 0, &fullscreen },
863 { WESTON_OPTION_INTEGER, "output-count", 0, &count },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400864 };
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400865
866 parse_options(x11_options, ARRAY_LENGTH(x11_options), argc, argv);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400867
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700868 return x11_compositor_create(display,
869 width, height, count, fullscreen);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400870}