2014-04-21 23:13:04 +00:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Red Hat
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Written by:
|
|
|
|
* Jasper St. Pierre <jstpierre@mecheye.net>
|
|
|
|
*/
|
|
|
|
|
2018-10-19 07:15:54 +00:00
|
|
|
/**
|
|
|
|
* SECTION:meta-backend-x11
|
|
|
|
* @title: MetaBackendX11
|
|
|
|
* @short_description: A X11 MetaBackend
|
|
|
|
*
|
|
|
|
* MetaBackendX11 is an implementation of #MetaBackend using X and X
|
|
|
|
* extensions, like XInput and XKB.
|
|
|
|
*/
|
|
|
|
|
2014-04-21 23:13:04 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "backends/x11/meta-backend-x11.h"
|
2014-04-21 23:47:04 +00:00
|
|
|
|
2014-08-04 14:47:35 +00:00
|
|
|
#include <X11/XKBlib.h>
|
|
|
|
#include <X11/Xlib-xcb.h>
|
2018-07-10 08:36:24 +00:00
|
|
|
#include <X11/extensions/sync.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-08-04 14:47:35 +00:00
|
|
|
#include <xkbcommon/xkbcommon-x11.h>
|
2014-04-22 14:14:59 +00:00
|
|
|
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "backends/meta-idle-monitor-private.h"
|
2018-05-02 16:53:11 +00:00
|
|
|
#include "backends/meta-stage-private.h"
|
2016-05-04 08:19:23 +00:00
|
|
|
#include "backends/x11/meta-clutter-backend-x11.h"
|
2019-03-22 12:53:00 +00:00
|
|
|
#include "backends/x11/meta-event-x11.h"
|
|
|
|
#include "backends/x11/meta-stage-x11.h"
|
2016-05-07 15:07:46 +00:00
|
|
|
#include "backends/x11/meta-renderer-x11.h"
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#include "clutter/x11/clutter-x11.h"
|
2014-04-23 18:50:27 +00:00
|
|
|
#include "compositor/compositor-private.h"
|
2018-07-10 08:36:24 +00:00
|
|
|
#include "core/display-private.h"
|
|
|
|
#include "meta/meta-cursor-tracker.h"
|
|
|
|
#include "meta/util.h"
|
2014-04-23 14:50:07 +00:00
|
|
|
|
2014-04-22 14:14:59 +00:00
|
|
|
struct _MetaBackendX11Private
|
|
|
|
{
|
|
|
|
/* The host X11 display */
|
|
|
|
Display *xdisplay;
|
2014-08-04 14:47:35 +00:00
|
|
|
xcb_connection_t *xcb;
|
2014-04-22 14:14:59 +00:00
|
|
|
GSource *source;
|
|
|
|
|
|
|
|
int xsync_event_base;
|
|
|
|
int xsync_error_base;
|
2018-04-12 15:36:58 +00:00
|
|
|
XSyncAlarm user_active_alarm;
|
|
|
|
XSyncCounter counter;
|
2014-04-23 17:59:58 +00:00
|
|
|
|
x11: Limit touch replay pointer events to when replaying
When a touch sequence was rejected, the emulated pointer events would be
replayed with old timestamps. This caused issues with grabs as they
would be ignored due to being too old. This was mitigated by making sure
device event timestamps never travelled back in time by tampering with
any event that had a timestamp seemingly in the past.
This failed when the most recent timestamp that had been received were
much older than the timestamp of the new event. This could for example
happen when a session was left not interacted with for 40+ days or so;
when interacted with again, as any new timestamp would according to
XSERVER_TIME_IS_BEFORE() still be in the past compared to the "most
recent" one. The effect is that we'd always use the `latest_evtime` for
all new device events without ever updating it.
The end result of this was that passive grabs would become active when
interacted with, but would then newer be released, as the timestamps to
XIAllowEvents() would out of date, resulting in the desktop effectively
freezing, as the Shell would have an active pointer grab.
To avoid the situation where we get stuck with an old `latest_evtime`
timestamp, limit the tampering with device event timestamp to 1) only
pointer events, and 2) only during the replay sequence. The second part
is implemented by sending an asynchronous message via the X server after
rejecting a touch sequence, only potentially tampering with the device
event timestamps until the reply. This should avoid the stuck timestamp
as in those situations, we'll always have a relatively up to date
`latest_evtime` meaning XSERVER_TIME_IS_BEFORE() will not get confused.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/886
2019-10-25 08:06:55 +00:00
|
|
|
int current_touch_replay_sync_serial;
|
|
|
|
int pending_touch_replay_sync_serial;
|
|
|
|
Atom touch_replay_sync_atom;
|
|
|
|
|
2014-04-23 17:59:58 +00:00
|
|
|
int xinput_opcode;
|
|
|
|
int xinput_event_base;
|
|
|
|
int xinput_error_base;
|
2014-06-19 21:16:50 +00:00
|
|
|
Time latest_evtime;
|
2014-08-04 14:47:35 +00:00
|
|
|
|
|
|
|
uint8_t xkb_event_base;
|
|
|
|
uint8_t xkb_error_base;
|
2014-08-14 21:23:20 +00:00
|
|
|
|
|
|
|
struct xkb_keymap *keymap;
|
2017-08-17 09:01:50 +00:00
|
|
|
xkb_layout_index_t keymap_layout_group;
|
2016-12-01 04:59:47 +00:00
|
|
|
|
|
|
|
MetaLogicalMonitor *cached_current_logical_monitor;
|
2014-04-22 14:14:59 +00:00
|
|
|
};
|
|
|
|
typedef struct _MetaBackendX11Private MetaBackendX11Private;
|
|
|
|
|
2017-07-10 08:50:43 +00:00
|
|
|
static GInitableIface *initable_parent_iface;
|
|
|
|
|
|
|
|
static void
|
|
|
|
initable_iface_init (GInitableIface *initable_iface);
|
|
|
|
|
|
|
|
G_DEFINE_TYPE_WITH_CODE (MetaBackendX11, meta_backend_x11, META_TYPE_BACKEND,
|
|
|
|
G_ADD_PRIVATE (MetaBackendX11)
|
|
|
|
G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE,
|
|
|
|
initable_iface_init));
|
2014-04-22 14:14:59 +00:00
|
|
|
|
2018-04-12 15:36:58 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
uint64_to_xsync_value (uint64_t value,
|
|
|
|
XSyncValue *xsync_value)
|
|
|
|
{
|
|
|
|
XSyncIntsToValue (xsync_value, value & 0xffffffff, value >> 32);
|
|
|
|
}
|
|
|
|
|
|
|
|
static XSyncAlarm
|
|
|
|
xsync_user_active_alarm_set (MetaBackendX11Private *priv)
|
|
|
|
{
|
|
|
|
XSyncAlarmAttributes attr;
|
|
|
|
XSyncValue delta;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
flags = (XSyncCACounter | XSyncCAValueType | XSyncCATestType |
|
|
|
|
XSyncCAValue | XSyncCADelta | XSyncCAEvents);
|
|
|
|
|
|
|
|
XSyncIntToValue (&delta, 0);
|
|
|
|
attr.trigger.counter = priv->counter;
|
|
|
|
attr.trigger.value_type = XSyncAbsolute;
|
|
|
|
attr.delta = delta;
|
|
|
|
attr.events = TRUE;
|
|
|
|
|
|
|
|
uint64_to_xsync_value (1, &attr.trigger.wait_value);
|
|
|
|
|
|
|
|
attr.trigger.test_type = XSyncNegativeTransition;
|
|
|
|
return XSyncCreateAlarm (priv->xdisplay, flags, &attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static XSyncCounter
|
|
|
|
find_idletime_counter (MetaBackendX11Private *priv)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int n_counters;
|
|
|
|
XSyncSystemCounter *counters;
|
|
|
|
XSyncCounter counter = None;
|
|
|
|
|
|
|
|
counters = XSyncListSystemCounters (priv->xdisplay, &n_counters);
|
|
|
|
for (i = 0; i < n_counters; i++)
|
|
|
|
{
|
|
|
|
if (g_strcmp0 (counters[i].name, "IDLETIME") == 0)
|
|
|
|
{
|
|
|
|
counter = counters[i].counter;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
XSyncFreeSystemCounterList (counters);
|
|
|
|
|
|
|
|
return counter;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_alarm_notify (MetaBackend *backend,
|
|
|
|
XSyncAlarmNotifyEvent *alarm_event)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
MetaIdleMonitor *idle_monitor;
|
|
|
|
XSyncAlarmAttributes attr;
|
|
|
|
|
|
|
|
if (alarm_event->state != XSyncAlarmActive ||
|
|
|
|
alarm_event->alarm != priv->user_active_alarm)
|
|
|
|
return;
|
|
|
|
|
|
|
|
attr.events = TRUE;
|
|
|
|
XSyncChangeAlarm (priv->xdisplay, priv->user_active_alarm,
|
|
|
|
XSyncCAEvents, &attr);
|
|
|
|
|
|
|
|
idle_monitor = meta_backend_get_idle_monitor (backend, 0);
|
|
|
|
meta_idle_monitor_reset_idletime (idle_monitor);
|
|
|
|
}
|
|
|
|
|
2017-01-27 15:04:02 +00:00
|
|
|
static void
|
|
|
|
meta_backend_x11_translate_device_event (MetaBackendX11 *x11,
|
|
|
|
XIDeviceEvent *device_event)
|
|
|
|
{
|
|
|
|
MetaBackendX11Class *backend_x11_class =
|
|
|
|
META_BACKEND_X11_GET_CLASS (x11);
|
|
|
|
|
|
|
|
backend_x11_class->translate_device_event (x11, device_event);
|
|
|
|
}
|
|
|
|
|
x11: Limit touch replay pointer events to when replaying
When a touch sequence was rejected, the emulated pointer events would be
replayed with old timestamps. This caused issues with grabs as they
would be ignored due to being too old. This was mitigated by making sure
device event timestamps never travelled back in time by tampering with
any event that had a timestamp seemingly in the past.
This failed when the most recent timestamp that had been received were
much older than the timestamp of the new event. This could for example
happen when a session was left not interacted with for 40+ days or so;
when interacted with again, as any new timestamp would according to
XSERVER_TIME_IS_BEFORE() still be in the past compared to the "most
recent" one. The effect is that we'd always use the `latest_evtime` for
all new device events without ever updating it.
The end result of this was that passive grabs would become active when
interacted with, but would then newer be released, as the timestamps to
XIAllowEvents() would out of date, resulting in the desktop effectively
freezing, as the Shell would have an active pointer grab.
To avoid the situation where we get stuck with an old `latest_evtime`
timestamp, limit the tampering with device event timestamp to 1) only
pointer events, and 2) only during the replay sequence. The second part
is implemented by sending an asynchronous message via the X server after
rejecting a touch sequence, only potentially tampering with the device
event timestamps until the reply. This should avoid the stuck timestamp
as in those situations, we'll always have a relatively up to date
`latest_evtime` meaning XSERVER_TIME_IS_BEFORE() will not get confused.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/886
2019-10-25 08:06:55 +00:00
|
|
|
static void
|
|
|
|
maybe_translate_touch_replay_pointer_event (MetaBackendX11 *x11,
|
|
|
|
XIDeviceEvent *device_event)
|
|
|
|
{
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
if (!device_event->send_event &&
|
|
|
|
device_event->time != META_CURRENT_TIME &&
|
|
|
|
priv->current_touch_replay_sync_serial !=
|
|
|
|
priv->pending_touch_replay_sync_serial &&
|
|
|
|
XSERVER_TIME_IS_BEFORE (device_event->time, priv->latest_evtime))
|
|
|
|
{
|
|
|
|
/* Emulated pointer events received after XIRejectTouch is received
|
|
|
|
* on a passive touch grab will contain older timestamps, update those
|
|
|
|
* so we dont get InvalidTime at grabs.
|
|
|
|
*/
|
|
|
|
device_event->time = priv->latest_evtime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-28 17:22:17 +00:00
|
|
|
static void
|
|
|
|
translate_device_event (MetaBackendX11 *x11,
|
|
|
|
XIDeviceEvent *device_event)
|
|
|
|
{
|
2014-06-19 21:16:50 +00:00
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
2014-04-28 17:27:02 +00:00
|
|
|
|
2017-01-27 15:04:02 +00:00
|
|
|
meta_backend_x11_translate_device_event (x11, device_event);
|
2014-06-19 21:16:50 +00:00
|
|
|
|
2017-08-26 20:24:21 +00:00
|
|
|
if (!device_event->send_event && device_event->time != META_CURRENT_TIME)
|
x11: Limit touch replay pointer events to when replaying
When a touch sequence was rejected, the emulated pointer events would be
replayed with old timestamps. This caused issues with grabs as they
would be ignored due to being too old. This was mitigated by making sure
device event timestamps never travelled back in time by tampering with
any event that had a timestamp seemingly in the past.
This failed when the most recent timestamp that had been received were
much older than the timestamp of the new event. This could for example
happen when a session was left not interacted with for 40+ days or so;
when interacted with again, as any new timestamp would according to
XSERVER_TIME_IS_BEFORE() still be in the past compared to the "most
recent" one. The effect is that we'd always use the `latest_evtime` for
all new device events without ever updating it.
The end result of this was that passive grabs would become active when
interacted with, but would then newer be released, as the timestamps to
XIAllowEvents() would out of date, resulting in the desktop effectively
freezing, as the Shell would have an active pointer grab.
To avoid the situation where we get stuck with an old `latest_evtime`
timestamp, limit the tampering with device event timestamp to 1) only
pointer events, and 2) only during the replay sequence. The second part
is implemented by sending an asynchronous message via the X server after
rejecting a touch sequence, only potentially tampering with the device
event timestamps until the reply. This should avoid the stuck timestamp
as in those situations, we'll always have a relatively up to date
`latest_evtime` meaning XSERVER_TIME_IS_BEFORE() will not get confused.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/886
2019-10-25 08:06:55 +00:00
|
|
|
priv->latest_evtime = device_event->time;
|
2014-04-24 16:06:32 +00:00
|
|
|
}
|
|
|
|
|
2017-01-27 15:04:02 +00:00
|
|
|
static void
|
|
|
|
meta_backend_x11_translate_crossing_event (MetaBackendX11 *x11,
|
|
|
|
XIEnterEvent *enter_event)
|
|
|
|
{
|
|
|
|
MetaBackendX11Class *backend_x11_class =
|
|
|
|
META_BACKEND_X11_GET_CLASS (x11);
|
|
|
|
|
|
|
|
if (backend_x11_class->translate_crossing_event)
|
|
|
|
backend_x11_class->translate_crossing_event (x11, enter_event);
|
|
|
|
}
|
|
|
|
|
2015-01-20 05:12:26 +00:00
|
|
|
static void
|
|
|
|
translate_crossing_event (MetaBackendX11 *x11,
|
|
|
|
XIEnterEvent *enter_event)
|
|
|
|
{
|
|
|
|
/* Throw out weird events generated by grabs. */
|
|
|
|
if (enter_event->mode == XINotifyGrab ||
|
|
|
|
enter_event->mode == XINotifyUngrab)
|
|
|
|
{
|
|
|
|
enter_event->event = None;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-27 15:04:02 +00:00
|
|
|
meta_backend_x11_translate_crossing_event (x11, enter_event);
|
2015-01-20 05:12:26 +00:00
|
|
|
}
|
|
|
|
|
2015-02-11 14:04:04 +00:00
|
|
|
static void
|
|
|
|
handle_device_change (MetaBackendX11 *x11,
|
|
|
|
XIEvent *event)
|
|
|
|
{
|
|
|
|
XIDeviceChangedEvent *device_changed;
|
|
|
|
|
|
|
|
if (event->evtype != XI_DeviceChanged)
|
|
|
|
return;
|
|
|
|
|
|
|
|
device_changed = (XIDeviceChangedEvent *) event;
|
|
|
|
|
|
|
|
if (device_changed->reason != XISlaveSwitch)
|
|
|
|
return;
|
|
|
|
|
|
|
|
meta_backend_update_last_device (META_BACKEND (x11),
|
|
|
|
device_changed->sourceid);
|
|
|
|
}
|
|
|
|
|
2014-04-23 17:59:58 +00:00
|
|
|
/* Clutter makes the assumption that there is only one X window
|
|
|
|
* per stage, which is a valid assumption to make for a generic
|
|
|
|
* application toolkit. As such, it will ignore any events sent
|
|
|
|
* to the a stage that isn't its X window.
|
|
|
|
*
|
|
|
|
* When running as an X window manager, we need to respond to
|
|
|
|
* events from lots of windows. Trick Clutter into translating
|
|
|
|
* these events by pretending we got an event on the stage window.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
maybe_spoof_event_as_stage_event (MetaBackendX11 *x11,
|
2015-02-11 14:04:04 +00:00
|
|
|
XIEvent *input_event)
|
|
|
|
{
|
|
|
|
switch (input_event->evtype)
|
|
|
|
{
|
|
|
|
case XI_Motion:
|
|
|
|
case XI_ButtonPress:
|
|
|
|
case XI_ButtonRelease:
|
x11: Limit touch replay pointer events to when replaying
When a touch sequence was rejected, the emulated pointer events would be
replayed with old timestamps. This caused issues with grabs as they
would be ignored due to being too old. This was mitigated by making sure
device event timestamps never travelled back in time by tampering with
any event that had a timestamp seemingly in the past.
This failed when the most recent timestamp that had been received were
much older than the timestamp of the new event. This could for example
happen when a session was left not interacted with for 40+ days or so;
when interacted with again, as any new timestamp would according to
XSERVER_TIME_IS_BEFORE() still be in the past compared to the "most
recent" one. The effect is that we'd always use the `latest_evtime` for
all new device events without ever updating it.
The end result of this was that passive grabs would become active when
interacted with, but would then newer be released, as the timestamps to
XIAllowEvents() would out of date, resulting in the desktop effectively
freezing, as the Shell would have an active pointer grab.
To avoid the situation where we get stuck with an old `latest_evtime`
timestamp, limit the tampering with device event timestamp to 1) only
pointer events, and 2) only during the replay sequence. The second part
is implemented by sending an asynchronous message via the X server after
rejecting a touch sequence, only potentially tampering with the device
event timestamps until the reply. This should avoid the stuck timestamp
as in those situations, we'll always have a relatively up to date
`latest_evtime` meaning XSERVER_TIME_IS_BEFORE() will not get confused.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/886
2019-10-25 08:06:55 +00:00
|
|
|
maybe_translate_touch_replay_pointer_event (x11,
|
|
|
|
(XIDeviceEvent *) input_event);
|
|
|
|
/* Intentional fall-through */
|
2015-02-11 14:04:04 +00:00
|
|
|
case XI_KeyPress:
|
|
|
|
case XI_KeyRelease:
|
|
|
|
case XI_TouchBegin:
|
|
|
|
case XI_TouchUpdate:
|
|
|
|
case XI_TouchEnd:
|
|
|
|
translate_device_event (x11, (XIDeviceEvent *) input_event);
|
|
|
|
break;
|
|
|
|
case XI_Enter:
|
|
|
|
case XI_Leave:
|
|
|
|
translate_crossing_event (x11, (XIEnterEvent *) input_event);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_input_event (MetaBackendX11 *x11,
|
|
|
|
XEvent *event)
|
2014-04-23 17:59:58 +00:00
|
|
|
{
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
if (event->type == GenericEvent &&
|
|
|
|
event->xcookie.extension == priv->xinput_opcode)
|
|
|
|
{
|
|
|
|
XIEvent *input_event = (XIEvent *) event->xcookie.data;
|
|
|
|
|
2015-02-11 14:04:04 +00:00
|
|
|
if (input_event->evtype == XI_DeviceChanged)
|
|
|
|
handle_device_change (x11, input_event);
|
|
|
|
else
|
|
|
|
maybe_spoof_event_as_stage_event (x11, input_event);
|
2014-04-23 17:59:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-14 21:32:41 +00:00
|
|
|
static void
|
|
|
|
keymap_changed (MetaBackend *backend)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
if (priv->keymap)
|
|
|
|
{
|
|
|
|
xkb_keymap_unref (priv->keymap);
|
|
|
|
priv->keymap = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_signal_emit_by_name (backend, "keymap-changed", 0);
|
|
|
|
}
|
|
|
|
|
2017-01-27 15:04:02 +00:00
|
|
|
static gboolean
|
|
|
|
meta_backend_x11_handle_host_xevent (MetaBackendX11 *backend_x11,
|
|
|
|
XEvent *event)
|
|
|
|
{
|
|
|
|
MetaBackendX11Class *backend_x11_class =
|
|
|
|
META_BACKEND_X11_GET_CLASS (backend_x11);
|
|
|
|
|
|
|
|
return backend_x11_class->handle_host_xevent (backend_x11, event);
|
|
|
|
}
|
|
|
|
|
2014-04-22 14:14:59 +00:00
|
|
|
static void
|
|
|
|
handle_host_xevent (MetaBackend *backend,
|
2014-04-23 19:19:08 +00:00
|
|
|
XEvent *event)
|
2014-04-22 14:14:59 +00:00
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
2014-04-23 16:05:14 +00:00
|
|
|
gboolean bypass_clutter = FALSE;
|
2019-08-14 21:25:54 +00:00
|
|
|
MetaDisplay *display;
|
2014-04-22 14:14:59 +00:00
|
|
|
|
x11: Limit touch replay pointer events to when replaying
When a touch sequence was rejected, the emulated pointer events would be
replayed with old timestamps. This caused issues with grabs as they
would be ignored due to being too old. This was mitigated by making sure
device event timestamps never travelled back in time by tampering with
any event that had a timestamp seemingly in the past.
This failed when the most recent timestamp that had been received were
much older than the timestamp of the new event. This could for example
happen when a session was left not interacted with for 40+ days or so;
when interacted with again, as any new timestamp would according to
XSERVER_TIME_IS_BEFORE() still be in the past compared to the "most
recent" one. The effect is that we'd always use the `latest_evtime` for
all new device events without ever updating it.
The end result of this was that passive grabs would become active when
interacted with, but would then newer be released, as the timestamps to
XIAllowEvents() would out of date, resulting in the desktop effectively
freezing, as the Shell would have an active pointer grab.
To avoid the situation where we get stuck with an old `latest_evtime`
timestamp, limit the tampering with device event timestamp to 1) only
pointer events, and 2) only during the replay sequence. The second part
is implemented by sending an asynchronous message via the X server after
rejecting a touch sequence, only potentially tampering with the device
event timestamps until the reply. This should avoid the stuck timestamp
as in those situations, we'll always have a relatively up to date
`latest_evtime` meaning XSERVER_TIME_IS_BEFORE() will not get confused.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/886
2019-10-25 08:06:55 +00:00
|
|
|
switch (event->type)
|
|
|
|
{
|
|
|
|
case ClientMessage:
|
|
|
|
if (event->xclient.window == meta_backend_x11_get_xwindow (x11) &&
|
|
|
|
event->xclient.message_type == priv->touch_replay_sync_atom)
|
|
|
|
priv->current_touch_replay_sync_serial = event->xclient.data.l[0];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-04-23 19:17:21 +00:00
|
|
|
XGetEventData (priv->xdisplay, &event->xcookie);
|
|
|
|
|
2019-08-14 21:25:54 +00:00
|
|
|
display = meta_get_display ();
|
|
|
|
if (display)
|
|
|
|
{
|
|
|
|
MetaCompositor *compositor = display->compositor;
|
|
|
|
MetaPluginManager *plugin_mgr =
|
|
|
|
meta_compositor_get_plugin_manager (compositor);
|
2017-01-02 14:11:32 +00:00
|
|
|
|
2019-08-14 21:25:54 +00:00
|
|
|
if (meta_plugin_manager_xevent_filter (plugin_mgr, event))
|
|
|
|
bypass_clutter = TRUE;
|
|
|
|
}
|
2014-07-19 16:45:47 +00:00
|
|
|
|
2017-01-27 15:04:02 +00:00
|
|
|
bypass_clutter = (meta_backend_x11_handle_host_xevent (x11, event) ||
|
|
|
|
bypass_clutter);
|
2015-08-21 20:25:53 +00:00
|
|
|
|
2018-04-12 15:36:58 +00:00
|
|
|
if (event->type == (priv->xsync_event_base + XSyncAlarmNotify))
|
|
|
|
handle_alarm_notify (backend, (XSyncAlarmNotifyEvent *) event);
|
|
|
|
|
2014-08-14 21:32:41 +00:00
|
|
|
if (event->type == priv->xkb_event_base)
|
|
|
|
{
|
2015-10-14 00:14:14 +00:00
|
|
|
XkbEvent *xkb_ev = (XkbEvent *) event;
|
2014-08-14 21:32:41 +00:00
|
|
|
|
2015-10-14 00:14:14 +00:00
|
|
|
if (xkb_ev->any.device == META_VIRTUAL_CORE_KEYBOARD_ID)
|
2014-08-14 21:32:41 +00:00
|
|
|
{
|
2015-10-14 00:14:14 +00:00
|
|
|
switch (xkb_ev->any.xkb_type)
|
2014-08-14 21:32:41 +00:00
|
|
|
{
|
2019-10-07 15:52:00 +00:00
|
|
|
case XkbNewKeyboardNotify:
|
2014-08-14 21:32:41 +00:00
|
|
|
case XkbMapNotify:
|
|
|
|
keymap_changed (backend);
|
2015-10-14 00:14:14 +00:00
|
|
|
break;
|
2017-08-17 09:01:50 +00:00
|
|
|
case XkbStateNotify:
|
2017-08-17 09:03:28 +00:00
|
|
|
if (xkb_ev->state.changed & XkbGroupLockMask)
|
|
|
|
{
|
|
|
|
int layout_group;
|
|
|
|
gboolean layout_group_changed;
|
|
|
|
|
|
|
|
layout_group = xkb_ev->state.locked_group;
|
|
|
|
layout_group_changed =
|
|
|
|
(int) priv->keymap_layout_group != layout_group;
|
|
|
|
priv->keymap_layout_group = layout_group;
|
|
|
|
|
|
|
|
if (layout_group_changed)
|
|
|
|
meta_backend_notify_keymap_layout_group_changed (backend,
|
|
|
|
layout_group);
|
|
|
|
}
|
2017-08-17 09:01:50 +00:00
|
|
|
break;
|
2014-08-14 21:32:41 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-23 16:05:14 +00:00
|
|
|
if (!bypass_clutter)
|
2014-07-07 23:13:31 +00:00
|
|
|
{
|
2015-02-11 14:04:04 +00:00
|
|
|
handle_input_event (x11, event);
|
2019-03-22 12:53:00 +00:00
|
|
|
meta_x11_handle_event (event);
|
2014-07-07 23:13:31 +00:00
|
|
|
}
|
2014-04-23 19:17:21 +00:00
|
|
|
|
|
|
|
XFreeEventData (priv->xdisplay, &event->xcookie);
|
2014-04-22 14:14:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GSource base;
|
|
|
|
GPollFD event_poll_fd;
|
|
|
|
MetaBackend *backend;
|
|
|
|
} XEventSource;
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
x_event_source_prepare (GSource *source,
|
|
|
|
int *timeout)
|
|
|
|
{
|
|
|
|
XEventSource *x_source = (XEventSource *) source;
|
|
|
|
MetaBackend *backend = x_source->backend;
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
*timeout = -1;
|
|
|
|
|
|
|
|
return XPending (priv->xdisplay);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
x_event_source_check (GSource *source)
|
|
|
|
{
|
|
|
|
XEventSource *x_source = (XEventSource *) source;
|
|
|
|
MetaBackend *backend = x_source->backend;
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
return XPending (priv->xdisplay);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
x_event_source_dispatch (GSource *source,
|
|
|
|
GSourceFunc callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
XEventSource *x_source = (XEventSource *) source;
|
|
|
|
MetaBackend *backend = x_source->backend;
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
while (XPending (priv->xdisplay))
|
|
|
|
{
|
2014-04-23 19:19:08 +00:00
|
|
|
XEvent event;
|
2014-04-22 14:14:59 +00:00
|
|
|
|
2014-04-23 19:19:08 +00:00
|
|
|
XNextEvent (priv->xdisplay, &event);
|
2014-04-22 14:14:59 +00:00
|
|
|
|
2014-04-23 19:19:08 +00:00
|
|
|
handle_host_xevent (backend, &event);
|
2014-04-22 14:14:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GSourceFuncs x_event_funcs = {
|
|
|
|
x_event_source_prepare,
|
|
|
|
x_event_source_check,
|
|
|
|
x_event_source_dispatch,
|
|
|
|
};
|
|
|
|
|
|
|
|
static GSource *
|
|
|
|
x_event_source_new (MetaBackend *backend)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
GSource *source;
|
|
|
|
XEventSource *x_source;
|
|
|
|
|
|
|
|
source = g_source_new (&x_event_funcs, sizeof (XEventSource));
|
|
|
|
x_source = (XEventSource *) source;
|
|
|
|
x_source->backend = backend;
|
|
|
|
x_source->event_poll_fd.fd = ConnectionNumber (priv->xdisplay);
|
|
|
|
x_source->event_poll_fd.events = G_IO_IN;
|
|
|
|
g_source_add_poll (source, &x_source->event_poll_fd);
|
|
|
|
|
|
|
|
g_source_attach (source, NULL);
|
|
|
|
return source;
|
|
|
|
}
|
|
|
|
|
2016-12-01 04:59:47 +00:00
|
|
|
static void
|
|
|
|
on_monitors_changed (MetaMonitorManager *manager,
|
|
|
|
MetaBackend *backend)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
priv->cached_current_logical_monitor = NULL;
|
|
|
|
}
|
|
|
|
|
2014-04-22 14:14:59 +00:00
|
|
|
static void
|
|
|
|
meta_backend_x11_post_init (MetaBackend *backend)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
2016-12-01 04:59:47 +00:00
|
|
|
MetaMonitorManager *monitor_manager;
|
2014-04-22 14:14:59 +00:00
|
|
|
int major, minor;
|
2015-09-23 23:24:33 +00:00
|
|
|
gboolean has_xi = FALSE;
|
2014-04-22 14:14:59 +00:00
|
|
|
|
|
|
|
priv->source = x_event_source_new (backend);
|
|
|
|
|
2014-04-22 16:45:13 +00:00
|
|
|
if (!XSyncQueryExtension (priv->xdisplay, &priv->xsync_event_base, &priv->xsync_error_base) ||
|
|
|
|
!XSyncInitialize (priv->xdisplay, &major, &minor))
|
2014-04-22 14:14:59 +00:00
|
|
|
meta_fatal ("Could not initialize XSync");
|
|
|
|
|
2018-04-12 15:36:58 +00:00
|
|
|
priv->counter = find_idletime_counter (priv);
|
|
|
|
if (priv->counter == None)
|
|
|
|
meta_fatal ("Could not initialize XSync counter");
|
|
|
|
|
|
|
|
priv->user_active_alarm = xsync_user_active_alarm_set (priv);
|
|
|
|
|
2015-09-23 23:24:33 +00:00
|
|
|
if (XQueryExtension (priv->xdisplay,
|
|
|
|
"XInputExtension",
|
|
|
|
&priv->xinput_opcode,
|
|
|
|
&priv->xinput_error_base,
|
|
|
|
&priv->xinput_event_base))
|
|
|
|
{
|
|
|
|
major = 2; minor = 3;
|
|
|
|
if (XIQueryVersion (priv->xdisplay, &major, &minor) == Success)
|
|
|
|
{
|
|
|
|
int version = (major * 10) + minor;
|
|
|
|
if (version >= 22)
|
|
|
|
has_xi = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2014-04-23 17:59:58 +00:00
|
|
|
|
2015-09-23 23:24:33 +00:00
|
|
|
if (!has_xi)
|
|
|
|
meta_fatal ("X server doesn't have the XInput extension, version 2.2 or newer\n");
|
2014-04-23 17:59:58 +00:00
|
|
|
|
2014-08-04 14:47:35 +00:00
|
|
|
if (!xkb_x11_setup_xkb_extension (priv->xcb,
|
|
|
|
XKB_X11_MIN_MAJOR_XKB_VERSION,
|
|
|
|
XKB_X11_MIN_MINOR_XKB_VERSION,
|
|
|
|
XKB_X11_SETUP_XKB_EXTENSION_NO_FLAGS,
|
|
|
|
NULL, NULL,
|
|
|
|
&priv->xkb_event_base,
|
|
|
|
&priv->xkb_error_base))
|
|
|
|
meta_fatal ("X server doesn't have the XKB extension, version %d.%d or newer\n",
|
|
|
|
XKB_X11_MIN_MAJOR_XKB_VERSION, XKB_X11_MIN_MINOR_XKB_VERSION);
|
|
|
|
|
2014-07-17 15:18:08 +00:00
|
|
|
META_BACKEND_CLASS (meta_backend_x11_parent_class)->post_init (backend);
|
2016-12-01 04:59:47 +00:00
|
|
|
|
|
|
|
monitor_manager = meta_backend_get_monitor_manager (backend);
|
2017-10-13 00:14:40 +00:00
|
|
|
g_signal_connect (monitor_manager, "monitors-changed-internal",
|
2016-12-01 04:59:47 +00:00
|
|
|
G_CALLBACK (on_monitors_changed), backend);
|
x11: Limit touch replay pointer events to when replaying
When a touch sequence was rejected, the emulated pointer events would be
replayed with old timestamps. This caused issues with grabs as they
would be ignored due to being too old. This was mitigated by making sure
device event timestamps never travelled back in time by tampering with
any event that had a timestamp seemingly in the past.
This failed when the most recent timestamp that had been received were
much older than the timestamp of the new event. This could for example
happen when a session was left not interacted with for 40+ days or so;
when interacted with again, as any new timestamp would according to
XSERVER_TIME_IS_BEFORE() still be in the past compared to the "most
recent" one. The effect is that we'd always use the `latest_evtime` for
all new device events without ever updating it.
The end result of this was that passive grabs would become active when
interacted with, but would then newer be released, as the timestamps to
XIAllowEvents() would out of date, resulting in the desktop effectively
freezing, as the Shell would have an active pointer grab.
To avoid the situation where we get stuck with an old `latest_evtime`
timestamp, limit the tampering with device event timestamp to 1) only
pointer events, and 2) only during the replay sequence. The second part
is implemented by sending an asynchronous message via the X server after
rejecting a touch sequence, only potentially tampering with the device
event timestamps until the reply. This should avoid the stuck timestamp
as in those situations, we'll always have a relatively up to date
`latest_evtime` meaning XSERVER_TIME_IS_BEFORE() will not get confused.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/886
2019-10-25 08:06:55 +00:00
|
|
|
|
|
|
|
priv->touch_replay_sync_atom = XInternAtom (priv->xdisplay,
|
|
|
|
"_MUTTER_TOUCH_SEQUENCE_SYNC",
|
|
|
|
False);
|
2014-07-14 21:23:22 +00:00
|
|
|
}
|
|
|
|
|
2016-05-04 08:19:23 +00:00
|
|
|
static ClutterBackend *
|
|
|
|
meta_backend_x11_create_clutter_backend (MetaBackend *backend)
|
|
|
|
{
|
|
|
|
return g_object_new (META_TYPE_CLUTTER_BACKEND_X11, NULL);
|
|
|
|
}
|
|
|
|
|
2014-04-23 14:50:07 +00:00
|
|
|
static gboolean
|
|
|
|
meta_backend_x11_grab_device (MetaBackend *backend,
|
|
|
|
int device_id,
|
|
|
|
uint32_t timestamp)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
unsigned char mask_bits[XIMaskLen (XI_LASTEVENT)] = { 0 };
|
|
|
|
XIEventMask mask = { XIAllMasterDevices, sizeof (mask_bits), mask_bits };
|
|
|
|
int ret;
|
|
|
|
|
2018-07-20 05:41:43 +00:00
|
|
|
if (timestamp != META_CURRENT_TIME &&
|
|
|
|
XSERVER_TIME_IS_BEFORE (timestamp, priv->latest_evtime))
|
|
|
|
timestamp = priv->latest_evtime;
|
2014-06-19 21:16:50 +00:00
|
|
|
|
2014-04-23 14:50:07 +00:00
|
|
|
XISetMask (mask.mask, XI_ButtonPress);
|
|
|
|
XISetMask (mask.mask, XI_ButtonRelease);
|
|
|
|
XISetMask (mask.mask, XI_Enter);
|
|
|
|
XISetMask (mask.mask, XI_Leave);
|
|
|
|
XISetMask (mask.mask, XI_Motion);
|
2014-04-23 17:36:11 +00:00
|
|
|
XISetMask (mask.mask, XI_KeyPress);
|
|
|
|
XISetMask (mask.mask, XI_KeyRelease);
|
2014-04-23 14:50:07 +00:00
|
|
|
|
|
|
|
ret = XIGrabDevice (priv->xdisplay, device_id,
|
2014-04-27 14:49:29 +00:00
|
|
|
meta_backend_x11_get_xwindow (x11),
|
2014-04-23 14:50:07 +00:00
|
|
|
timestamp,
|
2014-05-13 19:52:26 +00:00
|
|
|
None,
|
2014-04-23 14:50:07 +00:00
|
|
|
XIGrabModeAsync, XIGrabModeAsync,
|
|
|
|
False, /* owner_events */
|
|
|
|
&mask);
|
|
|
|
|
|
|
|
return (ret == Success);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
meta_backend_x11_ungrab_device (MetaBackend *backend,
|
|
|
|
int device_id,
|
|
|
|
uint32_t timestamp)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = XIUngrabDevice (priv->xdisplay, device_id, timestamp);
|
2018-11-26 13:32:01 +00:00
|
|
|
XFlush (priv->xdisplay);
|
2014-04-23 14:50:07 +00:00
|
|
|
|
|
|
|
return (ret == Success);
|
|
|
|
}
|
|
|
|
|
2019-10-24 19:19:36 +00:00
|
|
|
static void
|
|
|
|
meta_backend_x11_finish_touch_sequence (MetaBackend *backend,
|
|
|
|
ClutterEventSequence *sequence,
|
|
|
|
MetaSequenceState state)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
int event_mode;
|
|
|
|
|
|
|
|
if (state == META_SEQUENCE_ACCEPTED)
|
|
|
|
event_mode = XIAcceptTouch;
|
|
|
|
else if (state == META_SEQUENCE_REJECTED)
|
|
|
|
event_mode = XIRejectTouch;
|
|
|
|
else
|
|
|
|
g_return_if_reached ();
|
|
|
|
|
|
|
|
XIAllowTouchEvents (priv->xdisplay,
|
|
|
|
META_VIRTUAL_CORE_POINTER_ID,
|
|
|
|
meta_x11_event_sequence_get_touch_detail (sequence),
|
|
|
|
DefaultRootWindow (priv->xdisplay), event_mode);
|
x11: Limit touch replay pointer events to when replaying
When a touch sequence was rejected, the emulated pointer events would be
replayed with old timestamps. This caused issues with grabs as they
would be ignored due to being too old. This was mitigated by making sure
device event timestamps never travelled back in time by tampering with
any event that had a timestamp seemingly in the past.
This failed when the most recent timestamp that had been received were
much older than the timestamp of the new event. This could for example
happen when a session was left not interacted with for 40+ days or so;
when interacted with again, as any new timestamp would according to
XSERVER_TIME_IS_BEFORE() still be in the past compared to the "most
recent" one. The effect is that we'd always use the `latest_evtime` for
all new device events without ever updating it.
The end result of this was that passive grabs would become active when
interacted with, but would then newer be released, as the timestamps to
XIAllowEvents() would out of date, resulting in the desktop effectively
freezing, as the Shell would have an active pointer grab.
To avoid the situation where we get stuck with an old `latest_evtime`
timestamp, limit the tampering with device event timestamp to 1) only
pointer events, and 2) only during the replay sequence. The second part
is implemented by sending an asynchronous message via the X server after
rejecting a touch sequence, only potentially tampering with the device
event timestamps until the reply. This should avoid the stuck timestamp
as in those situations, we'll always have a relatively up to date
`latest_evtime` meaning XSERVER_TIME_IS_BEFORE() will not get confused.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/886
2019-10-25 08:06:55 +00:00
|
|
|
|
|
|
|
if (state == META_SEQUENCE_REJECTED)
|
|
|
|
{
|
|
|
|
XClientMessageEvent ev;
|
|
|
|
|
|
|
|
ev = (XClientMessageEvent) {
|
|
|
|
.type = ClientMessage,
|
|
|
|
.window = meta_backend_x11_get_xwindow (x11),
|
|
|
|
.message_type = priv->touch_replay_sync_atom,
|
|
|
|
.format = 32,
|
|
|
|
.data.l[0] = ++priv->pending_touch_replay_sync_serial,
|
|
|
|
};
|
|
|
|
XSendEvent (priv->xdisplay, meta_backend_x11_get_xwindow (x11),
|
|
|
|
False, 0, (XEvent *) &ev);
|
|
|
|
}
|
2019-10-24 19:19:36 +00:00
|
|
|
}
|
|
|
|
|
2014-05-27 18:11:23 +00:00
|
|
|
static void
|
|
|
|
meta_backend_x11_warp_pointer (MetaBackend *backend,
|
|
|
|
int x,
|
|
|
|
int y)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
XIWarpPointer (priv->xdisplay,
|
|
|
|
META_VIRTUAL_CORE_POINTER_ID,
|
|
|
|
None,
|
|
|
|
meta_backend_x11_get_xwindow (x11),
|
|
|
|
0, 0, 0, 0,
|
|
|
|
x, y);
|
|
|
|
}
|
|
|
|
|
2016-12-01 04:59:47 +00:00
|
|
|
static MetaLogicalMonitor *
|
|
|
|
meta_backend_x11_get_current_logical_monitor (MetaBackend *backend)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
MetaCursorTracker *cursor_tracker;
|
|
|
|
int x, y;
|
|
|
|
MetaMonitorManager *monitor_manager;
|
|
|
|
MetaLogicalMonitor *logical_monitor;
|
|
|
|
|
|
|
|
if (priv->cached_current_logical_monitor)
|
|
|
|
return priv->cached_current_logical_monitor;
|
|
|
|
|
|
|
|
cursor_tracker = meta_backend_get_cursor_tracker (backend);
|
|
|
|
meta_cursor_tracker_get_pointer (cursor_tracker, &x, &y, NULL);
|
|
|
|
monitor_manager = meta_backend_get_monitor_manager (backend);
|
|
|
|
logical_monitor =
|
|
|
|
meta_monitor_manager_get_logical_monitor_at (monitor_manager, x, y);
|
|
|
|
|
2017-03-06 08:26:50 +00:00
|
|
|
if (!logical_monitor && monitor_manager->logical_monitors)
|
|
|
|
logical_monitor = monitor_manager->logical_monitors->data;
|
|
|
|
|
2016-12-01 04:59:47 +00:00
|
|
|
priv->cached_current_logical_monitor = logical_monitor;
|
|
|
|
return priv->cached_current_logical_monitor;
|
|
|
|
}
|
|
|
|
|
2014-08-04 14:47:35 +00:00
|
|
|
static struct xkb_keymap *
|
|
|
|
meta_backend_x11_get_keymap (MetaBackend *backend)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
2014-08-14 21:23:20 +00:00
|
|
|
if (priv->keymap == NULL)
|
|
|
|
{
|
|
|
|
struct xkb_context *context = xkb_context_new (XKB_CONTEXT_NO_FLAGS);
|
|
|
|
priv->keymap = xkb_x11_keymap_new_from_device (context,
|
|
|
|
priv->xcb,
|
|
|
|
xkb_x11_get_core_keyboard_device_id (priv->xcb),
|
|
|
|
XKB_KEYMAP_COMPILE_NO_FLAGS);
|
2015-09-21 15:25:40 +00:00
|
|
|
if (priv->keymap == NULL)
|
|
|
|
priv->keymap = xkb_keymap_new_from_names (context, NULL, XKB_KEYMAP_COMPILE_NO_FLAGS);
|
|
|
|
|
2014-08-14 21:23:20 +00:00
|
|
|
xkb_context_unref (context);
|
|
|
|
}
|
2014-08-04 14:47:35 +00:00
|
|
|
|
2014-08-14 21:23:20 +00:00
|
|
|
return priv->keymap;
|
2014-08-04 14:47:35 +00:00
|
|
|
}
|
|
|
|
|
2017-08-17 09:01:50 +00:00
|
|
|
static xkb_layout_index_t
|
|
|
|
meta_backend_x11_get_keymap_layout_group (MetaBackend *backend)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
return priv->keymap_layout_group;
|
|
|
|
}
|
|
|
|
|
2016-09-08 07:55:44 +00:00
|
|
|
static void
|
|
|
|
meta_backend_x11_set_numlock (MetaBackend *backend,
|
|
|
|
gboolean numlock_state)
|
|
|
|
{
|
2019-05-23 16:09:36 +00:00
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (backend);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
unsigned int num_mask;
|
|
|
|
|
|
|
|
num_mask = XkbKeysymToModifiers (priv->xdisplay, XK_Num_Lock);
|
|
|
|
XkbLockModifiers (priv->xdisplay, XkbUseCoreKbd, num_mask,
|
|
|
|
numlock_state ? num_mask : 0);
|
2016-09-08 07:55:44 +00:00
|
|
|
}
|
|
|
|
|
2016-12-01 04:59:47 +00:00
|
|
|
void
|
|
|
|
meta_backend_x11_handle_event (MetaBackendX11 *x11,
|
|
|
|
XEvent *xevent)
|
|
|
|
{
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
priv->cached_current_logical_monitor = NULL;
|
|
|
|
}
|
2016-09-08 07:55:44 +00:00
|
|
|
|
2017-01-31 14:09:02 +00:00
|
|
|
uint8_t
|
|
|
|
meta_backend_x11_get_xkb_event_base (MetaBackendX11 *x11)
|
|
|
|
{
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
return priv->xkb_event_base;
|
|
|
|
}
|
|
|
|
|
2017-08-17 09:01:50 +00:00
|
|
|
static void
|
|
|
|
init_xkb_state (MetaBackendX11 *x11)
|
|
|
|
{
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
struct xkb_keymap *keymap;
|
|
|
|
int32_t device_id;
|
|
|
|
struct xkb_state *state;
|
|
|
|
|
|
|
|
keymap = meta_backend_get_keymap (META_BACKEND (x11));
|
|
|
|
|
|
|
|
device_id = xkb_x11_get_core_keyboard_device_id (priv->xcb);
|
|
|
|
state = xkb_x11_state_new_from_device (keymap, priv->xcb, device_id);
|
|
|
|
|
|
|
|
priv->keymap_layout_group =
|
|
|
|
xkb_state_serialize_layout (state, XKB_STATE_LAYOUT_LOCKED);
|
|
|
|
|
|
|
|
xkb_state_unref (state);
|
|
|
|
}
|
|
|
|
|
2017-07-10 08:50:43 +00:00
|
|
|
static gboolean
|
|
|
|
meta_backend_x11_initable_init (GInitable *initable,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (initable);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
Display *xdisplay;
|
|
|
|
const char *xdisplay_name;
|
|
|
|
|
|
|
|
xdisplay_name = g_getenv ("DISPLAY");
|
|
|
|
if (!xdisplay_name)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
|
|
|
"Unable to open display, DISPLAY not set");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xdisplay = XOpenDisplay (xdisplay_name);
|
|
|
|
if (!xdisplay)
|
|
|
|
{
|
|
|
|
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
|
|
|
"Unable to open display '%s'", xdisplay_name);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->xdisplay = xdisplay;
|
2017-08-17 09:01:50 +00:00
|
|
|
priv->xcb = XGetXCBConnection (priv->xdisplay);
|
2017-07-10 08:50:43 +00:00
|
|
|
clutter_x11_set_display (xdisplay);
|
|
|
|
|
2017-08-17 09:01:50 +00:00
|
|
|
init_xkb_state (x11);
|
|
|
|
|
2017-07-10 08:50:43 +00:00
|
|
|
return initable_parent_iface->init (initable, cancellable, error);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
initable_iface_init (GInitableIface *initable_iface)
|
|
|
|
{
|
|
|
|
initable_parent_iface = g_type_interface_peek_parent (initable_iface);
|
|
|
|
|
|
|
|
initable_iface->init = meta_backend_x11_initable_init;
|
|
|
|
}
|
|
|
|
|
2018-04-12 15:36:58 +00:00
|
|
|
static void
|
|
|
|
meta_backend_x11_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
MetaBackendX11 *x11 = META_BACKEND_X11 (object);
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
if (priv->user_active_alarm != None)
|
|
|
|
{
|
|
|
|
XSyncDestroyAlarm (priv->xdisplay, priv->user_active_alarm);
|
|
|
|
priv->user_active_alarm = None;
|
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (meta_backend_x11_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2014-04-21 23:13:04 +00:00
|
|
|
static void
|
|
|
|
meta_backend_x11_class_init (MetaBackendX11Class *klass)
|
|
|
|
{
|
|
|
|
MetaBackendClass *backend_class = META_BACKEND_CLASS (klass);
|
2018-04-12 15:36:58 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2014-04-21 23:13:04 +00:00
|
|
|
|
2018-04-12 15:36:58 +00:00
|
|
|
object_class->finalize = meta_backend_x11_finalize;
|
2016-05-04 08:19:23 +00:00
|
|
|
backend_class->create_clutter_backend = meta_backend_x11_create_clutter_backend;
|
2014-04-22 14:14:59 +00:00
|
|
|
backend_class->post_init = meta_backend_x11_post_init;
|
2014-04-23 14:50:07 +00:00
|
|
|
backend_class->grab_device = meta_backend_x11_grab_device;
|
|
|
|
backend_class->ungrab_device = meta_backend_x11_ungrab_device;
|
2019-10-24 19:19:36 +00:00
|
|
|
backend_class->finish_touch_sequence = meta_backend_x11_finish_touch_sequence;
|
2014-05-27 18:11:23 +00:00
|
|
|
backend_class->warp_pointer = meta_backend_x11_warp_pointer;
|
2016-12-01 04:59:47 +00:00
|
|
|
backend_class->get_current_logical_monitor = meta_backend_x11_get_current_logical_monitor;
|
2014-08-04 14:47:35 +00:00
|
|
|
backend_class->get_keymap = meta_backend_x11_get_keymap;
|
2017-08-17 09:01:50 +00:00
|
|
|
backend_class->get_keymap_layout_group = meta_backend_x11_get_keymap_layout_group;
|
2016-09-08 07:55:44 +00:00
|
|
|
backend_class->set_numlock = meta_backend_x11_set_numlock;
|
2014-04-21 23:13:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_backend_x11_init (MetaBackendX11 *x11)
|
|
|
|
{
|
|
|
|
}
|
2014-04-23 13:57:16 +00:00
|
|
|
|
|
|
|
Display *
|
|
|
|
meta_backend_x11_get_xdisplay (MetaBackendX11 *x11)
|
|
|
|
{
|
|
|
|
MetaBackendX11Private *priv = meta_backend_x11_get_instance_private (x11);
|
|
|
|
|
|
|
|
return priv->xdisplay;
|
|
|
|
}
|
|
|
|
|
2014-04-27 14:49:29 +00:00
|
|
|
Window
|
|
|
|
meta_backend_x11_get_xwindow (MetaBackendX11 *x11)
|
|
|
|
{
|
2014-08-13 23:46:32 +00:00
|
|
|
ClutterActor *stage = meta_backend_get_stage (META_BACKEND (x11));
|
2019-03-22 12:53:00 +00:00
|
|
|
return meta_x11_get_stage_window (CLUTTER_STAGE (stage));
|
2014-04-27 14:49:29 +00:00
|
|
|
}
|
2018-06-27 19:30:55 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_backend_x11_reload_cursor (MetaBackendX11 *x11)
|
|
|
|
{
|
|
|
|
MetaBackend *backend = META_BACKEND (x11);
|
|
|
|
MetaCursorRenderer *cursor_renderer =
|
|
|
|
meta_backend_get_cursor_renderer (backend);
|
|
|
|
|
|
|
|
meta_cursor_renderer_force_update (cursor_renderer);
|
|
|
|
}
|