
# Objective - Contributes to #16877 ## Solution - Expanded `bevy_platform_support::sync` module to provide API-compatible replacements for `std` items such as `RwLock`, `Mutex`, and `OnceLock`. - Removed `spin` from all crates except `bevy_platform_support`. ## Testing - CI --- ## Notes - The sync primitives, while verbose, entirely rely on `spin` for their implementation requiring no `unsafe` and not changing the status-quo on _how_ locks actually work within Bevy. This is just a refactoring to consolidate the "hacks" and workarounds required to get a consistent experience when either using `std::sync` or `spin`. - I have opted to rely on `std::sync` for `std` compatible locks, maintaining the status quo. However, now that we have these locks factored out into the own module, it would be trivial to investigate alternate locking backends, such as `parking_lot`. - API for these locking types is entirely based on `std`. I have implemented methods and types which aren't currently in use within Bevy (e.g., `LazyLock` and `Once`) for the sake of completeness. As the standard library is highly stable, I don't expect the Bevy and `std` implementations to drift apart much if at all. --------- Co-authored-by: BD103 <59022059+BD103@users.noreply.github.com> Co-authored-by: Benjamin Brienen <benjamin.brienen@outlook.com>
163 lines
6.9 KiB
Rust
163 lines
6.9 KiB
Rust
#![expect(
|
|
unsafe_code,
|
|
reason = "This module acts as a wrapper around the `raw_window_handle` crate, which exposes many unsafe interfaces; thus, we have to use unsafe code here."
|
|
)]
|
|
|
|
use alloc::sync::Arc;
|
|
use bevy_ecs::prelude::Component;
|
|
use bevy_platform_support::sync::Mutex;
|
|
use core::{any::Any, marker::PhantomData, ops::Deref};
|
|
use raw_window_handle::{
|
|
DisplayHandle, HandleError, HasDisplayHandle, HasWindowHandle, RawDisplayHandle,
|
|
RawWindowHandle, WindowHandle,
|
|
};
|
|
|
|
/// A wrapper over a window.
|
|
///
|
|
/// This allows us to extend the lifetime of the window, so it doesn't get eagerly dropped while a
|
|
/// pipelined renderer still has frames in flight that need to draw to it.
|
|
///
|
|
/// This is achieved by storing a shared reference to the window in the [`RawHandleWrapper`],
|
|
/// which gets picked up by the renderer during extraction.
|
|
#[derive(Debug)]
|
|
pub struct WindowWrapper<W> {
|
|
reference: Arc<dyn Any + Send + Sync>,
|
|
ty: PhantomData<W>,
|
|
}
|
|
|
|
impl<W: Send + Sync + 'static> WindowWrapper<W> {
|
|
/// Creates a `WindowWrapper` from a window.
|
|
pub fn new(window: W) -> WindowWrapper<W> {
|
|
WindowWrapper {
|
|
reference: Arc::new(window),
|
|
ty: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<W: 'static> Deref for WindowWrapper<W> {
|
|
type Target = W;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
self.reference.downcast_ref::<W>().unwrap()
|
|
}
|
|
}
|
|
|
|
/// A wrapper over [`RawWindowHandle`] and [`RawDisplayHandle`] that allows us to safely pass it across threads.
|
|
///
|
|
/// Depending on the platform, the underlying pointer-containing handle cannot be used on all threads,
|
|
/// and so we cannot simply make it (or any type that has a safe operation to get a [`RawWindowHandle`] or [`RawDisplayHandle`])
|
|
/// thread-safe.
|
|
#[derive(Debug, Clone, Component)]
|
|
pub struct RawHandleWrapper {
|
|
_window: Arc<dyn Any + Send + Sync>,
|
|
/// Raw handle to a window.
|
|
window_handle: RawWindowHandle,
|
|
/// Raw handle to the display server.
|
|
display_handle: RawDisplayHandle,
|
|
}
|
|
|
|
impl RawHandleWrapper {
|
|
/// Creates a `RawHandleWrapper` from a `WindowWrapper`.
|
|
pub fn new<W: HasWindowHandle + HasDisplayHandle + 'static>(
|
|
window: &WindowWrapper<W>,
|
|
) -> Result<RawHandleWrapper, HandleError> {
|
|
Ok(RawHandleWrapper {
|
|
_window: window.reference.clone(),
|
|
window_handle: window.window_handle()?.as_raw(),
|
|
display_handle: window.display_handle()?.as_raw(),
|
|
})
|
|
}
|
|
|
|
/// Returns a [`HasWindowHandle`] + [`HasDisplayHandle`] impl, which exposes [`WindowHandle`] and [`DisplayHandle`].
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// Some platforms have constraints on where/how this handle can be used. For example, some platforms don't support doing window
|
|
/// operations off of the main thread. The caller must ensure the [`RawHandleWrapper`] is only used in valid contexts.
|
|
pub unsafe fn get_handle(&self) -> ThreadLockedRawWindowHandleWrapper {
|
|
ThreadLockedRawWindowHandleWrapper(self.clone())
|
|
}
|
|
|
|
/// Gets the stored window handle.
|
|
pub fn get_window_handle(&self) -> RawWindowHandle {
|
|
self.window_handle
|
|
}
|
|
|
|
/// Sets the window handle.
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// The passed in [`RawWindowHandle`] must be a valid window handle.
|
|
// NOTE: The use of an explicit setter instead of a getter for a mutable reference is to limit the amount of time unsoundness can happen.
|
|
// If we handed out a mutable reference the user would have to maintain safety invariants throughout its lifetime. For consistency
|
|
// we also prefer to handout copies of the handles instead of immutable references.
|
|
pub unsafe fn set_window_handle(&mut self, window_handle: RawWindowHandle) -> &mut Self {
|
|
self.window_handle = window_handle;
|
|
|
|
self
|
|
}
|
|
|
|
/// Gets the stored display handle
|
|
pub fn get_display_handle(&self) -> RawDisplayHandle {
|
|
self.display_handle
|
|
}
|
|
|
|
/// Sets the display handle.
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// The passed in [`RawDisplayHandle`] must be a valid display handle.
|
|
pub fn set_display_handle(&mut self, display_handle: RawDisplayHandle) -> &mut Self {
|
|
self.display_handle = display_handle;
|
|
|
|
self
|
|
}
|
|
}
|
|
|
|
// SAFETY: [`RawHandleWrapper`] is just a normal "raw pointer", which doesn't impl Send/Sync. However the pointer is only
|
|
// exposed via an unsafe method that forces the user to make a call for a given platform. (ex: some platforms don't
|
|
// support doing window operations off of the main thread).
|
|
// A recommendation for this pattern (and more context) is available here:
|
|
// https://github.com/rust-windowing/raw-window-handle/issues/59
|
|
unsafe impl Send for RawHandleWrapper {}
|
|
// SAFETY: This is safe for the same reasons as the Send impl above.
|
|
unsafe impl Sync for RawHandleWrapper {}
|
|
|
|
/// A [`RawHandleWrapper`] that cannot be sent across threads.
|
|
///
|
|
/// This safely exposes [`RawWindowHandle`] and [`RawDisplayHandle`], but care must be taken to ensure that the construction itself is correct.
|
|
///
|
|
/// This can only be constructed via the [`RawHandleWrapper::get_handle()`] method;
|
|
/// be sure to read the safety docs there about platform-specific limitations.
|
|
/// In many cases, this should only be constructed on the main thread.
|
|
pub struct ThreadLockedRawWindowHandleWrapper(RawHandleWrapper);
|
|
|
|
impl HasWindowHandle for ThreadLockedRawWindowHandleWrapper {
|
|
fn window_handle(&self) -> Result<WindowHandle, HandleError> {
|
|
// SAFETY: the caller has validated that this is a valid context to get [`RawHandleWrapper`]
|
|
// as otherwise an instance of this type could not have been constructed
|
|
// NOTE: we cannot simply impl HasRawWindowHandle for RawHandleWrapper,
|
|
// as the `raw_window_handle` method is safe. We cannot guarantee that all calls
|
|
// of this method are correct (as it may be off the main thread on an incompatible platform),
|
|
// and so exposing a safe method to get a [`RawWindowHandle`] directly would be UB.
|
|
Ok(unsafe { WindowHandle::borrow_raw(self.0.window_handle) })
|
|
}
|
|
}
|
|
|
|
impl HasDisplayHandle for ThreadLockedRawWindowHandleWrapper {
|
|
fn display_handle(&self) -> Result<DisplayHandle, HandleError> {
|
|
// SAFETY: the caller has validated that this is a valid context to get [`RawDisplayHandle`]
|
|
// as otherwise an instance of this type could not have been constructed
|
|
// NOTE: we cannot simply impl HasRawDisplayHandle for RawHandleWrapper,
|
|
// as the `raw_display_handle` method is safe. We cannot guarantee that all calls
|
|
// of this method are correct (as it may be off the main thread on an incompatible platform),
|
|
// and so exposing a safe method to get a [`RawDisplayHandle`] directly would be UB.
|
|
Ok(unsafe { DisplayHandle::borrow_raw(self.0.display_handle) })
|
|
}
|
|
}
|
|
|
|
/// Holder of the [`RawHandleWrapper`] with wrappers, to allow use in asynchronous context
|
|
#[derive(Debug, Clone, Component)]
|
|
pub struct RawHandleWrapperHolder(pub Arc<Mutex<Option<RawHandleWrapper>>>);
|