aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/helpers
diff options
context:
space:
mode:
authorVaxry <[email protected]>2024-09-23 17:59:35 +0100
committerVaxry <[email protected]>2024-09-24 00:47:34 +0100
commitf79497087bdea3ea2706606362ba99cfe7a956a0 (patch)
treeff355fbf0041034506ed793c9e5a87a3664697d3 /src/helpers
parent508bde1f61b1264c9621b937657088f09f318ce0 (diff)
downloadHyprland-f79497087bdea3ea2706606362ba99cfe7a956a0.tar.gz
Hyprland-f79497087bdea3ea2706606362ba99cfe7a956a0.zip
internal: nuke wlsignal and related
old semi-wrappers for wl_signal, they are no longer used
Diffstat (limited to 'src/helpers')
-rw-r--r--src/helpers/WLListener.cpp62
-rw-r--r--src/helpers/WLListener.hpp39
2 files changed, 0 insertions, 101 deletions
diff --git a/src/helpers/WLListener.cpp b/src/helpers/WLListener.cpp
deleted file mode 100644
index 2ea5c0b6..00000000
--- a/src/helpers/WLListener.cpp
+++ /dev/null
@@ -1,62 +0,0 @@
-#include "WLListener.hpp"
-#include "MiscFunctions.hpp"
-#include <string>
-#include "../debug/Log.hpp"
-#include "Watchdog.hpp"
-
-void handleWrapped(wl_listener* listener, void* data) {
- CHyprWLListener::SWrapper* pWrap = wl_container_of(listener, pWrap, m_sListener);
-
- if (g_pWatchdog)
- g_pWatchdog->startWatching();
-
- try {
- pWrap->m_pSelf->emit(data);
- } catch (std::exception& e) { Debug::log(ERR, "Listener {} threw or timed out and was killed by Watchdog!!! This is bad. what(): {}", (uintptr_t)listener, e.what()); }
-
- if (g_pWatchdog)
- g_pWatchdog->endWatching();
-}
-
-CHyprWLListener::CHyprWLListener(wl_signal* pSignal, std::function<void(void*, void*)> const& callback, void* pOwner) {
- initCallback(pSignal, callback, pOwner);
-}
-
-CHyprWLListener::CHyprWLListener() {
- m_swWrapper.m_pSelf = this;
- m_swWrapper.m_sListener.notify = &handleWrapped;
- wl_list_init(&m_swWrapper.m_sListener.link);
-}
-
-CHyprWLListener::~CHyprWLListener() {
- removeCallback();
-}
-
-void CHyprWLListener::removeCallback() {
- if (isConnected()) {
- Debug::log(LOG, "Callback {:x} -> {:x}, {} removed.", (uintptr_t)&m_pCallback, (uintptr_t)&m_pOwner, m_szAuthor);
- wl_list_remove(&m_swWrapper.m_sListener.link);
- wl_list_init(&m_swWrapper.m_sListener.link);
- }
-}
-
-bool CHyprWLListener::isConnected() {
- return !wl_list_empty(&m_swWrapper.m_sListener.link);
-}
-
-void CHyprWLListener::initCallback(wl_signal* pSignal, std::function<void(void*, void*)> const& callback, void* pOwner, std::string author) {
- if (isConnected()) {
- Debug::log(ERR, "Tried to connect a listener twice?!");
- return;
- }
-
- m_pOwner = pOwner;
- m_pCallback = callback;
- m_szAuthor = author;
-
- addWLSignal(pSignal, &m_swWrapper.m_sListener, pOwner, m_szAuthor);
-}
-
-void CHyprWLListener::emit(void* data) {
- m_pCallback(m_pOwner, data);
-}
diff --git a/src/helpers/WLListener.hpp b/src/helpers/WLListener.hpp
deleted file mode 100644
index 621458e6..00000000
--- a/src/helpers/WLListener.hpp
+++ /dev/null
@@ -1,39 +0,0 @@
-#pragma once
-
-#include <string>
-#include <functional>
-#include <wayland-server.h>
-
-class CHyprWLListener {
- public:
- CHyprWLListener(wl_signal*, std::function<void(void*, void*)> const&, void* owner);
- CHyprWLListener();
- ~CHyprWLListener();
-
- CHyprWLListener(const CHyprWLListener&) = delete;
- CHyprWLListener(CHyprWLListener&&) = delete;
- CHyprWLListener& operator=(const CHyprWLListener&) = delete;
- CHyprWLListener& operator=(CHyprWLListener&&) = delete;
-
- void initCallback(wl_signal*, std::function<void(void*, void*)> const&, void* owner, std::string author = "");
-
- void removeCallback();
-
- bool isConnected();
-
- struct SWrapper {
- wl_listener m_sListener;
- CHyprWLListener* m_pSelf;
- };
-
- void emit(void*);
-
- private:
- SWrapper m_swWrapper;
-
- void* m_pOwner = nullptr;
-
- std::function<void(void*, void*)> m_pCallback = nullptr;
-
- std::string m_szAuthor = "";
-}; \ No newline at end of file