#![cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd"))] use std::collections::VecDeque; use std::sync::Arc; use CreationError; use CursorState; use MouseCursor; use libc; use self::x11::XConnection; use self::x11::XError; use self::x11::XNotSupported; use self::x11::ffi::XVisualInfo; mod dlopen; pub mod wayland; pub mod x11; #[derive(Clone, Default)] pub struct PlatformSpecificWindowBuilderAttributes { pub visual_infos: Option, pub screen_id: Option, } pub enum UnixBackend { X(Arc), Wayland(Arc), Error(XNotSupported), } lazy_static!( pub static ref UNIX_BACKEND: UnixBackend = { if let Some(ctxt) = wayland::WaylandContext::init() { UnixBackend::Wayland(Arc::new(ctxt)) } else { match XConnection::new(Some(x_error_callback)) { Ok(x) => UnixBackend::X(Arc::new(x)), Err(e) => UnixBackend::Error(e), } } }; ); pub enum Window2 { #[doc(hidden)] X(x11::Window2), #[doc(hidden)] Wayland(wayland::Window) } #[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] pub enum WindowId { #[doc(hidden)] X(x11::WindowId), #[doc(hidden)] Wayland(wayland::WindowId) } #[derive(Clone)] pub enum MonitorId { #[doc(hidden)] X(x11::MonitorId), #[doc(hidden)] Wayland(wayland::MonitorId), #[doc(hidden)] None, } #[inline] pub fn get_available_monitors() -> VecDeque { match *UNIX_BACKEND { UnixBackend::Wayland(ref ctxt) => wayland::get_available_monitors(ctxt) .into_iter() .map(MonitorId::Wayland) .collect(), UnixBackend::X(ref connec) => x11::get_available_monitors(connec) .into_iter() .map(MonitorId::X) .collect(), UnixBackend::Error(_) => { let mut d = VecDeque::new(); d.push_back(MonitorId::None); d}, } } #[inline] pub fn get_primary_monitor() -> MonitorId { match *UNIX_BACKEND { UnixBackend::Wayland(ref ctxt) => MonitorId::Wayland(wayland::get_primary_monitor(ctxt)), UnixBackend::X(ref connec) => MonitorId::X(x11::get_primary_monitor(connec)), UnixBackend::Error(_) => MonitorId::None, } } impl MonitorId { #[inline] pub fn get_name(&self) -> Option { match self { &MonitorId::X(ref m) => m.get_name(), &MonitorId::Wayland(ref m) => m.get_name(), &MonitorId::None => None, } } #[inline] pub fn get_native_identifier(&self) -> ::native_monitor::NativeMonitorId { match self { &MonitorId::X(ref m) => m.get_native_identifier(), &MonitorId::Wayland(ref m) => m.get_native_identifier(), &MonitorId::None => unimplemented!() // FIXME: } } #[inline] pub fn get_dimensions(&self) -> (u32, u32) { match self { &MonitorId::X(ref m) => m.get_dimensions(), &MonitorId::Wayland(ref m) => m.get_dimensions(), &MonitorId::None => (800, 600), // FIXME: } } } impl Window2 { #[inline] pub fn new(events_loop: ::std::sync::Arc, window: &::WindowAttributes, pl_attribs: &PlatformSpecificWindowBuilderAttributes) -> Result { match *UNIX_BACKEND { UnixBackend::Wayland(ref ctxt) => { if let EventsLoop::Wayland(ref evlp) = *events_loop { wayland::Window::new(evlp, ctxt.clone(), window).map(Window2::Wayland) } else { // It is not possible to instanciate an EventsLoop not matching its backend unreachable!() } }, UnixBackend::X(ref connec) => { x11::Window2::new(events_loop, connec, window, pl_attribs).map(Window2::X) }, UnixBackend::Error(_) => { // If the Backend is Error(), it is not possible to instanciate an EventsLoop at all, // thus this function cannot be called! unreachable!() } } } #[inline] pub fn id(&self) -> WindowId { match self { &Window2::X(ref w) => WindowId::X(w.id()), &Window2::Wayland(ref w) => WindowId::Wayland(w.id()) } } #[inline] pub fn set_title(&self, title: &str) { match self { &Window2::X(ref w) => w.set_title(title), &Window2::Wayland(ref w) => w.set_title(title) } } #[inline] pub fn show(&self) { match self { &Window2::X(ref w) => w.show(), &Window2::Wayland(ref w) => w.show() } } #[inline] pub fn hide(&self) { match self { &Window2::X(ref w) => w.hide(), &Window2::Wayland(ref w) => w.hide() } } #[inline] pub fn get_position(&self) -> Option<(i32, i32)> { match self { &Window2::X(ref w) => w.get_position(), &Window2::Wayland(ref w) => w.get_position() } } #[inline] pub fn set_position(&self, x: i32, y: i32) { match self { &Window2::X(ref w) => w.set_position(x, y), &Window2::Wayland(ref w) => w.set_position(x, y) } } #[inline] pub fn get_inner_size(&self) -> Option<(u32, u32)> { match self { &Window2::X(ref w) => w.get_inner_size(), &Window2::Wayland(ref w) => w.get_inner_size() } } #[inline] pub fn get_outer_size(&self) -> Option<(u32, u32)> { match self { &Window2::X(ref w) => w.get_outer_size(), &Window2::Wayland(ref w) => w.get_outer_size() } } #[inline] pub fn set_inner_size(&self, x: u32, y: u32) { match self { &Window2::X(ref w) => w.set_inner_size(x, y), &Window2::Wayland(ref w) => w.set_inner_size(x, y) } } #[inline] pub fn set_cursor(&self, cursor: MouseCursor) { match self { &Window2::X(ref w) => w.set_cursor(cursor), &Window2::Wayland(ref w) => w.set_cursor(cursor) } } #[inline] pub fn set_cursor_state(&self, state: CursorState) -> Result<(), String> { match self { &Window2::X(ref w) => w.set_cursor_state(state), &Window2::Wayland(ref w) => w.set_cursor_state(state) } } #[inline] pub fn hidpi_factor(&self) -> f32 { match self { &Window2::X(ref w) => w.hidpi_factor(), &Window2::Wayland(ref w) => w.hidpi_factor() } } #[inline] pub fn set_cursor_position(&self, x: i32, y: i32) -> Result<(), ()> { match self { &Window2::X(ref w) => w.set_cursor_position(x, y), &Window2::Wayland(ref w) => w.set_cursor_position(x, y) } } #[inline] pub fn platform_display(&self) -> *mut libc::c_void { use wayland_client::Proxy; match self { &Window2::X(ref w) => w.platform_display(), &Window2::Wayland(ref w) => w.get_display().ptr() as *mut _ } } #[inline] pub fn platform_window(&self) -> *mut libc::c_void { use wayland_client::Proxy; match self { &Window2::X(ref w) => w.platform_window(), &Window2::Wayland(ref w) => w.get_surface().ptr() as *mut _ } } } unsafe extern "C" fn x_error_callback(dpy: *mut x11::ffi::Display, event: *mut x11::ffi::XErrorEvent) -> libc::c_int { use std::ffi::CStr; if let UnixBackend::X(ref x) = *UNIX_BACKEND { let mut buff: Vec = Vec::with_capacity(1024); (x.xlib.XGetErrorText)(dpy, (*event).error_code as i32, buff.as_mut_ptr() as *mut libc::c_char, buff.capacity() as i32); let description = CStr::from_ptr(buff.as_mut_ptr() as *const libc::c_char).to_string_lossy(); let error = XError { description: description.into_owned(), error_code: (*event).error_code, request_code: (*event).request_code, minor_code: (*event).minor_code, }; *x.latest_error.lock().unwrap() = Some(error); } 0 } pub enum EventsLoop { #[doc(hidden)] Wayland(wayland::EventsLoop), #[doc(hidden)] X(x11::EventsLoop) } impl EventsLoop { pub fn new() -> EventsLoop { match *UNIX_BACKEND { UnixBackend::Wayland(ref ctxt) => { EventsLoop::Wayland(wayland::EventsLoop::new(ctxt.clone())) }, UnixBackend::X(_) => { EventsLoop::X(x11::EventsLoop::new()) }, UnixBackend::Error(_) => { panic!("Attempted to create an EventsLoop while no backend was available.") } } } pub fn interrupt(&self) { match *self { EventsLoop::Wayland(ref evlp) => evlp.interrupt(), EventsLoop::X(ref evlp) => evlp.interrupt() } } pub fn poll_events(&self, callback: F) where F: FnMut(::Event) { match *self { EventsLoop::Wayland(ref evlp) => evlp.poll_events(callback), EventsLoop::X(ref evlp) => evlp.poll_events(callback) } } pub fn run_forever(&self, callback: F) where F: FnMut(::Event) { match *self { EventsLoop::Wayland(ref evlp) => evlp.run_forever(callback), EventsLoop::X(ref evlp) => evlp.run_forever(callback) } } }