2014-11-04 14:10:22 +00:00
|
|
|
/********************************************************************
|
|
|
|
Copyright 2014 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
This library 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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#include "datadevicemanager_interface.h"
|
2017-11-26 15:31:57 +00:00
|
|
|
#include "datasource_interface.h"
|
2014-11-13 14:07:31 +00:00
|
|
|
#include "global_p.h"
|
2014-11-04 14:10:22 +00:00
|
|
|
#include "display.h"
|
2014-11-27 12:38:24 +00:00
|
|
|
#include "seat_interface_p.h"
|
2014-11-04 14:10:22 +00:00
|
|
|
// Wayland
|
|
|
|
#include <wayland-server.h>
|
|
|
|
|
|
|
|
namespace KWayland
|
|
|
|
{
|
|
|
|
namespace Server
|
|
|
|
{
|
|
|
|
|
2014-11-13 14:07:31 +00:00
|
|
|
class DataDeviceManagerInterface::Private : public Global::Private
|
2014-11-04 14:10:22 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Private(DataDeviceManagerInterface *q, Display *d);
|
|
|
|
|
|
|
|
private:
|
2014-11-13 17:43:18 +00:00
|
|
|
void bind(wl_client *client, uint32_t version, uint32_t id) override;
|
2014-11-04 14:10:22 +00:00
|
|
|
void createDataSource(wl_client *client, wl_resource *resource, uint32_t id);
|
2014-11-06 09:02:49 +00:00
|
|
|
void getDataDevice(wl_client *client, wl_resource *resource, uint32_t id, wl_resource *seat);
|
2014-11-04 14:10:22 +00:00
|
|
|
|
|
|
|
static void unbind(wl_resource *resource);
|
|
|
|
static void createDataSourceCallback(wl_client *client, wl_resource *resource, uint32_t id);
|
|
|
|
static void getDataDeviceCallback(wl_client *client, wl_resource *resource, uint32_t id, wl_resource *seat);
|
|
|
|
static Private *cast(wl_resource *r) {
|
|
|
|
return reinterpret_cast<Private*>(wl_resource_get_user_data(r));
|
|
|
|
}
|
|
|
|
|
|
|
|
DataDeviceManagerInterface *q;
|
|
|
|
static const struct wl_data_device_manager_interface s_interface;
|
2015-09-10 07:23:36 +00:00
|
|
|
static const quint32 s_version;
|
2015-09-15 06:44:42 +00:00
|
|
|
static const qint32 s_dataDeviceVersion;
|
|
|
|
static const qint32 s_dataSourceVersion;
|
2014-11-04 14:10:22 +00:00
|
|
|
};
|
|
|
|
|
2017-11-26 15:31:57 +00:00
|
|
|
const quint32 DataDeviceManagerInterface::Private::s_version = 3;
|
|
|
|
const qint32 DataDeviceManagerInterface::Private::s_dataDeviceVersion = 3;
|
|
|
|
const qint32 DataDeviceManagerInterface::Private::s_dataSourceVersion = 3;
|
2015-09-10 07:23:36 +00:00
|
|
|
|
2020-01-23 11:20:45 +00:00
|
|
|
#ifndef K_DOXYGEN
|
2014-11-04 14:10:22 +00:00
|
|
|
const struct wl_data_device_manager_interface DataDeviceManagerInterface::Private::s_interface = {
|
|
|
|
createDataSourceCallback,
|
|
|
|
getDataDeviceCallback
|
|
|
|
};
|
2015-09-09 14:39:50 +00:00
|
|
|
#endif
|
2014-11-04 14:10:22 +00:00
|
|
|
|
|
|
|
DataDeviceManagerInterface::Private::Private(DataDeviceManagerInterface *q, Display *d)
|
2014-11-13 17:43:18 +00:00
|
|
|
: Global::Private(d, &wl_data_device_manager_interface, s_version)
|
2014-11-04 14:10:22 +00:00
|
|
|
, q(q)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataDeviceManagerInterface::Private::bind(wl_client *client, uint32_t version, uint32_t id)
|
|
|
|
{
|
2014-11-19 18:01:15 +00:00
|
|
|
auto c = display->getConnection(client);
|
|
|
|
wl_resource *resource = c->createResource(&wl_data_device_manager_interface, qMin(version, s_version), id);
|
2014-11-04 14:10:22 +00:00
|
|
|
if (!resource) {
|
|
|
|
wl_client_post_no_memory(client);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wl_resource_set_implementation(resource, &s_interface, this, unbind);
|
|
|
|
// TODO: should we track?
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataDeviceManagerInterface::Private::unbind(wl_resource *resource)
|
|
|
|
{
|
|
|
|
Q_UNUSED(resource)
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataDeviceManagerInterface::Private::createDataSourceCallback(wl_client *client, wl_resource *resource, uint32_t id)
|
|
|
|
{
|
|
|
|
cast(resource)->createDataSource(client, resource, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataDeviceManagerInterface::Private::createDataSource(wl_client *client, wl_resource *resource, uint32_t id)
|
|
|
|
{
|
2014-11-20 15:40:14 +00:00
|
|
|
DataSourceInterface *dataSource = new DataSourceInterface(q, resource);
|
2015-09-15 06:44:42 +00:00
|
|
|
dataSource->create(display->getConnection(client), qMin(wl_resource_get_version(resource), s_dataSourceVersion) , id);
|
2014-11-04 14:10:22 +00:00
|
|
|
if (!dataSource->resource()) {
|
|
|
|
wl_resource_post_no_memory(resource);
|
|
|
|
delete dataSource;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
emit q->dataSourceCreated(dataSource);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataDeviceManagerInterface::Private::getDataDeviceCallback(wl_client *client, wl_resource *resource, uint32_t id, wl_resource *seat)
|
|
|
|
{
|
2014-11-06 09:02:49 +00:00
|
|
|
cast(resource)->getDataDevice(client, resource, id, seat);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataDeviceManagerInterface::Private::getDataDevice(wl_client *client, wl_resource *resource, uint32_t id, wl_resource *seat)
|
|
|
|
{
|
2014-11-27 12:38:24 +00:00
|
|
|
SeatInterface *s = SeatInterface::get(seat);
|
|
|
|
Q_ASSERT(s);
|
|
|
|
DataDeviceInterface *dataDevice = new DataDeviceInterface(s, q, resource);
|
2015-09-15 06:44:42 +00:00
|
|
|
dataDevice->create(display->getConnection(client), qMin(wl_resource_get_version(resource), s_dataDeviceVersion), id);
|
2014-11-06 09:02:49 +00:00
|
|
|
if (!dataDevice->resource()) {
|
|
|
|
wl_resource_post_no_memory(resource);
|
|
|
|
return;
|
|
|
|
}
|
2014-11-27 12:38:24 +00:00
|
|
|
s->d_func()->registerDataDevice(dataDevice);
|
2014-11-06 09:02:49 +00:00
|
|
|
emit q->dataDeviceCreated(dataDevice);
|
2014-11-04 14:10:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DataDeviceManagerInterface::DataDeviceManagerInterface(Display *display, QObject *parent)
|
2014-11-13 14:07:31 +00:00
|
|
|
: Global(new Private(this, display), parent)
|
2014-11-04 14:10:22 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-11-13 14:07:31 +00:00
|
|
|
DataDeviceManagerInterface::~DataDeviceManagerInterface() = default;
|
2014-11-04 14:10:22 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|