2014-08-26 14:07:39 +00:00
|
|
|
/********************************************************************
|
2014-09-17 13:57:56 +00:00
|
|
|
Copyright 2014 Martin Gräßlin <mgraesslin@kde.org>
|
2014-08-26 14:07:39 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) version 3, or any
|
|
|
|
later version accepted by the membership of KDE e.V. (or its
|
|
|
|
successor approved by the membership of KDE e.V.), which shall
|
|
|
|
act as a proxy defined in Section 6 of version 3 of the license.
|
2014-08-26 14:07:39 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
This library is distributed in the hope that it will be useful,
|
2014-08-26 14:07:39 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2014-09-17 13:57:56 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
2014-08-26 14:07:39 +00:00
|
|
|
|
2014-09-17 13:57:56 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2014-08-26 14:07:39 +00:00
|
|
|
*********************************************************************/
|
|
|
|
#include "display.h"
|
2014-08-28 07:52:35 +00:00
|
|
|
#include "compositor_interface.h"
|
2014-08-26 14:07:39 +00:00
|
|
|
#include "output_interface.h"
|
2014-09-02 07:34:31 +00:00
|
|
|
#include "seat_interface.h"
|
2014-08-29 09:42:57 +00:00
|
|
|
#include "shell_interface.h"
|
2014-08-26 14:07:39 +00:00
|
|
|
|
|
|
|
#include <QCoreApplication>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QAbstractEventDispatcher>
|
|
|
|
#include <QSocketNotifier>
|
|
|
|
|
|
|
|
#include <wayland-server.h>
|
|
|
|
|
2014-09-17 14:10:38 +00:00
|
|
|
namespace KWayland
|
2014-08-26 14:07:39 +00:00
|
|
|
{
|
2014-09-17 14:10:38 +00:00
|
|
|
namespace Server
|
2014-08-26 14:07:39 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
Display::Display(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, m_display(nullptr)
|
|
|
|
, m_loop(nullptr)
|
|
|
|
, m_socketName(QStringLiteral("wayland-0"))
|
|
|
|
, m_running(false)
|
|
|
|
{
|
|
|
|
connect(QCoreApplication::eventDispatcher(), &QAbstractEventDispatcher::aboutToBlock, this, &Display::flush);
|
|
|
|
}
|
|
|
|
|
|
|
|
Display::~Display()
|
|
|
|
{
|
|
|
|
terminate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Display::flush()
|
|
|
|
{
|
|
|
|
if (!m_display || !m_loop) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (wl_event_loop_dispatch(m_loop, 0) != 0) {
|
|
|
|
qWarning() << "Error on dispatching Wayland event loop";
|
|
|
|
}
|
|
|
|
wl_display_flush_clients(m_display);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Display::setSocketName(const QString &name)
|
|
|
|
{
|
|
|
|
if (m_socketName == name) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_socketName = name;
|
|
|
|
emit socketNameChanged(m_socketName);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Display::socketName() const
|
|
|
|
{
|
|
|
|
return m_socketName;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Display::start()
|
|
|
|
{
|
|
|
|
Q_ASSERT(!m_running);
|
|
|
|
Q_ASSERT(!m_display);
|
|
|
|
m_display = wl_display_create();
|
|
|
|
if (wl_display_add_socket(m_display, qPrintable(m_socketName)) != 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_loop = wl_display_get_event_loop(m_display);
|
|
|
|
int fd = wl_event_loop_get_fd(m_loop);
|
|
|
|
if (fd == -1) {
|
|
|
|
qWarning() << "Did not get the file descriptor for the event loop";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QSocketNotifier *m_notifier = new QSocketNotifier(fd, QSocketNotifier::Read, this);
|
|
|
|
connect(m_notifier, &QSocketNotifier::activated, this, &Display::flush);
|
|
|
|
setRunning(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Display::terminate()
|
|
|
|
{
|
|
|
|
if (!m_running) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
emit aboutToTerminate();
|
|
|
|
wl_display_terminate(m_display);
|
|
|
|
wl_display_destroy(m_display);
|
|
|
|
m_display = nullptr;
|
|
|
|
m_loop = nullptr;
|
|
|
|
setRunning(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Display::setRunning(bool running)
|
|
|
|
{
|
2014-09-03 18:04:31 +00:00
|
|
|
Q_ASSERT(m_running != running);
|
2014-08-26 14:07:39 +00:00
|
|
|
m_running = running;
|
|
|
|
emit runningChanged(m_running);
|
|
|
|
}
|
|
|
|
|
|
|
|
OutputInterface *Display::createOutput(QObject *parent)
|
|
|
|
{
|
|
|
|
OutputInterface *output = new OutputInterface(this, parent);
|
|
|
|
connect(output, &QObject::destroyed, this, [this,output] { m_outputs.removeAll(output); });
|
|
|
|
connect(this, &Display::aboutToTerminate, output, [this,output] { removeOutput(output); });
|
|
|
|
m_outputs << output;
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2014-08-28 07:52:35 +00:00
|
|
|
CompositorInterface *Display::createCompositor(QObject *parent)
|
|
|
|
{
|
|
|
|
CompositorInterface *compositor = new CompositorInterface(this, parent);
|
|
|
|
connect(this, &Display::aboutToTerminate, compositor, [this,compositor] { delete compositor; });
|
|
|
|
return compositor;
|
|
|
|
}
|
|
|
|
|
2014-08-29 09:42:57 +00:00
|
|
|
ShellInterface *Display::createShell(QObject *parent)
|
|
|
|
{
|
|
|
|
ShellInterface *shell = new ShellInterface(this, parent);
|
|
|
|
connect(this, &Display::aboutToTerminate, shell, [this,shell] { delete shell; });
|
|
|
|
return shell;
|
|
|
|
}
|
|
|
|
|
2014-09-02 07:34:31 +00:00
|
|
|
SeatInterface *Display::createSeat(QObject *parent)
|
|
|
|
{
|
|
|
|
SeatInterface *seat = new SeatInterface(this, parent);
|
|
|
|
connect(this, &Display::aboutToTerminate, seat, [this,seat] { delete seat; });
|
|
|
|
return seat;
|
|
|
|
}
|
|
|
|
|
2014-08-28 12:22:53 +00:00
|
|
|
void Display::createShm()
|
|
|
|
{
|
|
|
|
Q_ASSERT(m_running);
|
|
|
|
wl_display_init_shm(m_display);
|
|
|
|
}
|
|
|
|
|
2014-08-26 14:07:39 +00:00
|
|
|
void Display::removeOutput(OutputInterface *output)
|
|
|
|
{
|
|
|
|
m_outputs.removeAll(output);
|
|
|
|
delete output;
|
|
|
|
}
|
|
|
|
|
2014-08-29 09:42:57 +00:00
|
|
|
quint32 Display::nextSerial()
|
|
|
|
{
|
|
|
|
return wl_display_next_serial(m_display);
|
|
|
|
}
|
|
|
|
|
|
|
|
quint32 Display::serial()
|
|
|
|
{
|
|
|
|
return wl_display_get_serial(m_display);
|
|
|
|
}
|
|
|
|
|
2014-08-26 14:07:39 +00:00
|
|
|
}
|
|
|
|
}
|