compositor: Store opaque clip for previous frame in weston_surface
[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
47 struct x11_compositor {
48         struct weston_compositor         base;
49
50         Display                 *dpy;
51         xcb_connection_t        *conn;
52         xcb_screen_t            *screen;
53         xcb_cursor_t             null_cursor;
54         struct wl_array          keys;
55         struct wl_event_source  *xcb_source;
56         struct {
57                 xcb_atom_t               wm_protocols;
58                 xcb_atom_t               wm_normal_hints;
59                 xcb_atom_t               wm_size_hints;
60                 xcb_atom_t               wm_delete_window;
61                 xcb_atom_t               wm_class;
62                 xcb_atom_t               net_wm_name;
63                 xcb_atom_t               net_wm_icon;
64                 xcb_atom_t               net_wm_state;
65                 xcb_atom_t               net_wm_state_fullscreen;
66                 xcb_atom_t               string;
67                 xcb_atom_t               utf8_string;
68                 xcb_atom_t               cardinal;
69         } atom;
70 };
71
72 struct x11_output {
73         struct weston_output    base;
74
75         xcb_window_t            window;
76         EGLSurface              egl_surface;
77         struct weston_mode      mode;
78         struct wl_event_source *finish_frame_timer;
79 };
80
81 struct x11_input {
82         struct weston_input_device base;
83 };
84
85
86 static int
87 x11_input_create(struct x11_compositor *c)
88 {
89         struct x11_input *input;
90
91         input = malloc(sizeof *input);
92         if (input == NULL)
93                 return -1;
94
95         memset(input, 0, sizeof *input);
96         weston_input_device_init(&input->base, &c->base);
97
98         c->base.input_device = &input->base.input_device;
99
100         return 0;
101 }
102
103 static void
104 x11_input_destroy(struct x11_compositor *compositor)
105 {
106         struct x11_input *input = container_of(compositor->base.input_device,
107                                                struct x11_input,
108                                                base.input_device);
109
110         weston_input_device_release(&input->base);
111         free(input);
112 }
113
114 static int
115 x11_compositor_init_egl(struct x11_compositor *c)
116 {
117         EGLint major, minor;
118         EGLint n;
119         const char *extensions;
120         EGLint config_attribs[] = {
121                 EGL_SURFACE_TYPE, EGL_WINDOW_BIT,
122                 EGL_RED_SIZE, 1,
123                 EGL_GREEN_SIZE, 1,
124                 EGL_BLUE_SIZE, 1,
125                 EGL_DEPTH_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, *pixels, stride;
314         int32_t width, height;
315
316         pixels = weston_load_image(filename, &width, &height, &stride);
317         if (!pixels)
318                 return;
319         icon = malloc(width * height * 4 + 8);
320         if (!icon) {
321                 free(pixels);
322                 return;
323         }
324
325         icon[0] = width;
326         icon[1] = height;
327         memcpy(icon + 2, pixels, width * height * 4);
328         xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
329                             c->atom.net_wm_icon, c->atom.cardinal, 32,
330                             width * height + 2, icon);
331         free(icon);
332         free(pixels);
333 }
334
335 static int
336 x11_compositor_create_output(struct x11_compositor *c, int x, int y,
337                              int width, int height, int fullscreen)
338 {
339         static const char name[] = "Weston Compositor";
340         static const char class[] = "weston-1\0Weston Compositor";
341         struct x11_output *output;
342         xcb_screen_iterator_t iter;
343         struct wm_normal_hints normal_hints;
344         struct wl_event_loop *loop;
345         uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR;
346         uint32_t values[2] = { 
347                 XCB_EVENT_MASK_KEY_PRESS |
348                 XCB_EVENT_MASK_KEY_RELEASE |
349                 XCB_EVENT_MASK_BUTTON_PRESS |
350                 XCB_EVENT_MASK_BUTTON_RELEASE |
351                 XCB_EVENT_MASK_POINTER_MOTION |
352                 XCB_EVENT_MASK_EXPOSURE |
353                 XCB_EVENT_MASK_STRUCTURE_NOTIFY |
354                 XCB_EVENT_MASK_ENTER_WINDOW |
355                 XCB_EVENT_MASK_LEAVE_WINDOW |
356                 XCB_EVENT_MASK_KEYMAP_STATE |
357                 XCB_EVENT_MASK_FOCUS_CHANGE,
358                 0
359         };
360
361         output = malloc(sizeof *output);
362         if (output == NULL)
363                 return -1;
364
365         memset(output, 0, sizeof *output);
366
367         output->mode.flags =
368                 WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED;
369         output->mode.width = width;
370         output->mode.height = height;
371         output->mode.refresh = 60;
372         wl_list_init(&output->base.mode_list);
373         wl_list_insert(&output->base.mode_list, &output->mode.link);
374
375         output->base.current = &output->mode;
376         weston_output_init(&output->base, &c->base, x, y, width, height,
377                          WL_OUTPUT_FLIPPED);
378
379         values[1] = c->null_cursor;
380         output->window = xcb_generate_id(c->conn);
381         iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
382         xcb_create_window(c->conn,
383                           XCB_COPY_FROM_PARENT,
384                           output->window,
385                           iter.data->root,
386                           0, 0,
387                           width, height,
388                           0,
389                           XCB_WINDOW_CLASS_INPUT_OUTPUT,
390                           iter.data->root_visual,
391                           mask, values);
392
393         /* Don't resize me. */
394         memset(&normal_hints, 0, sizeof normal_hints);
395         normal_hints.flags =
396                 WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE;
397         normal_hints.min_width = width;
398         normal_hints.min_height = height;
399         normal_hints.max_width = width;
400         normal_hints.max_height = height;
401         xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window,
402                              c->atom.wm_normal_hints,
403                              c->atom.wm_size_hints, 32,
404                              sizeof normal_hints / 4,
405                              (uint8_t *) &normal_hints);
406
407         /* Set window name.  Don't bother with non-EWMH WMs. */
408         xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
409                             c->atom.net_wm_name, c->atom.utf8_string, 8,
410                             strlen(name), name);
411         xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window,
412                             c->atom.wm_class, c->atom.string, 8,
413                             sizeof class, class);
414
415         x11_output_set_icon(c, output, DATADIR "/weston/wayland.png");
416
417         xcb_map_window(c->conn, output->window);
418
419         x11_output_set_wm_protocols(output);
420
421         if (fullscreen)
422                 x11_output_change_state(output, 1,
423                                         c->atom.net_wm_state_fullscreen);
424
425         output->egl_surface = 
426                 eglCreateWindowSurface(c->base.display, c->base.config,
427                                        output->window, NULL);
428         if (!output->egl_surface) {
429                 fprintf(stderr, "failed to create window surface\n");
430                 return -1;
431         }
432         if (!eglMakeCurrent(c->base.display, output->egl_surface,
433                             output->egl_surface, c->base.context)) {
434                 fprintf(stderr, "failed to make surface current\n");
435                 return -1;
436         }
437
438         loop = wl_display_get_event_loop(c->base.wl_display);
439         output->finish_frame_timer =
440                 wl_event_loop_add_timer(loop, finish_frame_handler, output);
441
442         output->base.repaint = x11_output_repaint;
443         output->base.destroy = x11_output_destroy;
444         output->base.assign_planes = NULL;
445         output->base.set_backlight = NULL;
446         output->base.set_dpms = NULL;
447
448         wl_list_insert(c->base.output_list.prev, &output->base.link);
449
450         return 0;
451 }
452
453 static struct x11_output *
454 x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window)
455 {
456         struct x11_output *output;
457
458         wl_list_for_each(output, &c->base.output_list, base.link) {
459                 if (output->window == window)
460                         return output;
461         }
462
463         return NULL;
464 }
465
466 static void
467 x11_compositor_deliver_button_event(struct x11_compositor *c,
468                                     xcb_generic_event_t *event, int state)
469 {
470         xcb_button_press_event_t *button_event =
471                 (xcb_button_press_event_t *) event;
472         int button;
473
474         switch (button_event->detail) {
475         default:
476                 button = button_event->detail + BTN_LEFT - 1;
477                 break;
478         case 2:
479                 button = BTN_MIDDLE;
480                 break;
481         case 3:
482                 button = BTN_RIGHT;
483                 break;
484         case 4:
485         case 5:
486         case 6:
487         case 7:
488                 /* X11 sends wheel events as buttons events.  But
489                  * linux input treats as REL_WHEEL, therefore not
490                  * button type at all. When we update the input
491                  * protocol and get the 'axis' event, we'll send
492                  * scroll events as axis events. */
493                 return;
494         }
495
496         notify_button(c->base.input_device,
497                       weston_compositor_get_time(), button, state);
498 }
499
500 static int
501 x11_compositor_next_event(struct x11_compositor *c,
502                           xcb_generic_event_t **event, uint32_t mask)
503 {
504         if (mask & WL_EVENT_READABLE) {
505                 *event = xcb_poll_for_event(c->conn);
506         } else {
507 #ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT
508                 *event = xcb_poll_for_queued_event(c->conn);
509 #else
510                 *event = xcb_poll_for_event(c->conn);
511 #endif
512         }
513
514         return *event != NULL;
515 }
516
517 static int
518 x11_compositor_handle_event(int fd, uint32_t mask, void *data)
519 {
520         struct x11_compositor *c = data;
521         struct x11_output *output;
522         xcb_generic_event_t *event, *prev;
523         xcb_client_message_event_t *client_message;
524         xcb_motion_notify_event_t *motion_notify;
525         xcb_enter_notify_event_t *enter_notify;
526         xcb_key_press_event_t *key_press, *key_release;
527         xcb_keymap_notify_event_t *keymap_notify;
528         xcb_focus_in_event_t *focus_in;
529         xcb_atom_t atom;
530         uint32_t *k;
531         int i, set;
532
533         prev = NULL;
534         while (x11_compositor_next_event(c, &event, mask)) {
535                 switch (prev ? prev->response_type & ~0x80 : 0x80) {
536                 case XCB_KEY_RELEASE:
537                         key_release = (xcb_key_press_event_t *) prev;
538                         key_press = (xcb_key_press_event_t *) event;
539                         if ((event->response_type & ~0x80) == XCB_KEY_PRESS &&
540                             key_release->time == key_press->time &&
541                             key_release->detail == key_press->detail) {
542                                 /* Don't deliver the held key release
543                                  * event or the new key press event. */
544                                 free(event);
545                                 free(prev);
546                                 prev = NULL;
547                                 continue;
548                         } else {
549                                 /* Deliver the held key release now
550                                  * and fall through and handle the new
551                                  * event below. */
552                                 notify_key(c->base.input_device,
553                                            weston_compositor_get_time(),
554                                            key_release->detail - 8, 0);
555                                 free(prev);
556                                 prev = NULL;
557                                 break;
558                         }
559
560                 case XCB_FOCUS_IN:
561                         /* assert event is keymap_notify */
562                         focus_in = (xcb_focus_in_event_t *) prev;
563                         keymap_notify = (xcb_keymap_notify_event_t *) event;
564                         c->keys.size = 0;
565                         for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) {
566                                 set = keymap_notify->keys[i >> 3] &
567                                         (1 << (i & 7));
568                                 if (set) {
569                                         k = wl_array_add(&c->keys, sizeof *k);
570                                         *k = i;
571                                 }
572                         }
573
574                         output = x11_compositor_find_output(c, focus_in->event);
575                         notify_keyboard_focus(c->base.input_device,
576                                               weston_compositor_get_time(),
577                                               &output->base, &c->keys);
578
579                         free(prev);
580                         prev = NULL;
581                         break;
582
583                 default:
584                         /* No previous event held */
585                         break;
586                 }
587
588                 switch (event->response_type & ~0x80) {
589                 case XCB_KEY_PRESS:
590                         key_press = (xcb_key_press_event_t *) event;
591                         notify_key(c->base.input_device,
592                                    weston_compositor_get_time(),
593                                    key_press->detail - 8, 1);
594                         break;
595                 case XCB_KEY_RELEASE:
596                         prev = event;
597                         break;
598                 case XCB_BUTTON_PRESS:
599                         x11_compositor_deliver_button_event(c, event, 1);
600                         break;
601                 case XCB_BUTTON_RELEASE:
602                         x11_compositor_deliver_button_event(c, event, 0);
603                         break;
604                 case XCB_MOTION_NOTIFY:
605                         motion_notify = (xcb_motion_notify_event_t *) event;
606                         output = x11_compositor_find_output(c, motion_notify->event);
607                         notify_motion(c->base.input_device,
608                                       weston_compositor_get_time(),
609                                       output->base.x + motion_notify->event_x,
610                                       output->base.y + motion_notify->event_y);
611                         break;
612
613                 case XCB_EXPOSE:
614                         /* FIXME: schedule output repaint */
615                         /* output = x11_compositor_find_output(c, expose->window); */
616
617                         weston_compositor_schedule_repaint(&c->base);
618                         break;
619
620                 case XCB_ENTER_NOTIFY:
621                         enter_notify = (xcb_enter_notify_event_t *) event;
622                         if (enter_notify->state >= Button1Mask)
623                                 break;
624                         output = x11_compositor_find_output(c, enter_notify->event);
625                         notify_pointer_focus(c->base.input_device,
626                                              weston_compositor_get_time(),
627                                              &output->base,
628                                              output->base.x + enter_notify->event_x,
629                                              output->base.y + enter_notify->event_y);
630                         break;
631
632                 case XCB_LEAVE_NOTIFY:
633                         enter_notify = (xcb_enter_notify_event_t *) event;
634                         if (enter_notify->state >= Button1Mask)
635                                 break;
636                         output = x11_compositor_find_output(c, enter_notify->event);
637                         notify_pointer_focus(c->base.input_device,
638                                              weston_compositor_get_time(),
639                                              NULL,
640                                              output->base.x + enter_notify->event_x,
641                                              output->base.y + enter_notify->event_y);
642                         break;
643
644                 case XCB_CLIENT_MESSAGE:
645                         client_message = (xcb_client_message_event_t *) event;
646                         atom = client_message->data.data32[0];
647                         if (atom == c->atom.wm_delete_window)
648                                 wl_display_terminate(c->base.wl_display);
649                         break;
650
651                 case XCB_FOCUS_IN:
652                         focus_in = (xcb_focus_in_event_t *) event;
653                         if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED)
654                                 break;
655
656                         prev = event;
657                         break;
658
659                 case XCB_FOCUS_OUT:
660                         focus_in = (xcb_focus_in_event_t *) event;
661                         if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED ||
662                             focus_in->mode == XCB_NOTIFY_MODE_UNGRAB)
663                                 break;
664                         notify_keyboard_focus(c->base.input_device,
665                                               weston_compositor_get_time(),
666                                               NULL, NULL);
667                         break;
668
669                 default:
670                         break;
671                 }
672
673                 if (prev != event)
674                         free (event);
675         }
676
677         switch (prev ? prev->response_type & ~0x80 : 0x80) {
678         case XCB_KEY_RELEASE:
679                 key_release = (xcb_key_press_event_t *) prev;
680                 notify_key(c->base.input_device,
681                            weston_compositor_get_time(),
682                            key_release->detail - 8, 0);
683                 free(prev);
684                 prev = NULL;
685                 break;
686         default:
687                 break;
688         }
689
690         return event != NULL;
691 }
692
693 #define F(field) offsetof(struct x11_compositor, field)
694
695 static void
696 x11_compositor_get_resources(struct x11_compositor *c)
697 {
698         static const struct { const char *name; int offset; } atoms[] = {
699                 { "WM_PROTOCOLS",       F(atom.wm_protocols) },
700                 { "WM_NORMAL_HINTS",    F(atom.wm_normal_hints) },
701                 { "WM_SIZE_HINTS",      F(atom.wm_size_hints) },
702                 { "WM_DELETE_WINDOW",   F(atom.wm_delete_window) },
703                 { "WM_CLASS",           F(atom.wm_class) },
704                 { "_NET_WM_NAME",       F(atom.net_wm_name) },
705                 { "_NET_WM_ICON",       F(atom.net_wm_icon) },
706                 { "_NET_WM_STATE",      F(atom.net_wm_state) },
707                 { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) },
708                 { "STRING",             F(atom.string) },
709                 { "UTF8_STRING",        F(atom.utf8_string) },
710                 { "CARDINAL",           F(atom.cardinal) },
711         };
712
713         xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)];
714         xcb_intern_atom_reply_t *reply;
715         xcb_pixmap_t pixmap;
716         xcb_gc_t gc;
717         int i;
718         uint8_t data[] = { 0, 0, 0, 0 };
719
720         for (i = 0; i < ARRAY_LENGTH(atoms); i++)
721                 cookies[i] = xcb_intern_atom (c->conn, 0,
722                                               strlen(atoms[i].name),
723                                               atoms[i].name);
724
725         for (i = 0; i < ARRAY_LENGTH(atoms); i++) {
726                 reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL);
727                 *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom;
728                 free(reply);
729         }
730
731         pixmap = xcb_generate_id(c->conn);
732         gc = xcb_generate_id(c->conn);
733         xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1);
734         xcb_create_gc(c->conn, gc, pixmap, 0, NULL);
735         xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP,
736                       pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data);
737         c->null_cursor = xcb_generate_id(c->conn);
738         xcb_create_cursor (c->conn, c->null_cursor,
739                            pixmap, pixmap, 0, 0, 0,  0, 0, 0,  1, 1);
740         xcb_free_gc(c->conn, gc);
741         xcb_free_pixmap(c->conn, pixmap);
742 }
743
744 static void
745 x11_destroy(struct weston_compositor *ec)
746 {
747         struct x11_compositor *compositor = (struct x11_compositor *)ec;
748
749         wl_event_source_remove(compositor->xcb_source);
750         x11_input_destroy(compositor);
751
752         weston_compositor_shutdown(ec); /* destroys outputs, too */
753
754         x11_compositor_fini_egl(compositor);
755
756         XCloseDisplay(compositor->dpy);
757         free(ec);
758 }
759
760 static struct weston_compositor *
761 x11_compositor_create(struct wl_display *display,
762                       int width, int height, int count, int fullscreen)
763 {
764         struct x11_compositor *c;
765         struct wl_event_loop *loop;
766         xcb_screen_iterator_t s;
767         int i, x;
768
769         c = malloc(sizeof *c);
770         if (c == NULL)
771                 return NULL;
772
773         memset(c, 0, sizeof *c);
774
775         c->dpy = XOpenDisplay(NULL);
776         if (c->dpy == NULL)
777                 return NULL;
778
779         c->conn = XGetXCBConnection(c->dpy);
780         XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue);
781
782         if (xcb_connection_has_error(c->conn))
783                 return NULL;
784
785         s = xcb_setup_roots_iterator(xcb_get_setup(c->conn));
786         c->screen = s.data;
787         wl_array_init(&c->keys);
788
789         x11_compositor_get_resources(c);
790
791         c->base.wl_display = display;
792         if (x11_compositor_init_egl(c) < 0)
793                 return NULL;
794
795         c->base.destroy = x11_destroy;
796
797         /* Can't init base class until we have a current egl context */
798         if (weston_compositor_init(&c->base, display) < 0)
799                 return NULL;
800
801         for (i = 0, x = 0; i < count; i++) {
802                 if (x11_compositor_create_output(c, x, 0, width, height,
803                                                  fullscreen) < 0)
804                         return NULL;
805                 x += width;
806         }
807
808         if (x11_input_create(c) < 0)
809                 return NULL;
810
811         loop = wl_display_get_event_loop(c->base.wl_display);
812
813         c->xcb_source =
814                 wl_event_loop_add_fd(loop, xcb_get_file_descriptor(c->conn),
815                                      WL_EVENT_READABLE,
816                                      x11_compositor_handle_event, c);
817         wl_event_source_check(c->xcb_source);
818
819         return &c->base;
820 }
821
822 struct weston_compositor *
823 backend_init(struct wl_display *display, char *options);
824
825 WL_EXPORT struct weston_compositor *
826 backend_init(struct wl_display *display, char *options)
827 {
828         int width = 1024, height = 640, fullscreen = 0, count = 1, i;
829         char *p, *value;
830
831         static char * const tokens[] = {
832                 "width", "height", "fullscreen", "output-count", NULL
833         };
834         
835         p = options;
836         while (i = getsubopt(&p, tokens, &value), i != -1) {
837                 switch (i) {
838                 case 0:
839                         width = strtol(value, NULL, 0);
840                         break;
841                 case 1:
842                         height = strtol(value, NULL, 0);
843                         break;
844                 case 2:
845                         fullscreen = 1;
846                         break;
847                 case 3:
848                         count = strtol(value, NULL, 0);
849                         break;
850                 }
851         }
852
853         return x11_compositor_create(display,
854                                      width, height, count, fullscreen);
855 }