mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-10-06 01:56:28 +00:00

* config: make fd use CFileDescriptor make use of the new hyprutils CFileDescriptor instead of manual FD handling. * hyprctl: make fd use CFileDescriptor make use of the new hyprutils CFileDescriptor instead of manual FD handling. * ikeyboard: make fd use CFileDescriptor make use of the new CFileDescriptor instead of manual FD handling, also in sendKeymap remove dead code, it already early returns if keyboard isnt valid, and dont try to close the FD that ikeyboard owns. * core: make SHMFile functions use CFileDescriptor make SHMFile misc functions use CFileDescriptor and its associated usage in dmabuf and keyboard. * core: make explicit sync use CFileDescriptor begin using CFileDescriptor in explicit sync and its timelines and eglsync usage in opengl, there is still a bit left with manual handling that requires future aquamarine change aswell. * eventmgr: make fd and sockets use CFileDescriptor make use of the hyprutils CFileDescriptor instead of manual FD and socket handling and closing. * eventloopmgr: make timerfd use CFileDescriptor make the timerfd use CFileDescriptor instead of manual fd handling * opengl: make gbm fd use CFileDescriptor make the gbm rendernode fd use CFileDescriptor instead of manual fd handling * core: make selection source/offer use CFileDescriptor make data selection source and offers use CFileDescriptor and its associated use in xwm and protocols * protocols: convert protocols fd to CFileDescriptor make most fd handling use CFileDescriptor in protocols * shm: make SHMPool use CfileDescriptor make SHMPool use CFileDescriptor instead of manual fd handling. * opengl: duplicate fd with CFileDescriptor duplicate fenceFD with CFileDescriptor duplicate instead. * xwayland: make sockets and fds use CFileDescriptor instead of manual opening/closing make sockets and fds use CFileDescriptor * keybindmgr: make sockets and fds use CFileDescriptor make sockets and fds use CFileDescriptor instead of manual handling.
323 lines
11 KiB
C++
323 lines
11 KiB
C++
#include "DataDeviceWlr.hpp"
|
|
#include <algorithm>
|
|
#include "../managers/SeatManager.hpp"
|
|
#include "core/Seat.hpp"
|
|
using namespace Hyprutils::OS;
|
|
|
|
CWLRDataOffer::CWLRDataOffer(SP<CZwlrDataControlOfferV1> resource_, SP<IDataSource> source_) : source(source_), resource(resource_) {
|
|
if UNLIKELY (!good())
|
|
return;
|
|
|
|
resource->setDestroy([this](CZwlrDataControlOfferV1* r) { PROTO::dataWlr->destroyResource(this); });
|
|
resource->setOnDestroy([this](CZwlrDataControlOfferV1* r) { PROTO::dataWlr->destroyResource(this); });
|
|
|
|
resource->setReceive([this](CZwlrDataControlOfferV1* r, const char* mime, int32_t fd) {
|
|
CFileDescriptor sendFd{fd};
|
|
if (!source) {
|
|
LOGM(WARN, "Possible bug: Receive on an offer w/o a source");
|
|
return;
|
|
}
|
|
|
|
if (dead) {
|
|
LOGM(WARN, "Possible bug: Receive on an offer that's dead");
|
|
return;
|
|
}
|
|
|
|
LOGM(LOG, "Offer {:x} asks to send data from source {:x}", (uintptr_t)this, (uintptr_t)source.get());
|
|
|
|
source->send(mime, std::move(sendFd));
|
|
});
|
|
}
|
|
|
|
bool CWLRDataOffer::good() {
|
|
return resource->resource();
|
|
}
|
|
|
|
void CWLRDataOffer::sendData() {
|
|
if UNLIKELY (!source)
|
|
return;
|
|
|
|
for (auto const& m : source->mimes()) {
|
|
resource->sendOffer(m.c_str());
|
|
}
|
|
}
|
|
|
|
CWLRDataSource::CWLRDataSource(SP<CZwlrDataControlSourceV1> resource_, SP<CWLRDataDevice> device_) : device(device_), resource(resource_) {
|
|
if UNLIKELY (!good())
|
|
return;
|
|
|
|
resource->setData(this);
|
|
|
|
resource->setDestroy([this](CZwlrDataControlSourceV1* r) {
|
|
events.destroy.emit();
|
|
PROTO::dataWlr->destroyResource(this);
|
|
});
|
|
resource->setOnDestroy([this](CZwlrDataControlSourceV1* r) {
|
|
events.destroy.emit();
|
|
PROTO::dataWlr->destroyResource(this);
|
|
});
|
|
|
|
resource->setOffer([this](CZwlrDataControlSourceV1* r, const char* mime) { mimeTypes.emplace_back(mime); });
|
|
}
|
|
|
|
CWLRDataSource::~CWLRDataSource() {
|
|
events.destroy.emit();
|
|
}
|
|
|
|
SP<CWLRDataSource> CWLRDataSource::fromResource(wl_resource* res) {
|
|
auto data = (CWLRDataSource*)(((CZwlrDataControlSourceV1*)wl_resource_get_user_data(res))->data());
|
|
return data ? data->self.lock() : nullptr;
|
|
}
|
|
|
|
bool CWLRDataSource::good() {
|
|
return resource->resource();
|
|
}
|
|
|
|
std::vector<std::string> CWLRDataSource::mimes() {
|
|
return mimeTypes;
|
|
}
|
|
|
|
void CWLRDataSource::send(const std::string& mime, CFileDescriptor fd) {
|
|
if (std::find(mimeTypes.begin(), mimeTypes.end(), mime) == mimeTypes.end()) {
|
|
LOGM(ERR, "Compositor/App bug: CWLRDataSource::sendAskSend with non-existent mime");
|
|
return;
|
|
}
|
|
|
|
resource->sendSend(mime.c_str(), fd.get());
|
|
}
|
|
|
|
void CWLRDataSource::accepted(const std::string& mime) {
|
|
if (std::find(mimeTypes.begin(), mimeTypes.end(), mime) == mimeTypes.end())
|
|
LOGM(ERR, "Compositor/App bug: CWLRDataSource::sendAccepted with non-existent mime");
|
|
|
|
// wlr has no accepted
|
|
}
|
|
|
|
void CWLRDataSource::cancelled() {
|
|
resource->sendCancelled();
|
|
}
|
|
|
|
void CWLRDataSource::error(uint32_t code, const std::string& msg) {
|
|
resource->error(code, msg);
|
|
}
|
|
|
|
CWLRDataDevice::CWLRDataDevice(SP<CZwlrDataControlDeviceV1> resource_) : resource(resource_) {
|
|
if UNLIKELY (!good())
|
|
return;
|
|
|
|
pClient = resource->client();
|
|
|
|
resource->setDestroy([this](CZwlrDataControlDeviceV1* r) { PROTO::dataWlr->destroyResource(this); });
|
|
resource->setOnDestroy([this](CZwlrDataControlDeviceV1* r) { PROTO::dataWlr->destroyResource(this); });
|
|
|
|
resource->setSetSelection([](CZwlrDataControlDeviceV1* r, wl_resource* sourceR) {
|
|
auto source = sourceR ? CWLRDataSource::fromResource(sourceR) : CSharedPointer<CWLRDataSource>{};
|
|
if (!source) {
|
|
LOGM(LOG, "wlr reset selection received");
|
|
g_pSeatManager->setCurrentSelection(nullptr);
|
|
return;
|
|
}
|
|
|
|
if (source && source->used())
|
|
LOGM(WARN, "setSelection on a used resource. By protocol, this is a violation, but firefox et al insist on doing this.");
|
|
|
|
source->markUsed();
|
|
|
|
LOGM(LOG, "wlr manager requests selection to {:x}", (uintptr_t)source.get());
|
|
g_pSeatManager->setCurrentSelection(source);
|
|
});
|
|
|
|
resource->setSetPrimarySelection([](CZwlrDataControlDeviceV1* r, wl_resource* sourceR) {
|
|
auto source = sourceR ? CWLRDataSource::fromResource(sourceR) : CSharedPointer<CWLRDataSource>{};
|
|
if (!source) {
|
|
LOGM(LOG, "wlr reset primary selection received");
|
|
g_pSeatManager->setCurrentPrimarySelection(nullptr);
|
|
return;
|
|
}
|
|
|
|
if (source && source->used())
|
|
LOGM(WARN, "setSelection on a used resource. By protocol, this is a violation, but firefox et al insist on doing this.");
|
|
|
|
source->markUsed();
|
|
|
|
LOGM(LOG, "wlr manager requests primary selection to {:x}", (uintptr_t)source.get());
|
|
g_pSeatManager->setCurrentPrimarySelection(source);
|
|
});
|
|
}
|
|
|
|
bool CWLRDataDevice::good() {
|
|
return resource->resource();
|
|
}
|
|
|
|
wl_client* CWLRDataDevice::client() {
|
|
return pClient;
|
|
}
|
|
|
|
void CWLRDataDevice::sendInitialSelections() {
|
|
PROTO::dataWlr->sendSelectionToDevice(self.lock(), g_pSeatManager->selection.currentSelection.lock(), false);
|
|
PROTO::dataWlr->sendSelectionToDevice(self.lock(), g_pSeatManager->selection.currentPrimarySelection.lock(), true);
|
|
}
|
|
|
|
void CWLRDataDevice::sendDataOffer(SP<CWLRDataOffer> offer) {
|
|
resource->sendDataOffer(offer->resource.get());
|
|
}
|
|
|
|
void CWLRDataDevice::sendSelection(SP<CWLRDataOffer> selection) {
|
|
resource->sendSelection(selection->resource.get());
|
|
}
|
|
|
|
void CWLRDataDevice::sendPrimarySelection(SP<CWLRDataOffer> selection) {
|
|
resource->sendPrimarySelection(selection->resource.get());
|
|
}
|
|
|
|
CWLRDataControlManagerResource::CWLRDataControlManagerResource(SP<CZwlrDataControlManagerV1> resource_) : resource(resource_) {
|
|
if UNLIKELY (!good())
|
|
return;
|
|
|
|
resource->setDestroy([this](CZwlrDataControlManagerV1* r) { PROTO::dataWlr->destroyResource(this); });
|
|
resource->setOnDestroy([this](CZwlrDataControlManagerV1* r) { PROTO::dataWlr->destroyResource(this); });
|
|
|
|
resource->setGetDataDevice([this](CZwlrDataControlManagerV1* r, uint32_t id, wl_resource* seat) {
|
|
const auto RESOURCE = PROTO::dataWlr->m_vDevices.emplace_back(makeShared<CWLRDataDevice>(makeShared<CZwlrDataControlDeviceV1>(r->client(), r->version(), id)));
|
|
|
|
if UNLIKELY (!RESOURCE->good()) {
|
|
r->noMemory();
|
|
PROTO::dataWlr->m_vDevices.pop_back();
|
|
return;
|
|
}
|
|
|
|
RESOURCE->self = RESOURCE;
|
|
device = RESOURCE;
|
|
|
|
for (auto const& s : sources) {
|
|
if (!s)
|
|
continue;
|
|
s->device = RESOURCE;
|
|
}
|
|
|
|
RESOURCE->sendInitialSelections();
|
|
|
|
LOGM(LOG, "New wlr data device bound at {:x}", (uintptr_t)RESOURCE.get());
|
|
});
|
|
|
|
resource->setCreateDataSource([this](CZwlrDataControlManagerV1* r, uint32_t id) {
|
|
std::erase_if(sources, [](const auto& e) { return e.expired(); });
|
|
|
|
const auto RESOURCE =
|
|
PROTO::dataWlr->m_vSources.emplace_back(makeShared<CWLRDataSource>(makeShared<CZwlrDataControlSourceV1>(r->client(), r->version(), id), device.lock()));
|
|
|
|
if UNLIKELY (!RESOURCE->good()) {
|
|
r->noMemory();
|
|
PROTO::dataWlr->m_vSources.pop_back();
|
|
return;
|
|
}
|
|
|
|
if (!device)
|
|
LOGM(WARN, "New data source before a device was created");
|
|
|
|
RESOURCE->self = RESOURCE;
|
|
|
|
sources.emplace_back(RESOURCE);
|
|
|
|
LOGM(LOG, "New wlr data source bound at {:x}", (uintptr_t)RESOURCE.get());
|
|
});
|
|
}
|
|
|
|
bool CWLRDataControlManagerResource::good() {
|
|
return resource->resource();
|
|
}
|
|
|
|
CDataDeviceWLRProtocol::CDataDeviceWLRProtocol(const wl_interface* iface, const int& ver, const std::string& name) : IWaylandProtocol(iface, ver, name) {
|
|
;
|
|
}
|
|
|
|
void CDataDeviceWLRProtocol::bindManager(wl_client* client, void* data, uint32_t ver, uint32_t id) {
|
|
const auto RESOURCE = m_vManagers.emplace_back(makeShared<CWLRDataControlManagerResource>(makeShared<CZwlrDataControlManagerV1>(client, ver, id)));
|
|
|
|
if UNLIKELY (!RESOURCE->good()) {
|
|
wl_client_post_no_memory(client);
|
|
m_vManagers.pop_back();
|
|
return;
|
|
}
|
|
|
|
LOGM(LOG, "New wlr_data_control_manager at {:x}", (uintptr_t)RESOURCE.get());
|
|
}
|
|
|
|
void CDataDeviceWLRProtocol::destroyResource(CWLRDataControlManagerResource* resource) {
|
|
std::erase_if(m_vManagers, [&](const auto& other) { return other.get() == resource; });
|
|
}
|
|
|
|
void CDataDeviceWLRProtocol::destroyResource(CWLRDataSource* resource) {
|
|
std::erase_if(m_vSources, [&](const auto& other) { return other.get() == resource; });
|
|
}
|
|
|
|
void CDataDeviceWLRProtocol::destroyResource(CWLRDataDevice* resource) {
|
|
std::erase_if(m_vDevices, [&](const auto& other) { return other.get() == resource; });
|
|
}
|
|
|
|
void CDataDeviceWLRProtocol::destroyResource(CWLRDataOffer* resource) {
|
|
std::erase_if(m_vOffers, [&](const auto& other) { return other.get() == resource; });
|
|
}
|
|
|
|
void CDataDeviceWLRProtocol::sendSelectionToDevice(SP<CWLRDataDevice> dev, SP<IDataSource> sel, bool primary) {
|
|
if (!sel) {
|
|
if (primary)
|
|
dev->resource->sendPrimarySelectionRaw(nullptr);
|
|
else
|
|
dev->resource->sendSelectionRaw(nullptr);
|
|
return;
|
|
}
|
|
|
|
const auto OFFER = m_vOffers.emplace_back(makeShared<CWLRDataOffer>(makeShared<CZwlrDataControlOfferV1>(dev->resource->client(), dev->resource->version(), 0), sel));
|
|
|
|
if (!OFFER->good()) {
|
|
dev->resource->noMemory();
|
|
m_vOffers.pop_back();
|
|
return;
|
|
}
|
|
|
|
OFFER->primary = primary;
|
|
|
|
LOGM(LOG, "New {}offer {:x} for data source {:x}", primary ? "primary " : " ", (uintptr_t)OFFER.get(), (uintptr_t)sel.get());
|
|
|
|
dev->sendDataOffer(OFFER);
|
|
OFFER->sendData();
|
|
if (primary)
|
|
dev->sendPrimarySelection(OFFER);
|
|
else
|
|
dev->sendSelection(OFFER);
|
|
}
|
|
|
|
void CDataDeviceWLRProtocol::setSelection(SP<IDataSource> source, bool primary) {
|
|
for (auto const& o : m_vOffers) {
|
|
if (o->source && o->source->hasDnd())
|
|
continue;
|
|
if (o->primary != primary)
|
|
continue;
|
|
o->dead = true;
|
|
}
|
|
|
|
if (!source) {
|
|
LOGM(LOG, "resetting {}selection", primary ? "primary " : " ");
|
|
|
|
for (auto const& d : m_vDevices) {
|
|
sendSelectionToDevice(d, nullptr, primary);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
LOGM(LOG, "New {}selection for data source {:x}", primary ? "primary" : "", (uintptr_t)source.get());
|
|
|
|
for (auto const& d : m_vDevices) {
|
|
sendSelectionToDevice(d, source, primary);
|
|
}
|
|
}
|
|
|
|
SP<CWLRDataDevice> CDataDeviceWLRProtocol::dataDeviceForClient(wl_client* c) {
|
|
auto it = std::find_if(m_vDevices.begin(), m_vDevices.end(), [c](const auto& e) { return e->client() == c; });
|
|
if (it == m_vDevices.end())
|
|
return nullptr;
|
|
return *it;
|
|
}
|