ef72bae42f
The main motivation behind this change is to prepare input abstractions for virtual input devices so the wl_seat can properly advertise caps or the cursor getting properly mapped/unmapped when a fake pointer is added/removed on a system without a hardware mouse connected. With this, there are three abstractions - InputDevice, InputBackend, and InputRedirection. An InputDevice represents an input device such as a mouse, a keyboard, a tablet, etc. The InputBackend class notifies the InputRedirection about (dis-)connected devices. The InputRedirection manages the input devices. Such design allows to unify the event flow for real and virtual input devices. There can be several input backends active. For example, the libinput backend and an input backend that provides virtual input devices, e.g. libeis or org_kde_kwin_fake_input.
610 lines
18 KiB
C++
610 lines
18 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
SPDX-FileCopyrightText: 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "main.h"
|
|
// kwin
|
|
#include "platform.h"
|
|
#include "atoms.h"
|
|
#ifdef KWIN_BUILD_CMS
|
|
#include "colormanager.h"
|
|
#endif
|
|
#include "composite.h"
|
|
#include "cursor.h"
|
|
#include "input.h"
|
|
#include "inputmethod.h"
|
|
#include "options.h"
|
|
#include "pluginmanager.h"
|
|
#include "screens.h"
|
|
#include "screenlockerwatcher.h"
|
|
#include "sm.h"
|
|
#include "workspace.h"
|
|
#include "x11eventfilter.h"
|
|
#include "xcbutils.h"
|
|
|
|
#include <kwineffects.h>
|
|
|
|
// KDE
|
|
#include <KAboutData>
|
|
#include <KLocalizedString>
|
|
#include <KPluginMetaData>
|
|
#include <KWaylandServer/surface_interface.h>
|
|
// Qt
|
|
#include <qplatformdefs.h>
|
|
#include <QCommandLineParser>
|
|
#include <QQuickWindow>
|
|
#include <QStandardPaths>
|
|
#include <QTranslator>
|
|
#include <QLibraryInfo>
|
|
|
|
// system
|
|
#ifdef HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif // HAVE_UNISTD_H
|
|
|
|
#ifdef HAVE_MALLOC_H
|
|
#include <malloc.h>
|
|
#endif // HAVE_MALLOC_H
|
|
|
|
// xcb
|
|
#include <xcb/damage.h>
|
|
#ifndef XCB_GE_GENERIC
|
|
#define XCB_GE_GENERIC 35
|
|
#endif
|
|
|
|
Q_DECLARE_METATYPE(KSharedConfigPtr)
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
Options* options;
|
|
|
|
Atoms* atoms;
|
|
|
|
int screen_number = -1;
|
|
bool is_multihead = false;
|
|
|
|
int Application::crashes = 0;
|
|
|
|
bool Application::isX11MultiHead()
|
|
{
|
|
return is_multihead;
|
|
}
|
|
|
|
void Application::setX11MultiHead(bool multiHead)
|
|
{
|
|
is_multihead = multiHead;
|
|
}
|
|
|
|
void Application::setX11ScreenNumber(int screenNumber)
|
|
{
|
|
screen_number = screenNumber;
|
|
}
|
|
|
|
int Application::x11ScreenNumber()
|
|
{
|
|
return screen_number;
|
|
}
|
|
|
|
Application::Application(Application::OperationMode mode, int &argc, char **argv)
|
|
: QApplication(argc, argv)
|
|
, m_eventFilter(new XcbEventFilter())
|
|
, m_configLock(false)
|
|
, m_config()
|
|
, m_kxkbConfig()
|
|
, m_operationMode(mode)
|
|
{
|
|
qRegisterMetaType<Options::WindowOperation>("Options::WindowOperation");
|
|
qRegisterMetaType<KWin::EffectWindow*>();
|
|
qRegisterMetaType<KWaylandServer::SurfaceInterface *>("KWaylandServer::SurfaceInterface *");
|
|
qRegisterMetaType<KSharedConfigPtr>();
|
|
qRegisterMetaType<std::chrono::nanoseconds>();
|
|
}
|
|
|
|
void Application::setConfigLock(bool lock)
|
|
{
|
|
m_configLock = lock;
|
|
}
|
|
|
|
Application::OperationMode Application::operationMode() const
|
|
{
|
|
return m_operationMode;
|
|
}
|
|
|
|
void Application::setOperationMode(OperationMode mode)
|
|
{
|
|
m_operationMode = mode;
|
|
}
|
|
|
|
bool Application::shouldUseWaylandForCompositing() const
|
|
{
|
|
return m_operationMode == OperationModeWaylandOnly || m_operationMode == OperationModeXwayland;
|
|
}
|
|
|
|
void Application::start()
|
|
{
|
|
// Prevent KWin from synchronously autostarting kactivitymanagerd
|
|
// Indeed, kactivitymanagerd being a QApplication it will depend
|
|
// on KWin startup... this is unsatisfactory dependency wise,
|
|
// and it turns out that it leads to a deadlock in the Wayland case
|
|
setProperty("org.kde.KActivities.core.disableAutostart", true);
|
|
|
|
setQuitOnLastWindowClosed(false);
|
|
|
|
if (!m_config) {
|
|
m_config = KSharedConfig::openConfig();
|
|
}
|
|
if (!m_config->isImmutable() && m_configLock) {
|
|
// TODO: This shouldn't be necessary
|
|
//config->setReadOnly( true );
|
|
m_config->reparseConfiguration();
|
|
}
|
|
if (!m_kxkbConfig) {
|
|
m_kxkbConfig = KSharedConfig::openConfig(QStringLiteral("kxkbrc"), KConfig::NoGlobals);
|
|
}
|
|
|
|
performStartup();
|
|
}
|
|
|
|
Application::~Application()
|
|
{
|
|
delete options;
|
|
destroyPlugins();
|
|
destroyColorManager();
|
|
destroyAtoms();
|
|
destroyPlatform();
|
|
}
|
|
|
|
void Application::notifyStarted()
|
|
{
|
|
Q_EMIT started();
|
|
}
|
|
|
|
void Application::destroyAtoms()
|
|
{
|
|
delete atoms;
|
|
atoms = nullptr;
|
|
}
|
|
|
|
void Application::destroyPlatform()
|
|
{
|
|
delete m_platform;
|
|
m_platform = nullptr;
|
|
}
|
|
|
|
void Application::resetCrashesCount()
|
|
{
|
|
crashes = 0;
|
|
}
|
|
|
|
void Application::setCrashCount(int count)
|
|
{
|
|
crashes = count;
|
|
}
|
|
|
|
bool Application::wasCrash()
|
|
{
|
|
return crashes > 0;
|
|
}
|
|
|
|
static const char description[] = I18N_NOOP("KDE window manager");
|
|
|
|
void Application::createAboutData()
|
|
{
|
|
KAboutData aboutData(QStringLiteral(KWIN_NAME), // The program name used internally
|
|
i18n("KWin"), // A displayable program name string
|
|
QStringLiteral(KWIN_VERSION_STRING), // The program version string
|
|
i18n(description), // Short description of what the app does
|
|
KAboutLicense::GPL, // The license this code is released under
|
|
i18n("(c) 1999-2019, The KDE Developers")); // Copyright Statement
|
|
|
|
aboutData.addAuthor(i18n("Matthias Ettrich"), QString(), QStringLiteral("ettrich@kde.org"));
|
|
aboutData.addAuthor(i18n("Cristian Tibirna"), QString(), QStringLiteral("tibirna@kde.org"));
|
|
aboutData.addAuthor(i18n("Daniel M. Duley"), QString(), QStringLiteral("mosfet@kde.org"));
|
|
aboutData.addAuthor(i18n("Luboš Luňák"), QString(), QStringLiteral("l.lunak@kde.org"));
|
|
aboutData.addAuthor(i18n("Martin Flöser"), QString(), QStringLiteral("mgraesslin@kde.org"));
|
|
aboutData.addAuthor(i18n("David Edmundson"), QStringLiteral("Maintainer"), QStringLiteral("davidedmundson@kde.org"));
|
|
aboutData.addAuthor(i18n("Roman Gilg"), QStringLiteral("Maintainer"), QStringLiteral("subdiff@gmail.com"));
|
|
aboutData.addAuthor(i18n("Vlad Zahorodnii"), QStringLiteral("Maintainer"), QStringLiteral("vlad.zahorodnii@kde.org"));
|
|
KAboutData::setApplicationData(aboutData);
|
|
}
|
|
|
|
static const QString s_lockOption = QStringLiteral("lock");
|
|
static const QString s_crashesOption = QStringLiteral("crashes");
|
|
|
|
void Application::setupCommandLine(QCommandLineParser *parser)
|
|
{
|
|
QCommandLineOption lockOption(s_lockOption, i18n("Disable configuration options"));
|
|
QCommandLineOption crashesOption(s_crashesOption, i18n("Indicate that KWin has recently crashed n times"), QStringLiteral("n"));
|
|
|
|
parser->setApplicationDescription(i18n("KDE window manager"));
|
|
parser->addOption(lockOption);
|
|
parser->addOption(crashesOption);
|
|
KAboutData::applicationData().setupCommandLine(parser);
|
|
}
|
|
|
|
void Application::processCommandLine(QCommandLineParser *parser)
|
|
{
|
|
KAboutData aboutData = KAboutData::applicationData();
|
|
aboutData.processCommandLine(parser);
|
|
setConfigLock(parser->isSet(s_lockOption));
|
|
Application::setCrashCount(parser->value(s_crashesOption).toInt());
|
|
}
|
|
|
|
void Application::setupTranslator()
|
|
{
|
|
QTranslator *qtTranslator = new QTranslator(qApp);
|
|
qtTranslator->load("qt_" + QLocale::system().name(),
|
|
QLibraryInfo::location(QLibraryInfo::TranslationsPath));
|
|
installTranslator(qtTranslator);
|
|
}
|
|
|
|
void Application::setupMalloc()
|
|
{
|
|
#ifdef M_TRIM_THRESHOLD
|
|
// Prevent fragmentation of the heap by malloc (glibc).
|
|
//
|
|
// The default threshold is 128*1024, which can result in a large memory usage
|
|
// due to fragmentation especially if we use the raster graphicssystem. On the
|
|
// otherside if the threshold is too low, free() starts to permanently ask the kernel
|
|
// about shrinking the heap.
|
|
#ifdef HAVE_UNISTD_H
|
|
const int pagesize = sysconf(_SC_PAGESIZE);
|
|
#else
|
|
const int pagesize = 4*1024;
|
|
#endif // HAVE_UNISTD_H
|
|
mallopt(M_TRIM_THRESHOLD, 5*pagesize);
|
|
#endif // M_TRIM_THRESHOLD
|
|
}
|
|
|
|
void Application::setupLocalizedString()
|
|
{
|
|
KLocalizedString::setApplicationDomain("kwin");
|
|
}
|
|
|
|
void Application::createWorkspace()
|
|
{
|
|
// we want all QQuickWindows with an alpha buffer, do here as Workspace might create QQuickWindows
|
|
QQuickWindow::setDefaultAlphaBuffer(true);
|
|
|
|
// This tries to detect compositing options and can use GLX. GLX problems
|
|
// (X errors) shouldn't cause kwin to abort, so this is out of the
|
|
// critical startup section where x errors cause kwin to abort.
|
|
|
|
// create workspace.
|
|
(void) new Workspace();
|
|
Q_EMIT workspaceCreated();
|
|
}
|
|
|
|
void Application::createInput()
|
|
{
|
|
ScreenLockerWatcher::create(this);
|
|
auto input = InputRedirection::create(this);
|
|
input->init();
|
|
m_platform->createPlatformCursor(this);
|
|
}
|
|
|
|
void Application::createScreens()
|
|
{
|
|
if (Screens::self()) {
|
|
return;
|
|
}
|
|
Screens::create(this);
|
|
Q_EMIT screensCreated();
|
|
}
|
|
|
|
void Application::createAtoms()
|
|
{
|
|
atoms = new Atoms;
|
|
}
|
|
|
|
void Application::createOptions()
|
|
{
|
|
options = new Options;
|
|
}
|
|
|
|
void Application::createPlugins()
|
|
{
|
|
PluginManager::create(this);
|
|
}
|
|
|
|
void Application::createColorManager()
|
|
{
|
|
#ifdef KWIN_BUILD_CMS
|
|
ColorManager::create(this);
|
|
#endif
|
|
}
|
|
|
|
void Application::createInputMethod()
|
|
{
|
|
InputMethod::create(this);
|
|
}
|
|
|
|
void Application::installNativeX11EventFilter()
|
|
{
|
|
installNativeEventFilter(m_eventFilter.data());
|
|
}
|
|
|
|
void Application::removeNativeX11EventFilter()
|
|
{
|
|
removeNativeEventFilter(m_eventFilter.data());
|
|
}
|
|
|
|
void Application::destroyInput()
|
|
{
|
|
delete InputRedirection::self();
|
|
}
|
|
|
|
void Application::destroyWorkspace()
|
|
{
|
|
delete Workspace::self();
|
|
}
|
|
|
|
void Application::destroyCompositor()
|
|
{
|
|
delete Compositor::self();
|
|
}
|
|
|
|
void Application::destroyPlugins()
|
|
{
|
|
delete PluginManager::self();
|
|
}
|
|
|
|
void Application::destroyColorManager()
|
|
{
|
|
#ifdef KWIN_BUILD_CMS
|
|
delete ColorManager::self();
|
|
#endif
|
|
}
|
|
|
|
void Application::destroyInputMethod()
|
|
{
|
|
delete InputMethod::self();
|
|
}
|
|
|
|
void Application::registerEventFilter(X11EventFilter *filter)
|
|
{
|
|
if (filter->isGenericEvent()) {
|
|
m_genericEventFilters.append(new X11EventFilterContainer(filter));
|
|
} else {
|
|
m_eventFilters.append(new X11EventFilterContainer(filter));
|
|
}
|
|
}
|
|
|
|
static X11EventFilterContainer *takeEventFilter(X11EventFilter *eventFilter,
|
|
QList<QPointer<X11EventFilterContainer>> &list)
|
|
{
|
|
for (int i = 0; i < list.count(); ++i) {
|
|
X11EventFilterContainer *container = list.at(i);
|
|
if (container->filter() == eventFilter) {
|
|
return list.takeAt(i);
|
|
}
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
void Application::unregisterEventFilter(X11EventFilter *filter)
|
|
{
|
|
X11EventFilterContainer *container = nullptr;
|
|
if (filter->isGenericEvent()) {
|
|
container = takeEventFilter(filter, m_genericEventFilters);
|
|
} else {
|
|
container = takeEventFilter(filter, m_eventFilters);
|
|
}
|
|
delete container;
|
|
}
|
|
|
|
bool Application::dispatchEvent(xcb_generic_event_t *event)
|
|
{
|
|
static const QVector<QByteArray> s_xcbEerrors({
|
|
QByteArrayLiteral("Success"),
|
|
QByteArrayLiteral("BadRequest"),
|
|
QByteArrayLiteral("BadValue"),
|
|
QByteArrayLiteral("BadWindow"),
|
|
QByteArrayLiteral("BadPixmap"),
|
|
QByteArrayLiteral("BadAtom"),
|
|
QByteArrayLiteral("BadCursor"),
|
|
QByteArrayLiteral("BadFont"),
|
|
QByteArrayLiteral("BadMatch"),
|
|
QByteArrayLiteral("BadDrawable"),
|
|
QByteArrayLiteral("BadAccess"),
|
|
QByteArrayLiteral("BadAlloc"),
|
|
QByteArrayLiteral("BadColor"),
|
|
QByteArrayLiteral("BadGC"),
|
|
QByteArrayLiteral("BadIDChoice"),
|
|
QByteArrayLiteral("BadName"),
|
|
QByteArrayLiteral("BadLength"),
|
|
QByteArrayLiteral("BadImplementation"),
|
|
QByteArrayLiteral("Unknown")
|
|
});
|
|
|
|
kwinApp()->updateX11Time(event);
|
|
|
|
const uint8_t x11EventType = event->response_type & ~0x80;
|
|
if (!x11EventType) {
|
|
// let's check whether it's an error from one of the extensions KWin uses
|
|
xcb_generic_error_t *error = reinterpret_cast<xcb_generic_error_t*>(event);
|
|
const QVector<Xcb::ExtensionData> extensions = Xcb::Extensions::self()->extensions();
|
|
for (const auto &extension : extensions) {
|
|
if (error->major_code == extension.majorOpcode) {
|
|
QByteArray errorName;
|
|
if (error->error_code < s_xcbEerrors.size()) {
|
|
errorName = s_xcbEerrors.at(error->error_code);
|
|
} else if (error->error_code >= extension.errorBase) {
|
|
const int index = error->error_code - extension.errorBase;
|
|
if (index >= 0 && index < extension.errorCodes.size()) {
|
|
errorName = extension.errorCodes.at(index);
|
|
}
|
|
}
|
|
if (errorName.isEmpty()) {
|
|
errorName = QByteArrayLiteral("Unknown");
|
|
}
|
|
qCWarning(KWIN_CORE, "XCB error: %d (%s), sequence: %d, resource id: %d, major code: %d (%s), minor code: %d (%s)",
|
|
int(error->error_code), errorName.constData(),
|
|
int(error->sequence), int(error->resource_id),
|
|
int(error->major_code), extension.name.constData(),
|
|
int(error->minor_code),
|
|
extension.opCodes.size() > error->minor_code ? extension.opCodes.at(error->minor_code).constData() : "Unknown");
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
if (x11EventType == XCB_GE_GENERIC) {
|
|
xcb_ge_generic_event_t *ge = reinterpret_cast<xcb_ge_generic_event_t *>(event);
|
|
|
|
// We need to make a shadow copy of the event filter list because an activated event
|
|
// filter may mutate it by removing or installing another event filter.
|
|
const auto eventFilters = m_genericEventFilters;
|
|
|
|
for (X11EventFilterContainer *container : eventFilters) {
|
|
if (!container) {
|
|
continue;
|
|
}
|
|
X11EventFilter *filter = container->filter();
|
|
if (filter->extension() == ge->extension && filter->genericEventTypes().contains(ge->event_type) && filter->event(event)) {
|
|
return true;
|
|
}
|
|
}
|
|
} else {
|
|
// We need to make a shadow copy of the event filter list because an activated event
|
|
// filter may mutate it by removing or installing another event filter.
|
|
const auto eventFilters = m_eventFilters;
|
|
|
|
for (X11EventFilterContainer *container : eventFilters) {
|
|
if (!container) {
|
|
continue;
|
|
}
|
|
X11EventFilter *filter = container->filter();
|
|
if (filter->eventTypes().contains(x11EventType) && filter->event(event)) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (workspace()) {
|
|
return workspace()->workspaceEvent(event);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void Application::updateX11Time(xcb_generic_event_t *event)
|
|
{
|
|
xcb_timestamp_t time = XCB_TIME_CURRENT_TIME;
|
|
const uint8_t eventType = event->response_type & ~0x80;
|
|
switch(eventType) {
|
|
case XCB_KEY_PRESS:
|
|
case XCB_KEY_RELEASE:
|
|
time = reinterpret_cast<xcb_key_press_event_t*>(event)->time;
|
|
break;
|
|
case XCB_BUTTON_PRESS:
|
|
case XCB_BUTTON_RELEASE:
|
|
time = reinterpret_cast<xcb_button_press_event_t*>(event)->time;
|
|
break;
|
|
case XCB_MOTION_NOTIFY:
|
|
time = reinterpret_cast<xcb_motion_notify_event_t*>(event)->time;
|
|
break;
|
|
case XCB_ENTER_NOTIFY:
|
|
case XCB_LEAVE_NOTIFY:
|
|
time = reinterpret_cast<xcb_enter_notify_event_t*>(event)->time;
|
|
break;
|
|
case XCB_FOCUS_IN:
|
|
case XCB_FOCUS_OUT:
|
|
case XCB_KEYMAP_NOTIFY:
|
|
case XCB_EXPOSE:
|
|
case XCB_GRAPHICS_EXPOSURE:
|
|
case XCB_NO_EXPOSURE:
|
|
case XCB_VISIBILITY_NOTIFY:
|
|
case XCB_CREATE_NOTIFY:
|
|
case XCB_DESTROY_NOTIFY:
|
|
case XCB_UNMAP_NOTIFY:
|
|
case XCB_MAP_NOTIFY:
|
|
case XCB_MAP_REQUEST:
|
|
case XCB_REPARENT_NOTIFY:
|
|
case XCB_CONFIGURE_NOTIFY:
|
|
case XCB_CONFIGURE_REQUEST:
|
|
case XCB_GRAVITY_NOTIFY:
|
|
case XCB_RESIZE_REQUEST:
|
|
case XCB_CIRCULATE_NOTIFY:
|
|
case XCB_CIRCULATE_REQUEST:
|
|
// no timestamp
|
|
return;
|
|
case XCB_PROPERTY_NOTIFY:
|
|
time = reinterpret_cast<xcb_property_notify_event_t*>(event)->time;
|
|
break;
|
|
case XCB_SELECTION_CLEAR:
|
|
time = reinterpret_cast<xcb_selection_clear_event_t*>(event)->time;
|
|
break;
|
|
case XCB_SELECTION_REQUEST:
|
|
time = reinterpret_cast<xcb_selection_request_event_t*>(event)->time;
|
|
break;
|
|
case XCB_SELECTION_NOTIFY:
|
|
time = reinterpret_cast<xcb_selection_notify_event_t*>(event)->time;
|
|
break;
|
|
case XCB_COLORMAP_NOTIFY:
|
|
case XCB_CLIENT_MESSAGE:
|
|
case XCB_MAPPING_NOTIFY:
|
|
case XCB_GE_GENERIC:
|
|
// no timestamp
|
|
return;
|
|
default:
|
|
// extension handling
|
|
if (Xcb::Extensions::self()) {
|
|
if (eventType == Xcb::Extensions::self()->shapeNotifyEvent()) {
|
|
time = reinterpret_cast<xcb_shape_notify_event_t*>(event)->server_time;
|
|
}
|
|
if (eventType == Xcb::Extensions::self()->damageNotifyEvent()) {
|
|
time = reinterpret_cast<xcb_damage_notify_event_t*>(event)->timestamp;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
setX11Time(time);
|
|
}
|
|
|
|
bool XcbEventFilter::nativeEventFilter(const QByteArray &eventType, void *message, long int *result)
|
|
{
|
|
Q_UNUSED(result)
|
|
if (eventType == "xcb_generic_event_t") {
|
|
return kwinApp()->dispatchEvent(static_cast<xcb_generic_event_t *>(message));
|
|
}
|
|
return false;
|
|
}
|
|
|
|
QProcessEnvironment Application::processStartupEnvironment() const
|
|
{
|
|
return QProcessEnvironment::systemEnvironment();
|
|
}
|
|
|
|
void Application::initPlatform(const KPluginMetaData &plugin)
|
|
{
|
|
Q_ASSERT(!m_platform);
|
|
QPluginLoader loader(plugin.fileName());
|
|
m_platform = qobject_cast<Platform *>(loader.instance());
|
|
if (m_platform) {
|
|
m_platform->setParent(this);
|
|
Q_EMIT platformCreated();
|
|
} else {
|
|
qCWarning(KWIN_CORE) << "Could not create plugin" << plugin.name() << "error:" << loader.errorString();
|
|
}
|
|
}
|
|
|
|
ApplicationWaylandAbstract::ApplicationWaylandAbstract(OperationMode mode, int &argc, char **argv)
|
|
: Application(mode, argc, argv)
|
|
{
|
|
}
|
|
|
|
ApplicationWaylandAbstract::~ApplicationWaylandAbstract()
|
|
{
|
|
}
|
|
|
|
} // namespace
|
|
|