Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 1 | /* |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 2 | * Copyright © 2008-2011 Kristian Høgsberg |
| 3 | * Copyright © 2010-2011 Intel Corporation |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 4 | * |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 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. |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 14 | * |
Kristian Høgsberg | 96aa7da | 2011-09-15 15:43:14 -0400 | [diff] [blame] | 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. |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 22 | */ |
| 23 | |
Chia-I Wu | 1b6c0ed | 2010-10-29 15:20:18 +0800 | [diff] [blame] | 24 | #ifdef HAVE_CONFIG_H |
| 25 | #include <config.h> |
| 26 | #endif |
| 27 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 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> |
Kristian Høgsberg | f9112b2 | 2010-06-14 12:53:43 -0400 | [diff] [blame] | 36 | #include <linux/input.h> |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 37 | |
| 38 | #include <xcb/xcb.h> |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 39 | #include <X11/Xlib.h> |
| 40 | #include <X11/Xlib-xcb.h> |
| 41 | |
Daniel Stone | 576cd15 | 2012-06-01 12:14:02 +0100 | [diff] [blame] | 42 | #include <xkbcommon/xkbcommon.h> |
| 43 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 44 | #include <GLES2/gl2.h> |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 45 | #include <EGL/egl.h> |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 46 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 47 | #include "compositor.h" |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 48 | #include "../shared/config-parser.h" |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 49 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 50 | struct x11_compositor { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 51 | struct weston_compositor base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 52 | |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 53 | EGLSurface dummy_pbuffer; |
| 54 | |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 55 | Display *dpy; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 56 | xcb_connection_t *conn; |
| 57 | xcb_screen_t *screen; |
| 58 | xcb_cursor_t null_cursor; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 59 | struct wl_array keys; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 60 | struct wl_event_source *xcb_source; |
Daniel Stone | 576cd15 | 2012-06-01 12:14:02 +0100 | [diff] [blame] | 61 | struct xkb_keymap *xkb_keymap; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 62 | 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øgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 67 | xcb_atom_t wm_class; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 68 | xcb_atom_t net_wm_name; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 69 | xcb_atom_t net_wm_icon; |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 70 | xcb_atom_t net_wm_state; |
| 71 | xcb_atom_t net_wm_state_fullscreen; |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 72 | xcb_atom_t string; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 73 | xcb_atom_t utf8_string; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 74 | xcb_atom_t cardinal; |
Daniel Stone | 855028f | 2012-05-01 20:37:10 +0100 | [diff] [blame] | 75 | xcb_atom_t xkb_names; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 76 | } atom; |
| 77 | }; |
| 78 | |
| 79 | struct x11_output { |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 80 | struct weston_output base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 81 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 82 | xcb_window_t window; |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 83 | EGLSurface egl_surface; |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 84 | struct weston_mode mode; |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 85 | struct wl_event_source *finish_frame_timer; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | struct x11_input { |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 89 | struct weston_seat base; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 90 | }; |
| 91 | |
Daniel Stone | 576cd15 | 2012-06-01 12:14:02 +0100 | [diff] [blame] | 92 | static struct xkb_keymap * |
| 93 | x11_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øgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 134 | |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 135 | static int |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 136 | x11_input_create(struct x11_compositor *c) |
| 137 | { |
| 138 | struct x11_input *input; |
Daniel Stone | 576cd15 | 2012-06-01 12:14:02 +0100 | [diff] [blame] | 139 | struct xkb_keymap *keymap; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 140 | |
| 141 | input = malloc(sizeof *input); |
| 142 | if (input == NULL) |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 143 | return -1; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 144 | |
| 145 | memset(input, 0, sizeof *input); |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 146 | weston_seat_init(&input->base, &c->base); |
Daniel Stone | 74419a2 | 2012-05-30 16:32:02 +0100 | [diff] [blame] | 147 | weston_seat_init_pointer(&input->base); |
Daniel Stone | 576cd15 | 2012-06-01 12:14:02 +0100 | [diff] [blame] | 148 | |
| 149 | keymap = x11_compositor_get_keymap(c); |
| 150 | weston_seat_init_keyboard(&input->base, keymap); |
| 151 | if (keymap) |
| 152 | xkb_map_unref(keymap); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 153 | |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 154 | c->base.seat = &input->base; |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 155 | |
| 156 | return 0; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 157 | } |
| 158 | |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 159 | static void |
| 160 | x11_input_destroy(struct x11_compositor *compositor) |
| 161 | { |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 162 | struct x11_input *input = container_of(compositor->base.seat, |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 163 | struct x11_input, |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 164 | base); |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 165 | |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 166 | weston_seat_release(&input->base); |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 167 | free(input); |
| 168 | } |
| 169 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 170 | static int |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 171 | x11_compositor_init_egl(struct x11_compositor *c) |
| 172 | { |
Kristian Høgsberg | 379b678 | 2010-07-28 22:52:28 -0400 | [diff] [blame] | 173 | EGLint major, minor; |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 174 | EGLint n; |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 175 | EGLint config_attribs[] = { |
| 176 | EGL_SURFACE_TYPE, EGL_WINDOW_BIT, |
| 177 | EGL_RED_SIZE, 1, |
| 178 | EGL_GREEN_SIZE, 1, |
| 179 | EGL_BLUE_SIZE, 1, |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 180 | EGL_RENDERABLE_TYPE, EGL_OPENGL_ES2_BIT, |
| 181 | EGL_NONE |
| 182 | }; |
Kristian Høgsberg | 2c28aa5 | 2010-07-28 23:47:54 -0400 | [diff] [blame] | 183 | static const EGLint context_attribs[] = { |
| 184 | EGL_CONTEXT_CLIENT_VERSION, 2, |
| 185 | EGL_NONE |
| 186 | }; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 187 | |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 188 | static const EGLint pbuffer_attribs[] = { |
| 189 | EGL_WIDTH, 10, |
| 190 | EGL_HEIGHT, 10, |
| 191 | EGL_NONE |
| 192 | }; |
| 193 | |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 194 | c->base.display = eglGetDisplay(c->dpy); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 195 | if (c->base.display == NULL) { |
| 196 | fprintf(stderr, "failed to create display\n"); |
| 197 | return -1; |
| 198 | } |
| 199 | |
| 200 | if (!eglInitialize(c->base.display, &major, &minor)) { |
| 201 | fprintf(stderr, "failed to initialize display\n"); |
| 202 | return -1; |
| 203 | } |
| 204 | |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 205 | if (!eglBindAPI(EGL_OPENGL_ES_API)) { |
| 206 | fprintf(stderr, "failed to bind EGL_OPENGL_ES_API\n"); |
| 207 | return -1; |
| 208 | } |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 209 | if (!eglChooseConfig(c->base.display, config_attribs, |
| 210 | &c->base.config, 1, &n) || n == 0) { |
| 211 | fprintf(stderr, "failed to choose config: %d\n", n); |
| 212 | return -1; |
| 213 | } |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 214 | |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 215 | c->base.context = eglCreateContext(c->base.display, c->base.config, |
Kristian Høgsberg | 2c28aa5 | 2010-07-28 23:47:54 -0400 | [diff] [blame] | 216 | EGL_NO_CONTEXT, context_attribs); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 217 | if (c->base.context == NULL) { |
| 218 | fprintf(stderr, "failed to create context\n"); |
| 219 | return -1; |
| 220 | } |
| 221 | |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 222 | c->dummy_pbuffer = eglCreatePbufferSurface(c->base.display, |
| 223 | c->base.config, |
| 224 | pbuffer_attribs); |
Kristian Høgsberg | c0bc844 | 2012-05-17 09:40:23 -0400 | [diff] [blame] | 225 | if (c->dummy_pbuffer == NULL) { |
Kristian Høgsberg | b5ef591 | 2012-03-28 22:53:49 -0400 | [diff] [blame] | 226 | fprintf(stderr, "failed to create dummy pbuffer\n"); |
| 227 | return -1; |
| 228 | } |
| 229 | |
Cooper Yuan | 4577adc | 2012-04-30 14:16:46 -0400 | [diff] [blame] | 230 | if (!eglMakeCurrent(c->base.display, c->dummy_pbuffer, |
| 231 | c->dummy_pbuffer, c->base.context)) { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 232 | fprintf(stderr, "failed to make context current\n"); |
| 233 | return -1; |
| 234 | } |
| 235 | |
| 236 | return 0; |
| 237 | } |
| 238 | |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 239 | static void |
| 240 | x11_compositor_fini_egl(struct x11_compositor *compositor) |
| 241 | { |
| 242 | eglMakeCurrent(compositor->base.display, |
| 243 | EGL_NO_SURFACE, EGL_NO_SURFACE, |
| 244 | EGL_NO_CONTEXT); |
| 245 | |
| 246 | eglTerminate(compositor->base.display); |
| 247 | eglReleaseThread(); |
| 248 | } |
| 249 | |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 250 | static void |
Kristian Høgsberg | 6ddcdae | 2012-02-28 22:31:58 -0500 | [diff] [blame] | 251 | x11_output_repaint(struct weston_output *output_base, |
| 252 | pixman_region32_t *damage) |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 253 | { |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 254 | struct x11_output *output = (struct x11_output *)output_base; |
| 255 | struct x11_compositor *compositor = |
| 256 | (struct x11_compositor *)output->base.compositor; |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 257 | struct weston_surface *surface; |
| 258 | |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 259 | if (!eglMakeCurrent(compositor->base.display, output->egl_surface, |
| 260 | output->egl_surface, compositor->base.context)) { |
| 261 | fprintf(stderr, "failed to make current\n"); |
| 262 | return; |
| 263 | } |
| 264 | |
| 265 | wl_list_for_each_reverse(surface, &compositor->base.surface_list, link) |
Kristian Høgsberg | 6ddcdae | 2012-02-28 22:31:58 -0500 | [diff] [blame] | 266 | weston_surface_draw(surface, &output->base, damage); |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 267 | |
Scott Moreau | 062be7e | 2012-04-20 13:37:33 -0600 | [diff] [blame] | 268 | weston_output_do_read_pixels(&output->base); |
| 269 | |
Kristian Høgsberg | 06cf6b0 | 2012-01-25 23:47:45 -0500 | [diff] [blame] | 270 | eglSwapBuffers(compositor->base.display, output->egl_surface); |
| 271 | |
| 272 | wl_event_source_timer_update(output->finish_frame_timer, 10); |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 273 | } |
| 274 | |
Benjamin Franzke | ec4d342 | 2011-03-14 12:07:26 +0100 | [diff] [blame] | 275 | static int |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 276 | finish_frame_handler(void *data) |
| 277 | { |
| 278 | struct x11_output *output = data; |
| 279 | uint32_t msec; |
| 280 | struct timeval tv; |
| 281 | |
| 282 | gettimeofday(&tv, NULL); |
| 283 | msec = tv.tv_sec * 1000 + tv.tv_usec / 1000; |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 284 | weston_output_finish_frame(&output->base, msec); |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 285 | |
| 286 | return 1; |
| 287 | } |
| 288 | |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 289 | static void |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 290 | x11_output_destroy(struct weston_output *output_base) |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 291 | { |
Pekka Paalanen | 2de99e2 | 2012-01-03 11:51:03 +0200 | [diff] [blame] | 292 | struct x11_output *output = (struct x11_output *)output_base; |
| 293 | struct x11_compositor *compositor = |
| 294 | (struct x11_compositor *)output->base.compositor; |
| 295 | |
| 296 | wl_list_remove(&output->base.link); |
| 297 | wl_event_source_remove(output->finish_frame_timer); |
| 298 | |
| 299 | eglDestroySurface(compositor->base.display, output->egl_surface); |
| 300 | |
| 301 | xcb_destroy_window(compositor->conn, output->window); |
| 302 | |
Kristian Høgsberg | 3466bc8 | 2012-01-03 11:29:15 -0500 | [diff] [blame] | 303 | weston_output_destroy(&output->base); |
Pekka Paalanen | 2de99e2 | 2012-01-03 11:51:03 +0200 | [diff] [blame] | 304 | |
| 305 | free(output); |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 306 | } |
Benjamin Franzke | 431da9a | 2011-04-20 11:02:58 +0200 | [diff] [blame] | 307 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 308 | static void |
| 309 | x11_output_set_wm_protocols(struct x11_output *output) |
| 310 | { |
| 311 | xcb_atom_t list[1]; |
| 312 | struct x11_compositor *c = |
| 313 | (struct x11_compositor *) output->base.compositor; |
| 314 | |
| 315 | list[0] = c->atom.wm_delete_window; |
| 316 | xcb_change_property (c->conn, |
| 317 | XCB_PROP_MODE_REPLACE, |
| 318 | output->window, |
| 319 | c->atom.wm_protocols, |
| 320 | XCB_ATOM_ATOM, |
| 321 | 32, |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 322 | ARRAY_LENGTH(list), |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 323 | list); |
| 324 | } |
| 325 | |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 326 | static void |
| 327 | x11_output_change_state(struct x11_output *output, int add, xcb_atom_t state) |
| 328 | { |
| 329 | xcb_client_message_event_t event; |
| 330 | struct x11_compositor *c = |
| 331 | (struct x11_compositor *) output->base.compositor; |
| 332 | xcb_screen_iterator_t iter; |
| 333 | |
| 334 | #define _NET_WM_STATE_REMOVE 0 /* remove/unset property */ |
| 335 | #define _NET_WM_STATE_ADD 1 /* add/set property */ |
| 336 | #define _NET_WM_STATE_TOGGLE 2 /* toggle property */ |
| 337 | |
| 338 | memset(&event, 0, sizeof event); |
| 339 | event.response_type = XCB_CLIENT_MESSAGE; |
| 340 | event.format = 32; |
| 341 | event.window = output->window; |
| 342 | event.type = c->atom.net_wm_state; |
| 343 | |
| 344 | event.data.data32[0] = add ? _NET_WM_STATE_ADD : _NET_WM_STATE_REMOVE; |
| 345 | event.data.data32[1] = state; |
| 346 | event.data.data32[2] = 0; |
| 347 | event.data.data32[3] = 0; |
| 348 | event.data.data32[4] = 0; |
| 349 | |
| 350 | iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn)); |
| 351 | xcb_send_event(c->conn, 0, iter.data->root, |
| 352 | XCB_EVENT_MASK_SUBSTRUCTURE_NOTIFY | |
| 353 | XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT, |
| 354 | (void *) &event); |
| 355 | } |
| 356 | |
| 357 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 358 | struct wm_normal_hints { |
| 359 | uint32_t flags; |
| 360 | uint32_t pad[4]; |
| 361 | int32_t min_width, min_height; |
| 362 | int32_t max_width, max_height; |
| 363 | int32_t width_inc, height_inc; |
| 364 | int32_t min_aspect_x, min_aspect_y; |
| 365 | int32_t max_aspect_x, max_aspect_y; |
| 366 | int32_t base_width, base_height; |
| 367 | int32_t win_gravity; |
| 368 | }; |
| 369 | |
| 370 | #define WM_NORMAL_HINTS_MIN_SIZE 16 |
| 371 | #define WM_NORMAL_HINTS_MAX_SIZE 32 |
| 372 | |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 373 | static void |
Kristian Høgsberg | b41d76c | 2011-04-23 15:03:15 -0400 | [diff] [blame] | 374 | x11_output_set_icon(struct x11_compositor *c, |
| 375 | struct x11_output *output, const char *filename) |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 376 | { |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 377 | uint32_t *icon; |
Kristian Høgsberg | b41d76c | 2011-04-23 15:03:15 -0400 | [diff] [blame] | 378 | int32_t width, height; |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 379 | pixman_image_t *image; |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 380 | |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 381 | image = load_image(filename); |
| 382 | if (!image) |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 383 | return; |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 384 | width = pixman_image_get_width(image); |
| 385 | height = pixman_image_get_height(image); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 386 | icon = malloc(width * height * 4 + 8); |
| 387 | if (!icon) { |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 388 | pixman_image_unref(image); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 389 | return; |
| 390 | } |
| 391 | |
| 392 | icon[0] = width; |
| 393 | icon[1] = height; |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 394 | memcpy(icon + 2, pixman_image_get_data(image), width * height * 4); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 395 | xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 396 | c->atom.net_wm_icon, c->atom.cardinal, 32, |
| 397 | width * height + 2, icon); |
| 398 | free(icon); |
Kristian Høgsberg | f02a649 | 2012-03-12 01:05:25 -0400 | [diff] [blame] | 399 | pixman_image_unref(image); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 400 | } |
| 401 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 402 | static int |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 403 | x11_compositor_create_output(struct x11_compositor *c, int x, int y, |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 404 | int width, int height, int fullscreen) |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 405 | { |
Kristian Høgsberg | 8600040 | 2012-01-03 23:24:14 -0500 | [diff] [blame] | 406 | static const char name[] = "Weston Compositor"; |
| 407 | static const char class[] = "weston-1\0Weston Compositor"; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 408 | struct x11_output *output; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 409 | xcb_screen_iterator_t iter; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 410 | struct wm_normal_hints normal_hints; |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 411 | struct wl_event_loop *loop; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 412 | uint32_t mask = XCB_CW_EVENT_MASK | XCB_CW_CURSOR; |
| 413 | uint32_t values[2] = { |
| 414 | XCB_EVENT_MASK_KEY_PRESS | |
| 415 | XCB_EVENT_MASK_KEY_RELEASE | |
| 416 | XCB_EVENT_MASK_BUTTON_PRESS | |
| 417 | XCB_EVENT_MASK_BUTTON_RELEASE | |
| 418 | XCB_EVENT_MASK_POINTER_MOTION | |
| 419 | XCB_EVENT_MASK_EXPOSURE | |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 420 | XCB_EVENT_MASK_STRUCTURE_NOTIFY | |
| 421 | XCB_EVENT_MASK_ENTER_WINDOW | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 422 | XCB_EVENT_MASK_LEAVE_WINDOW | |
| 423 | XCB_EVENT_MASK_KEYMAP_STATE | |
| 424 | XCB_EVENT_MASK_FOCUS_CHANGE, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 425 | 0 |
| 426 | }; |
| 427 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 428 | output = malloc(sizeof *output); |
| 429 | if (output == NULL) |
| 430 | return -1; |
| 431 | |
| 432 | memset(output, 0, sizeof *output); |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 433 | |
| 434 | output->mode.flags = |
| 435 | WL_OUTPUT_MODE_CURRENT | WL_OUTPUT_MODE_PREFERRED; |
| 436 | output->mode.width = width; |
| 437 | output->mode.height = height; |
Kristian Høgsberg | c4621b0 | 2012-05-10 12:23:53 -0400 | [diff] [blame] | 438 | output->mode.refresh = 60000; |
Kristian Høgsberg | 8f0ce05 | 2011-06-21 11:16:58 -0400 | [diff] [blame] | 439 | wl_list_init(&output->base.mode_list); |
| 440 | wl_list_insert(&output->base.mode_list, &output->mode.link); |
| 441 | |
| 442 | output->base.current = &output->mode; |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 443 | weston_output_init(&output->base, &c->base, x, y, width, height, |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 444 | WL_OUTPUT_FLIPPED); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 445 | |
| 446 | values[1] = c->null_cursor; |
| 447 | output->window = xcb_generate_id(c->conn); |
| 448 | iter = xcb_setup_roots_iterator(xcb_get_setup(c->conn)); |
| 449 | xcb_create_window(c->conn, |
| 450 | XCB_COPY_FROM_PARENT, |
| 451 | output->window, |
| 452 | iter.data->root, |
| 453 | 0, 0, |
| 454 | width, height, |
| 455 | 0, |
| 456 | XCB_WINDOW_CLASS_INPUT_OUTPUT, |
| 457 | iter.data->root_visual, |
| 458 | mask, values); |
| 459 | |
| 460 | /* Don't resize me. */ |
| 461 | memset(&normal_hints, 0, sizeof normal_hints); |
| 462 | normal_hints.flags = |
| 463 | WM_NORMAL_HINTS_MAX_SIZE | WM_NORMAL_HINTS_MIN_SIZE; |
| 464 | normal_hints.min_width = width; |
| 465 | normal_hints.min_height = height; |
| 466 | normal_hints.max_width = width; |
| 467 | normal_hints.max_height = height; |
| 468 | xcb_change_property (c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 469 | c->atom.wm_normal_hints, |
| 470 | c->atom.wm_size_hints, 32, |
| 471 | sizeof normal_hints / 4, |
| 472 | (uint8_t *) &normal_hints); |
| 473 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 474 | /* Set window name. Don't bother with non-EWMH WMs. */ |
| 475 | xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 476 | c->atom.net_wm_name, c->atom.utf8_string, 8, |
| 477 | strlen(name), name); |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 478 | xcb_change_property(c->conn, XCB_PROP_MODE_REPLACE, output->window, |
| 479 | c->atom.wm_class, c->atom.string, 8, |
| 480 | sizeof class, class); |
| 481 | |
Kristian Høgsberg | 8600040 | 2012-01-03 23:24:14 -0500 | [diff] [blame] | 482 | x11_output_set_icon(c, output, DATADIR "/weston/wayland.png"); |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 483 | |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 484 | xcb_map_window(c->conn, output->window); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 485 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 486 | x11_output_set_wm_protocols(output); |
| 487 | |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 488 | if (fullscreen) |
| 489 | x11_output_change_state(output, 1, |
| 490 | c->atom.net_wm_state_fullscreen); |
| 491 | |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 492 | output->egl_surface = |
| 493 | eglCreateWindowSurface(c->base.display, c->base.config, |
| 494 | output->window, NULL); |
| 495 | if (!output->egl_surface) { |
| 496 | fprintf(stderr, "failed to create window surface\n"); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 497 | return -1; |
| 498 | } |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 499 | if (!eglMakeCurrent(c->base.display, output->egl_surface, |
| 500 | output->egl_surface, c->base.context)) { |
| 501 | fprintf(stderr, "failed to make surface current\n"); |
| 502 | return -1; |
| 503 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 504 | |
Kristian Høgsberg | 06a670f | 2011-10-29 14:39:13 -0400 | [diff] [blame] | 505 | loop = wl_display_get_event_loop(c->base.wl_display); |
| 506 | output->finish_frame_timer = |
| 507 | wl_event_loop_add_timer(loop, finish_frame_handler, output); |
| 508 | |
Alex Wu | bd3354b | 2012-04-17 17:20:49 +0800 | [diff] [blame] | 509 | output->base.origin = output->base.current; |
Kristian Høgsberg | 68c479a | 2012-01-25 23:32:28 -0500 | [diff] [blame] | 510 | output->base.repaint = x11_output_repaint; |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 511 | output->base.destroy = x11_output_destroy; |
Jesse Barnes | 5308a5e | 2012-02-09 13:12:57 -0800 | [diff] [blame] | 512 | output->base.assign_planes = NULL; |
Tiago Vignatti | 8e53c7f | 2012-02-29 19:53:50 +0200 | [diff] [blame] | 513 | output->base.set_backlight = NULL; |
| 514 | output->base.set_dpms = NULL; |
Alex Wu | 2dda604 | 2012-04-17 17:20:47 +0800 | [diff] [blame] | 515 | output->base.switch_mode = NULL; |
Benjamin Franzke | eefc36c | 2011-03-11 16:39:20 +0100 | [diff] [blame] | 516 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 517 | wl_list_insert(c->base.output_list.prev, &output->base.link); |
| 518 | |
| 519 | return 0; |
| 520 | } |
| 521 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 522 | static struct x11_output * |
| 523 | x11_compositor_find_output(struct x11_compositor *c, xcb_window_t window) |
| 524 | { |
| 525 | struct x11_output *output; |
| 526 | |
| 527 | wl_list_for_each(output, &c->base.output_list, base.link) { |
| 528 | if (output->window == window) |
| 529 | return output; |
| 530 | } |
| 531 | |
| 532 | return NULL; |
| 533 | } |
| 534 | |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 535 | static void |
| 536 | x11_compositor_deliver_button_event(struct x11_compositor *c, |
| 537 | xcb_generic_event_t *event, int state) |
| 538 | { |
| 539 | xcb_button_press_event_t *button_event = |
| 540 | (xcb_button_press_event_t *) event; |
Daniel Stone | 5d66371 | 2012-05-04 11:21:55 +0100 | [diff] [blame] | 541 | uint32_t button; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 542 | |
| 543 | switch (button_event->detail) { |
| 544 | default: |
| 545 | button = button_event->detail + BTN_LEFT - 1; |
| 546 | break; |
| 547 | case 2: |
| 548 | button = BTN_MIDDLE; |
| 549 | break; |
| 550 | case 3: |
| 551 | button = BTN_RIGHT; |
| 552 | break; |
| 553 | case 4: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 554 | if (state) |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 555 | notify_axis(&c->base.seat->seat, |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 556 | weston_compositor_get_time(), |
Daniel Stone | 878f0b7 | 2012-05-30 16:31:57 +0100 | [diff] [blame] | 557 | WL_POINTER_AXIS_VERTICAL_SCROLL, |
| 558 | wl_fixed_from_int(1)); |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 559 | return; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 560 | case 5: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 561 | if (state) |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 562 | notify_axis(&c->base.seat->seat, |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 563 | weston_compositor_get_time(), |
Daniel Stone | 878f0b7 | 2012-05-30 16:31:57 +0100 | [diff] [blame] | 564 | WL_POINTER_AXIS_VERTICAL_SCROLL, |
| 565 | wl_fixed_from_int(-1)); |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 566 | return; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 567 | case 6: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 568 | if (state) |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 569 | notify_axis(&c->base.seat->seat, |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 570 | weston_compositor_get_time(), |
Daniel Stone | 878f0b7 | 2012-05-30 16:31:57 +0100 | [diff] [blame] | 571 | WL_POINTER_AXIS_HORIZONTAL_SCROLL, |
| 572 | wl_fixed_from_int(1)); |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 573 | return; |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 574 | case 7: |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 575 | if (state) |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 576 | notify_axis(&c->base.seat->seat, |
Scott Moreau | 210d079 | 2012-03-22 10:47:01 -0600 | [diff] [blame] | 577 | weston_compositor_get_time(), |
Daniel Stone | 878f0b7 | 2012-05-30 16:31:57 +0100 | [diff] [blame] | 578 | WL_POINTER_AXIS_HORIZONTAL_SCROLL, |
| 579 | wl_fixed_from_int(-1)); |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 580 | return; |
| 581 | } |
| 582 | |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 583 | notify_button(&c->base.seat->seat, |
Daniel Stone | 4dbadb1 | 2012-05-30 16:31:51 +0100 | [diff] [blame] | 584 | weston_compositor_get_time(), button, |
| 585 | state ? WL_POINTER_BUTTON_STATE_PRESSED : |
| 586 | WL_POINTER_BUTTON_STATE_RELEASED); |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 587 | } |
| 588 | |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 589 | static int |
| 590 | x11_compositor_next_event(struct x11_compositor *c, |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 591 | xcb_generic_event_t **event, uint32_t mask) |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 592 | { |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 593 | if (mask & WL_EVENT_READABLE) { |
| 594 | *event = xcb_poll_for_event(c->conn); |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 595 | } else { |
Kristian Høgsberg | 82ed042 | 2011-04-25 15:41:59 -0400 | [diff] [blame] | 596 | #ifdef HAVE_XCB_POLL_FOR_QUEUED_EVENT |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 597 | *event = xcb_poll_for_queued_event(c->conn); |
Kristian Høgsberg | 82ed042 | 2011-04-25 15:41:59 -0400 | [diff] [blame] | 598 | #else |
| 599 | *event = xcb_poll_for_event(c->conn); |
| 600 | #endif |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | return *event != NULL; |
| 604 | } |
| 605 | |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 606 | static int |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 607 | x11_compositor_handle_event(int fd, uint32_t mask, void *data) |
| 608 | { |
| 609 | struct x11_compositor *c = data; |
| 610 | struct x11_output *output; |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 611 | xcb_generic_event_t *event, *prev; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 612 | xcb_client_message_event_t *client_message; |
| 613 | xcb_motion_notify_event_t *motion_notify; |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 614 | xcb_enter_notify_event_t *enter_notify; |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 615 | xcb_key_press_event_t *key_press, *key_release; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 616 | xcb_keymap_notify_event_t *keymap_notify; |
| 617 | xcb_focus_in_event_t *focus_in; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 618 | xcb_atom_t atom; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 619 | uint32_t *k; |
Kristian Høgsberg | 875ab9e | 2012-03-30 11:52:39 -0400 | [diff] [blame] | 620 | uint32_t i, set; |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 621 | wl_fixed_t x, y; |
Bill Spitzak | b715cec | 2012-06-05 17:08:23 -0400 | [diff] [blame] | 622 | int count; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 623 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 624 | prev = NULL; |
Bill Spitzak | b715cec | 2012-06-05 17:08:23 -0400 | [diff] [blame] | 625 | count = 0; |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 626 | while (x11_compositor_next_event(c, &event, mask)) { |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 627 | switch (prev ? prev->response_type & ~0x80 : 0x80) { |
| 628 | case XCB_KEY_RELEASE: |
| 629 | key_release = (xcb_key_press_event_t *) prev; |
| 630 | key_press = (xcb_key_press_event_t *) event; |
Daniel Stone | 351eb61 | 2012-05-31 15:27:47 -0400 | [diff] [blame] | 631 | /* XXX use XkbSetDetectableAutoRepeat */ |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 632 | if ((event->response_type & ~0x80) == XCB_KEY_PRESS && |
Dima Ryazanov | c224748 | 2011-08-16 17:25:32 -0700 | [diff] [blame] | 633 | key_release->time == key_press->time && |
| 634 | key_release->detail == key_press->detail) { |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 635 | /* Don't deliver the held key release |
| 636 | * event or the new key press event. */ |
| 637 | free(event); |
| 638 | free(prev); |
| 639 | prev = NULL; |
| 640 | continue; |
| 641 | } else { |
| 642 | /* Deliver the held key release now |
| 643 | * and fall through and handle the new |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 644 | * event below. */ |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 645 | notify_key(&c->base.seat->seat, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 646 | weston_compositor_get_time(), |
Daniel Stone | c9785ea | 2012-05-30 16:31:52 +0100 | [diff] [blame] | 647 | key_release->detail - 8, |
| 648 | WL_KEYBOARD_KEY_STATE_RELEASED); |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 649 | free(prev); |
| 650 | prev = NULL; |
| 651 | break; |
| 652 | } |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 653 | |
| 654 | case XCB_FOCUS_IN: |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 655 | /* assert event is keymap_notify */ |
| 656 | focus_in = (xcb_focus_in_event_t *) prev; |
| 657 | keymap_notify = (xcb_keymap_notify_event_t *) event; |
| 658 | c->keys.size = 0; |
| 659 | for (i = 0; i < ARRAY_LENGTH(keymap_notify->keys) * 8; i++) { |
| 660 | set = keymap_notify->keys[i >> 3] & |
| 661 | (1 << (i & 7)); |
| 662 | if (set) { |
| 663 | k = wl_array_add(&c->keys, sizeof *k); |
| 664 | *k = i; |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | output = x11_compositor_find_output(c, focus_in->event); |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 669 | notify_keyboard_focus(&c->base.seat->seat, &c->keys); |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 670 | |
| 671 | free(prev); |
| 672 | prev = NULL; |
| 673 | break; |
| 674 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 675 | default: |
| 676 | /* No previous event held */ |
| 677 | break; |
Kristian Høgsberg | 3ddd148 | 2011-04-15 15:48:07 -0400 | [diff] [blame] | 678 | } |
| 679 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 680 | switch (event->response_type & ~0x80) { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 681 | case XCB_KEY_PRESS: |
| 682 | key_press = (xcb_key_press_event_t *) event; |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 683 | notify_key(&c->base.seat->seat, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 684 | weston_compositor_get_time(), |
Daniel Stone | c9785ea | 2012-05-30 16:31:52 +0100 | [diff] [blame] | 685 | key_press->detail - 8, |
| 686 | WL_KEYBOARD_KEY_STATE_PRESSED); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 687 | break; |
| 688 | case XCB_KEY_RELEASE: |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 689 | prev = event; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 690 | break; |
| 691 | case XCB_BUTTON_PRESS: |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 692 | x11_compositor_deliver_button_event(c, event, 1); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 693 | break; |
| 694 | case XCB_BUTTON_RELEASE: |
Tiago Vignatti | a3a7162 | 2011-12-08 17:03:17 +0200 | [diff] [blame] | 695 | x11_compositor_deliver_button_event(c, event, 0); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 696 | break; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 697 | case XCB_MOTION_NOTIFY: |
| 698 | motion_notify = (xcb_motion_notify_event_t *) event; |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 699 | output = x11_compositor_find_output(c, motion_notify->event); |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 700 | x = wl_fixed_from_int(output->base.x + motion_notify->event_x); |
| 701 | y = wl_fixed_from_int(output->base.y + motion_notify->event_y); |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 702 | notify_motion(&c->base.seat->seat, |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 703 | weston_compositor_get_time(), x, y); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 704 | break; |
| 705 | |
| 706 | case XCB_EXPOSE: |
Benjamin Franzke | 84290d0 | 2011-03-02 10:07:59 +0100 | [diff] [blame] | 707 | /* FIXME: schedule output repaint */ |
| 708 | /* output = x11_compositor_find_output(c, expose->window); */ |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 709 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 710 | weston_compositor_schedule_repaint(&c->base); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 711 | break; |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 712 | |
| 713 | case XCB_ENTER_NOTIFY: |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 714 | enter_notify = (xcb_enter_notify_event_t *) event; |
Kristian Høgsberg | 2dfe626 | 2011-02-08 11:59:53 -0500 | [diff] [blame] | 715 | if (enter_notify->state >= Button1Mask) |
| 716 | break; |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 717 | output = x11_compositor_find_output(c, enter_notify->event); |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 718 | x = wl_fixed_from_int(output->base.x + enter_notify->event_x); |
| 719 | y = wl_fixed_from_int(output->base.y + enter_notify->event_y); |
Daniel Stone | 351eb61 | 2012-05-31 15:27:47 -0400 | [diff] [blame] | 720 | /* XXX notify_modifiers() */ |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 721 | |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 722 | notify_pointer_focus(&c->base.seat->seat, |
Kristian Høgsberg | e11bbe4 | 2012-05-09 12:19:04 -0400 | [diff] [blame] | 723 | &output->base, x, y); |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 724 | break; |
| 725 | |
| 726 | case XCB_LEAVE_NOTIFY: |
Kristian Høgsberg | 93331ff | 2011-01-26 20:35:07 -0500 | [diff] [blame] | 727 | enter_notify = (xcb_enter_notify_event_t *) event; |
Kristian Høgsberg | 2dfe626 | 2011-02-08 11:59:53 -0500 | [diff] [blame] | 728 | if (enter_notify->state >= Button1Mask) |
| 729 | break; |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 730 | output = x11_compositor_find_output(c, enter_notify->event); |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 731 | notify_pointer_focus(&c->base.seat->seat, NULL, 0, 0); |
Kristian Høgsberg | 86e0989 | 2010-07-07 09:51:11 -0400 | [diff] [blame] | 732 | break; |
| 733 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 734 | case XCB_CLIENT_MESSAGE: |
| 735 | client_message = (xcb_client_message_event_t *) event; |
| 736 | atom = client_message->data.data32[0]; |
| 737 | if (atom == c->atom.wm_delete_window) |
Kristian Høgsberg | 50dc698 | 2010-12-01 16:43:56 -0500 | [diff] [blame] | 738 | wl_display_terminate(c->base.wl_display); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 739 | break; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 740 | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 741 | case XCB_FOCUS_IN: |
| 742 | focus_in = (xcb_focus_in_event_t *) event; |
| 743 | if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED) |
| 744 | break; |
| 745 | |
Kristian Høgsberg | 025f7b8 | 2011-04-19 12:38:22 -0400 | [diff] [blame] | 746 | prev = event; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 747 | break; |
| 748 | |
| 749 | case XCB_FOCUS_OUT: |
| 750 | focus_in = (xcb_focus_in_event_t *) event; |
Kristian Høgsberg | 42e40ae | 2011-12-19 14:36:50 -0500 | [diff] [blame] | 751 | if (focus_in->mode == XCB_NOTIFY_MODE_WHILE_GRABBED || |
| 752 | focus_in->mode == XCB_NOTIFY_MODE_UNGRAB) |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 753 | break; |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 754 | notify_keyboard_focus(&c->base.seat->seat, NULL); |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 755 | break; |
| 756 | |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 757 | default: |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 758 | break; |
| 759 | } |
| 760 | |
Bill Spitzak | b715cec | 2012-06-05 17:08:23 -0400 | [diff] [blame] | 761 | count++; |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 762 | if (prev != event) |
Kristian Høgsberg | 3ddd148 | 2011-04-15 15:48:07 -0400 | [diff] [blame] | 763 | free (event); |
| 764 | } |
| 765 | |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 766 | switch (prev ? prev->response_type & ~0x80 : 0x80) { |
| 767 | case XCB_KEY_RELEASE: |
| 768 | key_release = (xcb_key_press_event_t *) prev; |
Daniel Stone | 37816df | 2012-05-16 18:45:18 +0100 | [diff] [blame] | 769 | notify_key(&c->base.seat->seat, |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 770 | weston_compositor_get_time(), |
Daniel Stone | c9785ea | 2012-05-30 16:31:52 +0100 | [diff] [blame] | 771 | key_release->detail - 8, |
| 772 | WL_KEYBOARD_KEY_STATE_RELEASED); |
Kristian Høgsberg | 94da7e1 | 2011-04-19 09:23:29 -0400 | [diff] [blame] | 773 | free(prev); |
| 774 | prev = NULL; |
| 775 | break; |
| 776 | default: |
| 777 | break; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 778 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 779 | |
Bill Spitzak | b715cec | 2012-06-05 17:08:23 -0400 | [diff] [blame] | 780 | return count; |
Kristian Høgsberg | ee72482 | 2011-04-21 14:51:44 -0400 | [diff] [blame] | 781 | } |
| 782 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 783 | #define F(field) offsetof(struct x11_compositor, field) |
| 784 | |
| 785 | static void |
| 786 | x11_compositor_get_resources(struct x11_compositor *c) |
| 787 | { |
| 788 | static const struct { const char *name; int offset; } atoms[] = { |
| 789 | { "WM_PROTOCOLS", F(atom.wm_protocols) }, |
| 790 | { "WM_NORMAL_HINTS", F(atom.wm_normal_hints) }, |
| 791 | { "WM_SIZE_HINTS", F(atom.wm_size_hints) }, |
| 792 | { "WM_DELETE_WINDOW", F(atom.wm_delete_window) }, |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 793 | { "WM_CLASS", F(atom.wm_class) }, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 794 | { "_NET_WM_NAME", F(atom.net_wm_name) }, |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 795 | { "_NET_WM_ICON", F(atom.net_wm_icon) }, |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 796 | { "_NET_WM_STATE", F(atom.net_wm_state) }, |
| 797 | { "_NET_WM_STATE_FULLSCREEN", F(atom.net_wm_state_fullscreen) }, |
Kristian Høgsberg | 24ed621 | 2011-01-26 14:02:31 -0500 | [diff] [blame] | 798 | { "STRING", F(atom.string) }, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 799 | { "UTF8_STRING", F(atom.utf8_string) }, |
Kristian Høgsberg | f58d8ca | 2011-01-26 14:37:07 -0500 | [diff] [blame] | 800 | { "CARDINAL", F(atom.cardinal) }, |
Daniel Stone | 855028f | 2012-05-01 20:37:10 +0100 | [diff] [blame] | 801 | { "_XKB_RULES_NAMES", F(atom.xkb_names) }, |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 802 | }; |
| 803 | |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 804 | xcb_intern_atom_cookie_t cookies[ARRAY_LENGTH(atoms)]; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 805 | xcb_intern_atom_reply_t *reply; |
| 806 | xcb_pixmap_t pixmap; |
| 807 | xcb_gc_t gc; |
Kristian Høgsberg | 875ab9e | 2012-03-30 11:52:39 -0400 | [diff] [blame] | 808 | unsigned int i; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 809 | uint8_t data[] = { 0, 0, 0, 0 }; |
| 810 | |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 811 | for (i = 0; i < ARRAY_LENGTH(atoms); i++) |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 812 | cookies[i] = xcb_intern_atom (c->conn, 0, |
| 813 | strlen(atoms[i].name), |
| 814 | atoms[i].name); |
| 815 | |
Kristian Høgsberg | 09e2692 | 2011-12-23 13:33:45 -0500 | [diff] [blame] | 816 | for (i = 0; i < ARRAY_LENGTH(atoms); i++) { |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 817 | reply = xcb_intern_atom_reply (c->conn, cookies[i], NULL); |
| 818 | *(xcb_atom_t *) ((char *) c + atoms[i].offset) = reply->atom; |
| 819 | free(reply); |
| 820 | } |
| 821 | |
| 822 | pixmap = xcb_generate_id(c->conn); |
| 823 | gc = xcb_generate_id(c->conn); |
| 824 | xcb_create_pixmap(c->conn, 1, pixmap, c->screen->root, 1, 1); |
| 825 | xcb_create_gc(c->conn, gc, pixmap, 0, NULL); |
| 826 | xcb_put_image(c->conn, XCB_IMAGE_FORMAT_XY_PIXMAP, |
| 827 | pixmap, gc, 1, 1, 0, 0, 0, 32, sizeof data, data); |
| 828 | c->null_cursor = xcb_generate_id(c->conn); |
| 829 | xcb_create_cursor (c->conn, c->null_cursor, |
| 830 | pixmap, pixmap, 0, 0, 0, 0, 0, 0, 1, 1); |
| 831 | xcb_free_gc(c->conn, gc); |
| 832 | xcb_free_pixmap(c->conn, pixmap); |
| 833 | } |
| 834 | |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 835 | static void |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 836 | x11_destroy(struct weston_compositor *ec) |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 837 | { |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 838 | struct x11_compositor *compositor = (struct x11_compositor *)ec; |
Matt Roper | 361d2ad | 2011-08-29 13:52:23 -0700 | [diff] [blame] | 839 | |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 840 | wl_event_source_remove(compositor->xcb_source); |
| 841 | x11_input_destroy(compositor); |
| 842 | |
Kristian Høgsberg | 3466bc8 | 2012-01-03 11:29:15 -0500 | [diff] [blame] | 843 | weston_compositor_shutdown(ec); /* destroys outputs, too */ |
Pekka Paalanen | 43c61d8 | 2012-01-03 11:58:34 +0200 | [diff] [blame] | 844 | |
| 845 | x11_compositor_fini_egl(compositor); |
| 846 | |
| 847 | XCloseDisplay(compositor->dpy); |
Kristian Høgsberg | caa6442 | 2010-12-01 16:52:15 -0500 | [diff] [blame] | 848 | free(ec); |
| 849 | } |
| 850 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 851 | static struct weston_compositor * |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 852 | x11_compositor_create(struct wl_display *display, |
Daniel Stone | baf4359 | 2012-06-01 11:11:10 -0400 | [diff] [blame] | 853 | int width, int height, int count, int fullscreen, |
Daniel Stone | c1be8e5 | 2012-06-01 11:14:02 -0400 | [diff] [blame] | 854 | int argc, char *argv[], const char *config_file) |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 855 | { |
| 856 | struct x11_compositor *c; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 857 | xcb_screen_iterator_t s; |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 858 | int i, x; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 859 | |
| 860 | c = malloc(sizeof *c); |
| 861 | if (c == NULL) |
| 862 | return NULL; |
| 863 | |
| 864 | memset(c, 0, sizeof *c); |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 865 | |
| 866 | c->dpy = XOpenDisplay(NULL); |
Cyril Brulebois | 2079829 | 2011-04-06 18:05:40 +0200 | [diff] [blame] | 867 | if (c->dpy == NULL) |
| 868 | return NULL; |
| 869 | |
Benjamin Franzke | 3b288af | 2011-02-20 19:58:42 +0100 | [diff] [blame] | 870 | c->conn = XGetXCBConnection(c->dpy); |
Benjamin Franzke | e997c5f | 2011-03-25 14:06:37 +0100 | [diff] [blame] | 871 | XSetEventQueueOwner(c->dpy, XCBOwnsEventQueue); |
| 872 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 873 | if (xcb_connection_has_error(c->conn)) |
| 874 | return NULL; |
| 875 | |
| 876 | s = xcb_setup_roots_iterator(xcb_get_setup(c->conn)); |
| 877 | c->screen = s.data; |
Kristian Høgsberg | 3ba4858 | 2011-01-27 11:57:19 -0500 | [diff] [blame] | 878 | wl_array_init(&c->keys); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 879 | |
| 880 | x11_compositor_get_resources(c); |
| 881 | |
Kristian Høgsberg | 5fcd0aa | 2010-08-09 14:43:33 -0400 | [diff] [blame] | 882 | c->base.wl_display = display; |
Tiago Vignatti | 997ce64 | 2010-11-10 02:42:35 +0200 | [diff] [blame] | 883 | if (x11_compositor_init_egl(c) < 0) |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 884 | return NULL; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 885 | |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 886 | c->base.destroy = x11_destroy; |
Kristian Høgsberg | 8525a50 | 2011-01-14 16:20:21 -0500 | [diff] [blame] | 887 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 888 | /* Can't init base class until we have a current egl context */ |
Daniel Stone | c1be8e5 | 2012-06-01 11:14:02 -0400 | [diff] [blame] | 889 | if (weston_compositor_init(&c->base, display, argc, argv, |
| 890 | config_file) < 0) |
Kristian Høgsberg | a946821 | 2010-06-14 21:03:11 -0400 | [diff] [blame] | 891 | return NULL; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 892 | |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 893 | for (i = 0, x = 0; i < count; i++) { |
| 894 | if (x11_compositor_create_output(c, x, 0, width, height, |
| 895 | fullscreen) < 0) |
| 896 | return NULL; |
| 897 | x += width; |
| 898 | } |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 899 | |
Darxus | 55973f2 | 2010-11-22 21:24:39 -0500 | [diff] [blame] | 900 | if (x11_input_create(c) < 0) |
| 901 | return NULL; |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 902 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 903 | c->xcb_source = |
Kristian Høgsberg | 22ba60e | 2012-03-12 01:18:24 -0400 | [diff] [blame] | 904 | wl_event_loop_add_fd(c->base.input_loop, |
| 905 | xcb_get_file_descriptor(c->conn), |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 906 | WL_EVENT_READABLE, |
| 907 | x11_compositor_handle_event, c); |
Kristian Høgsberg | 127d0f0 | 2011-04-22 12:18:13 -0400 | [diff] [blame] | 908 | wl_event_source_check(c->xcb_source); |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 909 | |
Kristian Høgsberg | ce5325d | 2010-06-14 11:54:00 -0400 | [diff] [blame] | 910 | return &c->base; |
| 911 | } |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 912 | |
Kristian Høgsberg | 8334bc1 | 2012-01-03 10:29:47 -0500 | [diff] [blame] | 913 | WL_EXPORT struct weston_compositor * |
Daniel Stone | c1be8e5 | 2012-06-01 11:14:02 -0400 | [diff] [blame] | 914 | backend_init(struct wl_display *display, int argc, char *argv[], |
| 915 | const char *config_file) |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 916 | { |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 917 | int width = 1024, height = 640, fullscreen = 0, count = 1; |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 918 | |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 919 | const struct weston_option x11_options[] = { |
| 920 | { WESTON_OPTION_INTEGER, "width", 0, &width }, |
| 921 | { WESTON_OPTION_INTEGER, "height", 0, &height }, |
| 922 | { WESTON_OPTION_BOOLEAN, "fullscreen", 0, &fullscreen }, |
| 923 | { WESTON_OPTION_INTEGER, "output-count", 0, &count }, |
Kristian Høgsberg | 83eeacb | 2011-06-18 04:20:54 -0400 | [diff] [blame] | 924 | }; |
Kristian Høgsberg | bcacef1 | 2012-03-11 21:05:57 -0400 | [diff] [blame] | 925 | |
| 926 | parse_options(x11_options, ARRAY_LENGTH(x11_options), argc, argv); |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 927 | |
Kristian Høgsberg | 1ccd9d2 | 2011-07-21 10:22:13 -0700 | [diff] [blame] | 928 | return x11_compositor_create(display, |
Daniel Stone | baf4359 | 2012-06-01 11:11:10 -0400 | [diff] [blame] | 929 | width, height, count, fullscreen, |
Daniel Stone | c1be8e5 | 2012-06-01 11:14:02 -0400 | [diff] [blame] | 930 | argc, argv, config_file); |
Kristian Høgsberg | 1c56218 | 2011-05-02 22:09:20 -0400 | [diff] [blame] | 931 | } |