|
| 1 | +/* |
| 2 | + * Copyright (c) 2024 Igalia S.L. |
| 3 | + * |
| 4 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 5 | + * of this software and associated documentation files (the "Software"), to deal |
| 6 | + * in the Software without restriction, including without limitation the rights |
| 7 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 8 | + * copies of the Software, and to permit persons to whom the Software is |
| 9 | + * furnished to do so, subject to the following conditions: |
| 10 | + * |
| 11 | + * The above copyright notice and this permission notice shall be included in all |
| 12 | + * copies or substantial portions of the Software. |
| 13 | + * |
| 14 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 17 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 18 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 19 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 20 | + * SOFTWARE. |
| 21 | + */ |
| 22 | + |
| 23 | +#include "wpe-display-gtk.h" |
| 24 | + |
| 25 | +#include "wpe-monitor-gtk-private.h" |
| 26 | +#include "wpe-view-gtk.h" |
| 27 | +#include <epoxy/egl.h> |
| 28 | + |
| 29 | +#ifdef GDK_WINDOWING_WAYLAND |
| 30 | +#include <gdk/wayland/gdkwayland.h> |
| 31 | +#endif |
| 32 | + |
| 33 | +#ifdef GDK_WINDOWING_X11 |
| 34 | +#include <gdk/x11/gdkx.h> |
| 35 | +#endif |
| 36 | + |
| 37 | +#ifndef EGL_DRM_RENDER_NODE_FILE_EXT |
| 38 | +#define EGL_DRM_RENDER_NODE_FILE_EXT 0x3377 |
| 39 | +#endif |
| 40 | + |
| 41 | +struct _WPEDisplayGtk { |
| 42 | + WPEDisplay parent; |
| 43 | + |
| 44 | + GdkDisplay *display; |
| 45 | + EGLDisplay egl_display; |
| 46 | + char *drm_device; |
| 47 | + char *drm_render_node; |
| 48 | + GPtrArray *monitors; |
| 49 | +}; |
| 50 | + |
| 51 | +G_DEFINE_DYNAMIC_TYPE_EXTENDED(WPEDisplayGtk, wpe_display_gtk, WPE_TYPE_DISPLAY, G_TYPE_FLAG_FINAL, {}) |
| 52 | + |
| 53 | +static void wpe_display_gtk_finalize(GObject *object) |
| 54 | +{ |
| 55 | + WPEDisplayGtk *display_gtk = WPE_DISPLAY_GTK(object); |
| 56 | + g_clear_pointer(&display_gtk->drm_device, g_free); |
| 57 | + g_clear_pointer(&display_gtk->drm_render_node, g_free); |
| 58 | + g_clear_pointer(&display_gtk->monitors, g_ptr_array_unref); |
| 59 | + |
| 60 | + G_OBJECT_CLASS(wpe_display_gtk_parent_class)->finalize(object); |
| 61 | +} |
| 62 | + |
| 63 | +static void wpe_display_gtk_monitors_changed(WPEDisplayGtk *display_gtk, guint index, guint n_removed, guint n_added, GListModel *monitors) |
| 64 | +{ |
| 65 | + for (guint i = 0; i < n_removed; i++) |
| 66 | + g_ptr_array_remove_index(display_gtk->monitors, index); |
| 67 | + |
| 68 | + for (guint i = 0; i < n_added; i++) { |
| 69 | + GdkMonitor *monitor = GDK_MONITOR(g_list_model_get_item(monitors, index + i)); |
| 70 | + g_ptr_array_add(display_gtk->monitors, wpe_monitor_gtk_create(monitor)); |
| 71 | + g_object_unref(monitor); |
| 72 | + } |
| 73 | +} |
| 74 | + |
| 75 | +static void wpe_display_gtk_setup_monitors(WPEDisplayGtk *display_gtk) |
| 76 | +{ |
| 77 | + GListModel *monitors = gdk_display_get_monitors(display_gtk->display); |
| 78 | + guint n_monitors = g_list_model_get_n_items(monitors); |
| 79 | + display_gtk->monitors = g_ptr_array_new_full(n_monitors, g_object_unref); |
| 80 | + for (guint i = 0; i < n_monitors; i++) { |
| 81 | + GdkMonitor *monitor = GDK_MONITOR(g_list_model_get_item(monitors, i)); |
| 82 | + g_ptr_array_add(display_gtk->monitors, wpe_monitor_gtk_create(monitor)); |
| 83 | + g_object_unref(monitor); |
| 84 | + } |
| 85 | + g_signal_connect_object(monitors, "items-changed", G_CALLBACK(wpe_display_gtk_monitors_changed), display_gtk, G_CONNECT_SWAPPED); |
| 86 | +} |
| 87 | + |
| 88 | +static gboolean wpe_display_gtk_connect(WPEDisplay *display, GError **error) |
| 89 | +{ |
| 90 | + WPEDisplayGtk *display_gtk = WPE_DISPLAY_GTK(display); |
| 91 | + if (!gtk_init_check()) { |
| 92 | + g_set_error_literal(error, WPE_DISPLAY_ERROR, WPE_DISPLAY_ERROR_CONNECTION_FAILED, "Failed to initialize GTK"); |
| 93 | + return FALSE; |
| 94 | + } |
| 95 | + |
| 96 | + display_gtk->display = gdk_display_get_default(); |
| 97 | + if (!display_gtk->display) { |
| 98 | + g_set_error_literal(error, WPE_DISPLAY_ERROR, WPE_DISPLAY_ERROR_CONNECTION_FAILED, "Failed to connect to default GDK display"); |
| 99 | + return FALSE; |
| 100 | + } |
| 101 | + |
| 102 | +#ifdef GDK_WINDOWING_WAYLAND |
| 103 | + if (GDK_IS_WAYLAND_DISPLAY(display_gtk->display)) |
| 104 | + display_gtk->egl_display = gdk_wayland_display_get_egl_display(display_gtk->display); |
| 105 | +#endif |
| 106 | + |
| 107 | +#ifdef GDK_WINDOWING_X11 |
| 108 | + if (GDK_IS_X11_DISPLAY(display_gtk->display)) |
| 109 | + display_gtk->egl_display = gdk_x11_display_get_egl_display(display_gtk->display); |
| 110 | +#endif |
| 111 | + |
| 112 | + if (display_gtk->egl_display == EGL_NO_DISPLAY) { |
| 113 | + g_set_error_literal(error, WPE_DISPLAY_ERROR, WPE_DISPLAY_ERROR_CONNECTION_FAILED, "Failed to get GTK EGL display"); |
| 114 | + display_gtk->display = NULL; |
| 115 | + return FALSE; |
| 116 | + } |
| 117 | + |
| 118 | + EGLDeviceEXT egl_device; |
| 119 | + if (eglQueryDisplayAttribEXT(display_gtk->egl_display, EGL_DEVICE_EXT, (EGLAttrib*)&egl_device)) { |
| 120 | + const char *extensions = eglQueryDeviceStringEXT(egl_device, EGL_EXTENSIONS); |
| 121 | + if (epoxy_extension_in_string(extensions, "EGL_EXT_device_drm")) |
| 122 | + display_gtk->drm_device = g_strdup(eglQueryDeviceStringEXT(egl_device, EGL_DRM_DEVICE_FILE_EXT)); |
| 123 | + if (epoxy_extension_in_string(extensions, "EGL_EXT_device_drm_render_node")) |
| 124 | + display_gtk->drm_render_node = g_strdup(eglQueryDeviceStringEXT(egl_device, EGL_DRM_RENDER_NODE_FILE_EXT)); |
| 125 | + } |
| 126 | + |
| 127 | + wpe_display_gtk_setup_monitors(display_gtk); |
| 128 | + |
| 129 | + return TRUE; |
| 130 | +} |
| 131 | + |
| 132 | +static gpointer wpe_display_gtk_get_egl_display(WPEDisplay *display, GError **error) |
| 133 | +{ |
| 134 | + return WPE_DISPLAY_GTK(display)->egl_display; |
| 135 | +} |
| 136 | + |
| 137 | +static WPEView *wpe_display_gtk_create_view(WPEDisplay *display) |
| 138 | +{ |
| 139 | + WPEDisplayGtk *display_gtk = WPE_DISPLAY_GTK(display); |
| 140 | + if (!display_gtk->display) |
| 141 | + return NULL; |
| 142 | + |
| 143 | + WPEViewGtk *view = WPE_VIEW_GTK(wpe_view_gtk_new(display_gtk)); |
| 144 | + /* FIXME: create the toplevel conditionally. */ |
| 145 | + GtkWindow *win = GTK_WINDOW(gtk_window_new()); |
| 146 | + gtk_window_set_default_size(win, 1024, 768); |
| 147 | + gtk_window_set_child(win, wpe_view_gtk_get_widget(view)); |
| 148 | + gtk_window_present(win); |
| 149 | + |
| 150 | + return WPE_VIEW(view); |
| 151 | +} |
| 152 | + |
| 153 | +static WPEBufferDMABufFormats *wpe_display_gtk_get_preferred_dma_buf_formats(WPEDisplay *display) |
| 154 | +{ |
| 155 | + WPEDisplayGtk *display_gtk = WPE_DISPLAY_GTK(display); |
| 156 | + if (!display_gtk->display) |
| 157 | + return NULL; |
| 158 | + |
| 159 | + GdkDmabufFormats *formats = gdk_display_get_dmabuf_formats(display_gtk->display); |
| 160 | + gsize n_formats = gdk_dmabuf_formats_get_n_formats(formats); |
| 161 | + if (!n_formats) |
| 162 | + return NULL; |
| 163 | + |
| 164 | + WPEBufferDMABufFormatsBuilder *builder = wpe_buffer_dma_buf_formats_builder_new(NULL); |
| 165 | + wpe_buffer_dma_buf_formats_builder_append_group(builder, NULL, WPE_BUFFER_DMA_BUF_FORMAT_USAGE_RENDERING); |
| 166 | + for (gsize i = 0; i < n_formats; i++) { |
| 167 | + guint32 fourcc; |
| 168 | + guint64 modifier; |
| 169 | + gdk_dmabuf_formats_get_format(formats, i, &fourcc, &modifier); |
| 170 | + wpe_buffer_dma_buf_formats_builder_append_format(builder, fourcc, modifier); |
| 171 | + } |
| 172 | + |
| 173 | + return wpe_buffer_dma_buf_formats_builder_end(builder); |
| 174 | +} |
| 175 | + |
| 176 | +const char *wpe_display_gtk_get_drm_device(WPEDisplay *display) |
| 177 | +{ |
| 178 | + return WPE_DISPLAY_GTK(display)->drm_device; |
| 179 | +} |
| 180 | + |
| 181 | +const char *wpe_display_gtk_get_drm_render_node(WPEDisplay *display) |
| 182 | +{ |
| 183 | + return WPE_DISPLAY_GTK(display)->drm_render_node; |
| 184 | +} |
| 185 | + |
| 186 | +static guint wpe_display_gtk_get_n_monitors(WPEDisplay *display) |
| 187 | +{ |
| 188 | + WPEDisplayGtk *display_gtk = WPE_DISPLAY_GTK(display); |
| 189 | + if (!display_gtk->monitors) |
| 190 | + return 0; |
| 191 | + |
| 192 | + return display_gtk->monitors->len; |
| 193 | +} |
| 194 | + |
| 195 | +static WPEMonitor *wpe_display_gtk_get_monitor(WPEDisplay *display, guint index) |
| 196 | +{ |
| 197 | + WPEDisplayGtk *display_gtk = WPE_DISPLAY_GTK(display); |
| 198 | + if (!display_gtk->monitors) |
| 199 | + return NULL; |
| 200 | + |
| 201 | + return index < display_gtk->monitors->len ? g_ptr_array_index(display_gtk->monitors, index) : NULL; |
| 202 | +} |
| 203 | + |
| 204 | + |
| 205 | +static void wpe_display_gtk_class_init(WPEDisplayGtkClass *klass) |
| 206 | +{ |
| 207 | + GObjectClass *object_class = G_OBJECT_CLASS(klass); |
| 208 | + object_class->finalize = wpe_display_gtk_finalize; |
| 209 | + |
| 210 | + WPEDisplayClass *display_class = WPE_DISPLAY_CLASS(klass); |
| 211 | + display_class->connect = wpe_display_gtk_connect; |
| 212 | + display_class->get_egl_display = wpe_display_gtk_get_egl_display; |
| 213 | + display_class->create_view = wpe_display_gtk_create_view; |
| 214 | + display_class->get_preferred_dma_buf_formats = wpe_display_gtk_get_preferred_dma_buf_formats; |
| 215 | + display_class->get_drm_device = wpe_display_gtk_get_drm_device; |
| 216 | + display_class->get_drm_render_node = wpe_display_gtk_get_drm_render_node; |
| 217 | + display_class->get_n_monitors = wpe_display_gtk_get_n_monitors; |
| 218 | + display_class->get_monitor = wpe_display_gtk_get_monitor; |
| 219 | +} |
| 220 | + |
| 221 | +static void wpe_display_gtk_class_finalize(WPEDisplayGtkClass *klass) |
| 222 | +{ |
| 223 | +} |
| 224 | + |
| 225 | +static void wpe_display_gtk_init(WPEDisplayGtk *display) |
| 226 | +{ |
| 227 | + display->egl_display = EGL_NO_DISPLAY; |
| 228 | +} |
| 229 | + |
| 230 | +GdkDisplay *wpe_display_gtk_get_gdk_display(WPEDisplayGtk *display) |
| 231 | +{ |
| 232 | + g_return_val_if_fail(WPE_IS_DISPLAY_GTK(display), NULL); |
| 233 | + |
| 234 | + return display->display; |
| 235 | +} |
| 236 | + |
| 237 | +void wpe_display_gtk_register(GIOModule *module) |
| 238 | +{ |
| 239 | + wpe_display_gtk_register_type(G_TYPE_MODULE(module)); |
| 240 | + if (!module) |
| 241 | + g_io_extension_point_register(WPE_DISPLAY_EXTENSION_POINT_NAME); |
| 242 | + g_io_extension_point_implement(WPE_DISPLAY_EXTENSION_POINT_NAME, WPE_TYPE_DISPLAY_GTK, "wpe-display-gtk", 200); |
| 243 | +} |
0 commit comments