mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 10:14:52 +00:00
This adds support for XTEST in Xwayland using EIS, the emulated input library [1]. To differentiate between X11 clients using XTEST, initiate a EI context for each client and use the actual client name, from its command line. When an X11 client first tries to use XTEST to generate emulated input events, a new connection to libEI is initiated by Xwayland on behalf of the X11 client. During that connection phase, the EI server will not be accepting events until the emulated device is actually created, meaning that any XTEST request from the X11 client will be discarded until the EI server is willing to accept events. To avoid that issue, add an event queue in Xwayland per X11 client that will keep those requests, and dequeue them as soon as the EI server is ready, i.e. once the EI device is added. If the X11 client disconnects from the Xserver before the EI server is ready, or if the connection is closed by the EI server, those events are discarded and the queue cleared from any pending events. For 10 minutes after the client disconnects, keep the internal struct alive. If a client with the same commandline arguments connects again, re-use the same struct. This means we are faster with the events the second time around but it also allows the EIS server to pause individual clients that keep sending intermittent events and disconnect immediately (e.g. it'd be possible to pause xdtotool while an authentication prompt is active). [1] https://gitlab.freedesktop.org/libinput/libei Thanks to Jan Beich <jbeich@FreeBSD.org> for fixing the build on BSD. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Co-authored-by: Olivier Fourdan <ofourdan@redhat.com> Co-authored-by: David Redondo <kde@david-redondo.de> Signed-off-by: Olivier Fourdan <ofourdan@redhat.com>
207 lines
4.5 KiB
Bash
207 lines
4.5 KiB
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
# Packages which are needed by this script, but not for the xserver build
|
|
EPHEMERAL="
|
|
libcairo2-dev
|
|
libevdev-dev
|
|
libexpat-dev
|
|
libgles2-mesa-dev
|
|
libinput-dev
|
|
libxkbcommon-dev
|
|
x11-utils
|
|
x11-xserver-utils
|
|
xauth
|
|
xvfb
|
|
"
|
|
|
|
apt-get install -y \
|
|
$EPHEMERAL \
|
|
autoconf \
|
|
automake \
|
|
bison \
|
|
build-essential \
|
|
ca-certificates \
|
|
ccache \
|
|
dpkg-dev \
|
|
flex \
|
|
gcc-mingw-w64-i686 \
|
|
git \
|
|
libaudit-dev \
|
|
libbsd-dev \
|
|
libcairo2 \
|
|
libcairo2-dev \
|
|
libdbus-1-dev \
|
|
libdmx-dev \
|
|
libdrm-dev \
|
|
libegl1-mesa-dev \
|
|
libepoxy-dev \
|
|
libevdev2 \
|
|
libexpat1 \
|
|
libffi-dev \
|
|
libgbm-dev \
|
|
libgcrypt-dev \
|
|
libgl1-mesa-dev \
|
|
libgles2 \
|
|
libglx-mesa0 \
|
|
libinput10 \
|
|
libnvidia-egl-wayland-dev \
|
|
libpango1.0-0 \
|
|
libpango1.0-dev \
|
|
libpciaccess-dev \
|
|
libpixman-1-dev \
|
|
libselinux1-dev \
|
|
libsystemd-dev \
|
|
libtool \
|
|
libudev-dev \
|
|
libunwind-dev \
|
|
libwayland-dev \
|
|
libx11-dev \
|
|
libx11-xcb-dev \
|
|
libxau-dev \
|
|
libxaw7-dev \
|
|
libxcb-glx0-dev \
|
|
libxcb-icccm4-dev \
|
|
libxcb-image0-dev \
|
|
libxcb-keysyms1-dev \
|
|
libxcb-randr0-dev \
|
|
libxcb-render-util0-dev \
|
|
libxcb-render0-dev \
|
|
libxcb-shape0-dev \
|
|
libxcb-shm0-dev \
|
|
libxcb-util0-dev \
|
|
libxcb-xf86dri0-dev \
|
|
libxcb-xkb-dev \
|
|
libxcb-xv0-dev \
|
|
libxcb1-dev \
|
|
libxdmcp-dev \
|
|
libxext-dev \
|
|
libxfixes-dev \
|
|
libxfont-dev \
|
|
libxi-dev \
|
|
libxinerama-dev \
|
|
libxkbcommon0 \
|
|
libxkbfile-dev \
|
|
libxmu-dev \
|
|
libxmuu-dev \
|
|
libxpm-dev \
|
|
libxrender-dev \
|
|
libxres-dev \
|
|
libxshmfence-dev \
|
|
libxt-dev \
|
|
libxtst-dev \
|
|
libxv-dev \
|
|
libz-mingw-w64-dev \
|
|
mesa-common-dev \
|
|
meson \
|
|
mingw-w64-tools \
|
|
nettle-dev \
|
|
pkg-config \
|
|
python3-attr \
|
|
python3-jinja2 \
|
|
python3-mako \
|
|
python3-numpy \
|
|
python3-six \
|
|
weston \
|
|
x11-xkb-utils \
|
|
xfonts-utils \
|
|
xkb-data \
|
|
xtrans-dev \
|
|
xutils-dev
|
|
|
|
.gitlab-ci/cross-prereqs-build.sh i686-w64-mingw32
|
|
|
|
cd /root
|
|
|
|
# Xwayland requires drm 2.4.109 for drmGetDeviceFromDevId
|
|
git clone https://gitlab.freedesktop.org/mesa/drm --depth 1 --branch=libdrm-2.4.109
|
|
cd drm
|
|
meson _build
|
|
ninja -C _build -j${FDO_CI_CONCURRENT:-4} install
|
|
cd ..
|
|
rm -rf drm
|
|
|
|
# xserver requires libxcvt
|
|
git clone https://gitlab.freedesktop.org/xorg/lib/libxcvt.git --depth 1 --branch=libxcvt-0.1.0
|
|
cd libxcvt
|
|
meson _build
|
|
ninja -C _build -j${FDO_CI_CONCURRENT:-4} install
|
|
cd ..
|
|
rm -rf libxcvt
|
|
|
|
# xserver requires xorgproto >= 2023.2 for XWAYLAND
|
|
git clone https://gitlab.freedesktop.org/xorg/proto/xorgproto.git --depth 1 --branch=xorgproto-2023.2
|
|
pushd xorgproto
|
|
./autogen.sh
|
|
make -j${FDO_CI_CONCURRENT:-4} install
|
|
popd
|
|
rm -rf xorgproto
|
|
|
|
# wayland-protocols requires wayland-scanner 1.20, but Debian bullseye has 1.18 only
|
|
git clone https://gitlab.freedesktop.org/wayland/wayland.git --depth 1 --branch=1.21.0
|
|
cd wayland
|
|
meson -Dtests=false -Ddocumentation=false -Ddtd_validation=false _build
|
|
ninja -C _build -j${FDO_CI_CONCURRENT:-4} install
|
|
cd ..
|
|
rm -rf wayland
|
|
|
|
# Xwayland requires wayland-protocols >= 1.30, but Debian bullseye has 1.20 only
|
|
git clone https://gitlab.freedesktop.org/wayland/wayland-protocols.git --depth 1 --branch=1.30
|
|
cd wayland-protocols
|
|
meson _build
|
|
ninja -C _build -j${FDO_CI_CONCURRENT:-4} install
|
|
cd ..
|
|
rm -rf wayland-protocols
|
|
|
|
# Install libdecor for Xwayland
|
|
git clone https://gitlab.gnome.org/jadahl/libdecor.git --depth 1 --branch=0.1.0
|
|
cd libdecor
|
|
meson _build -D{demo,install_demo}=false
|
|
ninja -C _build -j${FDO_CI_CONCURRENT:-4} install
|
|
cd ..
|
|
rm -rf libdecor
|
|
|
|
# Install libei for Xwayland
|
|
git clone https://gitlab.freedesktop.org/libinput/libei.git --depth 1 --branch=1.0.0
|
|
cd libei
|
|
meson setup _build -Dtests=disabled -Ddocumentation=[] -Dliboeffis=enabled
|
|
ninja -C _build -j${FDO_CI_CONCURRENT:-4} install
|
|
cd ..
|
|
rm -rf libei
|
|
|
|
git clone https://gitlab.freedesktop.org/mesa/piglit.git
|
|
cd piglit
|
|
git checkout 265896c86f90cb72e8f218ba6a3617fca8b9a1e3
|
|
cd ..
|
|
|
|
git clone https://gitlab.freedesktop.org/xorg/test/xts
|
|
cd xts
|
|
git checkout dbbfa96c036e596346147081cbceda136e7c86c1
|
|
# Using -fcommon until we get a proper fix into xtst.
|
|
# See discussion at https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/913
|
|
CFLAGS=-fcommon ./autogen.sh
|
|
xvfb-run make -j${FDO_CI_CONCURRENT:-4}
|
|
cd ..
|
|
|
|
git clone https://gitlab.freedesktop.org/xorg/test/rendercheck
|
|
cd rendercheck
|
|
git checkout 67a820621b1475ebfcf3d4f9d7f03a5fc3b9769a
|
|
meson build
|
|
ninja -j${FDO_CI_CONCURRENT:-4} -C build install
|
|
cd ..
|
|
|
|
rm -rf piglit/.git xts/.git piglit/tests/spec/ rendercheck/
|
|
|
|
echo '[xts]' > piglit/piglit.conf
|
|
echo 'path=/root/xts' >> piglit/piglit.conf
|
|
|
|
find -name \*.a -o -name \*.o -o -name \*.c -o -name \*.h -o -name \*.la\* | xargs rm
|
|
strip xts/xts5/*/.libs/*
|
|
|
|
apt-get purge -y \
|
|
$EPHEMERAL
|
|
|
|
apt-get autoremove -y --purge
|