mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-03-07 20:09:59 +03:00
193 lines
6.8 KiB
Rust
193 lines
6.8 KiB
Rust
use std::{fmt::Display, io};
|
|
|
|
use thiserror::Error;
|
|
#[cfg(all(unix, feature = "wayland", not(target_os = "macos")))]
|
|
use wayland_client::{
|
|
backend::WaylandError,
|
|
globals::{BindError, GlobalError},
|
|
ConnectError, DispatchError,
|
|
};
|
|
|
|
#[cfg(all(unix, feature = "libei", not(target_os = "macos")))]
|
|
use reis::tokio::HandshakeError;
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum EmulationError {
|
|
#[cfg(all(unix, feature = "libei", not(target_os = "macos")))]
|
|
#[error("libei error flushing events: `{0}`")]
|
|
Libei(#[from] reis::event::Error),
|
|
#[cfg(all(unix, feature = "wayland", not(target_os = "macos")))]
|
|
#[error("wayland error: `{0}`")]
|
|
Wayland(#[from] wayland_client::backend::WaylandError),
|
|
#[cfg(all(
|
|
unix,
|
|
any(feature = "xdg_desktop_portal", feature = "libei"),
|
|
not(target_os = "macos")
|
|
))]
|
|
#[error("xdg-desktop-portal: `{0}`")]
|
|
Ashpd(#[from] ashpd::Error),
|
|
#[error("io error: `{0}`")]
|
|
Io(#[from] io::Error),
|
|
}
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum EmulationCreationError {
|
|
#[cfg(all(unix, feature = "wayland", not(target_os = "macos")))]
|
|
Wlroots(#[from] WlrootsEmulationCreationError),
|
|
#[cfg(all(unix, feature = "libei", not(target_os = "macos")))]
|
|
Libei(#[from] LibeiEmulationCreationError),
|
|
#[cfg(all(unix, feature = "xdg_desktop_portal", not(target_os = "macos")))]
|
|
Xdp(#[from] XdpEmulationCreationError),
|
|
#[cfg(all(unix, feature = "x11", not(target_os = "macos")))]
|
|
X11(#[from] X11EmulationCreationError),
|
|
#[cfg(target_os = "macos")]
|
|
MacOs(#[from] MacOSEmulationCreationError),
|
|
#[cfg(windows)]
|
|
Windows(#[from] WindowsEmulationCreationError),
|
|
NoAvailableBackend,
|
|
}
|
|
|
|
impl Display for EmulationCreationError {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
let reason = match self {
|
|
#[cfg(all(unix, feature = "wayland", not(target_os = "macos")))]
|
|
EmulationCreationError::Wlroots(e) => format!("wlroots backend: {e}"),
|
|
#[cfg(all(unix, feature = "libei", not(target_os = "macos")))]
|
|
EmulationCreationError::Libei(e) => format!("libei backend: {e}"),
|
|
#[cfg(all(unix, feature = "xdg_desktop_portal", not(target_os = "macos")))]
|
|
EmulationCreationError::Xdp(e) => format!("desktop portal backend: {e}"),
|
|
#[cfg(all(unix, feature = "x11", not(target_os = "macos")))]
|
|
EmulationCreationError::X11(e) => format!("x11 backend: {e}"),
|
|
#[cfg(target_os = "macos")]
|
|
EmulationCreationError::MacOs(e) => format!("macos backend: {e}"),
|
|
#[cfg(windows)]
|
|
EmulationCreationError::Windows(e) => format!("windows backend: {e}"),
|
|
EmulationCreationError::NoAvailableBackend => "no backend available".to_string(),
|
|
};
|
|
write!(f, "could not create input emulation backend: {reason}")
|
|
}
|
|
}
|
|
|
|
#[cfg(all(unix, feature = "wayland", not(target_os = "macos")))]
|
|
#[derive(Debug, Error)]
|
|
pub enum WlrootsEmulationCreationError {
|
|
Connect(#[from] ConnectError),
|
|
Global(#[from] GlobalError),
|
|
Wayland(#[from] WaylandError),
|
|
Bind(#[from] WaylandBindError),
|
|
Dispatch(#[from] DispatchError),
|
|
Io(#[from] std::io::Error),
|
|
}
|
|
|
|
#[cfg(all(unix, feature = "wayland", not(target_os = "macos")))]
|
|
#[derive(Debug, Error)]
|
|
pub struct WaylandBindError {
|
|
inner: BindError,
|
|
protocol: &'static str,
|
|
}
|
|
#[cfg(all(unix, feature = "wayland", not(target_os = "macos")))]
|
|
impl WaylandBindError {
|
|
pub(crate) fn new(inner: BindError, protocol: &'static str) -> Self {
|
|
Self { inner, protocol }
|
|
}
|
|
}
|
|
|
|
#[cfg(all(unix, feature = "wayland", not(target_os = "macos")))]
|
|
impl Display for WaylandBindError {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
write!(
|
|
f,
|
|
"{} protocol not supported: {}",
|
|
self.protocol, self.inner
|
|
)
|
|
}
|
|
}
|
|
|
|
#[cfg(all(unix, feature = "wayland", not(target_os = "macos")))]
|
|
impl Display for WlrootsEmulationCreationError {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
match self {
|
|
WlrootsEmulationCreationError::Bind(e) => write!(f, "{e}"),
|
|
WlrootsEmulationCreationError::Connect(e) => {
|
|
write!(f, "could not connect to wayland compositor: {e}")
|
|
}
|
|
WlrootsEmulationCreationError::Global(e) => write!(f, "wayland error: {e}"),
|
|
WlrootsEmulationCreationError::Wayland(e) => write!(f, "wayland error: {e}"),
|
|
WlrootsEmulationCreationError::Dispatch(e) => {
|
|
write!(f, "error dispatching wayland events: {e}")
|
|
}
|
|
WlrootsEmulationCreationError::Io(e) => write!(f, "io error: {e}"),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(all(unix, feature = "libei", not(target_os = "macos")))]
|
|
#[derive(Debug, Error)]
|
|
pub enum LibeiEmulationCreationError {
|
|
Ashpd(#[from] ashpd::Error),
|
|
Io(#[from] std::io::Error),
|
|
Handshake(#[from] HandshakeError),
|
|
}
|
|
|
|
#[cfg(all(unix, feature = "libei", not(target_os = "macos")))]
|
|
impl Display for LibeiEmulationCreationError {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
match self {
|
|
LibeiEmulationCreationError::Ashpd(e) => write!(f, "xdg-desktop-portal: {e}"),
|
|
LibeiEmulationCreationError::Io(e) => write!(f, "io error: {e}"),
|
|
LibeiEmulationCreationError::Handshake(e) => write!(f, "error in libei handshake: {e}"),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(all(unix, feature = "xdg_desktop_portal", not(target_os = "macos")))]
|
|
#[derive(Debug, Error)]
|
|
pub enum XdpEmulationCreationError {
|
|
Ashpd(#[from] ashpd::Error),
|
|
}
|
|
|
|
#[cfg(all(unix, feature = "xdg_desktop_portal", not(target_os = "macos")))]
|
|
impl Display for XdpEmulationCreationError {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
match self {
|
|
XdpEmulationCreationError::Ashpd(e) => write!(f, "portal error: {e}"),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(all(unix, feature = "x11", not(target_os = "macos")))]
|
|
#[derive(Debug, Error)]
|
|
pub enum X11EmulationCreationError {
|
|
OpenDisplay,
|
|
}
|
|
|
|
#[cfg(all(unix, feature = "x11", not(target_os = "macos")))]
|
|
impl Display for X11EmulationCreationError {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
match self {
|
|
X11EmulationCreationError::OpenDisplay => write!(f, "could not open display!"),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(target_os = "macos")]
|
|
#[derive(Debug, Error)]
|
|
pub enum MacOSEmulationCreationError {
|
|
EventSourceCreation,
|
|
}
|
|
|
|
#[cfg(target_os = "macos")]
|
|
impl Display for MacOSEmulationCreationError {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
match self {
|
|
MacOSEmulationCreationError::EventSourceCreation => {
|
|
write!(f, "could not create event source")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
#[derive(Debug, Error)]
|
|
pub enum WindowsEmulationCreationError {}
|