Re-implement resize patch using Mutex + Convar

This commit is contained in:
Osspial 2017-08-05 02:07:58 -04:00
parent d2034b1700
commit 657860a233

View file

@ -22,7 +22,7 @@ use std::ptr;
use std::sync::mpsc;
use std::sync::Arc;
use std::sync::Mutex;
use std::sync::Barrier;
use std::sync::Condvar;
use std::thread;
use kernel32;
@ -79,16 +79,18 @@ pub struct EventsLoop {
thread_id: winapi::DWORD,
// Receiver for the events. The sender is in the background thread.
receiver: mpsc::Receiver<Event>,
// Barrier used to unblock the event loop thread after a resize event is processed.
resize_barrier: Arc<Barrier>
// Variable that contains the block state of the win32 event loop thread during a WM_SIZE event.
// The mutex's value is `true` when it's blocked, and should be set to false when it's done
// blocking. That's done by the parent thread when it receives a Resized event.
win32_block_loop: Arc<(Mutex<bool>, Condvar)>
}
impl EventsLoop {
pub fn new() -> EventsLoop {
// The main events transfer channel.
let (tx, rx) = mpsc::channel();
let resize_barrier = Arc::new(Barrier::new(2));
let resize_barrier_child = resize_barrier.clone();
let win32_block_loop = Arc::new((Mutex::new(false), Condvar::new()));
let win32_block_loop_child = win32_block_loop.clone();
// Local channel in order to block the `new()` function until the background thread has
// an events queue.
@ -99,8 +101,7 @@ impl EventsLoop {
*context_stash.borrow_mut() = Some(ThreadLocalData {
sender: tx,
windows: HashMap::with_capacity(4),
resize_barrier: resize_barrier_child,
deferred_waits: 0
win32_block_loop: win32_block_loop_child
});
});
@ -130,15 +131,6 @@ impl EventsLoop {
x if x == *WAKEUP_MSG_ID => {
send_event(Event::Awakened);
},
x if x == *USE_WAIT_ID => CONTEXT_STASH.with(|context_stash| {
let mut context_stash = context_stash.borrow_mut();
let cstash = context_stash.as_mut().unwrap();
// Run a deferred wait
if cstash.deferred_waits > 0 {
cstash.deferred_waits -= 1;
cstash.resize_barrier.wait();
}
}),
_ => {
// Calls `callback` below.
user32::TranslateMessage(&msg);
@ -155,7 +147,7 @@ impl EventsLoop {
EventsLoop {
thread_id: unsafe { kernel32::GetThreadId(thread.as_raw_handle()) },
receiver: rx,
resize_barrier: resize_barrier
win32_block_loop
}
}
@ -204,9 +196,10 @@ impl EventsLoop {
}
fn sync_with_thread(&self) {
let res = unsafe{ user32::PostThreadMessageA(self.thread_id, *USE_WAIT_ID, 0, 0) };
self.resize_barrier.wait();
assert!(res != 0, "PostThreadMessage failed ; is the messages queue full?");
let (ref mutex, ref cvar) = *self.win32_block_loop;
let mut block_thread = mutex.lock().unwrap();
*block_thread = false;
cvar.notify_all();
}
/// Executes a function in the background thread.
@ -282,13 +275,6 @@ lazy_static! {
user32::RegisterWindowMessageA("Winit::ExecMsg\0".as_ptr() as *const i8)
}
};
// Message sent when the parent thread receives a resize event and wants this thread to use any
// deferred waits it may have.
static ref USE_WAIT_ID: u32 = {
unsafe {
user32::RegisterWindowMessageA("Winit::UseWait\0".as_ptr() as *const i8)
}
};
}
// There's no parameters passed to the callback function, so it needs to get its context stashed
@ -297,8 +283,7 @@ thread_local!(static CONTEXT_STASH: RefCell<Option<ThreadLocalData>> = RefCell::
struct ThreadLocalData {
sender: mpsc::Sender<Event>,
windows: HashMap<winapi::HWND, Arc<Mutex<WindowState>>>,
resize_barrier: Arc<Barrier>,
deferred_waits: u32
win32_block_loop: Arc<(Mutex<bool>, Condvar)>
}
fn event_is_resize(event: &Event) -> bool {
@ -361,13 +346,16 @@ pub unsafe extern "system" fn callback(window: winapi::HWND, msg: winapi::UINT,
let mut context_stash = context_stash.borrow_mut();
let cstash = context_stash.as_mut().unwrap();
// If this window has been inserted into the window map, the resize event happened
// during the event loop. If it hasn't, the event happened on window creation and
// should be ignored.
if cstash.windows.get(&window).is_some() {
cstash.resize_barrier.wait();
} else {
// If the window isn't in the hashmap, this is the resize event that was sent
// upon window creation. The parent thread isn't going to wait until the event
// loop, so record that a wait must happen when the event loop is reached.
cstash.deferred_waits += 1;
let (ref mutex, ref cvar) = *cstash.win32_block_loop;
let mut block_thread = mutex.lock().unwrap();
*block_thread = true;
while *block_thread {
block_thread = cvar.wait(block_thread).unwrap();
}
}
});
0