2018-12-15 20:58:43 +00:00
|
|
|
#![warn(rust_2018_idioms)]
|
|
|
|
|
2018-05-07 17:56:38 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate slog;
|
|
|
|
|
2020-04-21 16:56:59 +00:00
|
|
|
use std::{cell::RefCell, rc::Rc};
|
2020-04-17 16:27:26 +00:00
|
|
|
|
2018-05-07 17:56:38 +00:00
|
|
|
use slog::Drain;
|
2020-04-21 16:56:59 +00:00
|
|
|
use smithay::reexports::{calloop::EventLoop, wayland_server::Display};
|
2018-05-07 17:56:38 +00:00
|
|
|
|
2021-04-06 23:15:03 +00:00
|
|
|
mod drawing;
|
2018-05-13 12:35:27 +00:00
|
|
|
mod input_handler;
|
2018-05-07 17:56:38 +00:00
|
|
|
mod shell;
|
2020-04-21 16:56:59 +00:00
|
|
|
mod state;
|
2018-05-08 17:39:38 +00:00
|
|
|
#[cfg(feature = "udev")]
|
2018-05-07 17:56:38 +00:00
|
|
|
mod udev;
|
|
|
|
mod window_map;
|
|
|
|
#[cfg(feature = "winit")]
|
|
|
|
mod winit;
|
2021-01-03 15:21:22 +00:00
|
|
|
#[cfg(feature = "xwayland")]
|
|
|
|
mod xwayland;
|
2018-05-08 10:47:09 +00:00
|
|
|
|
2020-04-21 16:56:59 +00:00
|
|
|
use state::AnvilState;
|
|
|
|
|
2020-01-01 10:43:16 +00:00
|
|
|
static POSSIBLE_BACKENDS: &[&str] = &[
|
2018-05-08 10:47:09 +00:00
|
|
|
#[cfg(feature = "winit")]
|
2018-05-08 17:39:38 +00:00
|
|
|
"--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).",
|
2018-05-08 10:47:09 +00:00
|
|
|
];
|
2018-05-07 17:56:38 +00:00
|
|
|
|
|
|
|
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(),
|
2021-04-06 23:15:03 +00:00
|
|
|
//std::sync::Mutex::new(slog_term::term_full().fuse()).fuse(),
|
2018-05-07 17:56:38 +00:00
|
|
|
o!(),
|
|
|
|
);
|
|
|
|
|
2018-06-27 12:04:29 +00:00
|
|
|
let arg = ::std::env::args().nth(1);
|
2018-05-08 10:47:09 +00:00
|
|
|
match arg.as_ref().map(|s| &s[..]) {
|
|
|
|
#[cfg(feature = "winit")]
|
|
|
|
Some("--winit") => {
|
|
|
|
info!(log, "Starting anvil with winit backend");
|
2021-05-30 20:01:36 +00:00
|
|
|
let mut event_loop = EventLoop::try_new().unwrap();
|
|
|
|
let display = Rc::new(RefCell::new(Display::new()));
|
2020-04-21 16:56:59 +00:00
|
|
|
if let Err(()) = winit::run_winit(display, &mut event_loop, log.clone()) {
|
2018-05-08 10:47:09 +00:00
|
|
|
crit!(log, "Failed to initialize winit backend.");
|
|
|
|
}
|
2018-05-07 17:56:38 +00:00
|
|
|
}
|
2018-05-08 17:39:38 +00:00
|
|
|
#[cfg(feature = "udev")]
|
|
|
|
Some("--tty-udev") => {
|
|
|
|
info!(log, "Starting anvil on a tty using udev");
|
2021-05-30 20:01:36 +00:00
|
|
|
let mut event_loop = EventLoop::try_new().unwrap();
|
|
|
|
let display = Rc::new(RefCell::new(Display::new()));
|
2020-04-21 16:56:59 +00:00
|
|
|
if let Err(()) = udev::run_udev(display, &mut event_loop, log.clone()) {
|
2018-05-08 10:47:09 +00:00
|
|
|
crit!(log, "Failed to initialize tty backend.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
println!("USAGE: anvil --backend");
|
2018-06-27 12:04:29 +00:00
|
|
|
println!();
|
2018-05-08 10:47:09 +00:00
|
|
|
println!("Possible backends are:");
|
|
|
|
for b in POSSIBLE_BACKENDS {
|
|
|
|
println!("\t{}", b);
|
|
|
|
}
|
2018-05-07 17:56:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|