Hook up axis events.
[profile/ivi/weston-ivi-shell.git] / src / compositor-x11.c
1 /*
2  * Copyright © 2008-2011 Kristian Høgsberg
3  * Copyright © 2010-2011 Intel Corporation
4  *
5  * 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.
14  *
15  * 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.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #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>
36 #include <linux/input.h>
37
38 #include <xcb/xcb.h>
39 #include <X11/Xlib.h>
40 #include <X11/Xlib-xcb.h>
41
42 #include <GLES2/gl2.h>
43 #include <EGL/egl.h>
44
45 #include "compositor.h"
46 #include "../shared/config-parser.h"
47
48 struct x11_compositor {
49         struct weston_compositor         base;
50
51         Display                 *dpy;
52         xcb_connection_t        *conn;
53         xcb_screen_t            *screen;
54         xcb_cursor_t             null_cursor;
55         struct wl_array          keys;
56         struct wl_event_source  *xcb_source;
57         struct {
58                 xcb_atom_t               wm_protocols;
59                 xcb_atom_t               wm_normal_hints;
60                 xcb_atom_t               wm_size_hints;
61                 xcb_atom_t               wm_delete_window;
62                 xcb_atom_t               wm_class;
63                 xcb_atom_t               net_wm_name;
64                 xcb_atom_t               net_wm_icon;
65                 xcb_atom_t               net_wm_state;
66                 xcb_atom_t               net_wm_state_fullscreen;
67                 xcb_atom_t               string;
68                 xcb_atom_t               utf8_string;
69                 xcb_atom_t               cardinal;
70         } atom;
71 };
72
73 struct x11_output {
74         struct weston_output    base;
75
76         xcb_window_t            window;
77         EGLSurface              egl_surface;
78         struct weston_mode      mode;
79         struct wl_event_source *finish_frame_timer;
80 };
81
82 struct x11_input {
83         struct weston_input_device base;
84 };
85
86
87 static int
88 x11_input_create(struct x11_compositor *c)
89 {
90         struct x11_input *input;
91
92         input = malloc(sizeof *input);
93         if (input == NULL)
94                 return -1;
95
96         memset(input, 0, sizeof *input);
97         weston_input_device_init(&input->base, &c->base);
98
99         c->base.input_device = &input->base.input_device;
100
101         return 0;
102 }
103
104 static void
105 x11_input_destroy(struct x11_compositor *compositor)
106 {
107         struct x11_input *input = container_of(compositor->base.input_device,
108                                                struct x11_input,
109                                                base.input_device);
110
111         weston_input_device_release(&input->base);
112         free(input);
113 }
114
115 static int
116 x11_compositor_init_egl(struct x11_compositor *c)
117 {
118         EGLint major, minor;
119         EGLint n;
120         const char *extensions;
121         EGLint config_attribs[] = {
122                 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
123                 EGL_RED_SIZE, 1,
124                 EGL_GREEN_SIZE, 1,
125                 EGL_BLUE_SIZE, 1,
126                 EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT,
127                 EGL_NONE
128         };
129         static const EGLint context_attribs[] = {
130                 EGL_CONTEXT_CLIENT_VERSION, 2,
131                 EGL_NONE
132         };
133
134         c->base.display = eglGetDisplay(c->dpy);
135         if (c->base.display == NULL) {
136                 fprintf(stderr, "failed to create display\n");
137                 return -1;
138         }
139
140         if (!eglInitialize(c->base.display, &major, &minor)) {
141                 fprintf(stderr, "failed to initialize display\n");
142                 return -1;
143         }
144
145         extensions = eglQueryString(c->base.display, EGL_EXTENSIONS);
146         if (!strstr(extensions, "EGL_KHR_surfaceless_gles2")) {
147                 fprintf(stderr, "EGL_KHR_surfaceless_gles2 not available\n");
148                 return -1;
149         }
150
151         if (!eglBindAPI(EGL_OPENGL_ES_API)) {
152                 fprintf(stderr, "failed to bind EGL_OPENGL_ES_API\n");
153                 return -1;
154         }
155         if (!eglChooseConfig(c->base.display, config_attribs,
156                              &c->base.config, 1, &n) || n == 0) {
157                 fprintf(stderr, "failed to choose config: %d\n", n);
158                 return -1;
159         }
160
161         c->base.context = eglCreateContext(c->base.display, c->base.config,
162                                            EGL_NO_CONTEXT, context_attribs);
163         if (c->base.context == NULL) {
164                 fprintf(stderr, "failed to create context\n");
165                 return -1;
166         }
167
168         if (!eglMakeCurrent(c->base.display, EGL_NO_SURFACE,
169                             EGL_NO_SURFACE, c->base.context)) {
170                 fprintf(stderr, "failed to make context current\n");
171                 return -1;
172         }
173
174         return 0;
175 }
176
177 static void
178 x11_compositor_fini_egl(struct x11_compositor *compositor)
179 {
180         eglMakeCurrent(compositor->base.display,
181                        EGL_NO_SURFACE, EGL_NO_SURFACE,
182                        EGL_NO_CONTEXT);
183
184         eglTerminate(compositor->base.display);
185         eglReleaseThread();
186 }
187
188 static void
189 x11_output_repaint(struct weston_output *output_base,
190                    pixman_region32_t *damage)
191 {
192         struct x11_output *output = (struct x11_output *)output_base;
193         struct x11_compositor *compositor =
194                 (struct x11_compositor *)output->base.compositor;
195         struct weston_surface *surface;
196
197         if (!eglMakeCurrent(compositor->base.display, output->egl_surface,
198                             output->egl_surface, compositor->base.context)) {
199                 fprintf(stderr, "failed to make current\n");
200                 return;
201         }
202
203         wl_list_for_each_reverse(surface, &compositor->base.surface_list, link)
204                 weston_surface_draw(surface, &output->base, damage);
205
206         eglSwapBuffers(compositor->base.display, output->egl_surface);
207
208         wl_event_source_timer_update(output->finish_frame_timer, 10);
209 }
210
211 static int
212 finish_frame_handler(void *data)
213 {
214         struct x11_output *output = data;
215         uint32_t msec;
216         struct timeval tv;
217         
218         gettimeofday(&tv, NULL);
219         msec = tv.tv_sec * 1000 + tv.tv_usec / 1000;
220         weston_output_finish_frame(&output->base, msec);
221
222         return 1;
223 }
224
225 static void
226 x11_output_destroy(struct weston_output *output_base)
227 {
228         struct x11_output *output = (struct x11_output *)output_base;
229         struct x11_compositor *compositor =
230                 (struct x11_compositor *)output->base.compositor;
231
232         wl_list_remove(&output->base.link);
233         wl_event_source_remove(output->finish_frame_timer);
234
235         eglDestroySurface(compositor->base.display, output->egl_surface);
236
237         xcb_destroy_window(compositor->conn, output->window);
238
239         weston_output_destroy(&output->base);
240
241         free(output);
242 }
243
244 static void
245 x11_output_set_wm_protocols(struct x11_output *output)
246 {
247         xcb_atom_t list[1];
248         struct x11_compositor *c =
249                 (struct x11_compositor *) output->base.compositor;
250
251         list[0] = c->atom.wm_delete_window;
252         xcb_change_property (c->conn, 
253                              XCB_PROP_MODE_REPLACE,
254                              output->window,
255                              c->atom.wm_protocols,
256                              XCB_ATOM_ATOM,
257                              32,
258                              ARRAY_LENGTH(list),
259                              list);
260 }
261
262 static void
263 x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state)
264 {
265         xcb_client_message_event_t event;
266         struct x11_compositor *c =
267                 (struct x11_compositor *) output->base.compositor;
268         xcb_screen_iterator_t iter;
269
270 #define _NET_WM_STATE_REMOVE        0    /* remove/unset property */
271 #define _NET_WM_STATE_ADD           1    /* add/set property */
272 #define _NET_WM_STATE_TOGGLE        2    /* toggle property  */  
273
274         memset(&event, 0, sizeof event);
275         event.response_type = XCB_CLIENT_MESSAGE;
276         event.format = 32;
277         event.window = output->window;
278         event.type = c->atom.net_wm_state;
279
280         event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE;
281         event.data.data32[1] = state;
282         event.data.data32[2] = 0;
283         event.data.data32[3] = 0;
284         event.data.data32[4] = 0;
285
286         iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
287         xcb_send_event(c->conn, 0, iter.data->root,
288                        XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY |
289                        XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT,
290                        (void *) &event);
291 }
292
293
294 struct wm_normal_hints {
295         uint32_t flags;
296         uint32_t pad[4];
297         int32_t min_width, min_height;
298         int32_t max_width, max_height;
299         int32_t width_inc, height_inc;
300         int32_t min_aspect_x, min_aspect_y;
301         int32_t max_aspect_x, max_aspect_y;
302         int32_t base_width, base_height;
303         int32_t win_gravity;
304 };
305
306 #define WM_NORMAL_HINTS_MIN_SIZE        16
307 #define WM_NORMAL_HINTS_MAX_SIZE        32
308
309 static void
310 x11_output_set_icon(struct x11_compositor *c,
311                     struct x11_output *output, const char *filename)
312 {
313         uint32_t *icon;
314         int32_t width, height;
315         pixman_image_t *image;
316
317         image = load_image(filename);
318         if (!image)
319                 return;
320         width = pixman_image_get_width(image);
321         height = pixman_image_get_height(image);
322         icon = malloc(width * height * 4 + 8);
323         if (!icon) {
324                 pixman_image_unref(image);
325                 return;
326         }
327
328         icon[0] = width;
329         icon[1] = height;
330         memcpy(icon + 2, pixman_image_get_data(image), width * height * 4);
331         xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
332                             c->atom.net_wm_icon, c->atom.cardinal, 32,
333                             width * height + 2, icon);
334         free(icon);
335         pixman_image_unref(image);
336 }
337
338 static int
339 x11_compositor_create_output(struct x11_compositor *c, int x, int y,
340                              int width, int height, int fullscreen)
341 {
342         static const char name[] = "Weston Compositor";
343         static const char class[] = "weston-1\0Weston Compositor";
344         struct x11_output *output;
345         xcb_screen_iterator_t iter;
346         struct wm_normal_hints normal_hints;
347         struct wl_event_loop *loop;
348         uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR;
349         uint32_t values[2] = { 
350                 XCB_EVENT_MASK_KEY_PRESS |
351                 XCB_EVENT_MASK_KEY_RELEASE |
352                 XCB_EVENT_MASK_BUTTON_PRESS |
353                 XCB_EVENT_MASK_BUTTON_RELEASE |
354                 XCB_EVENT_MASK_POINTER_MOTION |
355                 XCB_EVENT_MASK_EXPOSURE |
356                 XCB_EVENT_MASK_STRUCTURE_NOTIFY |
357                 XCB_EVENT_MASK_ENTER_WINDOW |
358                 XCB_EVENT_MASK_LEAVE_WINDOW |
359                 XCB_EVENT_MASK_KEYMAP_STATE |
360                 XCB_EVENT_MASK_FOCUS_CHANGE,
361                 0
362         };
363
364         output = malloc(sizeof *output);
365         if (output == NULL)
366                 return -1;
367
368         memset(output, 0, sizeof *output);
369
370         output->mode.flags =
371                 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
372         output->mode.width = width;
373         output->mode.height = height;
374         output->mode.refresh = 60;
375         wl_list_init(&output->base.mode_list);
376         wl_list_insert(&output->base.mode_list, &output->mode.link);
377
378         output->base.current = &output->mode;
379         weston_output_init(&output->base, &c->base, x, y, width, height,
380                          WL_OUTPUT_FLIPPED);
381
382         values[1] = c->null_cursor;
383         output->window = xcb_generate_id(c->conn);
384         iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
385         xcb_create_window(c->conn,
386                           XCB_COPY_FROM_PARENT,
387                           output->window,
388                           iter.data->root,
389                           0, 0,
390                           width, height,
391                           0,
392                           XCB_WINDOW_CLASS_INPUT_OUTPUT,
393                           iter.data->root_visual,
394                           mask, values);
395
396         /* Don't resize me. */
397         memset(&normal_hints, 0, sizeof normal_hints);
398         normal_hints.flags =
399                 WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE;
400         normal_hints.min_width = width;
401         normal_hints.min_height = height;
402         normal_hints.max_width = width;
403         normal_hints.max_height = height;
404         xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window,
405                              c->atom.wm_normal_hints,
406                              c->atom.wm_size_hints, 32,
407                              sizeof normal_hints / 4,
408                              (uint8_t *) &normal_hints);
409
410         /* Set window name.  Don't bother with non-EWMH WMs. */
411         xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
412                             c->atom.net_wm_name, c->atom.utf8_string, 8,
413                             strlen(name), name);
414         xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
415                             c->atom.wm_class, c->atom.string, 8,
416                             sizeof class, class);
417
418         x11_output_set_icon(c, output, DATADIR "/weston/wayland.png");
419
420         xcb_map_window(c->conn, output->window);
421
422         x11_output_set_wm_protocols(output);
423
424         if (fullscreen)
425                 x11_output_change_state(output, 1,
426                                         c->atom.net_wm_state_fullscreen);
427
428         output->egl_surface = 
429                 eglCreateWindowSurface(c->base.display, c->base.config,
430                                        output->window, NULL);
431         if (!output->egl_surface) {
432                 fprintf(stderr, "failed to create window surface\n");
433                 return -1;
434         }
435         if (!eglMakeCurrent(c->base.display, output->egl_surface,
436                             output->egl_surface, c->base.context)) {
437                 fprintf(stderr, "failed to make surface current\n");
438                 return -1;
439         }
440
441         loop = wl_display_get_event_loop(c->base.wl_display);
442         output->finish_frame_timer =
443                 wl_event_loop_add_timer(loop, finish_frame_handler, output);
444
445         output->base.repaint = x11_output_repaint;
446         output->base.destroy = x11_output_destroy;
447         output->base.assign_planes = NULL;
448         output->base.set_backlight = NULL;
449         output->base.set_dpms = NULL;
450
451         wl_list_insert(c->base.output_list.prev, &output->base.link);
452
453         return 0;
454 }
455
456 static struct x11_output *
457 x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window)
458 {
459         struct x11_output *output;
460
461         wl_list_for_each(output, &c->base.output_list, base.link) {
462                 if (output->window == window)
463                         return output;
464         }
465
466         return NULL;
467 }
468
469 static void
470 x11_compositor_deliver_button_event(struct x11_compositor *c,
471                                     xcb_generic_event_t *event, int state)
472 {
473         xcb_button_press_event_t *button_event =
474                 (xcb_button_press_event_t *) event;
475         int button;
476
477         switch (button_event->detail) {
478         default:
479                 button = button_event->detail + BTN_LEFT - 1;
480                 break;
481         case 2:
482                 button = BTN_MIDDLE;
483                 break;
484         case 3:
485                 button = BTN_RIGHT;
486                 break;
487         case 4:
488                 if (state)
489                         notify_axis(c->base.input_device,
490                                       weston_compositor_get_time(),
491                                       WL_INPUT_DEVICE_AXIS_VERTICAL_SCROLL, 1);
492                 return;
493         case 5:
494                 if (state)
495                         notify_axis(c->base.input_device,
496                                       weston_compositor_get_time(),
497                                       WL_INPUT_DEVICE_AXIS_VERTICAL_SCROLL, -1);
498                 return;
499         case 6:
500                 if (state)
501                         notify_axis(c->base.input_device,
502                                       weston_compositor_get_time(),
503                                       WL_INPUT_DEVICE_AXIS_HORIZONTAL_SCROLL, 1);
504                 return;
505         case 7:
506                 if (state)
507                         notify_axis(c->base.input_device,
508                                       weston_compositor_get_time(),
509                                       WL_INPUT_DEVICE_AXIS_HORIZONTAL_SCROLL, -1);
510                 return;
511         }
512
513         notify_button(c->base.input_device,
514                       weston_compositor_get_time(), button, state);
515 }
516
517 static int
518 x11_compositor_next_event(struct x11_compositor *c,
519                           xcb_generic_event_t **event, uint32_t mask)
520 {
521         if (mask & WL_EVENT_READABLE) {
522                 *event = xcb_poll_for_event(c->conn);
523         } else {
524 #ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT
525                 *event = xcb_poll_for_queued_event(c->conn);
526 #else
527                 *event = xcb_poll_for_event(c->conn);
528 #endif
529         }
530
531         return *event != NULL;
532 }
533
534 static int
535 x11_compositor_handle_event(int fd, uint32_t mask, void *data)
536 {
537         struct x11_compositor *c = data;
538         struct x11_output *output;
539         xcb_generic_event_t *event, *prev;
540         xcb_client_message_event_t *client_message;
541         xcb_motion_notify_event_t *motion_notify;
542         xcb_enter_notify_event_t *enter_notify;
543         xcb_key_press_event_t *key_press, *key_release;
544         xcb_keymap_notify_event_t *keymap_notify;
545         xcb_focus_in_event_t *focus_in;
546         xcb_atom_t atom;
547         uint32_t *k;
548         int i, set;
549
550         prev = NULL;
551         while (x11_compositor_next_event(c, &event, mask)) {
552                 switch (prev ? prev->response_type & ~0x80 : 0x80) {
553                 case XCB_KEY_RELEASE:
554                         key_release = (xcb_key_press_event_t *) prev;
555                         key_press = (xcb_key_press_event_t *) event;
556                         if ((event->response_type & ~0x80) == XCB_KEY_PRESS &&
557                             key_release->time == key_press->time &&
558                             key_release->detail == key_press->detail) {
559                                 /* Don't deliver the held key release
560                                  * event or the new key press event. */
561                                 free(event);
562                                 free(prev);
563                                 prev = NULL;
564                                 continue;
565                         } else {
566                                 /* Deliver the held key release now
567                                  * and fall through and handle the new
568                                  * event below. */
569                                 notify_key(c->base.input_device,
570                                            weston_compositor_get_time(),
571                                            key_release->detail - 8, 0);
572                                 free(prev);
573                                 prev = NULL;
574                                 break;
575                         }
576
577                 case XCB_FOCUS_IN:
578                         /* assert event is keymap_notify */
579                         focus_in = (xcb_focus_in_event_t *) prev;
580                         keymap_notify = (xcb_keymap_notify_event_t *) event;
581                         c->keys.size = 0;
582                         for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) {
583                                 set = keymap_notify->keys[i >> 3] &
584                                         (1 << (i & 7));
585                                 if (set) {
586                                         k = wl_array_add(&c->keys, sizeof *k);
587                                         *k = i;
588                                 }
589                         }
590
591                         output = x11_compositor_find_output(c, focus_in->event);
592                         notify_keyboard_focus(c->base.input_device,
593                                               weston_compositor_get_time(),
594                                               &output->base, &c->keys);
595
596                         free(prev);
597                         prev = NULL;
598                         break;
599
600                 default:
601                         /* No previous event held */
602                         break;
603                 }
604
605                 switch (event->response_type & ~0x80) {
606                 case XCB_KEY_PRESS:
607                         key_press = (xcb_key_press_event_t *) event;
608                         notify_key(c->base.input_device,
609                                    weston_compositor_get_time(),
610                                    key_press->detail - 8, 1);
611                         break;
612                 case XCB_KEY_RELEASE:
613                         prev = event;
614                         break;
615                 case XCB_BUTTON_PRESS:
616                         x11_compositor_deliver_button_event(c, event, 1);
617                         break;
618                 case XCB_BUTTON_RELEASE:
619                         x11_compositor_deliver_button_event(c, event, 0);
620                         break;
621                 case XCB_MOTION_NOTIFY:
622                         motion_notify = (xcb_motion_notify_event_t *) event;
623                         output = x11_compositor_find_output(c, motion_notify->event);
624                         notify_motion(c->base.input_device,
625                                       weston_compositor_get_time(),
626                                       output->base.x + motion_notify->event_x,
627                                       output->base.y + motion_notify->event_y);
628                         break;
629
630                 case XCB_EXPOSE:
631                         /* FIXME: schedule output repaint */
632                         /* output = x11_compositor_find_output(c, expose->window); */
633
634                         weston_compositor_schedule_repaint(&c->base);
635                         break;
636
637                 case XCB_ENTER_NOTIFY:
638                         enter_notify = (xcb_enter_notify_event_t *) event;
639                         if (enter_notify->state >= Button1Mask)
640                                 break;
641                         output = x11_compositor_find_output(c, enter_notify->event);
642                         notify_pointer_focus(c->base.input_device,
643                                              weston_compositor_get_time(),
644                                              &output->base,
645                                              output->base.x + enter_notify->event_x,
646                                              output->base.y + enter_notify->event_y);
647                         break;
648
649                 case XCB_LEAVE_NOTIFY:
650                         enter_notify = (xcb_enter_notify_event_t *) event;
651                         if (enter_notify->state >= Button1Mask)
652                                 break;
653                         output = x11_compositor_find_output(c, enter_notify->event);
654                         notify_pointer_focus(c->base.input_device,
655                                              weston_compositor_get_time(),
656                                              NULL,
657                                              output->base.x + enter_notify->event_x,
658                                              output->base.y + enter_notify->event_y);
659                         break;
660
661                 case XCB_CLIENT_MESSAGE:
662                         client_message = (xcb_client_message_event_t *) event;
663                         atom = client_message->data.data32[0];
664                         if (atom == c->atom.wm_delete_window)
665                                 wl_display_terminate(c->base.wl_display);
666                         break;
667
668                 case XCB_FOCUS_IN:
669                         focus_in = (xcb_focus_in_event_t *) event;
670                         if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED)
671                                 break;
672
673                         prev = event;
674                         break;
675
676                 case XCB_FOCUS_OUT:
677                         focus_in = (xcb_focus_in_event_t *) event;
678                         if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED ||
679                             focus_in->mode == XCB_NOTIFY_MODE_UNGRAB)
680                                 break;
681                         notify_keyboard_focus(c->base.input_device,
682                                               weston_compositor_get_time(),
683                                               NULL, NULL);
684                         break;
685
686                 default:
687                         break;
688                 }
689
690                 if (prev != event)
691                         free (event);
692         }
693
694         switch (prev ? prev->response_type & ~0x80 : 0x80) {
695         case XCB_KEY_RELEASE:
696                 key_release = (xcb_key_press_event_t *) prev;
697                 notify_key(c->base.input_device,
698                            weston_compositor_get_time(),
699                            key_release->detail - 8, 0);
700                 free(prev);
701                 prev = NULL;
702                 break;
703         default:
704                 break;
705         }
706
707         return event != NULL;
708 }
709
710 #define F(field) offsetof(struct x11_compositor, field)
711
712 static void
713 x11_compositor_get_resources(struct x11_compositor *c)
714 {
715         static const struct { const char *name; int offset; } atoms[] = {
716                 { "WM_PROTOCOLS",       F(atom.wm_protocols) },
717                 { "WM_NORMAL_HINTS",    F(atom.wm_normal_hints) },
718                 { "WM_SIZE_HINTS",      F(atom.wm_size_hints) },
719                 { "WM_DELETE_WINDOW",   F(atom.wm_delete_window) },
720                 { "WM_CLASS",           F(atom.wm_class) },
721                 { "_NET_WM_NAME",       F(atom.net_wm_name) },
722                 { "_NET_WM_ICON",       F(atom.net_wm_icon) },
723                 { "_NET_WM_STATE",      F(atom.net_wm_state) },
724                 { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) },
725                 { "STRING",             F(atom.string) },
726                 { "UTF8_STRING",        F(atom.utf8_string) },
727                 { "CARDINAL",           F(atom.cardinal) },
728         };
729
730         xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)];
731         xcb_intern_atom_reply_t *reply;
732         xcb_pixmap_t pixmap;
733         xcb_gc_t gc;
734         int i;
735         uint8_t data[] = { 0, 0, 0, 0 };
736
737         for (i = 0; i < ARRAY_LENGTH(atoms); i++)
738                 cookies[i] = xcb_intern_atom (c->conn, 0,
739                                               strlen(atoms[i].name),
740                                               atoms[i].name);
741
742         for (i = 0; i < ARRAY_LENGTH(atoms); i++) {
743                 reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL);
744                 *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom;
745                 free(reply);
746         }
747
748         pixmap = xcb_generate_id(c->conn);
749         gc = xcb_generate_id(c->conn);
750         xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1);
751         xcb_create_gc(c->conn, gc, pixmap, 0, NULL);
752         xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP,
753                       pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data);
754         c->null_cursor = xcb_generate_id(c->conn);
755         xcb_create_cursor (c->conn, c->null_cursor,
756                            pixmap, pixmap, 0, 0, 0,  0, 0, 0,  1, 1);
757         xcb_free_gc(c->conn, gc);
758         xcb_free_pixmap(c->conn, pixmap);
759 }
760
761 static void
762 x11_destroy(struct weston_compositor *ec)
763 {
764         struct x11_compositor *compositor = (struct x11_compositor *)ec;
765
766         wl_event_source_remove(compositor->xcb_source);
767         x11_input_destroy(compositor);
768
769         weston_compositor_shutdown(ec); /* destroys outputs, too */
770
771         x11_compositor_fini_egl(compositor);
772
773         XCloseDisplay(compositor->dpy);
774         free(ec);
775 }
776
777 static struct weston_compositor *
778 x11_compositor_create(struct wl_display *display,
779                       int width, int height, int count, int fullscreen)
780 {
781         struct x11_compositor *c;
782         xcb_screen_iterator_t s;
783         int i, x;
784
785         c = malloc(sizeof *c);
786         if (c == NULL)
787                 return NULL;
788
789         memset(c, 0, sizeof *c);
790
791         c->dpy = XOpenDisplay(NULL);
792         if (c->dpy == NULL)
793                 return NULL;
794
795         c->conn = XGetXCBConnection(c->dpy);
796         XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue);
797
798         if (xcb_connection_has_error(c->conn))
799                 return NULL;
800
801         s = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
802         c->screen = s.data;
803         wl_array_init(&c->keys);
804
805         x11_compositor_get_resources(c);
806
807         c->base.wl_display = display;
808         if (x11_compositor_init_egl(c) < 0)
809                 return NULL;
810
811         c->base.destroy = x11_destroy;
812
813         /* Can't init base class until we have a current egl context */
814         if (weston_compositor_init(&c->base, display) < 0)
815                 return NULL;
816
817         for (i = 0, x = 0; i < count; i++) {
818                 if (x11_compositor_create_output(c, x, 0, width, height,
819                                                  fullscreen) < 0)
820                         return NULL;
821                 x += width;
822         }
823
824         if (x11_input_create(c) < 0)
825                 return NULL;
826
827         c->xcb_source =
828                 wl_event_loop_add_fd(c->base.input_loop,
829                                      xcb_get_file_descriptor(c->conn),
830                                      WL_EVENT_READABLE,
831                                      x11_compositor_handle_event, c);
832         wl_event_source_check(c->xcb_source);
833
834         return &c->base;
835 }
836
837 WL_EXPORT struct weston_compositor *
838 backend_init(struct wl_display *display, int argc, char *argv[])
839 {
840         int width = 1024, height = 640, fullscreen = 0, count = 1;
841
842         const struct weston_option x11_options[] = {
843                 { WESTON_OPTION_INTEGER, "width", 0, &width },
844                 { WESTON_OPTION_INTEGER, "height", 0, &height },
845                 { WESTON_OPTION_BOOLEAN, "fullscreen", 0, &fullscreen },
846                 { WESTON_OPTION_INTEGER, "output-count", 0, &count },
847         };
848
849         parse_options(x11_options, ARRAY_LENGTH(x11_options), argc, argv);
850
851         return x11_compositor_create(display,
852                                      width, height, count, fullscreen);
853 }