mirror of
https://github.com/hyprwm/Hyprland
synced 2025-01-12 05:09:49 +01:00
GPU hotplug support
This commit is contained in:
parent
b9f110ef87
commit
6f030e60bf
2 changed files with 41 additions and 11 deletions
|
@ -5,6 +5,7 @@
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
|
||||||
|
#include <map>
|
||||||
#include <sys/timerfd.h>
|
#include <sys/timerfd.h>
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
|
@ -16,11 +17,12 @@ CEventLoopManager::CEventLoopManager(wl_display* display, wl_event_loop* wlEvent
|
||||||
m_sTimers.timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
|
m_sTimers.timerfd = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
|
||||||
m_sWayland.loop = wlEventLoop;
|
m_sWayland.loop = wlEventLoop;
|
||||||
m_sWayland.display = display;
|
m_sWayland.display = display;
|
||||||
|
aqEventSources = std::map<int, SEventSourceData>{};
|
||||||
}
|
}
|
||||||
|
|
||||||
CEventLoopManager::~CEventLoopManager() {
|
CEventLoopManager::~CEventLoopManager() {
|
||||||
for (auto const& eventSource : m_sWayland.aqEventSources) {
|
for (auto const& [_, eventSourceData] : aqEventSources) {
|
||||||
wl_event_source_remove(eventSource);
|
wl_event_source_remove(eventSourceData.eventSource);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_sWayland.eventSource)
|
if (m_sWayland.eventSource)
|
||||||
|
@ -45,10 +47,8 @@ static int aquamarineFDWrite(int fd, uint32_t mask, void* data) {
|
||||||
void CEventLoopManager::enterLoop() {
|
void CEventLoopManager::enterLoop() {
|
||||||
m_sWayland.eventSource = wl_event_loop_add_fd(m_sWayland.loop, m_sTimers.timerfd, WL_EVENT_READABLE, timerWrite, nullptr);
|
m_sWayland.eventSource = wl_event_loop_add_fd(m_sWayland.loop, m_sTimers.timerfd, WL_EVENT_READABLE, timerWrite, nullptr);
|
||||||
|
|
||||||
aqPollFDs = g_pCompositor->m_pAqBackend->getPollFDs();
|
syncPollFDs();
|
||||||
for (auto const& fd : aqPollFDs) {
|
m_sListeners.pollFDsChanged = g_pCompositor->m_pAqBackend->events.pollFDsChanged.registerListener([this](std::any d) { syncPollFDs(); });
|
||||||
m_sWayland.aqEventSources.emplace_back(wl_event_loop_add_fd(m_sWayland.loop, fd->fd, WL_EVENT_READABLE, aquamarineFDWrite, fd.get()));
|
|
||||||
}
|
|
||||||
|
|
||||||
// if we have a session, dispatch it to get the pending input devices
|
// if we have a session, dispatch it to get the pending input devices
|
||||||
if (g_pCompositor->m_pAqBackend->hasSession())
|
if (g_pCompositor->m_pAqBackend->hasSession())
|
||||||
|
@ -133,3 +133,21 @@ void CEventLoopManager::doLater(const std::function<void()>& fn) {
|
||||||
},
|
},
|
||||||
&m_sIdle);
|
&m_sIdle);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CEventLoopManager::syncPollFDs() {
|
||||||
|
auto aqPollFDs = g_pCompositor->m_pAqBackend->getPollFDs();
|
||||||
|
|
||||||
|
for (auto it = aqEventSources.begin(); it != aqEventSources.end();) {
|
||||||
|
if (std::ranges::all_of(aqPollFDs, [&](SP<Aquamarine::SPollFD> fd) { return fd->fd != it->first; })) {
|
||||||
|
wl_event_source_remove(it->second.eventSource);
|
||||||
|
it = aqEventSources.erase(it);
|
||||||
|
} else {
|
||||||
|
++it;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (auto& fd : aqPollFDs | std::views::filter([&](SP<Aquamarine::SPollFD> fd) { return !aqEventSources.contains(fd->fd); })) {
|
||||||
|
auto eventSource = wl_event_loop_add_fd(m_sWayland.loop, fd->fd, WL_EVENT_READABLE, aquamarineFDWrite, fd.get());
|
||||||
|
aqEventSources[fd->fd] = {.pollFD = fd, .eventSource = eventSource};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
#include <wayland-server.h>
|
#include <wayland-server.h>
|
||||||
|
#include "helpers/signal/Signal.hpp"
|
||||||
|
|
||||||
#include "EventLoopTimer.hpp"
|
#include "EventLoopTimer.hpp"
|
||||||
|
|
||||||
|
@ -36,11 +37,18 @@ class CEventLoopManager {
|
||||||
};
|
};
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
// Manages the event sources after AQ pollFDs change.
|
||||||
|
void syncPollFDs();
|
||||||
|
|
||||||
|
struct SEventSourceData {
|
||||||
|
SP<Aquamarine::SPollFD> pollFD;
|
||||||
|
wl_event_source* eventSource = nullptr;
|
||||||
|
};
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
wl_event_loop* loop = nullptr;
|
wl_event_loop* loop = nullptr;
|
||||||
wl_display* display = nullptr;
|
wl_display* display = nullptr;
|
||||||
wl_event_source* eventSource = nullptr;
|
wl_event_source* eventSource = nullptr;
|
||||||
std::vector<wl_event_source*> aqEventSources;
|
|
||||||
} m_sWayland;
|
} m_sWayland;
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
|
@ -49,7 +57,11 @@ class CEventLoopManager {
|
||||||
} m_sTimers;
|
} m_sTimers;
|
||||||
|
|
||||||
SIdleData m_sIdle;
|
SIdleData m_sIdle;
|
||||||
std::vector<SP<Aquamarine::SPollFD>> aqPollFDs;
|
std::map<int, SEventSourceData> aqEventSources;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
CHyprSignalListener pollFDsChanged;
|
||||||
|
} m_sListeners;
|
||||||
|
|
||||||
friend class CSyncTimeline;
|
friend class CSyncTimeline;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue