/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim:expandtab:shiftwidth=4:tabstop=4: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "nsWaylandDisplay.h" #include "base/message_loop.h" // for MessageLoop #include "base/task.h" // for NewRunnableMethod, etc #include "mozilla/StaticMutex.h" namespace mozilla { namespace widget { // nsWaylandDisplay needs to be created for each calling thread(main thread, // compositor thread and render thread) #define MAX_DISPLAY_CONNECTIONS 3 static nsWaylandDisplay* gWaylandDisplays[MAX_DISPLAY_CONNECTIONS]; static StaticMutex gWaylandDisplaysMutex; void WaylandDisplayShutdown() { StaticMutexAutoLock lock(gWaylandDisplaysMutex); for (auto& display : gWaylandDisplays) { if (display) { display->Shutdown(); } } } static void ReleaseDisplaysAtExit() { for (int i = 0; i < MAX_DISPLAY_CONNECTIONS; i++) { delete gWaylandDisplays[i]; gWaylandDisplays[i] = nullptr; } } static void DispatchDisplay(nsWaylandDisplay* aDisplay) { aDisplay->DispatchEventQueue(); } // Each thread which is using wayland connection (wl_display) has to operate // its own wl_event_queue. Main Firefox thread wl_event_queue is handled // by Gtk main loop, other threads/wl_event_queue has to be handled by us. // // nsWaylandDisplay is our interface to wayland compositor. It provides wayland // global objects as we need (wl_display, wl_shm) and operates wl_event_queue on // compositor (not the main) thread. void WaylandDispatchDisplays() { StaticMutexAutoLock lock(gWaylandDisplaysMutex); for (auto& display : gWaylandDisplays) { if (display && display->GetDispatcherThreadLoop()) { display->GetDispatcherThreadLoop()->PostTask(NewRunnableFunction( "WaylandDisplayDispatch", &DispatchDisplay, display)); } } } // Get WaylandDisplay for given wl_display and actual calling thread. static nsWaylandDisplay* WaylandDisplayGetLocked(GdkDisplay* aGdkDisplay, const StaticMutexAutoLock&) { // Available as of GTK 3.8+ static auto sGdkWaylandDisplayGetWlDisplay = (wl_display * (*)(GdkDisplay*)) dlsym(RTLD_DEFAULT, "gdk_wayland_display_get_wl_display"); wl_display* waylandDisplay = sGdkWaylandDisplayGetWlDisplay(aGdkDisplay); // Search existing display connections for wl_display:thread combination. for (auto& display : gWaylandDisplays) { if (display && display->Matches(waylandDisplay)) { return display; } } for (auto& display : gWaylandDisplays) { if (display == nullptr) { display = new nsWaylandDisplay(waylandDisplay); atexit(ReleaseDisplaysAtExit); return display; } } MOZ_CRASH("There's too many wayland display conections!"); return nullptr; } nsWaylandDisplay* WaylandDisplayGet(GdkDisplay* aGdkDisplay) { if (!aGdkDisplay) { aGdkDisplay = gdk_display_get_default(); } StaticMutexAutoLock lock(gWaylandDisplaysMutex); return WaylandDisplayGetLocked(aGdkDisplay, lock); } void nsWaylandDisplay::SetShm(wl_shm* aShm) { mShm = aShm; } void nsWaylandDisplay::SetSubcompositor(wl_subcompositor* aSubcompositor) { mSubcompositor = aSubcompositor; } void nsWaylandDisplay::SetDataDeviceManager( wl_data_device_manager* aDataDeviceManager) { mDataDeviceManager = aDataDeviceManager; } void nsWaylandDisplay::SetSeat(wl_seat* aSeat) { mSeat = aSeat; } void nsWaylandDisplay::SetPrimarySelectionDeviceManager( gtk_primary_selection_device_manager* aPrimarySelectionDeviceManager) { mPrimarySelectionDeviceManager = aPrimarySelectionDeviceManager; } static void global_registry_handler(void* data, wl_registry* registry, uint32_t id, const char* interface, uint32_t version) { auto display = reinterpret_cast(data); if (!display) return; if (strcmp(interface, "wl_shm") == 0) { auto shm = static_cast( wl_registry_bind(registry, id, &wl_shm_interface, 1)); wl_proxy_set_queue((struct wl_proxy*)shm, display->GetEventQueue()); display->SetShm(shm); } else if (strcmp(interface, "wl_data_device_manager") == 0) { int data_device_manager_version = MIN(version, 3); auto data_device_manager = static_cast( wl_registry_bind(registry, id, &wl_data_device_manager_interface, data_device_manager_version)); wl_proxy_set_queue((struct wl_proxy*)data_device_manager, display->GetEventQueue()); display->SetDataDeviceManager(data_device_manager); } else if (strcmp(interface, "wl_seat") == 0) { auto seat = static_cast( wl_registry_bind(registry, id, &wl_seat_interface, 1)); wl_proxy_set_queue((struct wl_proxy*)seat, display->GetEventQueue()); display->SetSeat(seat); } else if (strcmp(interface, "gtk_primary_selection_device_manager") == 0) { auto primary_selection_device_manager = static_cast(wl_registry_bind( registry, id, >k_primary_selection_device_manager_interface, 1)); wl_proxy_set_queue((struct wl_proxy*)primary_selection_device_manager, display->GetEventQueue()); display->SetPrimarySelectionDeviceManager(primary_selection_device_manager); } else if (strcmp(interface, "wl_subcompositor") == 0) { auto subcompositor = static_cast( wl_registry_bind(registry, id, &wl_subcompositor_interface, 1)); wl_proxy_set_queue((struct wl_proxy*)subcompositor, display->GetEventQueue()); display->SetSubcompositor(subcompositor); } } static void global_registry_remover(void* data, wl_registry* registry, uint32_t id) {} static const struct wl_registry_listener registry_listener = { global_registry_handler, global_registry_remover}; bool nsWaylandDisplay::DispatchEventQueue() { wl_display_dispatch_queue_pending(mDisplay, mEventQueue); return true; } bool nsWaylandDisplay::Matches(wl_display* aDisplay) { return mThreadId == PR_GetCurrentThread() && aDisplay == mDisplay; } nsWaylandDisplay::nsWaylandDisplay(wl_display* aDisplay) : mDispatcherThreadLoop(nullptr), mThreadId(PR_GetCurrentThread()), mDisplay(aDisplay), mEventQueue(nullptr), mDataDeviceManager(nullptr), mSubcompositor(nullptr), mSeat(nullptr), mShm(nullptr), mPrimarySelectionDeviceManager(nullptr), mRegistry(nullptr) { mRegistry = wl_display_get_registry(mDisplay); wl_registry_add_listener(mRegistry, ®istry_listener, this); if (NS_IsMainThread()) { // Use default event queue in main thread operated by Gtk+. mEventQueue = nullptr; wl_display_roundtrip(mDisplay); wl_display_roundtrip(mDisplay); } else { mDispatcherThreadLoop = MessageLoop::current(); mEventQueue = wl_display_create_queue(mDisplay); wl_proxy_set_queue((struct wl_proxy*)mRegistry, mEventQueue); wl_display_roundtrip_queue(mDisplay, mEventQueue); wl_display_roundtrip_queue(mDisplay, mEventQueue); } } void nsWaylandDisplay::Shutdown() { mDispatcherThreadLoop = nullptr; } nsWaylandDisplay::~nsWaylandDisplay() { // Owned by Gtk+, we don't need to release mDisplay = nullptr; wl_registry_destroy(mRegistry); mRegistry = nullptr; if (mEventQueue) { wl_event_queue_destroy(mEventQueue); mEventQueue = nullptr; } } } // namespace widget } // namespace mozilla