Hyprland/src/protocols/DataDeviceWlr.hpp
Tom Englund 32c0fa2f2f
core: begin using CFileDescriptor from hyprutils (#9122)
* 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.
2025-01-30 11:30:12 +00:00

123 lines
3.6 KiB
C++

#pragma once
#include <vector>
#include <cstdint>
#include "WaylandProtocol.hpp"
#include "wlr-data-control-unstable-v1.hpp"
#include "types/DataDevice.hpp"
#include <hyprutils/os/FileDescriptor.hpp>
class CWLRDataControlManagerResource;
class CWLRDataSource;
class CWLRDataDevice;
class CWLRDataOffer;
class CWLRDataOffer {
public:
CWLRDataOffer(SP<CZwlrDataControlOfferV1> resource_, SP<IDataSource> source);
bool good();
void sendData();
bool dead = false;
bool primary = false;
WP<IDataSource> source;
private:
SP<CZwlrDataControlOfferV1> resource;
friend class CWLRDataDevice;
};
class CWLRDataSource : public IDataSource {
public:
CWLRDataSource(SP<CZwlrDataControlSourceV1> resource_, SP<CWLRDataDevice> device_);
~CWLRDataSource();
static SP<CWLRDataSource> fromResource(wl_resource*);
bool good();
virtual std::vector<std::string> mimes();
virtual void send(const std::string& mime, Hyprutils::OS::CFileDescriptor fd);
virtual void accepted(const std::string& mime);
virtual void cancelled();
virtual void error(uint32_t code, const std::string& msg);
std::vector<std::string> mimeTypes;
WP<CWLRDataSource> self;
WP<CWLRDataDevice> device;
private:
SP<CZwlrDataControlSourceV1> resource;
};
class CWLRDataDevice {
public:
CWLRDataDevice(SP<CZwlrDataControlDeviceV1> resource_);
bool good();
wl_client* client();
void sendInitialSelections();
void sendDataOffer(SP<CWLRDataOffer> offer);
void sendSelection(SP<CWLRDataOffer> selection);
void sendPrimarySelection(SP<CWLRDataOffer> selection);
WP<CWLRDataDevice> self;
private:
SP<CZwlrDataControlDeviceV1> resource;
wl_client* pClient = nullptr;
friend class CDataDeviceWLRProtocol;
};
class CWLRDataControlManagerResource {
public:
CWLRDataControlManagerResource(SP<CZwlrDataControlManagerV1> resource_);
bool good();
WP<CWLRDataDevice> device;
std::vector<WP<CWLRDataSource>> sources;
private:
SP<CZwlrDataControlManagerV1> resource;
};
class CDataDeviceWLRProtocol : public IWaylandProtocol {
public:
CDataDeviceWLRProtocol(const wl_interface* iface, const int& ver, const std::string& name);
virtual void bindManager(wl_client* client, void* data, uint32_t ver, uint32_t id);
private:
void destroyResource(CWLRDataControlManagerResource* resource);
void destroyResource(CWLRDataSource* resource);
void destroyResource(CWLRDataDevice* resource);
void destroyResource(CWLRDataOffer* resource);
//
std::vector<SP<CWLRDataControlManagerResource>> m_vManagers;
std::vector<SP<CWLRDataSource>> m_vSources;
std::vector<SP<CWLRDataDevice>> m_vDevices;
std::vector<SP<CWLRDataOffer>> m_vOffers;
//
void setSelection(SP<IDataSource> source, bool primary);
void sendSelectionToDevice(SP<CWLRDataDevice> dev, SP<IDataSource> sel, bool primary);
//
SP<CWLRDataDevice> dataDeviceForClient(wl_client*);
friend class CSeatManager;
friend class CWLRDataControlManagerResource;
friend class CWLRDataSource;
friend class CWLRDataDevice;
friend class CWLRDataOffer;
};
namespace PROTO {
inline UP<CDataDeviceWLRProtocol> dataWlr;
};