blob: 44a48b03d95d453f8c32fdc76421221faf840425 [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>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040029#include <stdlib.h>
30#include <string.h>
31#include <fcntl.h>
32#include <unistd.h>
33#include <errno.h>
34#include <sys/time.h>
Kristian Høgsbergf9112b22010-06-14 12:53:43 -040035#include <linux/input.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040036
37#include <xcb/xcb.h>
Benjamin Franzke3b288af2011-02-20 19:58:42 +010038#include <X11/Xlib.h>
39#include <X11/Xlib-xcb.h>
40
Daniel Stone576cd152012-06-01 12:14:02 +010041#include <xkbcommon/xkbcommon.h>
42
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040043#include <GLES2/gl2.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040044#include <EGL/egl.h>
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040045
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040046#include "compositor.h"
Kristian Høgsbergf02a6492012-03-12 01:05:25 -040047#include "../shared/config-parser.h"
Martin Minarik6d118362012-06-07 18:01:59 +020048#include "log.h"
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040049
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040050struct x11_compositor {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050051 struct weston_compositor base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040052
Kristian Høgsbergb5ef5912012-03-28 22:53:49 -040053 EGLSurface dummy_pbuffer;
54
Benjamin Franzke3b288af2011-02-20 19:58:42 +010055 Display *dpy;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040056 xcb_connection_t *conn;
57 xcb_screen_t *screen;
58 xcb_cursor_t null_cursor;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -050059 struct wl_array keys;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040060 struct wl_event_source *xcb_source;
Daniel Stone576cd152012-06-01 12:14:02 +010061 struct xkb_keymap *xkb_keymap;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040062 struct {
63 xcb_atom_t wm_protocols;
64 xcb_atom_t wm_normal_hints;
65 xcb_atom_t wm_size_hints;
66 xcb_atom_t wm_delete_window;
Kristian Høgsberg24ed6212011-01-26 14:02:31 -050067 xcb_atom_t wm_class;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040068 xcb_atom_t net_wm_name;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -050069 xcb_atom_t net_wm_icon;
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -040070 xcb_atom_t net_wm_state;
71 xcb_atom_t net_wm_state_fullscreen;
Kristian Høgsberg24ed6212011-01-26 14:02:31 -050072 xcb_atom_t string;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040073 xcb_atom_t utf8_string;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -050074 xcb_atom_t cardinal;
Daniel Stone855028f2012-05-01 20:37:10 +010075 xcb_atom_t xkb_names;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040076 } atom;
77};
78
79struct x11_output {
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050080 struct weston_output base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040081
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040082 xcb_window_t window;
Benjamin Franzke84290d02011-03-02 10:07:59 +010083 EGLSurface egl_surface;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -050084 struct weston_mode mode;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -040085 struct wl_event_source *finish_frame_timer;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040086};
87
88struct x11_input {
Daniel Stone37816df2012-05-16 18:45:18 +010089 struct weston_seat base;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -040090};
91
Daniel Stone576cd152012-06-01 12:14:02 +010092static struct xkb_keymap *
93x11_compositor_get_keymap(struct x11_compositor *c)
94{
95 xcb_get_property_cookie_t cookie;
96 xcb_get_property_reply_t *reply;
97 xcb_generic_error_t *error;
98 struct xkb_rule_names names;
99 struct xkb_keymap *ret;
100 const char *value_all, *value_part;
101 int length_all, length_part;
102
103 memset(&names, 0, sizeof(names));
104
105 cookie = xcb_get_property(c->conn, 0, c->screen->root,
106 c->atom.xkb_names, c->atom.string, 0, 1024);
107 reply = xcb_get_property_reply(c->conn, cookie, &error);
108 if (reply == NULL)
109 return NULL;
110
111 value_all = xcb_get_property_value(reply);
112 length_all = xcb_get_property_value_length(reply);
113 value_part = value_all;
114
115#define copy_prop_value(to) \
116 length_part = strlen(value_part); \
117 if (value_part + length_part < (value_all + length_all) && \
118 length_part > 0) \
119 names.to = value_part; \
120 value_part += length_part + 1;
121
122 copy_prop_value(rules);
123 copy_prop_value(model);
124 copy_prop_value(layout);
125 copy_prop_value(variant);
126 copy_prop_value(options);
127#undef copy_prop_value
128
129 ret = xkb_map_new_from_names(c->base.xkb_context, &names, 0);
130
131 free(reply);
132 return ret;
133}
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400134
Darxus55973f22010-11-22 21:24:39 -0500135static int
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300136x11_input_create(struct x11_compositor *c, int no_input)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400137{
138 struct x11_input *input;
Daniel Stone576cd152012-06-01 12:14:02 +0100139 struct xkb_keymap *keymap;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400140
141 input = malloc(sizeof *input);
142 if (input == NULL)
Darxus55973f22010-11-22 21:24:39 -0500143 return -1;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400144
145 memset(input, 0, sizeof *input);
Daniel Stone37816df2012-05-16 18:45:18 +0100146 weston_seat_init(&input->base, &c->base);
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300147 c->base.seat = &input->base;
148
149 if (no_input)
150 return 0;
151
Daniel Stone74419a22012-05-30 16:32:02 +0100152 weston_seat_init_pointer(&input->base);
Daniel Stone576cd152012-06-01 12:14:02 +0100153
154 keymap = x11_compositor_get_keymap(c);
155 weston_seat_init_keyboard(&input->base, keymap);
156 if (keymap)
157 xkb_map_unref(keymap);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400158
Darxus55973f22010-11-22 21:24:39 -0500159 return 0;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400160}
161
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200162static void
163x11_input_destroy(struct x11_compositor *compositor)
164{
Daniel Stone37816df2012-05-16 18:45:18 +0100165 struct x11_input *input = container_of(compositor->base.seat,
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200166 struct x11_input,
Daniel Stone37816df2012-05-16 18:45:18 +0100167 base);
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200168
Daniel Stone37816df2012-05-16 18:45:18 +0100169 weston_seat_release(&input->base);
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200170 free(input);
171}
172
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400173static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400174x11_compositor_init_egl(struct x11_compositor *c)
175{
Kristian Høgsberg379b6782010-07-28 22:52:28 -0400176 EGLint major, minor;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100177 EGLint n;
Benjamin Franzke84290d02011-03-02 10:07:59 +0100178 EGLint config_attribs[] = {
179 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
180 EGL_RED_SIZE, 1,
181 EGL_GREEN_SIZE, 1,
182 EGL_BLUE_SIZE, 1,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100183 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
184 EGL_NONE
185 };
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400186 static const EGLint context_attribs[] = {
187 EGL_CONTEXT_CLIENT_VERSION, 2,
188 EGL_NONE
189 };
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400190
Kristian Høgsbergb5ef5912012-03-28 22:53:49 -0400191 static const EGLint pbuffer_attribs[] = {
192 EGL_WIDTH, 10,
193 EGL_HEIGHT, 10,
194 EGL_NONE
195 };
196
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100197 c->base.display = eglGetDisplay(c->dpy);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400198 if (c->base.display == NULL) {
Martin Minarik6d118362012-06-07 18:01:59 +0200199 weston_log("failed to create display\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400200 return -1;
201 }
202
203 if (!eglInitialize(c->base.display, &major, &minor)) {
Martin Minarik6d118362012-06-07 18:01:59 +0200204 weston_log("failed to initialize display\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400205 return -1;
206 }
207
Darxus55973f22010-11-22 21:24:39 -0500208 if (!eglBindAPI(EGL_OPENGL_ES_API)) {
Martin Minarik6d118362012-06-07 18:01:59 +0200209 weston_log("failed to bind EGL_OPENGL_ES_API\n");
Darxus55973f22010-11-22 21:24:39 -0500210 return -1;
211 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100212 if (!eglChooseConfig(c->base.display, config_attribs,
213 &c->base.config, 1, &n) || n == 0) {
Martin Minarik6d118362012-06-07 18:01:59 +0200214 weston_log("failed to choose config: %d\n", n);
Benjamin Franzke84290d02011-03-02 10:07:59 +0100215 return -1;
216 }
Darxus55973f22010-11-22 21:24:39 -0500217
Benjamin Franzke84290d02011-03-02 10:07:59 +0100218 c->base.context = eglCreateContext(c->base.display, c->base.config,
Kristian Høgsberg2c28aa52010-07-28 23:47:54 -0400219 EGL_NO_CONTEXT, context_attribs);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400220 if (c->base.context == NULL) {
Martin Minarik6d118362012-06-07 18:01:59 +0200221 weston_log("failed to create context\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400222 return -1;
223 }
224
Kristian Høgsbergb5ef5912012-03-28 22:53:49 -0400225 c->dummy_pbuffer = eglCreatePbufferSurface(c->base.display,
226 c->base.config,
227 pbuffer_attribs);
Kristian Høgsbergc0bc8442012-05-17 09:40:23 -0400228 if (c->dummy_pbuffer == NULL) {
Martin Minarik6d118362012-06-07 18:01:59 +0200229 weston_log("failed to create dummy pbuffer\n");
Kristian Høgsbergb5ef5912012-03-28 22:53:49 -0400230 return -1;
231 }
232
Cooper Yuan4577adc2012-04-30 14:16:46 -0400233 if (!eglMakeCurrent(c->base.display, c->dummy_pbuffer,
234 c->dummy_pbuffer, c->base.context)) {
Martin Minarik6d118362012-06-07 18:01:59 +0200235 weston_log("failed to make context current\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400236 return -1;
237 }
238
239 return 0;
240}
241
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200242static void
243x11_compositor_fini_egl(struct x11_compositor *compositor)
244{
245 eglMakeCurrent(compositor->base.display,
246 EGL_NO_SURFACE, EGL_NO_SURFACE,
247 EGL_NO_CONTEXT);
248
249 eglTerminate(compositor->base.display);
250 eglReleaseThread();
251}
252
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500253static void
Kristian Høgsberg6ddcdae2012-02-28 22:31:58 -0500254x11_output_repaint(struct weston_output *output_base,
255 pixman_region32_t *damage)
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500256{
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500257 struct x11_output *output = (struct x11_output *)output_base;
258 struct x11_compositor *compositor =
259 (struct x11_compositor *)output->base.compositor;
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500260 struct weston_surface *surface;
261
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500262 if (!eglMakeCurrent(compositor->base.display, output->egl_surface,
263 output->egl_surface, compositor->base.context)) {
Martin Minarik6d118362012-06-07 18:01:59 +0200264 weston_log("failed to make current\n");
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500265 return;
266 }
267
268 wl_list_for_each_reverse(surface, &compositor->base.surface_list, link)
Kristian Høgsberg6ddcdae2012-02-28 22:31:58 -0500269 weston_surface_draw(surface, &output->base, damage);
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500270
Scott Moreau062be7e2012-04-20 13:37:33 -0600271 weston_output_do_read_pixels(&output->base);
272
Kristian Høgsberg06cf6b02012-01-25 23:47:45 -0500273 eglSwapBuffers(compositor->base.display, output->egl_surface);
274
275 wl_event_source_timer_update(output->finish_frame_timer, 10);
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500276}
277
Benjamin Franzkeec4d3422011-03-14 12:07:26 +0100278static int
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400279finish_frame_handler(void *data)
280{
281 struct x11_output *output = data;
282 uint32_t msec;
283 struct timeval tv;
284
285 gettimeofday(&tv, NULL);
286 msec = tv.tv_sec * 1000 + tv.tv_usec / 1000;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500287 weston_output_finish_frame(&output->base, msec);
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400288
289 return 1;
290}
291
Matt Roper361d2ad2011-08-29 13:52:23 -0700292static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500293x11_output_destroy(struct weston_output *output_base)
Matt Roper361d2ad2011-08-29 13:52:23 -0700294{
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200295 struct x11_output *output = (struct x11_output *)output_base;
296 struct x11_compositor *compositor =
297 (struct x11_compositor *)output->base.compositor;
298
299 wl_list_remove(&output->base.link);
300 wl_event_source_remove(output->finish_frame_timer);
301
302 eglDestroySurface(compositor->base.display, output->egl_surface);
303
304 xcb_destroy_window(compositor->conn, output->window);
305
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500306 weston_output_destroy(&output->base);
Pekka Paalanen2de99e22012-01-03 11:51:03 +0200307
308 free(output);
Matt Roper361d2ad2011-08-29 13:52:23 -0700309}
Benjamin Franzke431da9a2011-04-20 11:02:58 +0200310
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400311static void
312x11_output_set_wm_protocols(struct x11_output *output)
313{
314 xcb_atom_t list[1];
315 struct x11_compositor *c =
316 (struct x11_compositor *) output->base.compositor;
317
318 list[0] = c->atom.wm_delete_window;
319 xcb_change_property (c->conn,
320 XCB_PROP_MODE_REPLACE,
321 output->window,
322 c->atom.wm_protocols,
323 XCB_ATOM_ATOM,
324 32,
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500325 ARRAY_LENGTH(list),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400326 list);
327}
328
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400329static void
330x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state)
331{
332 xcb_client_message_event_t event;
333 struct x11_compositor *c =
334 (struct x11_compositor *) output->base.compositor;
335 xcb_screen_iterator_t iter;
336
337#define _NET_WM_STATE_REMOVE 0 /* remove/unset property */
338#define _NET_WM_STATE_ADD 1 /* add/set property */
339#define _NET_WM_STATE_TOGGLE 2 /* toggle property */
340
341 memset(&event, 0, sizeof event);
342 event.response_type = XCB_CLIENT_MESSAGE;
343 event.format = 32;
344 event.window = output->window;
345 event.type = c->atom.net_wm_state;
346
347 event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
348 event.data.data32[1] = state;
349 event.data.data32[2] = 0;
350 event.data.data32[3] = 0;
351 event.data.data32[4] = 0;
352
353 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
354 xcb_send_event(c->conn, 0, iter.data->root,
355 XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY |
356 XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT,
357 (void *) &event);
358}
359
360
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400361struct wm_normal_hints {
362 uint32_t flags;
363 uint32_t pad[4];
364 int32_t min_width, min_height;
365 int32_t max_width, max_height;
366 int32_t width_inc, height_inc;
367 int32_t min_aspect_x, min_aspect_y;
368 int32_t max_aspect_x, max_aspect_y;
369 int32_t base_width, base_height;
370 int32_t win_gravity;
371};
372
373#define WM_NORMAL_HINTS_MIN_SIZE 16
374#define WM_NORMAL_HINTS_MAX_SIZE 32
375
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500376static void
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400377x11_output_set_icon(struct x11_compositor *c,
378 struct x11_output *output, const char *filename)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500379{
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400380 uint32_t *icon;
Kristian Høgsbergb41d76c2011-04-23 15:03:15 -0400381 int32_t width, height;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400382 pixman_image_t *image;
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500383
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400384 image = load_image(filename);
385 if (!image)
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500386 return;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400387 width = pixman_image_get_width(image);
388 height = pixman_image_get_height(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500389 icon = malloc(width * height * 4 + 8);
390 if (!icon) {
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400391 pixman_image_unref(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500392 return;
393 }
394
395 icon[0] = width;
396 icon[1] = height;
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400397 memcpy(icon + 2, pixman_image_get_data(image), width * height * 4);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500398 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
399 c->atom.net_wm_icon, c->atom.cardinal, 32,
400 width * height + 2, icon);
401 free(icon);
Kristian Høgsbergf02a6492012-03-12 01:05:25 -0400402 pixman_image_unref(image);
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500403}
404
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400405static int
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700406x11_compositor_create_output(struct x11_compositor *c, int x, int y,
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300407 int width, int height, int fullscreen,
408 int no_input)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400409{
Kristian Høgsberg86000402012-01-03 23:24:14 -0500410 static const char name[] = "Weston Compositor";
411 static const char class[] = "weston-1\0Weston Compositor";
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400412 struct x11_output *output;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400413 xcb_screen_iterator_t iter;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400414 struct wm_normal_hints normal_hints;
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400415 struct wl_event_loop *loop;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400416 uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR;
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300417 uint32_t values[2] = {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400418 XCB_EVENT_MASK_EXPOSURE |
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300419 XCB_EVENT_MASK_STRUCTURE_NOTIFY,
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400420 0
421 };
422
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300423 if (!no_input)
424 values[0] |=
425 XCB_EVENT_MASK_KEY_PRESS |
426 XCB_EVENT_MASK_KEY_RELEASE |
427 XCB_EVENT_MASK_BUTTON_PRESS |
428 XCB_EVENT_MASK_BUTTON_RELEASE |
429 XCB_EVENT_MASK_POINTER_MOTION |
430 XCB_EVENT_MASK_ENTER_WINDOW |
431 XCB_EVENT_MASK_LEAVE_WINDOW |
432 XCB_EVENT_MASK_KEYMAP_STATE |
433 XCB_EVENT_MASK_FOCUS_CHANGE;
434
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400435 output = malloc(sizeof *output);
436 if (output == NULL)
437 return -1;
438
439 memset(output, 0, sizeof *output);
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -0400440
441 output->mode.flags =
442 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
443 output->mode.width = width;
444 output->mode.height = height;
Kristian Høgsbergc4621b02012-05-10 12:23:53 -0400445 output->mode.refresh = 60000;
Kristian Høgsberg8f0ce052011-06-21 11:16:58 -0400446 wl_list_init(&output->base.mode_list);
447 wl_list_insert(&output->base.mode_list, &output->mode.link);
448
449 output->base.current = &output->mode;
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500450 weston_output_init(&output->base, &c->base, x, y, width, height,
Benjamin Franzke84290d02011-03-02 10:07:59 +0100451 WL_OUTPUT_FLIPPED);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400452
453 values[1] = c->null_cursor;
454 output->window = xcb_generate_id(c->conn);
455 iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
456 xcb_create_window(c->conn,
457 XCB_COPY_FROM_PARENT,
458 output->window,
459 iter.data->root,
460 0, 0,
461 width, height,
462 0,
463 XCB_WINDOW_CLASS_INPUT_OUTPUT,
464 iter.data->root_visual,
465 mask, values);
466
467 /* Don't resize me. */
468 memset(&normal_hints, 0, sizeof normal_hints);
469 normal_hints.flags =
470 WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE;
471 normal_hints.min_width = width;
472 normal_hints.min_height = height;
473 normal_hints.max_width = width;
474 normal_hints.max_height = height;
475 xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window,
476 c->atom.wm_normal_hints,
477 c->atom.wm_size_hints, 32,
478 sizeof normal_hints / 4,
479 (uint8_t *) &normal_hints);
480
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400481 /* Set window name. Don't bother with non-EWMH WMs. */
482 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
483 c->atom.net_wm_name, c->atom.utf8_string, 8,
484 strlen(name), name);
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500485 xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
486 c->atom.wm_class, c->atom.string, 8,
487 sizeof class, class);
488
Kristian Høgsberg86000402012-01-03 23:24:14 -0500489 x11_output_set_icon(c, output, DATADIR "/weston/wayland.png");
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500490
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500491 xcb_map_window(c->conn, output->window);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400492
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400493 x11_output_set_wm_protocols(output);
494
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400495 if (fullscreen)
496 x11_output_change_state(output, 1,
497 c->atom.net_wm_state_fullscreen);
498
Benjamin Franzke84290d02011-03-02 10:07:59 +0100499 output->egl_surface =
500 eglCreateWindowSurface(c->base.display, c->base.config,
501 output->window, NULL);
502 if (!output->egl_surface) {
Martin Minarik6d118362012-06-07 18:01:59 +0200503 weston_log("failed to create window surface\n");
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400504 return -1;
505 }
Benjamin Franzke84290d02011-03-02 10:07:59 +0100506 if (!eglMakeCurrent(c->base.display, output->egl_surface,
507 output->egl_surface, c->base.context)) {
Martin Minarik6d118362012-06-07 18:01:59 +0200508 weston_log("failed to make surface current\n");
Benjamin Franzke84290d02011-03-02 10:07:59 +0100509 return -1;
510 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400511
Kristian Høgsberg06a670f2011-10-29 14:39:13 -0400512 loop = wl_display_get_event_loop(c->base.wl_display);
513 output->finish_frame_timer =
514 wl_event_loop_add_timer(loop, finish_frame_handler, output);
515
Alex Wubd3354b2012-04-17 17:20:49 +0800516 output->base.origin = output->base.current;
Kristian Høgsberg68c479a2012-01-25 23:32:28 -0500517 output->base.repaint = x11_output_repaint;
Matt Roper361d2ad2011-08-29 13:52:23 -0700518 output->base.destroy = x11_output_destroy;
Jesse Barnes5308a5e2012-02-09 13:12:57 -0800519 output->base.assign_planes = NULL;
Tiago Vignatti8e53c7f2012-02-29 19:53:50 +0200520 output->base.set_backlight = NULL;
521 output->base.set_dpms = NULL;
Alex Wu2dda6042012-04-17 17:20:47 +0800522 output->base.switch_mode = NULL;
Benjamin Franzkeeefc36c2011-03-11 16:39:20 +0100523
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400524 wl_list_insert(c->base.output_list.prev, &output->base.link);
525
Kristian Høgsbergfc9c5e02012-06-08 16:45:33 -0400526 weston_log("x11 output %dx%d, window id %d\n",
527 width, height, output->window);
528
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400529 return 0;
530}
531
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400532static struct x11_output *
533x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window)
534{
535 struct x11_output *output;
536
537 wl_list_for_each(output, &c->base.output_list, base.link) {
538 if (output->window == window)
539 return output;
540 }
541
542 return NULL;
543}
544
Tiago Vignattia3a71622011-12-08 17:03:17 +0200545static void
546x11_compositor_deliver_button_event(struct x11_compositor *c,
547 xcb_generic_event_t *event, int state)
548{
549 xcb_button_press_event_t *button_event =
550 (xcb_button_press_event_t *) event;
Daniel Stone5d663712012-05-04 11:21:55 +0100551 uint32_t button;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200552
553 switch (button_event->detail) {
554 default:
555 button = button_event->detail + BTN_LEFT - 1;
556 break;
557 case 2:
558 button = BTN_MIDDLE;
559 break;
560 case 3:
561 button = BTN_RIGHT;
562 break;
563 case 4:
Scott Moreau210d0792012-03-22 10:47:01 -0600564 if (state)
Daniel Stone37816df2012-05-16 18:45:18 +0100565 notify_axis(&c->base.seat->seat,
Scott Moreau210d0792012-03-22 10:47:01 -0600566 weston_compositor_get_time(),
Daniel Stone878f0b72012-05-30 16:31:57 +0100567 WL_POINTER_AXIS_VERTICAL_SCROLL,
568 wl_fixed_from_int(1));
Scott Moreau210d0792012-03-22 10:47:01 -0600569 return;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200570 case 5:
Scott Moreau210d0792012-03-22 10:47:01 -0600571 if (state)
Daniel Stone37816df2012-05-16 18:45:18 +0100572 notify_axis(&c->base.seat->seat,
Scott Moreau210d0792012-03-22 10:47:01 -0600573 weston_compositor_get_time(),
Daniel Stone878f0b72012-05-30 16:31:57 +0100574 WL_POINTER_AXIS_VERTICAL_SCROLL,
575 wl_fixed_from_int(-1));
Scott Moreau210d0792012-03-22 10:47:01 -0600576 return;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200577 case 6:
Scott Moreau210d0792012-03-22 10:47:01 -0600578 if (state)
Daniel Stone37816df2012-05-16 18:45:18 +0100579 notify_axis(&c->base.seat->seat,
Scott Moreau210d0792012-03-22 10:47:01 -0600580 weston_compositor_get_time(),
Daniel Stone878f0b72012-05-30 16:31:57 +0100581 WL_POINTER_AXIS_HORIZONTAL_SCROLL,
582 wl_fixed_from_int(1));
Scott Moreau210d0792012-03-22 10:47:01 -0600583 return;
Tiago Vignattia3a71622011-12-08 17:03:17 +0200584 case 7:
Scott Moreau210d0792012-03-22 10:47:01 -0600585 if (state)
Daniel Stone37816df2012-05-16 18:45:18 +0100586 notify_axis(&c->base.seat->seat,
Scott Moreau210d0792012-03-22 10:47:01 -0600587 weston_compositor_get_time(),
Daniel Stone878f0b72012-05-30 16:31:57 +0100588 WL_POINTER_AXIS_HORIZONTAL_SCROLL,
589 wl_fixed_from_int(-1));
Tiago Vignattia3a71622011-12-08 17:03:17 +0200590 return;
591 }
592
Daniel Stone37816df2012-05-16 18:45:18 +0100593 notify_button(&c->base.seat->seat,
Daniel Stone4dbadb12012-05-30 16:31:51 +0100594 weston_compositor_get_time(), button,
595 state ? WL_POINTER_BUTTON_STATE_PRESSED :
596 WL_POINTER_BUTTON_STATE_RELEASED);
Tiago Vignattia3a71622011-12-08 17:03:17 +0200597}
598
Kristian Høgsbergee724822011-04-21 14:51:44 -0400599static int
600x11_compositor_next_event(struct x11_compositor *c,
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400601 xcb_generic_event_t **event, uint32_t mask)
Kristian Høgsbergee724822011-04-21 14:51:44 -0400602{
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400603 if (mask & WL_EVENT_READABLE) {
604 *event = xcb_poll_for_event(c->conn);
Kristian Høgsbergee724822011-04-21 14:51:44 -0400605 } else {
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400606#ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400607 *event = xcb_poll_for_queued_event(c->conn);
Kristian Høgsberg82ed0422011-04-25 15:41:59 -0400608#else
609 *event = xcb_poll_for_event(c->conn);
610#endif
Kristian Høgsbergee724822011-04-21 14:51:44 -0400611 }
612
613 return *event != NULL;
614}
615
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400616static int
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400617x11_compositor_handle_event(int fd, uint32_t mask, void *data)
618{
619 struct x11_compositor *c = data;
620 struct x11_output *output;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400621 xcb_generic_event_t *event, *prev;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400622 xcb_client_message_event_t *client_message;
623 xcb_motion_notify_event_t *motion_notify;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500624 xcb_enter_notify_event_t *enter_notify;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400625 xcb_key_press_event_t *key_press, *key_release;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500626 xcb_keymap_notify_event_t *keymap_notify;
627 xcb_focus_in_event_t *focus_in;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400628 xcb_atom_t atom;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500629 uint32_t *k;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400630 uint32_t i, set;
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400631 wl_fixed_t x, y;
Bill Spitzakb715cec2012-06-05 17:08:23 -0400632 int count;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400633
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400634 prev = NULL;
Bill Spitzakb715cec2012-06-05 17:08:23 -0400635 count = 0;
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400636 while (x11_compositor_next_event(c, &event, mask)) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400637 switch (prev ? prev->response_type & ~0x80 : 0x80) {
638 case XCB_KEY_RELEASE:
639 key_release = (xcb_key_press_event_t *) prev;
640 key_press = (xcb_key_press_event_t *) event;
Daniel Stone351eb612012-05-31 15:27:47 -0400641 /* XXX use XkbSetDetectableAutoRepeat */
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400642 if ((event->response_type & ~0x80) == XCB_KEY_PRESS &&
Dima Ryazanovc2247482011-08-16 17:25:32 -0700643 key_release->time == key_press->time &&
644 key_release->detail == key_press->detail) {
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400645 /* Don't deliver the held key release
646 * event or the new key press event. */
647 free(event);
648 free(prev);
649 prev = NULL;
650 continue;
651 } else {
652 /* Deliver the held key release now
653 * and fall through and handle the new
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400654 * event below. */
Daniel Stone37816df2012-05-16 18:45:18 +0100655 notify_key(&c->base.seat->seat,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500656 weston_compositor_get_time(),
Daniel Stonec9785ea2012-05-30 16:31:52 +0100657 key_release->detail - 8,
658 WL_KEYBOARD_KEY_STATE_RELEASED);
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400659 free(prev);
660 prev = NULL;
661 break;
662 }
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400663
664 case XCB_FOCUS_IN:
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400665 /* assert event is keymap_notify */
666 focus_in = (xcb_focus_in_event_t *) prev;
667 keymap_notify = (xcb_keymap_notify_event_t *) event;
668 c->keys.size = 0;
669 for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) {
670 set = keymap_notify->keys[i >> 3] &
671 (1 << (i & 7));
672 if (set) {
673 k = wl_array_add(&c->keys, sizeof *k);
674 *k = i;
675 }
676 }
677
678 output = x11_compositor_find_output(c, focus_in->event);
Daniel Stone37816df2012-05-16 18:45:18 +0100679 notify_keyboard_focus(&c->base.seat->seat, &c->keys);
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400680
681 free(prev);
682 prev = NULL;
683 break;
684
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400685 default:
686 /* No previous event held */
687 break;
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400688 }
689
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400690 switch (event->response_type & ~0x80) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400691 case XCB_KEY_PRESS:
692 key_press = (xcb_key_press_event_t *) event;
Daniel Stone37816df2012-05-16 18:45:18 +0100693 notify_key(&c->base.seat->seat,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500694 weston_compositor_get_time(),
Daniel Stonec9785ea2012-05-30 16:31:52 +0100695 key_press->detail - 8,
696 WL_KEYBOARD_KEY_STATE_PRESSED);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400697 break;
698 case XCB_KEY_RELEASE:
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400699 prev = event;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400700 break;
701 case XCB_BUTTON_PRESS:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200702 x11_compositor_deliver_button_event(c, event, 1);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400703 break;
704 case XCB_BUTTON_RELEASE:
Tiago Vignattia3a71622011-12-08 17:03:17 +0200705 x11_compositor_deliver_button_event(c, event, 0);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400706 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400707 case XCB_MOTION_NOTIFY:
708 motion_notify = (xcb_motion_notify_event_t *) event;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700709 output = x11_compositor_find_output(c, motion_notify->event);
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400710 x = wl_fixed_from_int(output->base.x + motion_notify->event_x);
711 y = wl_fixed_from_int(output->base.y + motion_notify->event_y);
Daniel Stone37816df2012-05-16 18:45:18 +0100712 notify_motion(&c->base.seat->seat,
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400713 weston_compositor_get_time(), x, y);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400714 break;
715
716 case XCB_EXPOSE:
Benjamin Franzke84290d02011-03-02 10:07:59 +0100717 /* FIXME: schedule output repaint */
718 /* output = x11_compositor_find_output(c, expose->window); */
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400719
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500720 weston_compositor_schedule_repaint(&c->base);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400721 break;
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400722
723 case XCB_ENTER_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500724 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500725 if (enter_notify->state >= Button1Mask)
726 break;
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500727 output = x11_compositor_find_output(c, enter_notify->event);
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400728 x = wl_fixed_from_int(output->base.x + enter_notify->event_x);
729 y = wl_fixed_from_int(output->base.y + enter_notify->event_y);
Daniel Stone351eb612012-05-31 15:27:47 -0400730 /* XXX notify_modifiers() */
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400731
Daniel Stone37816df2012-05-16 18:45:18 +0100732 notify_pointer_focus(&c->base.seat->seat,
Kristian Høgsberge11bbe42012-05-09 12:19:04 -0400733 &output->base, x, y);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400734 break;
735
736 case XCB_LEAVE_NOTIFY:
Kristian Høgsberg93331ff2011-01-26 20:35:07 -0500737 enter_notify = (xcb_enter_notify_event_t *) event;
Kristian Høgsberg2dfe6262011-02-08 11:59:53 -0500738 if (enter_notify->state >= Button1Mask)
739 break;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700740 output = x11_compositor_find_output(c, enter_notify->event);
Daniel Stone37816df2012-05-16 18:45:18 +0100741 notify_pointer_focus(&c->base.seat->seat, NULL, 0, 0);
Kristian Høgsberg86e09892010-07-07 09:51:11 -0400742 break;
743
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400744 case XCB_CLIENT_MESSAGE:
745 client_message = (xcb_client_message_event_t *) event;
746 atom = client_message->data.data32[0];
747 if (atom == c->atom.wm_delete_window)
Kristian Høgsberg50dc6982010-12-01 16:43:56 -0500748 wl_display_terminate(c->base.wl_display);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400749 break;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400750
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500751 case XCB_FOCUS_IN:
752 focus_in = (xcb_focus_in_event_t *) event;
753 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED)
754 break;
755
Kristian Høgsberg025f7b82011-04-19 12:38:22 -0400756 prev = event;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500757 break;
758
759 case XCB_FOCUS_OUT:
760 focus_in = (xcb_focus_in_event_t *) event;
Kristian Høgsberg42e40ae2011-12-19 14:36:50 -0500761 if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED ||
762 focus_in->mode == XCB_NOTIFY_MODE_UNGRAB)
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500763 break;
Daniel Stone37816df2012-05-16 18:45:18 +0100764 notify_keyboard_focus(&c->base.seat->seat, NULL);
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500765 break;
766
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500767 default:
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400768 break;
769 }
770
Bill Spitzakb715cec2012-06-05 17:08:23 -0400771 count++;
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400772 if (prev != event)
Kristian Høgsberg3ddd1482011-04-15 15:48:07 -0400773 free (event);
774 }
775
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400776 switch (prev ? prev->response_type & ~0x80 : 0x80) {
777 case XCB_KEY_RELEASE:
778 key_release = (xcb_key_press_event_t *) prev;
Daniel Stone37816df2012-05-16 18:45:18 +0100779 notify_key(&c->base.seat->seat,
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500780 weston_compositor_get_time(),
Daniel Stonec9785ea2012-05-30 16:31:52 +0100781 key_release->detail - 8,
782 WL_KEYBOARD_KEY_STATE_RELEASED);
Kristian Høgsberg94da7e12011-04-19 09:23:29 -0400783 free(prev);
784 prev = NULL;
785 break;
786 default:
787 break;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500788 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400789
Bill Spitzakb715cec2012-06-05 17:08:23 -0400790 return count;
Kristian Høgsbergee724822011-04-21 14:51:44 -0400791}
792
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400793#define F(field) offsetof(struct x11_compositor, field)
794
795static void
796x11_compositor_get_resources(struct x11_compositor *c)
797{
798 static const struct { const char *name; int offset; } atoms[] = {
799 { "WM_PROTOCOLS", F(atom.wm_protocols) },
800 { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) },
801 { "WM_SIZE_HINTS", F(atom.wm_size_hints) },
802 { "WM_DELETE_WINDOW", F(atom.wm_delete_window) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500803 { "WM_CLASS", F(atom.wm_class) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400804 { "_NET_WM_NAME", F(atom.net_wm_name) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500805 { "_NET_WM_ICON", F(atom.net_wm_icon) },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400806 { "_NET_WM_STATE", F(atom.net_wm_state) },
807 { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) },
Kristian Høgsberg24ed6212011-01-26 14:02:31 -0500808 { "STRING", F(atom.string) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400809 { "UTF8_STRING", F(atom.utf8_string) },
Kristian Høgsbergf58d8ca2011-01-26 14:37:07 -0500810 { "CARDINAL", F(atom.cardinal) },
Daniel Stone855028f2012-05-01 20:37:10 +0100811 { "_XKB_RULES_NAMES", F(atom.xkb_names) },
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400812 };
813
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500814 xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)];
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400815 xcb_intern_atom_reply_t *reply;
816 xcb_pixmap_t pixmap;
817 xcb_gc_t gc;
Kristian Høgsberg875ab9e2012-03-30 11:52:39 -0400818 unsigned int i;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400819 uint8_t data[] = { 0, 0, 0, 0 };
820
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500821 for (i = 0; i < ARRAY_LENGTH(atoms); i++)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400822 cookies[i] = xcb_intern_atom (c->conn, 0,
823 strlen(atoms[i].name),
824 atoms[i].name);
825
Kristian Høgsberg09e26922011-12-23 13:33:45 -0500826 for (i = 0; i < ARRAY_LENGTH(atoms); i++) {
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400827 reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL);
828 *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom;
829 free(reply);
830 }
831
832 pixmap = xcb_generate_id(c->conn);
833 gc = xcb_generate_id(c->conn);
834 xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1);
835 xcb_create_gc(c->conn, gc, pixmap, 0, NULL);
836 xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP,
837 pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data);
838 c->null_cursor = xcb_generate_id(c->conn);
839 xcb_create_cursor (c->conn, c->null_cursor,
840 pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1);
841 xcb_free_gc(c->conn, gc);
842 xcb_free_pixmap(c->conn, pixmap);
843}
844
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500845static void
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500846x11_destroy(struct weston_compositor *ec)
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500847{
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200848 struct x11_compositor *compositor = (struct x11_compositor *)ec;
Matt Roper361d2ad2011-08-29 13:52:23 -0700849
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200850 wl_event_source_remove(compositor->xcb_source);
851 x11_input_destroy(compositor);
852
Kristian Høgsberg3466bc82012-01-03 11:29:15 -0500853 weston_compositor_shutdown(ec); /* destroys outputs, too */
Pekka Paalanen43c61d82012-01-03 11:58:34 +0200854
855 x11_compositor_fini_egl(compositor);
856
857 XCloseDisplay(compositor->dpy);
Kristian Høgsbergcaa64422010-12-01 16:52:15 -0500858 free(ec);
859}
860
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500861static struct weston_compositor *
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400862x11_compositor_create(struct wl_display *display,
Daniel Stonebaf43592012-06-01 11:11:10 -0400863 int width, int height, int count, int fullscreen,
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300864 int no_input,
Daniel Stonec1be8e52012-06-01 11:14:02 -0400865 int argc, char *argv[], const char *config_file)
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400866{
867 struct x11_compositor *c;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400868 xcb_screen_iterator_t s;
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700869 int i, x;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400870
Kristian Høgsbergfc9c5e02012-06-08 16:45:33 -0400871 weston_log("initializing x11 backend\n");
872
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400873 c = malloc(sizeof *c);
874 if (c == NULL)
875 return NULL;
876
877 memset(c, 0, sizeof *c);
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100878
879 c->dpy = XOpenDisplay(NULL);
Cyril Brulebois20798292011-04-06 18:05:40 +0200880 if (c->dpy == NULL)
881 return NULL;
882
Benjamin Franzke3b288af2011-02-20 19:58:42 +0100883 c->conn = XGetXCBConnection(c->dpy);
Benjamin Franzkee997c5f2011-03-25 14:06:37 +0100884 XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue);
885
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400886 if (xcb_connection_has_error(c->conn))
887 return NULL;
888
889 s = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
890 c->screen = s.data;
Kristian Høgsberg3ba48582011-01-27 11:57:19 -0500891 wl_array_init(&c->keys);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400892
893 x11_compositor_get_resources(c);
894
Kristian Høgsberg5fcd0aa2010-08-09 14:43:33 -0400895 c->base.wl_display = display;
Tiago Vignatti997ce642010-11-10 02:42:35 +0200896 if (x11_compositor_init_egl(c) < 0)
Darxus55973f22010-11-22 21:24:39 -0500897 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400898
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500899 c->base.destroy = x11_destroy;
Kristian Høgsberg8525a502011-01-14 16:20:21 -0500900
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400901 /* Can't init base class until we have a current egl context */
Daniel Stonec1be8e52012-06-01 11:14:02 -0400902 if (weston_compositor_init(&c->base, display, argc, argv,
903 config_file) < 0)
Kristian Høgsberga9468212010-06-14 21:03:11 -0400904 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400905
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700906 for (i = 0, x = 0; i < count; i++) {
907 if (x11_compositor_create_output(c, x, 0, width, height,
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300908 fullscreen, no_input) < 0)
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700909 return NULL;
910 x += width;
911 }
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400912
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300913 if (x11_input_create(c, no_input) < 0)
Darxus55973f22010-11-22 21:24:39 -0500914 return NULL;
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400915
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400916 c->xcb_source =
Kristian Høgsberg22ba60e2012-03-12 01:18:24 -0400917 wl_event_loop_add_fd(c->base.input_loop,
918 xcb_get_file_descriptor(c->conn),
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400919 WL_EVENT_READABLE,
920 x11_compositor_handle_event, c);
Kristian Høgsberg127d0f02011-04-22 12:18:13 -0400921 wl_event_source_check(c->xcb_source);
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400922
Kristian Høgsbergce5325d2010-06-14 11:54:00 -0400923 return &c->base;
924}
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400925
Kristian Høgsberg8334bc12012-01-03 10:29:47 -0500926WL_EXPORT struct weston_compositor *
Daniel Stonec1be8e52012-06-01 11:14:02 -0400927backend_init(struct wl_display *display, int argc, char *argv[],
928 const char *config_file)
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400929{
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400930 int width = 1024, height = 640, fullscreen = 0, count = 1;
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300931 int no_input = 0;
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400932
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400933 const struct weston_option x11_options[] = {
934 { WESTON_OPTION_INTEGER, "width", 0, &width },
935 { WESTON_OPTION_INTEGER, "height", 0, &height },
936 { WESTON_OPTION_BOOLEAN, "fullscreen", 0, &fullscreen },
937 { WESTON_OPTION_INTEGER, "output-count", 0, &count },
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300938 { WESTON_OPTION_BOOLEAN, "no-input", 0, &no_input },
Kristian Høgsberg83eeacb2011-06-18 04:20:54 -0400939 };
Kristian Høgsbergbcacef12012-03-11 21:05:57 -0400940
941 parse_options(x11_options, ARRAY_LENGTH(x11_options), argc, argv);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400942
Kristian Høgsberg1ccd9d22011-07-21 10:22:13 -0700943 return x11_compositor_create(display,
Daniel Stonebaf43592012-06-01 11:11:10 -0400944 width, height, count, fullscreen,
Pekka Paalanen36f155f2012-06-07 15:07:05 +0300945 no_input,
Daniel Stonec1be8e52012-06-01 11:14:02 -0400946 argc, argv, config_file);
Kristian Høgsberg1c562182011-05-02 22:09:20 -0400947}