2010-09-28 10:17:46 -04:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
2011-05-09 17:45:33 -04:00
|
|
|
* Copyright (C) 2010, 2011 Intel Corporation.
|
2010-09-28 10:17:46 -04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
* Authors:
|
|
|
|
* Matthew Allum
|
|
|
|
* Robert Bragg
|
|
|
|
* Kristian Høgsberg
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2012-01-10 11:40:59 -05:00
|
|
|
#include <sys/mman.h>
|
2010-09-28 10:17:46 -04:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
2010-10-21 06:29:09 -04:00
|
|
|
#include "clutter-debug.h"
|
|
|
|
#include "clutter-private.h"
|
2011-05-09 17:45:33 -04:00
|
|
|
#include "clutter-main.h"
|
2010-10-21 06:29:09 -04:00
|
|
|
#include "clutter-stage-private.h"
|
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
#include "wayland/clutter-backend-wayland.h"
|
2013-01-29 19:49:38 -05:00
|
|
|
#include "wayland/clutter-backend-wayland-priv.h"
|
2011-05-09 17:45:33 -04:00
|
|
|
#include "wayland/clutter-device-manager-wayland.h"
|
|
|
|
#include "wayland/clutter-event-wayland.h"
|
|
|
|
#include "wayland/clutter-stage-wayland.h"
|
2013-07-03 13:49:23 -04:00
|
|
|
#include "wayland/clutter-wayland.h"
|
2011-05-09 17:45:33 -04:00
|
|
|
#include "cogl/clutter-stage-cogl.h"
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
#include <wayland-client.h>
|
2012-10-08 08:25:36 -04:00
|
|
|
#include <wayland-cursor.h>
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2012-01-10 11:40:59 -05:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
2011-05-09 17:45:33 -04:00
|
|
|
#include <cogl/cogl.h>
|
2012-03-20 09:50:42 -04:00
|
|
|
#include <cogl/cogl-wayland-client.h>
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
G_DEFINE_TYPE (ClutterBackendWayland, clutter_backend_wayland, CLUTTER_TYPE_BACKEND);
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2013-07-03 13:49:23 -04:00
|
|
|
static struct wl_display *_foreign_display = NULL;
|
2013-07-15 13:27:33 -04:00
|
|
|
static gboolean _no_event_dispatch = FALSE;
|
2013-07-03 13:49:23 -04:00
|
|
|
|
2010-09-28 10:17:46 -04:00
|
|
|
static void
|
2011-05-09 17:45:33 -04:00
|
|
|
clutter_backend_wayland_dispose (GObject *gobject)
|
2010-09-28 10:17:46 -04:00
|
|
|
{
|
2011-05-09 17:45:33 -04:00
|
|
|
ClutterBackendWayland *backend_wayland = CLUTTER_BACKEND_WAYLAND (gobject);
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
if (backend_wayland->device_manager)
|
|
|
|
{
|
|
|
|
g_object_unref (backend_wayland->device_manager);
|
|
|
|
backend_wayland->device_manager = NULL;
|
|
|
|
}
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2012-01-10 11:40:59 -05:00
|
|
|
if (backend_wayland->cursor_buffer)
|
|
|
|
{
|
|
|
|
wl_buffer_destroy (backend_wayland->cursor_buffer);
|
|
|
|
backend_wayland->cursor_buffer = NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-08 08:25:36 -04:00
|
|
|
if (backend_wayland->cursor_theme)
|
|
|
|
{
|
|
|
|
wl_cursor_theme_destroy (backend_wayland->cursor_theme);
|
|
|
|
backend_wayland->cursor_theme = NULL;
|
|
|
|
}
|
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
G_OBJECT_CLASS (clutter_backend_wayland_parent_class)->dispose (gobject);
|
|
|
|
}
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2010-09-29 17:10:44 -04:00
|
|
|
|
2012-01-20 13:22:50 -05:00
|
|
|
static void
|
|
|
|
output_handle_mode (void *data,
|
|
|
|
struct wl_output *wl_output,
|
|
|
|
uint32_t flags,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
int refresh)
|
|
|
|
{
|
|
|
|
ClutterBackendWayland *backend_wayland = data;
|
|
|
|
|
|
|
|
if (flags & WL_OUTPUT_MODE_CURRENT)
|
|
|
|
{
|
|
|
|
backend_wayland->output_width = width;
|
|
|
|
backend_wayland->output_height = height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
output_handle_geometry (void *data,
|
|
|
|
struct wl_output *wl_output,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int physical_width,
|
|
|
|
int physical_height,
|
|
|
|
int subpixel,
|
|
|
|
const char *make,
|
2012-08-23 19:16:25 -04:00
|
|
|
const char *model,
|
|
|
|
int32_t transform)
|
2012-01-20 13:22:50 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct wl_output_listener wayland_output_listener = {
|
|
|
|
output_handle_geometry,
|
|
|
|
output_handle_mode,
|
|
|
|
};
|
|
|
|
|
2010-09-28 10:17:46 -04:00
|
|
|
|
|
|
|
static void
|
2012-10-12 13:54:25 -04:00
|
|
|
registry_handle_global (void *data,
|
|
|
|
struct wl_registry *registry,
|
|
|
|
uint32_t id,
|
|
|
|
const char *interface,
|
|
|
|
uint32_t version)
|
2010-09-28 10:17:46 -04:00
|
|
|
{
|
|
|
|
ClutterBackendWayland *backend_wayland = data;
|
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
if (strcmp (interface, "wl_compositor") == 0)
|
|
|
|
backend_wayland->wayland_compositor =
|
2012-10-12 13:54:25 -04:00
|
|
|
wl_registry_bind (registry, id, &wl_compositor_interface, 1);
|
2012-08-23 19:16:25 -04:00
|
|
|
else if (strcmp (interface, "wl_seat") == 0)
|
2010-09-28 10:17:46 -04:00
|
|
|
{
|
2011-05-09 17:45:33 -04:00
|
|
|
ClutterDeviceManager *device_manager = backend_wayland->device_manager;
|
|
|
|
_clutter_device_manager_wayland_add_input_group (device_manager, id);
|
2010-09-28 10:17:46 -04:00
|
|
|
}
|
2011-05-09 17:45:33 -04:00
|
|
|
else if (strcmp (interface, "wl_shell") == 0)
|
2010-09-28 10:17:46 -04:00
|
|
|
{
|
2011-05-09 17:45:33 -04:00
|
|
|
backend_wayland->wayland_shell =
|
2012-10-12 13:54:25 -04:00
|
|
|
wl_registry_bind (registry, id, &wl_shell_interface, 1);
|
2010-09-28 10:17:46 -04:00
|
|
|
}
|
2011-05-09 17:45:33 -04:00
|
|
|
else if (strcmp (interface, "wl_shm") == 0)
|
2012-01-20 13:22:50 -05:00
|
|
|
{
|
|
|
|
backend_wayland->wayland_shm =
|
2012-10-12 13:54:25 -04:00
|
|
|
wl_registry_bind (registry, id, &wl_shm_interface, 1);
|
2012-01-20 13:22:50 -05:00
|
|
|
}
|
|
|
|
else if (strcmp (interface, "wl_output") == 0)
|
|
|
|
{
|
|
|
|
/* FIXME: Support multiple outputs */
|
|
|
|
backend_wayland->wayland_output =
|
2012-10-12 13:54:25 -04:00
|
|
|
wl_registry_bind (registry, id, &wl_output_interface, 1);
|
2012-01-20 13:22:50 -05:00
|
|
|
wl_output_add_listener (backend_wayland->wayland_output,
|
|
|
|
&wayland_output_listener,
|
|
|
|
backend_wayland);
|
|
|
|
}
|
2011-02-08 10:45:39 -05:00
|
|
|
}
|
|
|
|
|
2012-10-12 13:54:25 -04:00
|
|
|
static const struct wl_registry_listener wayland_registry_listener = {
|
|
|
|
registry_handle_global,
|
|
|
|
};
|
|
|
|
|
2011-01-31 00:05:28 -05:00
|
|
|
static gboolean
|
|
|
|
clutter_backend_wayland_post_parse (ClutterBackend *backend,
|
2011-05-09 17:45:33 -04:00
|
|
|
GError **error)
|
2011-01-31 00:05:28 -05:00
|
|
|
{
|
|
|
|
ClutterBackendWayland *backend_wayland = CLUTTER_BACKEND_WAYLAND (backend);
|
|
|
|
|
|
|
|
/* TODO: expose environment variable/commandline option for this... */
|
2013-07-03 13:49:23 -04:00
|
|
|
backend_wayland->wayland_display = _foreign_display;
|
|
|
|
if (backend_wayland->wayland_display == NULL)
|
|
|
|
backend_wayland->wayland_display = wl_display_connect (NULL);
|
|
|
|
|
2011-01-31 00:05:28 -05:00
|
|
|
if (!backend_wayland->wayland_display)
|
|
|
|
{
|
|
|
|
g_set_error (error, CLUTTER_INIT_ERROR,
|
2011-05-09 17:45:33 -04:00
|
|
|
CLUTTER_INIT_ERROR_BACKEND,
|
|
|
|
"Failed to open Wayland display socket");
|
2011-01-31 00:05:28 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2012-10-12 13:54:25 -04:00
|
|
|
backend_wayland->wayland_registry =
|
|
|
|
wl_display_get_registry (backend_wayland->wayland_display);
|
|
|
|
|
2011-01-31 00:05:28 -05:00
|
|
|
backend_wayland->wayland_source =
|
|
|
|
_clutter_event_source_wayland_new (backend_wayland->wayland_display);
|
|
|
|
g_source_attach (backend_wayland->wayland_source, NULL);
|
|
|
|
|
2012-09-17 20:49:00 -04:00
|
|
|
g_object_set (clutter_settings_get_default (), "font-dpi", 96 * 1024, NULL);
|
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
/* XXX: We require the device manager to exist as soon as we connect to the
|
|
|
|
* compositor and setup an event handler because we will immediately be
|
|
|
|
* notified of the available input devices which need to be associated with
|
|
|
|
* the device-manager.
|
|
|
|
*
|
|
|
|
* FIXME: At some point we could perhaps just collapse the
|
|
|
|
* _clutter_backend_post_parse(), and _clutter_backend_init_events()
|
|
|
|
* functions into one called something like _clutter_backend_init() which
|
|
|
|
* would allow the real backend to manage the precise order of
|
|
|
|
* initialization.
|
|
|
|
*/
|
|
|
|
backend_wayland->device_manager =
|
|
|
|
_clutter_device_manager_wayland_new (backend);
|
|
|
|
|
2011-01-31 00:05:28 -05:00
|
|
|
/* Set up listener so we'll catch all events. */
|
2012-10-12 13:54:25 -04:00
|
|
|
wl_registry_add_listener (backend_wayland->wayland_registry,
|
|
|
|
&wayland_registry_listener,
|
|
|
|
backend_wayland);
|
2011-01-31 00:05:28 -05:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
/* Wait until we have been notified about the compositor and shell objects */
|
|
|
|
while (!(backend_wayland->wayland_compositor &&
|
|
|
|
backend_wayland->wayland_shell))
|
|
|
|
wl_display_roundtrip (backend_wayland->wayland_display);
|
2010-09-28 10:17:46 -04:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
static CoglRenderer *
|
|
|
|
clutter_backend_wayland_get_renderer (ClutterBackend *backend,
|
|
|
|
GError **error)
|
2010-09-28 10:17:46 -04:00
|
|
|
{
|
|
|
|
ClutterBackendWayland *backend_wayland = CLUTTER_BACKEND_WAYLAND (backend);
|
2011-05-09 17:45:33 -04:00
|
|
|
CoglRenderer *renderer;
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
CLUTTER_NOTE (BACKEND, "Creating a new wayland renderer");
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
renderer = cogl_renderer_new ();
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2013-07-15 13:27:33 -04:00
|
|
|
cogl_wayland_renderer_set_event_dispatch_enabled (renderer, !_no_event_dispatch);
|
2012-02-29 11:35:48 -05:00
|
|
|
cogl_renderer_set_winsys_id (renderer, COGL_WINSYS_ID_EGL_WAYLAND);
|
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
cogl_wayland_renderer_set_foreign_display (renderer,
|
|
|
|
backend_wayland->wayland_display);
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
return renderer;
|
2010-09-28 10:17:46 -04:00
|
|
|
}
|
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
static CoglDisplay *
|
|
|
|
clutter_backend_wayland_get_display (ClutterBackend *backend,
|
|
|
|
CoglRenderer *renderer,
|
|
|
|
CoglSwapChain *swap_chain,
|
|
|
|
GError **error)
|
2010-09-28 10:17:46 -04:00
|
|
|
{
|
2011-05-09 17:45:33 -04:00
|
|
|
CoglOnscreenTemplate *onscreen_template = NULL;
|
|
|
|
CoglDisplay *display;
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
onscreen_template = cogl_onscreen_template_new (swap_chain);
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
/* XXX: I have some doubts that this is a good design.
|
|
|
|
* Conceptually should we be able to check an onscreen_template
|
|
|
|
* without more details about the CoglDisplay configuration?
|
|
|
|
*/
|
|
|
|
if (!cogl_renderer_check_onscreen_template (renderer,
|
|
|
|
onscreen_template,
|
|
|
|
error))
|
|
|
|
goto error;
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
display = cogl_display_new (renderer, onscreen_template);
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
return display;
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
error:
|
|
|
|
if (onscreen_template)
|
|
|
|
cogl_object_unref (onscreen_template);
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
return NULL;
|
2010-09-28 10:17:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-05-09 17:45:33 -04:00
|
|
|
clutter_backend_wayland_class_init (ClutterBackendWaylandClass *klass)
|
2010-09-28 10:17:46 -04:00
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
ClutterBackendClass *backend_class = CLUTTER_BACKEND_CLASS (klass);
|
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
gobject_class->dispose = clutter_backend_wayland_dispose;
|
2010-09-28 10:17:46 -04:00
|
|
|
|
2011-11-04 14:27:08 -04:00
|
|
|
backend_class->stage_window_type = CLUTTER_TYPE_STAGE_WAYLAND;
|
|
|
|
|
2011-05-09 17:45:33 -04:00
|
|
|
backend_class->post_parse = clutter_backend_wayland_post_parse;
|
|
|
|
backend_class->get_renderer = clutter_backend_wayland_get_renderer;
|
|
|
|
backend_class->get_display = clutter_backend_wayland_get_display;
|
2010-09-28 10:17:46 -04:00
|
|
|
}
|
|
|
|
|
2013-10-05 09:58:19 -04:00
|
|
|
void
|
|
|
|
_clutter_backend_wayland_ensure_cursor (ClutterBackendWayland *backend_wayland)
|
2012-01-10 11:40:59 -05:00
|
|
|
{
|
2012-10-08 08:25:36 -04:00
|
|
|
struct wl_cursor *cursor;
|
2012-01-10 11:40:59 -05:00
|
|
|
|
2012-10-08 08:25:36 -04:00
|
|
|
backend_wayland->cursor_theme =
|
|
|
|
wl_cursor_theme_load (NULL, /* default */
|
|
|
|
32,
|
|
|
|
backend_wayland->wayland_shm);
|
2012-01-10 11:40:59 -05:00
|
|
|
|
2012-10-08 08:25:36 -04:00
|
|
|
cursor = wl_cursor_theme_get_cursor (backend_wayland->cursor_theme,
|
|
|
|
"left_ptr");
|
2012-01-10 11:40:59 -05:00
|
|
|
|
2012-10-08 08:25:36 -04:00
|
|
|
backend_wayland->cursor_buffer =
|
|
|
|
wl_cursor_image_get_buffer (cursor->images[0]);
|
2012-01-10 11:40:59 -05:00
|
|
|
|
|
|
|
if (backend_wayland->cursor_buffer)
|
|
|
|
{
|
2012-10-08 08:25:36 -04:00
|
|
|
backend_wayland->cursor_x = cursor->images[0]->hotspot_x;
|
|
|
|
backend_wayland->cursor_y = cursor->images[0]->hotspot_y;
|
2012-01-10 11:40:59 -05:00
|
|
|
}
|
|
|
|
|
2012-08-23 19:16:25 -04:00
|
|
|
backend_wayland->cursor_surface =
|
|
|
|
wl_compositor_create_surface (backend_wayland->wayland_compositor);
|
2012-01-10 11:40:59 -05:00
|
|
|
}
|
|
|
|
|
2010-09-28 10:17:46 -04:00
|
|
|
static void
|
2011-05-09 17:45:33 -04:00
|
|
|
clutter_backend_wayland_init (ClutterBackendWayland *backend_wayland)
|
2010-09-28 10:17:46 -04:00
|
|
|
{
|
|
|
|
}
|
2013-07-03 13:49:23 -04:00
|
|
|
|
2015-12-11 09:23:38 -05:00
|
|
|
ClutterBackend *
|
|
|
|
clutter_backend_wayland_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (CLUTTER_TYPE_BACKEND_WAYLAND, NULL);
|
|
|
|
}
|
|
|
|
|
2013-07-03 13:49:23 -04:00
|
|
|
/**
|
|
|
|
* clutter_wayland_set_display
|
|
|
|
* @display: pointer to a wayland display
|
|
|
|
*
|
|
|
|
* Sets the display connection Clutter should use; must be called
|
|
|
|
* before clutter_init(), clutter_init_with_args() or other functions
|
|
|
|
* pertaining Clutter's initialization process.
|
|
|
|
*
|
|
|
|
* If you are parsing the command line arguments by retrieving Clutter's
|
|
|
|
* #GOptionGroup with clutter_get_option_group() and calling
|
|
|
|
* g_option_context_parse() yourself, you should also call
|
|
|
|
* clutter_wayland_set_display() before g_option_context_parse().
|
|
|
|
*
|
|
|
|
* Since: 1.16
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_wayland_set_display (struct wl_display *display)
|
|
|
|
{
|
|
|
|
if (_clutter_context_is_initialized ())
|
|
|
|
{
|
|
|
|
g_warning ("%s() can only be used before calling clutter_init()",
|
|
|
|
G_STRFUNC);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_foreign_display = display;
|
|
|
|
}
|
2013-07-15 13:27:33 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_wayland_disable_event_retrieval:
|
|
|
|
*
|
|
|
|
* Disables the dispatch of the events in the main loop.
|
|
|
|
*
|
|
|
|
* This is useful for integrating Clutter with another library that will do the
|
|
|
|
* event dispatch; in general only a single source should be acting on changes
|
|
|
|
* on the Wayland file descriptor.
|
|
|
|
*
|
2014-03-17 19:10:07 -04:00
|
|
|
* This function can only be called before calling clutter_init().
|
2013-07-15 13:27:33 -04:00
|
|
|
*
|
|
|
|
* This function should not be normally used by applications.
|
|
|
|
*
|
|
|
|
* Since: 1.16
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_wayland_disable_event_retrieval (void)
|
|
|
|
{
|
|
|
|
if (_clutter_context_is_initialized ())
|
|
|
|
{
|
|
|
|
g_warning ("%s() can only be used before calling clutter_init()",
|
|
|
|
G_STRFUNC);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_no_event_dispatch = TRUE;
|
|
|
|
}
|