2014-08-12 07:08:48 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2014 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#include "main_wayland.h"
|
2015-02-20 08:33:36 +00:00
|
|
|
#include "workspace.h"
|
2014-08-12 07:08:48 +00:00
|
|
|
#include <config-kwin.h>
|
|
|
|
// kwin
|
2015-05-05 15:58:09 +00:00
|
|
|
#include "abstract_backend.h"
|
2015-02-09 12:28:37 +00:00
|
|
|
#include "wayland_server.h"
|
2014-08-12 07:08:48 +00:00
|
|
|
#include "xcbutils.h"
|
|
|
|
|
2015-02-09 12:28:37 +00:00
|
|
|
// KWayland
|
|
|
|
#include <KWayland/Server/display.h>
|
2015-03-19 07:29:34 +00:00
|
|
|
#include <KWayland/Server/seat_interface.h>
|
2014-08-12 07:08:48 +00:00
|
|
|
// KDE
|
|
|
|
#include <KLocalizedString>
|
2015-05-05 15:58:09 +00:00
|
|
|
#include <KPluginLoader>
|
|
|
|
#include <KPluginMetaData>
|
2014-08-12 07:08:48 +00:00
|
|
|
// Qt
|
|
|
|
#include <qplatformdefs.h>
|
|
|
|
#include <QCommandLineParser>
|
2015-02-20 08:33:36 +00:00
|
|
|
#include <QtConcurrentRun>
|
2014-08-21 09:30:56 +00:00
|
|
|
#include <QFile>
|
2015-02-20 08:33:36 +00:00
|
|
|
#include <QFutureWatcher>
|
2015-05-18 09:09:48 +00:00
|
|
|
#include <qpa/qwindowsysteminterface.h>
|
2015-04-21 09:21:28 +00:00
|
|
|
#include <QProcess>
|
2015-02-20 08:33:36 +00:00
|
|
|
#include <QSocketNotifier>
|
|
|
|
#include <QThread>
|
|
|
|
#include <QDebug>
|
2015-02-25 10:42:56 +00:00
|
|
|
#include <QWindow>
|
2014-08-12 07:08:48 +00:00
|
|
|
|
|
|
|
// system
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif // HAVE_UNISTD_H
|
|
|
|
|
2014-08-12 13:27:35 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
2014-08-12 07:08:48 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2014-08-13 11:13:44 +00:00
|
|
|
static void sighandler(int)
|
|
|
|
{
|
|
|
|
QApplication::exit();
|
|
|
|
}
|
|
|
|
|
2015-02-20 10:53:25 +00:00
|
|
|
static void readDisplay(int pipe);
|
|
|
|
|
2014-08-12 07:08:48 +00:00
|
|
|
//************************************
|
|
|
|
// ApplicationWayland
|
|
|
|
//************************************
|
|
|
|
|
|
|
|
ApplicationWayland::ApplicationWayland(int &argc, char **argv)
|
|
|
|
: Application(OperationModeWaylandAndX11, argc, argv)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ApplicationWayland::~ApplicationWayland()
|
|
|
|
{
|
2015-05-27 07:09:05 +00:00
|
|
|
destroyCompositor();
|
2014-08-12 07:08:48 +00:00
|
|
|
destroyWorkspace();
|
2015-02-20 08:33:36 +00:00
|
|
|
if (x11Connection()) {
|
|
|
|
Xcb::setInputFocus(XCB_INPUT_FOCUS_POINTER_ROOT);
|
2015-05-26 12:26:56 +00:00
|
|
|
destroyAtoms();
|
2015-02-20 08:33:36 +00:00
|
|
|
xcb_disconnect(x11Connection());
|
|
|
|
}
|
2015-05-21 13:11:11 +00:00
|
|
|
if (m_xwaylandProcess) {
|
|
|
|
m_xwaylandProcess->terminate();
|
|
|
|
m_xwaylandProcess->waitForFinished();
|
|
|
|
}
|
2014-08-12 07:08:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ApplicationWayland::performStartup()
|
|
|
|
{
|
2015-02-20 13:57:06 +00:00
|
|
|
setOperationMode(m_startXWayland ? OperationModeXwayland : OperationModeWaylandAndX11);
|
2015-02-23 14:57:00 +00:00
|
|
|
// first load options - done internally by a different thread
|
|
|
|
createOptions();
|
2015-04-02 12:37:23 +00:00
|
|
|
waylandServer()->createInternalConnection();
|
2015-02-20 13:57:06 +00:00
|
|
|
|
|
|
|
// try creating the Wayland Backend
|
|
|
|
createInput();
|
2015-03-23 11:45:21 +00:00
|
|
|
createBackend();
|
2015-02-20 13:57:06 +00:00
|
|
|
}
|
2015-02-20 10:53:25 +00:00
|
|
|
|
2015-03-23 11:45:21 +00:00
|
|
|
void ApplicationWayland::createBackend()
|
|
|
|
{
|
2015-05-05 15:58:09 +00:00
|
|
|
AbstractBackend *backend = waylandServer()->backend();
|
|
|
|
connect(backend, &AbstractBackend::screensQueried, this, &ApplicationWayland::continueStartupWithScreens);
|
|
|
|
connect(backend, &AbstractBackend::initFailed, this,
|
|
|
|
[] () {
|
|
|
|
std::cerr << "FATAL ERROR: backend failed to initialize, exiting now" << std::endl;
|
|
|
|
::exit(1);
|
2015-03-23 11:45:21 +00:00
|
|
|
}
|
2015-05-05 15:58:09 +00:00
|
|
|
);
|
|
|
|
backend->init();
|
2015-03-23 11:45:21 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 13:57:06 +00:00
|
|
|
void ApplicationWayland::continueStartupWithScreens()
|
|
|
|
{
|
2015-05-06 07:03:54 +00:00
|
|
|
disconnect(waylandServer()->backend(), &AbstractBackend::screensQueried, this, &ApplicationWayland::continueStartupWithScreens);
|
2015-02-20 13:57:06 +00:00
|
|
|
createScreens();
|
|
|
|
waylandServer()->initOutputs();
|
|
|
|
|
|
|
|
if (!m_startXWayland) {
|
2015-02-20 10:53:25 +00:00
|
|
|
continueStartupWithX();
|
2015-02-20 13:57:06 +00:00
|
|
|
return;
|
2015-02-20 10:53:25 +00:00
|
|
|
}
|
2015-02-23 14:57:00 +00:00
|
|
|
createCompositor();
|
2015-02-20 13:57:06 +00:00
|
|
|
|
2015-05-21 13:11:11 +00:00
|
|
|
startXwaylandServer();
|
2015-02-20 10:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ApplicationWayland::continueStartupWithX()
|
|
|
|
{
|
|
|
|
createX11Connection();
|
2015-02-20 08:33:36 +00:00
|
|
|
xcb_connection_t *c = x11Connection();
|
2015-02-20 10:53:25 +00:00
|
|
|
if (!c) {
|
|
|
|
// about to quit
|
|
|
|
return;
|
|
|
|
}
|
2015-02-20 08:33:36 +00:00
|
|
|
QSocketNotifier *notifier = new QSocketNotifier(xcb_get_file_descriptor(c), QSocketNotifier::Read, this);
|
|
|
|
auto processXcbEvents = [this, c] {
|
|
|
|
while (auto event = xcb_poll_for_event(c)) {
|
|
|
|
updateX11Time(event);
|
2015-04-22 09:23:06 +00:00
|
|
|
long result = 0;
|
|
|
|
if (QThread::currentThread()->eventDispatcher()->filterNativeEvent(QByteArrayLiteral("xcb_generic_event_t"), event, &result)) {
|
|
|
|
free(event);
|
|
|
|
continue;
|
|
|
|
}
|
2015-02-20 08:33:36 +00:00
|
|
|
if (Workspace::self()) {
|
|
|
|
Workspace::self()->workspaceEvent(event);
|
|
|
|
}
|
|
|
|
free(event);
|
|
|
|
}
|
|
|
|
xcb_flush(c);
|
|
|
|
};
|
|
|
|
connect(notifier, &QSocketNotifier::activated, this, processXcbEvents);
|
|
|
|
connect(QThread::currentThread()->eventDispatcher(), &QAbstractEventDispatcher::aboutToBlock, this, processXcbEvents);
|
|
|
|
connect(QThread::currentThread()->eventDispatcher(), &QAbstractEventDispatcher::awake, this, processXcbEvents);
|
2014-08-12 07:08:48 +00:00
|
|
|
|
2015-02-20 10:53:25 +00:00
|
|
|
// create selection owner for WM_S0 - magic X display number expected by XWayland
|
|
|
|
KSelectionOwner owner("WM_S0", c, x11RootWindow());
|
|
|
|
owner.claim(true);
|
2014-08-12 07:08:48 +00:00
|
|
|
|
|
|
|
createAtoms();
|
|
|
|
|
|
|
|
setupEventFilters();
|
|
|
|
|
|
|
|
// Check whether another windowmanager is running
|
|
|
|
const uint32_t maskValues[] = {XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT};
|
|
|
|
ScopedCPointer<xcb_generic_error_t> redirectCheck(xcb_request_check(connection(),
|
|
|
|
xcb_change_window_attributes_checked(connection(),
|
|
|
|
rootWindow(),
|
|
|
|
XCB_CW_EVENT_MASK,
|
|
|
|
maskValues)));
|
|
|
|
if (!redirectCheck.isNull()) {
|
2014-08-12 07:45:43 +00:00
|
|
|
fputs(i18n("kwin_wayland: an X11 window manager is running on the X11 Display.\n").toLocal8Bit().constData(), stderr);
|
|
|
|
::exit(1);
|
|
|
|
}
|
|
|
|
|
2015-06-13 02:06:12 +00:00
|
|
|
if (!m_inputMethodServerToStart.isEmpty()) {
|
|
|
|
int socket = dup(waylandServer()->createInputMethodConnection());
|
|
|
|
if (socket >= 0) {
|
|
|
|
QProcessEnvironment environment = QProcessEnvironment::systemEnvironment();
|
|
|
|
environment.insert(QStringLiteral("WAYLAND_SOCKET"), QByteArray::number(socket));
|
|
|
|
environment.insert(QStringLiteral("QT_QPA_PLATFORM"), QStringLiteral("wayland"));
|
|
|
|
environment.remove("DISPLAY");
|
|
|
|
environment.remove("WAYLAND_DISPLAY");
|
2015-06-13 19:29:56 +00:00
|
|
|
environment.remove(QStringLiteral("EGL_PLATFORM"));
|
2015-06-13 02:06:12 +00:00
|
|
|
QProcess *p = new QProcess(this);
|
|
|
|
p->setProcessEnvironment(environment);
|
|
|
|
p->start(m_inputMethodServerToStart);
|
|
|
|
p->waitForStarted();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-21 09:21:28 +00:00
|
|
|
// start the applications passed to us as command line arguments
|
|
|
|
if (!m_applicationsToStart.isEmpty()) {
|
|
|
|
QProcessEnvironment environment = QProcessEnvironment::systemEnvironment();
|
|
|
|
environment.remove(QStringLiteral("WAYLAND_SOCKET"));
|
|
|
|
environment.remove(QStringLiteral("QT_QPA_PLATFORM"));
|
2015-05-18 08:58:33 +00:00
|
|
|
environment.remove(QStringLiteral("QT_WAYLAND_DISABLE_WINDOWDECORATION"));
|
2015-06-13 19:29:56 +00:00
|
|
|
environment.remove(QStringLiteral("EGL_PLATFORM"));
|
2015-04-21 09:21:28 +00:00
|
|
|
environment.insert(QStringLiteral("DISPLAY"), QString::fromUtf8(qgetenv("DISPLAY")));
|
|
|
|
// TODO: maybe create a socket per process?
|
|
|
|
environment.insert(QStringLiteral("WAYLAND_DISPLAY"), waylandServer()->display()->socketName());
|
|
|
|
for (const QString &application: m_applicationsToStart) {
|
|
|
|
// note: this will kill the started process when we exit
|
|
|
|
// this is going to happen anyway as we are the wayland and X server the app connects to
|
|
|
|
QProcess *p = new QProcess(this);
|
|
|
|
p->setProcessEnvironment(environment);
|
|
|
|
p->start(application);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-25 10:42:56 +00:00
|
|
|
// HACK: create a QWindow in a thread to force QtWayland to create the client buffer integration
|
|
|
|
// this performs an eglInitialize which would block as it does a roundtrip to the Wayland server
|
|
|
|
// in the main thread. By moving into a thread we get the initialize without hitting the problem
|
|
|
|
// This needs to be done before creating the Workspace as from inside Workspace the dangerous code
|
|
|
|
// gets hit in the main thread
|
|
|
|
QFutureWatcher<void> *eglInitWatcher = new QFutureWatcher<void>(this);
|
|
|
|
connect(eglInitWatcher, &QFutureWatcher<void>::finished, this,
|
|
|
|
[this, eglInitWatcher] {
|
|
|
|
eglInitWatcher->deleteLater();
|
2014-08-12 07:08:48 +00:00
|
|
|
|
2015-02-25 10:42:56 +00:00
|
|
|
createWorkspace();
|
2014-08-12 07:08:48 +00:00
|
|
|
|
2015-02-25 10:42:56 +00:00
|
|
|
Xcb::sync(); // Trigger possible errors, there's still a chance to abort
|
|
|
|
|
|
|
|
notifyKSplash();
|
2015-05-18 09:23:45 +00:00
|
|
|
waylandServer()->createDummyQtWindow();
|
2015-02-25 10:42:56 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
eglInitWatcher->setFuture(QtConcurrent::run([] {
|
|
|
|
QWindow w;
|
|
|
|
w.setSurfaceType(QSurface::RasterGLSurface);
|
|
|
|
w.create();
|
|
|
|
}));
|
2014-08-12 07:08:48 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 10:53:25 +00:00
|
|
|
void ApplicationWayland::createX11Connection()
|
2015-02-20 08:33:36 +00:00
|
|
|
{
|
|
|
|
int screenNumber = 0;
|
|
|
|
xcb_connection_t *c = nullptr;
|
2015-02-20 10:53:25 +00:00
|
|
|
if (m_xcbConnectionFd == -1) {
|
2015-02-20 08:33:36 +00:00
|
|
|
c = xcb_connect(nullptr, &screenNumber);
|
|
|
|
} else {
|
2015-02-20 10:53:25 +00:00
|
|
|
c = xcb_connect_to_fd(m_xcbConnectionFd, nullptr);
|
2015-02-20 08:33:36 +00:00
|
|
|
}
|
2015-02-20 10:53:25 +00:00
|
|
|
if (int error = xcb_connection_has_error(c)) {
|
|
|
|
std::cerr << "FATAL ERROR: Creating connection to XServer failed: " << error << std::endl;
|
2015-02-20 08:33:36 +00:00
|
|
|
exit(1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setX11Connection(c);
|
|
|
|
// we don't support X11 multi-head in Wayland
|
|
|
|
setX11ScreenNumber(screenNumber);
|
|
|
|
setX11RootWindow(defaultScreen()->root);
|
|
|
|
}
|
|
|
|
|
2015-05-20 11:11:17 +00:00
|
|
|
bool ApplicationWayland::notify(QObject *o, QEvent *e)
|
|
|
|
{
|
2015-05-26 11:53:23 +00:00
|
|
|
if (QWindow *w = qobject_cast< QWindow* >(o)) {
|
2015-05-20 11:11:17 +00:00
|
|
|
if (e->type() == QEvent::Expose) {
|
|
|
|
// ensure all Wayland events both on client and server side are dispatched
|
|
|
|
// otherwise it is possible that Qt starts rendering and blocks the main gui thread
|
|
|
|
// as it waits for the callback of the last frame
|
|
|
|
waylandServer()->dispatch();
|
|
|
|
}
|
2015-05-26 11:53:23 +00:00
|
|
|
if (e->type() == QEvent::Show) {
|
|
|
|
// on QtWayland windows with X11BypassWindowManagerHint are not shown, thus we need to remove it
|
|
|
|
// as the flag is interpreted only before the PlatformWindow is created we need to destroy the window first
|
|
|
|
if (w->flags() & Qt::X11BypassWindowManagerHint) {
|
|
|
|
w->setFlags(w->flags() & ~Qt::X11BypassWindowManagerHint);
|
|
|
|
w->destroy();
|
|
|
|
w->show();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2015-05-20 11:11:17 +00:00
|
|
|
}
|
|
|
|
return Application::notify(o, e);
|
|
|
|
}
|
|
|
|
|
2015-05-21 13:11:11 +00:00
|
|
|
void ApplicationWayland::startXwaylandServer()
|
2014-08-12 13:27:35 +00:00
|
|
|
{
|
|
|
|
int pipeFds[2];
|
|
|
|
if (pipe(pipeFds) != 0) {
|
2015-02-09 12:40:01 +00:00
|
|
|
std::cerr << "FATAL ERROR failed to create pipe to start Xwayland " << std::endl;
|
2014-08-12 13:27:35 +00:00
|
|
|
exit(1);
|
2015-05-21 13:11:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
int sx[2];
|
|
|
|
if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0, sx) < 0) {
|
|
|
|
std::cerr << "FATAL ERROR: failed to open socket to open XCB connection" << std::endl;
|
|
|
|
exit(1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int fd = dup(sx[1]);
|
|
|
|
if (fd < 0) {
|
|
|
|
std::cerr << "FATAL ERROR: failed to open socket to open XCB connection" << std::endl;
|
|
|
|
exit(20);
|
|
|
|
return;
|
2014-08-12 13:27:35 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 13:11:11 +00:00
|
|
|
const int waylandSocket = waylandServer()->createXWaylandConnection();
|
|
|
|
if (waylandSocket == -1) {
|
|
|
|
std::cerr << "FATAL ERROR: failed to open socket for Xwayland" << std::endl;
|
|
|
|
exit(1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const int wlfd = dup(waylandSocket);
|
|
|
|
if (wlfd < 0) {
|
|
|
|
std::cerr << "FATAL ERROR: failed to open socket for Xwayland" << std::endl;
|
2014-08-12 13:27:35 +00:00
|
|
|
exit(20);
|
2015-05-21 13:11:11 +00:00
|
|
|
return;
|
2014-08-12 13:27:35 +00:00
|
|
|
}
|
2015-05-21 13:11:11 +00:00
|
|
|
|
|
|
|
m_xcbConnectionFd = sx[0];
|
|
|
|
|
|
|
|
m_xwaylandProcess = new QProcess(kwinApp());
|
|
|
|
m_xwaylandProcess->setProgram(QStringLiteral("Xwayland"));
|
|
|
|
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
|
|
|
|
env.insert("WAYLAND_SOCKET", QByteArray::number(wlfd));
|
|
|
|
m_xwaylandProcess->setProcessEnvironment(env);
|
|
|
|
m_xwaylandProcess->setArguments({QStringLiteral("-displayfd"),
|
|
|
|
QString::number(pipeFds[1]),
|
|
|
|
QStringLiteral("-rootless"),
|
|
|
|
QStringLiteral("-wm"),
|
|
|
|
QString::number(fd)});
|
|
|
|
connect(m_xwaylandProcess, static_cast<void (QProcess::*)(QProcess::ProcessError)>(&QProcess::error), this,
|
|
|
|
[] (QProcess::ProcessError error) {
|
|
|
|
if (error == QProcess::FailedToStart) {
|
|
|
|
std::cerr << "FATAL ERROR: failed to start Xwayland" << std::endl;
|
|
|
|
} else {
|
|
|
|
std::cerr << "FATAL ERROR: Xwayland failed, going to exit now" << std::endl;
|
|
|
|
}
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
const int xDisplayPipe = pipeFds[0];
|
|
|
|
connect(m_xwaylandProcess, &QProcess::started, this,
|
|
|
|
[this, xDisplayPipe] {
|
|
|
|
QFutureWatcher<void> *watcher = new QFutureWatcher<void>(this);
|
|
|
|
QObject::connect(watcher, &QFutureWatcher<void>::finished, this, &ApplicationWayland::continueStartupWithX, Qt::QueuedConnection);
|
|
|
|
QObject::connect(watcher, &QFutureWatcher<void>::finished, watcher, &QFutureWatcher<void>::deleteLater, Qt::QueuedConnection);
|
|
|
|
watcher->setFuture(QtConcurrent::run(readDisplay, xDisplayPipe));
|
|
|
|
}
|
|
|
|
);
|
|
|
|
m_xwaylandProcess->start();
|
2014-08-12 13:27:35 +00:00
|
|
|
close(pipeFds[1]);
|
2015-02-09 12:28:37 +00:00
|
|
|
}
|
2014-08-12 13:27:35 +00:00
|
|
|
|
2015-02-09 12:28:37 +00:00
|
|
|
static void readDisplay(int pipe)
|
|
|
|
{
|
2014-08-12 13:27:35 +00:00
|
|
|
QFile readPipe;
|
2015-02-09 12:28:37 +00:00
|
|
|
if (!readPipe.open(pipe, QIODevice::ReadOnly)) {
|
|
|
|
std::cerr << "FATAL ERROR failed to open pipe to start X Server" << std::endl;
|
2014-08-12 13:27:35 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
QByteArray displayNumber = readPipe.readLine();
|
|
|
|
|
|
|
|
displayNumber.prepend(QByteArray(":"));
|
|
|
|
displayNumber.remove(displayNumber.size() -1, 1);
|
2014-11-07 13:58:21 +00:00
|
|
|
std::cout << "X-Server started on display " << displayNumber.constData() << std::endl;
|
2014-08-12 13:27:35 +00:00
|
|
|
|
|
|
|
setenv("DISPLAY", displayNumber.constData(), true);
|
|
|
|
|
|
|
|
// close our pipe
|
2015-02-09 12:28:37 +00:00
|
|
|
close(pipe);
|
2014-08-12 13:27:35 +00:00
|
|
|
}
|
|
|
|
|
2015-05-18 09:09:48 +00:00
|
|
|
EventDispatcher::EventDispatcher(QObject *parent)
|
|
|
|
: QEventDispatcherUNIX(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
EventDispatcher::~EventDispatcher() = default;
|
|
|
|
|
|
|
|
bool EventDispatcher::processEvents(QEventLoop::ProcessEventsFlags flags)
|
|
|
|
{
|
2015-05-18 09:33:00 +00:00
|
|
|
waylandServer()->dispatch();
|
2015-05-18 09:09:48 +00:00
|
|
|
const bool didSendEvents = QEventDispatcherUNIX::processEvents(flags);
|
|
|
|
return QWindowSystemInterface::sendWindowSystemEvents(flags) || didSendEvents;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EventDispatcher::hasPendingEvents()
|
|
|
|
{
|
|
|
|
return QEventDispatcherUNIX::hasPendingEvents() || QWindowSystemInterface::windowSystemEventsQueued();
|
|
|
|
}
|
|
|
|
|
2014-08-12 07:08:48 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
extern "C"
|
|
|
|
KWIN_EXPORT int kdemain(int argc, char * argv[])
|
|
|
|
{
|
2015-02-09 12:40:01 +00:00
|
|
|
// process command line arguments to figure out whether we have to start Xwayland and the Wayland socket
|
2015-02-09 12:28:37 +00:00
|
|
|
QByteArray waylandSocket;
|
2014-08-12 13:27:35 +00:00
|
|
|
for (int i = 1; i < argc; ++i) {
|
2015-01-24 02:13:45 +00:00
|
|
|
QByteArray arg = QByteArray::fromRawData(argv[i], qstrlen(argv[i]));
|
2015-02-09 12:28:37 +00:00
|
|
|
if (arg == "--socket" || arg == "-s") {
|
|
|
|
if (++i < argc) {
|
|
|
|
waylandSocket = QByteArray::fromRawData(argv[i], qstrlen(argv[i]));
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (arg.startsWith("--socket=")) {
|
|
|
|
waylandSocket = arg.mid(9);
|
|
|
|
}
|
2014-08-12 13:27:35 +00:00
|
|
|
}
|
|
|
|
|
2015-02-20 08:33:36 +00:00
|
|
|
// set our own event dispatcher to be able to dispatch events before the event loop is started
|
2015-05-18 09:09:48 +00:00
|
|
|
QAbstractEventDispatcher *eventDispatcher = new KWin::EventDispatcher();
|
2015-02-20 08:33:36 +00:00
|
|
|
QCoreApplication::setEventDispatcher(eventDispatcher);
|
2015-02-09 12:28:37 +00:00
|
|
|
KWin::WaylandServer *server = KWin::WaylandServer::create(nullptr);
|
|
|
|
server->init(waylandSocket);
|
|
|
|
|
2014-08-12 07:08:48 +00:00
|
|
|
KWin::Application::setupMalloc();
|
|
|
|
KWin::Application::setupLocalizedString();
|
|
|
|
KWin::Application::setupLoggingCategoryFilters();
|
|
|
|
|
2014-08-13 11:13:44 +00:00
|
|
|
if (signal(SIGTERM, KWin::sighandler) == SIG_IGN)
|
|
|
|
signal(SIGTERM, SIG_IGN);
|
|
|
|
if (signal(SIGINT, KWin::sighandler) == SIG_IGN)
|
|
|
|
signal(SIGINT, SIG_IGN);
|
|
|
|
if (signal(SIGHUP, KWin::sighandler) == SIG_IGN)
|
|
|
|
signal(SIGHUP, SIG_IGN);
|
2015-03-31 07:30:19 +00:00
|
|
|
// ensure that no thread takes SIGUSR
|
|
|
|
sigset_t userSiganls;
|
|
|
|
sigemptyset(&userSiganls);
|
|
|
|
sigaddset(&userSiganls, SIGUSR1);
|
|
|
|
sigaddset(&userSiganls, SIGUSR2);
|
|
|
|
pthread_sigmask(SIG_BLOCK, &userSiganls, nullptr);
|
2014-08-13 11:13:44 +00:00
|
|
|
|
2015-03-17 09:31:18 +00:00
|
|
|
// enforce wayland plugin, unfortunately command line switch has precedence
|
|
|
|
setenv("QT_QPA_PLATFORM", "wayland", true);
|
|
|
|
#if (QT_VERSION < QT_VERSION_CHECK(5, 4, 2))
|
|
|
|
// TODO: remove warning once we depend on Qt 5.5
|
|
|
|
qWarning() << "QtWayland 5.4.2 required, application might freeze if not present!";
|
|
|
|
#endif
|
|
|
|
|
2015-04-17 16:13:39 +00:00
|
|
|
qunsetenv("QT_DEVICE_PIXEL_RATIO");
|
2015-06-13 02:06:12 +00:00
|
|
|
qunsetenv("QT_IM_MODULE");
|
2015-02-25 13:46:30 +00:00
|
|
|
qputenv("WAYLAND_SOCKET", QByteArray::number(server->createQtConnection()));
|
2015-05-18 08:58:33 +00:00
|
|
|
qputenv("QT_WAYLAND_DISABLE_WINDOWDECORATION", "1");
|
2014-08-12 07:08:48 +00:00
|
|
|
KWin::ApplicationWayland a(argc, argv);
|
|
|
|
a.setupTranslator();
|
|
|
|
|
2015-02-09 12:28:37 +00:00
|
|
|
server->setParent(&a);
|
|
|
|
|
2014-08-12 07:08:48 +00:00
|
|
|
KWin::Application::createAboutData();
|
|
|
|
|
2015-01-09 15:00:16 +00:00
|
|
|
QCommandLineOption xwaylandOption(QStringLiteral("xwayland"),
|
2015-02-09 12:40:01 +00:00
|
|
|
i18n("Start a rootless Xwayland server."));
|
2015-02-09 12:28:37 +00:00
|
|
|
QCommandLineOption waylandSocketOption(QStringList{QStringLiteral("s"), QStringLiteral("socket")},
|
|
|
|
i18n("Name of the Wayland socket to listen on. If not set \"wayland-0\" is used."),
|
|
|
|
QStringLiteral("socket"));
|
2015-03-19 07:29:34 +00:00
|
|
|
QCommandLineOption windowedOption(QStringLiteral("windowed"),
|
|
|
|
i18n("Use a nested compositor in windowed mode."));
|
2015-03-31 09:00:46 +00:00
|
|
|
QCommandLineOption framebufferOption(QStringLiteral("framebuffer"),
|
|
|
|
i18n("Render to framebuffer."));
|
|
|
|
QCommandLineOption framebufferDeviceOption(QStringLiteral("fb-device"),
|
|
|
|
i18n("The framebuffer device to render to."),
|
|
|
|
QStringLiteral("fbdev"));
|
|
|
|
framebufferDeviceOption.setDefaultValue(QStringLiteral("/dev/fb0"));
|
2015-03-19 07:29:34 +00:00
|
|
|
QCommandLineOption x11DisplayOption(QStringLiteral("x11-display"),
|
|
|
|
i18n("The X11 Display to use in windowed mode on platform X11."),
|
|
|
|
QStringLiteral("display"));
|
2015-03-23 11:45:21 +00:00
|
|
|
QCommandLineOption waylandDisplayOption(QStringLiteral("wayland-display"),
|
|
|
|
i18n("The Wayland Display to use in windowed mode on platform Wayland."),
|
|
|
|
QStringLiteral("display"));
|
2015-03-19 07:29:34 +00:00
|
|
|
QCommandLineOption widthOption(QStringLiteral("width"),
|
|
|
|
i18n("The width for windowed mode. Default width is 1024."),
|
|
|
|
QStringLiteral("width"));
|
|
|
|
widthOption.setDefaultValue(QString::number(1024));
|
|
|
|
QCommandLineOption heightOption(QStringLiteral("height"),
|
|
|
|
i18n("The height for windowed mode. Default height is 768."),
|
|
|
|
QStringLiteral("height"));
|
|
|
|
heightOption.setDefaultValue(QString::number(768));
|
2014-08-12 13:27:35 +00:00
|
|
|
|
2014-08-12 07:08:48 +00:00
|
|
|
QCommandLineParser parser;
|
|
|
|
a.setupCommandLine(&parser);
|
2015-01-09 15:00:16 +00:00
|
|
|
parser.addOption(xwaylandOption);
|
2015-02-09 12:28:37 +00:00
|
|
|
parser.addOption(waylandSocketOption);
|
2015-03-19 07:29:34 +00:00
|
|
|
parser.addOption(windowedOption);
|
|
|
|
parser.addOption(x11DisplayOption);
|
2015-03-23 11:45:21 +00:00
|
|
|
parser.addOption(waylandDisplayOption);
|
2015-03-31 09:00:46 +00:00
|
|
|
parser.addOption(framebufferOption);
|
|
|
|
parser.addOption(framebufferDeviceOption);
|
2015-03-19 07:29:34 +00:00
|
|
|
parser.addOption(widthOption);
|
|
|
|
parser.addOption(heightOption);
|
2015-05-06 15:47:07 +00:00
|
|
|
#if HAVE_LIBHYBRIS
|
|
|
|
QCommandLineOption hwcomposerOption(QStringLiteral("hwcomposer"), i18n("Use libhybris hwcomposer"));
|
|
|
|
parser.addOption(hwcomposerOption);
|
|
|
|
#endif
|
2014-08-15 12:03:52 +00:00
|
|
|
#if HAVE_INPUT
|
|
|
|
QCommandLineOption libinputOption(QStringLiteral("libinput"),
|
|
|
|
i18n("Enable libinput support for input events processing. Note: never use in a nested session."));
|
|
|
|
parser.addOption(libinputOption);
|
2015-04-09 12:49:32 +00:00
|
|
|
#endif
|
|
|
|
#if HAVE_DRM
|
|
|
|
QCommandLineOption drmOption(QStringLiteral("drm"), i18n("Render through drm node."));
|
|
|
|
parser.addOption(drmOption);
|
2014-08-15 12:03:52 +00:00
|
|
|
#endif
|
2015-06-13 02:06:12 +00:00
|
|
|
|
|
|
|
QCommandLineOption inputMethodOption(QStringLiteral("inputmethod"),
|
|
|
|
i18n("Input method that KWin starts."),
|
|
|
|
QStringLiteral("path/to/imserver"));
|
|
|
|
parser.addOption(inputMethodOption);
|
|
|
|
|
2015-04-21 09:21:28 +00:00
|
|
|
parser.addPositionalArgument(QStringLiteral("applications"),
|
|
|
|
i18n("Applications to start once Wayland and Xwayland server are started"),
|
|
|
|
QStringLiteral("[/path/to/application...]"));
|
2014-08-12 07:08:48 +00:00
|
|
|
|
|
|
|
parser.process(a);
|
|
|
|
a.processCommandLine(&parser);
|
|
|
|
|
2014-08-15 12:03:52 +00:00
|
|
|
#if HAVE_INPUT
|
|
|
|
KWin::Application::setUseLibinput(parser.isSet(libinputOption));
|
|
|
|
#endif
|
|
|
|
|
2015-05-05 15:58:09 +00:00
|
|
|
QString pluginName;
|
|
|
|
QSize initialWindowSize;
|
|
|
|
QByteArray deviceIdentifier;
|
2015-03-31 09:00:46 +00:00
|
|
|
if (parser.isSet(windowedOption) && parser.isSet(framebufferOption)) {
|
|
|
|
std::cerr << "FATAL ERROR Cannot have both --windowed and --framebuffer" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
2015-04-09 12:49:32 +00:00
|
|
|
#if HAVE_DRM
|
|
|
|
if (parser.isSet(drmOption) && (parser.isSet(windowedOption) || parser.isSet(framebufferOption))) {
|
|
|
|
std::cerr << "FATAL ERROR Cannot have both --windowed/--framebuffer and --drm" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
2015-05-05 15:58:09 +00:00
|
|
|
if (parser.isSet(drmOption)) {
|
|
|
|
pluginName = QStringLiteral("KWinWaylandDrmBackend");
|
|
|
|
}
|
2015-04-09 12:49:32 +00:00
|
|
|
#endif
|
2015-03-31 09:00:46 +00:00
|
|
|
|
2015-03-19 07:29:34 +00:00
|
|
|
if (parser.isSet(windowedOption)) {
|
|
|
|
bool ok = false;
|
|
|
|
const int width = parser.value(widthOption).toInt(&ok);
|
|
|
|
if (!ok) {
|
|
|
|
std::cerr << "FATAL ERROR incorrect value for width" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
const int height = parser.value(heightOption).toInt(&ok);
|
|
|
|
if (!ok) {
|
|
|
|
std::cerr << "FATAL ERROR incorrect value for height" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
2015-05-05 15:58:09 +00:00
|
|
|
initialWindowSize = QSize(width, height);
|
2015-03-23 11:45:21 +00:00
|
|
|
if (parser.isSet(x11DisplayOption)) {
|
2015-05-05 15:58:09 +00:00
|
|
|
deviceIdentifier = parser.value(x11DisplayOption).toUtf8();
|
2015-03-23 11:45:21 +00:00
|
|
|
} else if (!parser.isSet(waylandDisplayOption)) {
|
2015-05-05 15:58:09 +00:00
|
|
|
deviceIdentifier = qgetenv("DISPLAY");
|
2015-03-23 11:45:21 +00:00
|
|
|
}
|
2015-05-05 15:58:09 +00:00
|
|
|
if (!deviceIdentifier.isEmpty()) {
|
|
|
|
pluginName = QStringLiteral("KWinWaylandX11Backend");
|
|
|
|
} else {
|
|
|
|
if (parser.isSet(waylandDisplayOption)) {
|
|
|
|
deviceIdentifier = parser.value(waylandDisplayOption).toUtf8();
|
|
|
|
} else if (!parser.isSet(x11DisplayOption)) {
|
|
|
|
deviceIdentifier = qgetenv("WAYLAND_DISPLAY");
|
|
|
|
}
|
|
|
|
if (!deviceIdentifier.isEmpty()) {
|
|
|
|
pluginName = QStringLiteral("KWinWaylandWaylandBackend");
|
|
|
|
}
|
2015-03-19 07:29:34 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-31 09:00:46 +00:00
|
|
|
if (parser.isSet(framebufferOption)) {
|
2015-05-05 15:58:09 +00:00
|
|
|
pluginName = QStringLiteral("KWinWaylandFbdevBackend");
|
|
|
|
deviceIdentifier = parser.value(framebufferDeviceOption).toUtf8();
|
|
|
|
}
|
2015-05-06 15:47:07 +00:00
|
|
|
#if HAVE_LIBHYBRIS
|
|
|
|
if (parser.isSet(hwcomposerOption)) {
|
|
|
|
pluginName = QStringLiteral("KWinWaylandHwcomposerBackend");
|
|
|
|
}
|
|
|
|
#endif
|
2015-05-05 15:58:09 +00:00
|
|
|
|
|
|
|
const auto pluginCandidates = KPluginLoader::findPlugins(QStringLiteral("org.kde.kwin.waylandbackends"),
|
|
|
|
[&pluginName] (const KPluginMetaData &plugin) {
|
|
|
|
return plugin.pluginId() == pluginName;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
if (pluginCandidates.isEmpty()) {
|
|
|
|
std::cerr << "FATAL ERROR: could not find a backend" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
for (const auto &candidate: pluginCandidates) {
|
|
|
|
if (qobject_cast<KWin::AbstractBackend*>(candidate.instantiate())) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!server->backend()) {
|
|
|
|
std::cerr << "FATAL ERROR: could not instantiate a backend" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
server->backend()->setParent(server);
|
|
|
|
if (!deviceIdentifier.isEmpty()) {
|
|
|
|
server->backend()->setDeviceIdentifier(deviceIdentifier);
|
|
|
|
}
|
|
|
|
if (initialWindowSize.isValid()) {
|
|
|
|
server->backend()->setInitialWindowSize(initialWindowSize);
|
2015-03-31 09:00:46 +00:00
|
|
|
}
|
2015-03-19 07:29:34 +00:00
|
|
|
|
2015-06-12 23:48:11 +00:00
|
|
|
QObject::connect(&a, &KWin::Application::workspaceCreated, server, &KWin::WaylandServer::initWorkspace);
|
2015-02-20 10:53:25 +00:00
|
|
|
a.setStartXwayland(parser.isSet(xwaylandOption));
|
2015-04-21 09:21:28 +00:00
|
|
|
a.setApplicationsToStart(parser.positionalArguments());
|
2015-06-13 02:06:12 +00:00
|
|
|
a.setInputMethodServerToStart(parser.value(inputMethodOption));
|
2015-02-20 10:53:25 +00:00
|
|
|
a.start();
|
2014-08-12 07:08:48 +00:00
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|