#![warn(rust_2018_idioms)] // If no backend is enabled, a large portion of the codebase is unused. // So silence this useless warning for the CI. #![cfg_attr( not(any(feature = "winit", feature = "udev")), allow(dead_code, unused_imports) )] #[macro_use] extern crate slog; use std::{cell::RefCell, rc::Rc}; use slog::Drain; use smithay::reexports::{calloop::EventLoop, wayland_server::Display}; #[cfg(feature = "udev")] mod cursor; mod drawing; mod input_handler; mod shell; mod state; #[cfg(feature = "udev")] mod udev; mod window_map; #[cfg(feature = "winit")] mod winit; #[cfg(feature = "xwayland")] mod xwayland; mod output_map; use state::AnvilState; static POSSIBLE_BACKENDS: &[&str] = &[ #[cfg(feature = "winit")] "--winit : Run anvil as a X11 or Wayland client using winit.", #[cfg(feature = "udev")] "--tty-udev : Run anvil as a tty udev client (requires root if without logind).", ]; fn main() { // A logger facility, here we use the terminal here let log = slog::Logger::root( slog_async::Async::default(slog_term::term_full().fuse()).fuse(), //std::sync::Mutex::new(slog_term::term_full().fuse()).fuse(), o!(), ); let _guard = slog_scope::set_global_logger(log.clone()); slog_stdlog::init().expect("Could not setup log backend"); let arg = ::std::env::args().nth(1); match arg.as_ref().map(|s| &s[..]) { #[cfg(feature = "winit")] Some("--winit") => { info!(log, "Starting anvil with winit backend"); let mut event_loop = EventLoop::try_new().unwrap(); let display = Rc::new(RefCell::new(Display::new())); if let Err(()) = winit::run_winit(display, &mut event_loop, log.clone()) { crit!(log, "Failed to initialize winit backend."); } } #[cfg(feature = "udev")] Some("--tty-udev") => { info!(log, "Starting anvil on a tty using udev"); let mut event_loop = EventLoop::try_new().unwrap(); let display = Rc::new(RefCell::new(Display::new())); if let Err(()) = udev::run_udev(display, &mut event_loop, log.clone()) { crit!(log, "Failed to initialize tty backend."); } } Some(other) => { crit!(log, "Unknown backend: {}", other); } None => { println!("USAGE: anvil --backend"); println!(); println!("Possible backends are:"); for b in POSSIBLE_BACKENDS { println!("\t{}", b); } } } }