| // Copyright 2021 The SwiftShader Authors. All Rights Reserved. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #include "libWaylandClient.hpp" |
| |
| #include "System/SharedLibrary.hpp" |
| |
| #include <memory> |
| |
| LibWaylandClientExports::LibWaylandClientExports(void *libwl) |
| { |
| getFuncAddress(libwl, "wl_display_dispatch_queue", &wl_display_dispatch_queue); |
| getFuncAddress(libwl, "wl_display_roundtrip_queue", &wl_display_roundtrip_queue); |
| getFuncAddress(libwl, "wl_display_flush", &wl_display_flush); |
| getFuncAddress(libwl, "wl_display_create_queue", &wl_display_create_queue); |
| getFuncAddress(libwl, "wl_event_queue_destroy", &wl_event_queue_destroy); |
| |
| getFuncAddress(libwl, "wl_proxy_marshal", &wl_proxy_marshal); |
| getFuncAddress(libwl, "wl_proxy_marshal_constructor", &wl_proxy_marshal_constructor); |
| getFuncAddress(libwl, "wl_proxy_marshal_constructor_versioned", &wl_proxy_marshal_constructor_versioned); |
| getFuncAddress(libwl, "wl_proxy_add_listener", &wl_proxy_add_listener); |
| getFuncAddress(libwl, "wl_proxy_destroy", &wl_proxy_destroy); |
| getFuncAddress(libwl, "wl_proxy_set_queue", &wl_proxy_set_queue); |
| getFuncAddress(libwl, "wl_proxy_create_wrapper", &wl_proxy_create_wrapper); |
| getFuncAddress(libwl, "wl_proxy_wrapper_destroy", &wl_proxy_wrapper_destroy); |
| |
| wl_registry_interface = reinterpret_cast<const wl_interface *>(getProcAddress(libwl, "wl_registry_interface")); |
| wl_shm_interface = reinterpret_cast<const wl_interface *>(getProcAddress(libwl, "wl_shm_interface")); |
| wl_shm_pool_interface = reinterpret_cast<const wl_interface *>(getProcAddress(libwl, "wl_shm_pool_interface")); |
| wl_surface_interface = reinterpret_cast<const wl_interface *>(getProcAddress(libwl, "wl_surface_interface")); |
| wl_buffer_interface = reinterpret_cast<const wl_interface *>(getProcAddress(libwl, "wl_buffer_interface")); |
| } |
| |
| bool LibWaylandClientExports::loaded() const |
| { |
| return wl_display_dispatch_queue && wl_display_roundtrip_queue && wl_display_flush && |
| wl_display_create_queue && wl_event_queue_destroy && |
| wl_proxy_marshal && wl_proxy_marshal_constructor && wl_proxy_marshal_constructor_versioned && |
| wl_proxy_add_listener && wl_proxy_destroy && wl_proxy_set_queue && |
| wl_proxy_create_wrapper && wl_proxy_wrapper_destroy && |
| wl_registry_interface && wl_shm_interface && wl_shm_pool_interface && |
| wl_surface_interface && wl_buffer_interface; |
| } |
| |
| // The following re-implement the static-inline wrappers from |
| // <wayland-client-protocol.h>, marshalling through the dynamically-loaded |
| // wl_proxy_marshal[_constructor[_versioned]] primitives instead of referencing |
| // libwayland-client symbols at link time. Opcodes come from that header. Object- |
| // creating requests pass a null new-id placeholder and let the created proxy |
| // inherit its parent's version (registry_bind is the exception: it binds an |
| // explicit version). |
| |
| wl_registry *LibWaylandClientExports::display_get_registry(wl_display *display) |
| { |
| return reinterpret_cast<wl_registry *>(wl_proxy_marshal_constructor( |
| reinterpret_cast<wl_proxy *>(display), WL_DISPLAY_GET_REGISTRY, |
| wl_registry_interface, static_cast<void *>(nullptr))); |
| } |
| |
| int LibWaylandClientExports::registry_add_listener(wl_registry *registry, const wl_registry_listener *listener, void *data) |
| { |
| return wl_proxy_add_listener(reinterpret_cast<wl_proxy *>(registry), |
| reinterpret_cast<void (**)(void)>(const_cast<wl_registry_listener *>(listener)), data); |
| } |
| |
| void *LibWaylandClientExports::registry_bind(wl_registry *registry, uint32_t name, const wl_interface *interface, uint32_t version) |
| { |
| return reinterpret_cast<void *>(wl_proxy_marshal_constructor_versioned( |
| reinterpret_cast<wl_proxy *>(registry), WL_REGISTRY_BIND, interface, version, |
| name, interface->name, version, static_cast<void *>(nullptr))); |
| } |
| |
| wl_shm_pool *LibWaylandClientExports::shm_create_pool(wl_shm *shm, int32_t fd, int32_t size) |
| { |
| return reinterpret_cast<wl_shm_pool *>(wl_proxy_marshal_constructor( |
| reinterpret_cast<wl_proxy *>(shm), WL_SHM_CREATE_POOL, |
| wl_shm_pool_interface, static_cast<void *>(nullptr), fd, size)); |
| } |
| |
| wl_buffer *LibWaylandClientExports::shm_pool_create_buffer(wl_shm_pool *pool, int32_t offset, int32_t width, int32_t height, int32_t stride, uint32_t format) |
| { |
| return reinterpret_cast<wl_buffer *>(wl_proxy_marshal_constructor( |
| reinterpret_cast<wl_proxy *>(pool), WL_SHM_POOL_CREATE_BUFFER, |
| wl_buffer_interface, static_cast<void *>(nullptr), offset, width, height, stride, format)); |
| } |
| |
| void LibWaylandClientExports::shm_pool_destroy(wl_shm_pool *pool) |
| { |
| wl_proxy *proxy = reinterpret_cast<wl_proxy *>(pool); |
| wl_proxy_marshal(proxy, WL_SHM_POOL_DESTROY); |
| wl_proxy_destroy(proxy); |
| } |
| |
| int LibWaylandClientExports::buffer_add_listener(wl_buffer *buffer, const wl_buffer_listener *listener, void *data) |
| { |
| return wl_proxy_add_listener(reinterpret_cast<wl_proxy *>(buffer), |
| reinterpret_cast<void (**)(void)>(const_cast<wl_buffer_listener *>(listener)), data); |
| } |
| |
| void LibWaylandClientExports::buffer_destroy(wl_buffer *buffer) |
| { |
| wl_proxy *proxy = reinterpret_cast<wl_proxy *>(buffer); |
| wl_proxy_marshal(proxy, WL_BUFFER_DESTROY); |
| wl_proxy_destroy(proxy); |
| } |
| |
| void LibWaylandClientExports::surface_attach(wl_surface *surface, wl_buffer *buffer, int32_t x, int32_t y) |
| { |
| wl_proxy_marshal(reinterpret_cast<wl_proxy *>(surface), WL_SURFACE_ATTACH, buffer, x, y); |
| } |
| |
| void LibWaylandClientExports::surface_damage(wl_surface *surface, int32_t x, int32_t y, int32_t width, int32_t height) |
| { |
| wl_proxy_marshal(reinterpret_cast<wl_proxy *>(surface), WL_SURFACE_DAMAGE, x, y, width, height); |
| } |
| |
| void LibWaylandClientExports::surface_commit(wl_surface *surface) |
| { |
| wl_proxy_marshal(reinterpret_cast<wl_proxy *>(surface), WL_SURFACE_COMMIT); |
| } |
| |
| LibWaylandClientExports *LibWaylandClient::operator->() |
| { |
| return loadExports(); |
| } |
| |
| LibWaylandClientExports *LibWaylandClient::loadExports() |
| { |
| static LibWaylandClientExports exports = [] { |
| void *libwl = nullptr; |
| |
| // wl_proxy_marshal is present in every libwayland version, so it reliably |
| // detects a pre-loaded Wayland client library in the global scope. |
| if(getProcAddress(RTLD_DEFAULT, "wl_proxy_marshal")) |
| { |
| libwl = RTLD_DEFAULT; |
| } |
| else |
| { |
| libwl = loadLibrary("libwayland-client.so.0"); |
| } |
| |
| return LibWaylandClientExports(libwl); |
| }(); |
| |
| return exports.loaded() ? &exports : nullptr; |
| } |
| |
| LibWaylandClient libWaylandClient; |