Mark functions as unsafe instead of having a lot of blocks

This commit is contained in:
Pierre Krieger 2015-03-01 13:14:58 +01:00
parent 65046ffc41
commit 36619ee40e

View file

@ -40,6 +40,7 @@ pub fn new_window(builder: BuilderAttribs<'static>, builder_sharelists: Option<C
// so we create a new thread dedicated to this window. // so we create a new thread dedicated to this window.
// This is the only safe method. Using `nosend` wouldn't work for non-native runtime. // This is the only safe method. Using `nosend` wouldn't work for non-native runtime.
::std::thread::Thread::spawn(move || { ::std::thread::Thread::spawn(move || {
unsafe {
// sending // sending
match init(title, builder, builder_sharelists) { match init(title, builder, builder_sharelists) {
Ok(w) => tx.send(Ok(w)).ok(), Ok(w) => tx.send(Ok(w)).ok(),
@ -52,22 +53,23 @@ pub fn new_window(builder: BuilderAttribs<'static>, builder_sharelists: Option<C
// now that the `Window` struct is initialized, the main `Window::new()` function will // now that the `Window` struct is initialized, the main `Window::new()` function will
// return and this events loop will run in parallel // return and this events loop will run in parallel
loop { loop {
let mut msg = unsafe { mem::uninitialized() }; let mut msg = mem::uninitialized();
if unsafe { user32::GetMessageW(&mut msg, ptr::null_mut(), 0, 0) } == 0 { if user32::GetMessageW(&mut msg, ptr::null_mut(), 0, 0) == 0 {
break; break;
} }
unsafe { user32::TranslateMessage(&msg) }; user32::TranslateMessage(&msg);
unsafe { user32::DispatchMessageW(&msg) }; // calls `callback` (see below) user32::DispatchMessageW(&msg); // calls `callback` (see below)
}
} }
}); });
rx.recv().unwrap() rx.recv().unwrap()
} }
fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, builder_sharelists: Option<ContextHack>) unsafe fn init(title: Vec<u16>, builder: BuilderAttribs<'static>,
-> Result<Window, CreationError> builder_sharelists: Option<ContextHack>) -> Result<Window, CreationError>
{ {
let builder_sharelists = builder_sharelists.map(|s| s.0); let builder_sharelists = builder_sharelists.map(|s| s.0);
@ -85,7 +87,7 @@ fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, builder_sharelists: O
// and change the monitor's resolution if necessary // and change the monitor's resolution if necessary
if builder.monitor.is_some() { if builder.monitor.is_some() {
let monitor = builder.monitor.as_ref().unwrap(); let monitor = builder.monitor.as_ref().unwrap();
switch_to_fullscreen(&mut rect, monitor); try!(switch_to_fullscreen(&mut rect, monitor));
} }
// computing the style and extended style of the window // computing the style and extended style of the window
@ -97,12 +99,12 @@ fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, builder_sharelists: O
}; };
// adjusting the window coordinates using the style // adjusting the window coordinates using the style
unsafe { user32::AdjustWindowRectEx(&mut rect, style, 0, ex_style) }; user32::AdjustWindowRectEx(&mut rect, style, 0, ex_style);
// getting the address of wglCreateContextAttribsARB // getting the address of wglCreateContextAttribsARB
let extra_functions = { let extra_functions = {
// creating a dummy invisible window for GL initialization // creating a dummy invisible window for GL initialization
let dummy_window = unsafe { let dummy_window = {
let handle = user32::CreateWindowExW(ex_style, class_name.as_ptr(), let handle = user32::CreateWindowExW(ex_style, class_name.as_ptr(),
title.as_ptr() as winapi::LPCWSTR, title.as_ptr() as winapi::LPCWSTR,
style | winapi::WS_CLIPSIBLINGS | winapi::WS_CLIPCHILDREN, style | winapi::WS_CLIPSIBLINGS | winapi::WS_CLIPCHILDREN,
@ -121,11 +123,11 @@ fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, builder_sharelists: O
// getting the HDC of the dummy window // getting the HDC of the dummy window
let dummy_hdc = { let dummy_hdc = {
let hdc = unsafe { user32::GetDC(dummy_window) }; let hdc = user32::GetDC(dummy_window);
if hdc.is_null() { if hdc.is_null() {
let err = Err(OsError(format!("GetDC function failed: {}", let err = Err(OsError(format!("GetDC function failed: {}",
os::error_string(os::errno())))); os::error_string(os::errno()))));
unsafe { user32::DestroyWindow(dummy_window); } user32::DestroyWindow(dummy_window);
return err; return err;
} }
hdc hdc
@ -142,7 +144,8 @@ fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, builder_sharelists: O
let dummy_context = try!(create_context(None, dummy_hdc, None)); let dummy_context = try!(create_context(None, dummy_hdc, None));
// making context current // making context current
unsafe { gl::wgl::MakeCurrent(dummy_hdc as *const libc::c_void, dummy_context as *const libc::c_void); } gl::wgl::MakeCurrent(dummy_hdc as *const libc::c_void,
dummy_context as *const libc::c_void);
// loading the extra WGL functions // loading the extra WGL functions
let extra_functions = gl::wgl_extra::Wgl::load_with(|addr| { let extra_functions = gl::wgl_extra::Wgl::load_with(|addr| {
@ -151,24 +154,22 @@ fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, builder_sharelists: O
let addr = CString::from_slice(addr.as_bytes()); let addr = CString::from_slice(addr.as_bytes());
let addr = addr.as_ptr(); let addr = addr.as_ptr();
unsafe {
gl::wgl::GetProcAddress(addr) as *const libc::c_void gl::wgl::GetProcAddress(addr) as *const libc::c_void
}
}); });
// removing current context // removing current context
unsafe { gl::wgl::MakeCurrent(ptr::null(), ptr::null()); } gl::wgl::MakeCurrent(ptr::null(), ptr::null());
// destroying the context and the window // destroying the context and the window
unsafe { gl::wgl::DeleteContext(dummy_context as *const libc::c_void); } gl::wgl::DeleteContext(dummy_context as *const libc::c_void);
unsafe { user32::DestroyWindow(dummy_window); } user32::DestroyWindow(dummy_window);
// returning the address // returning the address
extra_functions extra_functions
}; };
// creating the real window this time // creating the real window this time
let real_window = unsafe { let real_window = {
let (width, height) = if builder.monitor.is_some() || builder.dimensions.is_some() { let (width, height) = if builder.monitor.is_some() || builder.dimensions.is_some() {
(Some(rect.right - rect.left), Some(rect.bottom - rect.top)) (Some(rect.right - rect.left), Some(rect.bottom - rect.top))
} else { } else {
@ -200,11 +201,11 @@ fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, builder_sharelists: O
// getting the HDC of the window // getting the HDC of the window
let hdc = { let hdc = {
let hdc = unsafe { user32::GetDC(real_window) }; let hdc = user32::GetDC(real_window);
if hdc.is_null() { if hdc.is_null() {
let err = Err(OsError(format!("GetDC function failed: {}", let err = Err(OsError(format!("GetDC function failed: {}",
os::error_string(os::errno())))); os::error_string(os::errno()))));
unsafe { user32::DestroyWindow(real_window); } user32::DestroyWindow(real_window);
return err; return err;
} }
hdc hdc
@ -227,7 +228,7 @@ fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, builder_sharelists: O
// calling SetForegroundWindow if fullscreen // calling SetForegroundWindow if fullscreen
if builder.monitor.is_some() { if builder.monitor.is_some() {
unsafe { user32::SetForegroundWindow(real_window) }; user32::SetForegroundWindow(real_window);
} }
// filling the WINDOW task-local storage // filling the WINDOW task-local storage
@ -246,16 +247,16 @@ fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, builder_sharelists: O
// handling vsync // handling vsync
if builder.vsync { if builder.vsync {
if extra_functions.SwapIntervalEXT.is_loaded() { if extra_functions.SwapIntervalEXT.is_loaded() {
unsafe { gl::wgl::MakeCurrent(hdc as *const libc::c_void, context as *const libc::c_void) }; gl::wgl::MakeCurrent(hdc as *const libc::c_void, context as *const libc::c_void);
if unsafe { extra_functions.SwapIntervalEXT(1) } == 0 { if extra_functions.SwapIntervalEXT(1) == 0 {
unsafe { gl::wgl::DeleteContext(context as *const libc::c_void); } gl::wgl::DeleteContext(context as *const libc::c_void);
unsafe { user32::DestroyWindow(real_window); } user32::DestroyWindow(real_window);
return Err(OsError(format!("wglSwapIntervalEXT failed"))); return Err(OsError(format!("wglSwapIntervalEXT failed")));
} }
// it is important to remove the current context, otherwise you get very weird // it is important to remove the current context, otherwise you get very weird
// errors // errors
unsafe { gl::wgl::MakeCurrent(ptr::null(), ptr::null()); } gl::wgl::MakeCurrent(ptr::null(), ptr::null());
} }
} }
@ -270,7 +271,7 @@ fn init(title: Vec<u16>, builder: BuilderAttribs<'static>, builder_sharelists: O
}) })
} }
fn register_window_class() -> Vec<u16> { unsafe fn register_window_class() -> Vec<u16> {
let class_name: Vec<u16> = "Window Class".utf16_units().chain(Some(0).into_iter()) let class_name: Vec<u16> = "Window Class".utf16_units().chain(Some(0).into_iter())
.collect::<Vec<u16>>(); .collect::<Vec<u16>>();
@ -280,7 +281,7 @@ fn register_window_class() -> Vec<u16> {
lpfnWndProc: Some(callback::callback), lpfnWndProc: Some(callback::callback),
cbClsExtra: 0, cbClsExtra: 0,
cbWndExtra: 0, cbWndExtra: 0,
hInstance: unsafe { kernel32::GetModuleHandleW(ptr::null()) }, hInstance: kernel32::GetModuleHandleW(ptr::null()),
hIcon: ptr::null_mut(), hIcon: ptr::null_mut(),
hCursor: ptr::null_mut(), hCursor: ptr::null_mut(),
hbrBackground: ptr::null_mut(), hbrBackground: ptr::null_mut(),
@ -293,12 +294,14 @@ fn register_window_class() -> Vec<u16> {
// an error, and because errors here are detected during CreateWindowEx anyway. // an error, and because errors here are detected during CreateWindowEx anyway.
// Also since there is no weird element in the struct, there is no reason for this // Also since there is no weird element in the struct, there is no reason for this
// call to fail. // call to fail.
unsafe { user32::RegisterClassExW(&class) }; user32::RegisterClassExW(&class);
class_name class_name
} }
fn switch_to_fullscreen(rect: &mut winapi::RECT, monitor: &MonitorID) -> Result<(), CreationError> { unsafe fn switch_to_fullscreen(rect: &mut winapi::RECT, monitor: &MonitorID)
-> Result<(), CreationError>
{
// adjusting the rect // adjusting the rect
{ {
let pos = monitor.get_position(); let pos = monitor.get_position();
@ -309,15 +312,16 @@ fn switch_to_fullscreen(rect: &mut winapi::RECT, monitor: &MonitorID) -> Result<
} }
// changing device settings // changing device settings
let mut screen_settings: winapi::DEVMODEW = unsafe { mem::zeroed() }; let mut screen_settings: winapi::DEVMODEW = mem::zeroed();
screen_settings.dmSize = mem::size_of::<winapi::DEVMODEW>() as winapi::WORD; screen_settings.dmSize = mem::size_of::<winapi::DEVMODEW>() as winapi::WORD;
screen_settings.dmPelsWidth = (rect.right - rect.left) as winapi::DWORD; screen_settings.dmPelsWidth = (rect.right - rect.left) as winapi::DWORD;
screen_settings.dmPelsHeight = (rect.bottom - rect.top) as winapi::DWORD; screen_settings.dmPelsHeight = (rect.bottom - rect.top) as winapi::DWORD;
screen_settings.dmBitsPerPel = 32; // TODO: ? screen_settings.dmBitsPerPel = 32; // TODO: ?
screen_settings.dmFields = winapi::DM_BITSPERPEL | winapi::DM_PELSWIDTH | winapi::DM_PELSHEIGHT; screen_settings.dmFields = winapi::DM_BITSPERPEL | winapi::DM_PELSWIDTH | winapi::DM_PELSHEIGHT;
let result = unsafe { user32::ChangeDisplaySettingsExW(monitor.get_system_name().as_ptr(), let result = user32::ChangeDisplaySettingsExW(monitor.get_system_name().as_ptr(),
&mut screen_settings, ptr::null_mut(), winapi::CDS_FULLSCREEN, ptr::null_mut()) }; &mut screen_settings, ptr::null_mut(),
winapi::CDS_FULLSCREEN, ptr::null_mut());
if result != winapi::DISP_CHANGE_SUCCESSFUL { if result != winapi::DISP_CHANGE_SUCCESSFUL {
return Err(OsError(format!("ChangeDisplaySettings failed: {}", result))); return Err(OsError(format!("ChangeDisplaySettings failed: {}", result)));
@ -326,7 +330,7 @@ fn switch_to_fullscreen(rect: &mut winapi::RECT, monitor: &MonitorID) -> Result<
Ok(()) Ok(())
} }
fn create_context(extra: Option<(&gl::wgl_extra::Wgl, &BuilderAttribs<'static>)>, unsafe fn create_context(extra: Option<(&gl::wgl_extra::Wgl, &BuilderAttribs<'static>)>,
hdc: winapi::HDC, share: Option<winapi::HGLRC>) hdc: winapi::HDC, share: Option<winapi::HGLRC>)
-> Result<winapi::HGLRC, CreationError> -> Result<winapi::HGLRC, CreationError>
{ {
@ -360,11 +364,10 @@ fn create_context(extra: Option<(&gl::wgl_extra::Wgl, &BuilderAttribs<'static>)>
attributes.push(0); attributes.push(0);
Some(unsafe { Some(extra_functions.CreateContextAttribsARB(hdc as *const libc::c_void,
extra_functions.CreateContextAttribsARB(hdc as *const libc::c_void,
share as *const libc::c_void, share as *const libc::c_void,
attributes.as_slice().as_ptr()) attributes.as_slice().as_ptr()))
})
} else { } else {
None None
} }
@ -375,14 +378,12 @@ fn create_context(extra: Option<(&gl::wgl_extra::Wgl, &BuilderAttribs<'static>)>
let ctxt = match ctxt { let ctxt = match ctxt {
Some(ctxt) => ctxt, Some(ctxt) => ctxt,
None => { None => {
unsafe {
let ctxt = gl::wgl::CreateContext(hdc as *const libc::c_void); let ctxt = gl::wgl::CreateContext(hdc as *const libc::c_void);
if !ctxt.is_null() && !share.is_null() { if !ctxt.is_null() && !share.is_null() {
gl::wgl::ShareLists(share as *const libc::c_void, ctxt); gl::wgl::ShareLists(share as *const libc::c_void, ctxt);
}; };
ctxt ctxt
} }
}
}; };
if ctxt.is_null() { if ctxt.is_null() {
@ -393,18 +394,16 @@ fn create_context(extra: Option<(&gl::wgl_extra::Wgl, &BuilderAttribs<'static>)>
Ok(ctxt as winapi::HGLRC) Ok(ctxt as winapi::HGLRC)
} }
fn enumerate_native_pixel_formats(hdc: winapi::HDC) -> Vec<(PixelFormat, libc::c_int)> { unsafe fn enumerate_native_pixel_formats(hdc: winapi::HDC) -> Vec<(PixelFormat, libc::c_int)> {
let size_of_pxfmtdescr = mem::size_of::<winapi::PIXELFORMATDESCRIPTOR>() as u32; let size_of_pxfmtdescr = mem::size_of::<winapi::PIXELFORMATDESCRIPTOR>() as u32;
let num = unsafe { gdi32::DescribePixelFormat(hdc, 1, size_of_pxfmtdescr, ptr::null_mut()) }; let num = gdi32::DescribePixelFormat(hdc, 1, size_of_pxfmtdescr, ptr::null_mut());
let mut result = Vec::new(); let mut result = Vec::new();
for index in (0 .. num) { for index in (0 .. num) {
let mut output: winapi::PIXELFORMATDESCRIPTOR = unsafe { mem::zeroed() }; let mut output: winapi::PIXELFORMATDESCRIPTOR = mem::zeroed();
if unsafe { gdi32::DescribePixelFormat(hdc, index, size_of_pxfmtdescr, if gdi32::DescribePixelFormat(hdc, index, size_of_pxfmtdescr, &mut output) == 0 {
&mut output) } == 0
{
continue; continue;
} }
@ -438,14 +437,14 @@ fn enumerate_native_pixel_formats(hdc: winapi::HDC) -> Vec<(PixelFormat, libc::c
result result
} }
fn enumerate_arb_pixel_formats(extra: &gl::wgl_extra::Wgl, hdc: winapi::HDC) unsafe fn enumerate_arb_pixel_formats(extra: &gl::wgl_extra::Wgl, hdc: winapi::HDC)
-> Vec<(PixelFormat, libc::c_int)> -> Vec<(PixelFormat, libc::c_int)>
{ {
let get_info = |index: u32, attrib: u32| { let get_info = |index: u32, attrib: u32| {
let mut value = unsafe { mem::uninitialized() }; let mut value = mem::uninitialized();
unsafe { extra.GetPixelFormatAttribivARB(hdc as *const libc::c_void, index as libc::c_int, extra.GetPixelFormatAttribivARB(hdc as *const libc::c_void, index as libc::c_int,
0, 1, [attrib as libc::c_int].as_ptr(), 0, 1, [attrib as libc::c_int].as_ptr(),
&mut value) }; &mut value);
value as u32 value as u32
}; };
@ -489,17 +488,17 @@ fn enumerate_arb_pixel_formats(extra: &gl::wgl_extra::Wgl, hdc: winapi::HDC)
result result
} }
fn set_pixel_format(hdc: winapi::HDC, id: libc::c_int) -> Result<(), CreationError> { unsafe fn set_pixel_format(hdc: winapi::HDC, id: libc::c_int) -> Result<(), CreationError> {
let mut output: winapi::PIXELFORMATDESCRIPTOR = unsafe { mem::zeroed() }; let mut output: winapi::PIXELFORMATDESCRIPTOR = mem::zeroed();
if unsafe { gdi32::DescribePixelFormat(hdc, id, if gdi32::DescribePixelFormat(hdc, id, mem::size_of::<winapi::PIXELFORMATDESCRIPTOR>()
mem::size_of::<winapi::PIXELFORMATDESCRIPTOR>() as winapi::UINT, &mut output) } == 0 as winapi::UINT, &mut output) == 0
{ {
return Err(OsError(format!("DescribePixelFormat function failed: {}", return Err(OsError(format!("DescribePixelFormat function failed: {}",
os::error_string(os::errno())))); os::error_string(os::errno()))));
} }
if unsafe { gdi32::SetPixelFormat(hdc, id, &output) } == 0 { if gdi32::SetPixelFormat(hdc, id, &output) == 0 {
return Err(OsError(format!("SetPixelFormat function failed: {}", return Err(OsError(format!("SetPixelFormat function failed: {}",
os::error_string(os::errno())))); os::error_string(os::errno()))));
} }
@ -507,11 +506,11 @@ fn set_pixel_format(hdc: winapi::HDC, id: libc::c_int) -> Result<(), CreationErr
Ok(()) Ok(())
} }
fn load_opengl32_dll() -> Result<winapi::HMODULE, CreationError> { unsafe fn load_opengl32_dll() -> Result<winapi::HMODULE, CreationError> {
let name = "opengl32.dll".utf16_units().chain(Some(0).into_iter()) let name = "opengl32.dll".utf16_units().chain(Some(0).into_iter())
.collect::<Vec<u16>>().as_ptr(); .collect::<Vec<u16>>().as_ptr();
let lib = unsafe { kernel32::LoadLibraryW(name) }; let lib = kernel32::LoadLibraryW(name);
if lib.is_null() { if lib.is_null() {
return Err(OsError(format!("LoadLibrary function failed: {}", return Err(OsError(format!("LoadLibrary function failed: {}",