2021-04-07 22:58:39 +00:00
|
|
|
use std::convert::TryInto;
|
2021-04-25 21:30:25 +00:00
|
|
|
use std::sync::{Arc, Mutex, MutexGuard, atomic::{AtomicBool, Ordering}};
|
2021-04-06 22:54:46 +00:00
|
|
|
use std::ops::Deref;
|
|
|
|
|
|
|
|
use crate::backend::allocator::{Allocator, Buffer, Format};
|
|
|
|
|
2021-04-11 21:01:08 +00:00
|
|
|
pub const SLOT_CAP: usize = 4;
|
2021-04-06 22:54:46 +00:00
|
|
|
|
2021-04-25 21:30:25 +00:00
|
|
|
pub struct Swapchain<A: Allocator<B>, B: Buffer + TryInto<B>, U: 'static, D: Buffer = B> {
|
|
|
|
pub allocator: A,
|
2021-04-07 22:58:39 +00:00
|
|
|
_original_buffer_format: std::marker::PhantomData<B>,
|
2021-04-06 22:54:46 +00:00
|
|
|
|
|
|
|
width: u32,
|
|
|
|
height: u32,
|
|
|
|
format: Format,
|
|
|
|
|
2021-04-25 21:30:25 +00:00
|
|
|
slots: [Slot<D, U>; SLOT_CAP],
|
2021-04-06 22:54:46 +00:00
|
|
|
}
|
|
|
|
|
2021-04-25 21:30:25 +00:00
|
|
|
pub struct Slot<B: Buffer, U: 'static> {
|
2021-04-06 22:54:46 +00:00
|
|
|
buffer: Arc<Option<B>>,
|
|
|
|
acquired: Arc<AtomicBool>,
|
2021-04-25 21:30:25 +00:00
|
|
|
userdata: Arc<Mutex<Option<U>>>,
|
2021-04-06 22:54:46 +00:00
|
|
|
}
|
|
|
|
|
2021-04-25 21:30:25 +00:00
|
|
|
impl<B: Buffer, U: 'static> Slot<B, U> {
|
|
|
|
pub fn set_userdata(&self, data: U) -> Option<U> {
|
|
|
|
self.userdata.lock().unwrap().replace(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn userdata(&self) -> MutexGuard<'_, Option<U>> {
|
|
|
|
self.userdata.lock().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn clear_userdata(&self) -> Option<U> {
|
|
|
|
self.userdata.lock().unwrap().take()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<B: Buffer, U: 'static> Default for Slot<B, U> {
|
2021-04-06 22:54:46 +00:00
|
|
|
fn default() -> Self {
|
|
|
|
Slot {
|
|
|
|
buffer: Arc::new(None),
|
|
|
|
acquired: Arc::new(AtomicBool::new(false)),
|
2021-04-25 21:30:25 +00:00
|
|
|
userdata: Arc::new(Mutex::new(None)),
|
2021-04-06 22:54:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-25 21:30:25 +00:00
|
|
|
impl<B: Buffer, U: 'static> Clone for Slot<B, U> {
|
2021-04-06 22:54:46 +00:00
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Slot {
|
|
|
|
buffer: self.buffer.clone(),
|
|
|
|
acquired: self.acquired.clone(),
|
2021-04-25 21:30:25 +00:00
|
|
|
userdata: self.userdata.clone(),
|
2021-04-06 22:54:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-25 21:30:25 +00:00
|
|
|
impl<B: Buffer, U: 'static> Deref for Slot<B, U> {
|
2021-04-06 22:54:46 +00:00
|
|
|
type Target = B;
|
|
|
|
fn deref(&self) -> &B {
|
|
|
|
Option::as_ref(&*self.buffer).unwrap()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-25 21:30:25 +00:00
|
|
|
impl<B: Buffer, U: 'static> Drop for Slot<B, U> {
|
2021-04-06 22:54:46 +00:00
|
|
|
fn drop(&mut self) {
|
2021-04-25 21:30:25 +00:00
|
|
|
self.acquired.store(false, Ordering::SeqCst);
|
2021-04-06 22:54:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-07 22:58:39 +00:00
|
|
|
#[derive(Debug, thiserror::Error)]
|
|
|
|
pub enum SwapchainError<E1, E2>
|
|
|
|
where
|
|
|
|
E1: std::error::Error + 'static,
|
|
|
|
E2: std::error::Error + 'static,
|
|
|
|
{
|
|
|
|
#[error("Failed to allocate a new buffer: {0}")]
|
|
|
|
AllocationError(#[source] E1),
|
|
|
|
#[error("Failed to convert a new buffer: {0}")]
|
|
|
|
ConversionError(#[source] E2),
|
|
|
|
}
|
|
|
|
|
2021-04-25 21:30:25 +00:00
|
|
|
impl<A, B, D, U, E1, E2> Swapchain<A, B, U, D>
|
2021-04-07 22:58:39 +00:00
|
|
|
where
|
|
|
|
A: Allocator<B, Error=E1>,
|
|
|
|
B: Buffer + TryInto<D, Error=E2>,
|
|
|
|
D: Buffer,
|
|
|
|
E1: std::error::Error + 'static,
|
|
|
|
E2: std::error::Error + 'static,
|
2021-04-25 21:30:25 +00:00
|
|
|
U: 'static
|
2021-04-07 22:58:39 +00:00
|
|
|
{
|
2021-04-25 21:30:25 +00:00
|
|
|
pub fn new(allocator: A, width: u32, height: u32, format: Format) -> Swapchain<A, B, U, D> {
|
2021-04-06 22:54:46 +00:00
|
|
|
Swapchain {
|
|
|
|
allocator,
|
2021-04-07 22:58:39 +00:00
|
|
|
_original_buffer_format: std::marker::PhantomData,
|
2021-04-06 22:54:46 +00:00
|
|
|
width,
|
|
|
|
height,
|
|
|
|
format,
|
|
|
|
slots: Default::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-25 21:30:25 +00:00
|
|
|
pub fn acquire(&mut self) -> Result<Option<Slot<D, U>>, SwapchainError<E1, E2>> {
|
2021-04-06 22:54:46 +00:00
|
|
|
if let Some(free_slot) = self.slots.iter_mut().filter(|s| !s.acquired.load(Ordering::SeqCst)).next() {
|
|
|
|
if free_slot.buffer.is_none() {
|
2021-04-07 22:58:39 +00:00
|
|
|
free_slot.buffer = Arc::new(Some(
|
|
|
|
self.allocator
|
|
|
|
.create_buffer(self.width, self.height, self.format).map_err(SwapchainError::AllocationError)?
|
|
|
|
.try_into().map_err(SwapchainError::ConversionError)?
|
|
|
|
));
|
2021-04-06 22:54:46 +00:00
|
|
|
}
|
2021-04-25 21:30:25 +00:00
|
|
|
assert!(free_slot.buffer.is_some());
|
2021-04-06 22:54:46 +00:00
|
|
|
|
2021-04-25 21:30:25 +00:00
|
|
|
if !free_slot.acquired.swap(true, Ordering::SeqCst) {
|
2021-04-06 22:54:46 +00:00
|
|
|
return Ok(Some(free_slot.clone()));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// no free slots
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn resize(&mut self, width: u32, height: u32) {
|
|
|
|
if self.width == width && self.height == height {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self.width = width;
|
|
|
|
self.height = height;
|
2021-04-07 22:42:06 +00:00
|
|
|
self.slots = Default::default();
|
2021-04-06 22:54:46 +00:00
|
|
|
}
|
|
|
|
}
|