#[allow(clippy::module_name_repetitions)]
#[derive(Debug)]
#[non_exhaustive]
pub enum AtspiError {
Conversion(&'static str),
CacheVariantMismatch,
MemberMatch(String),
InterfaceMatch(String),
KindMatch(String),
InterfaceNotAvailable(&'static str),
SignatureMatch(String),
UnknownInterface,
MissingInterface,
MissingMember,
MissingPath,
UnknownRole(u32),
MissingName,
UnknownSignal,
Owned(String),
Zbus(String),
ZBusNames(zbus_names::Error),
Zvariant(zvariant::Error),
ParseError(&'static str),
PathConversionError(ObjectPathConversionError),
IO(std::io::Error),
IntConversionError(std::num::TryFromIntError),
Infallible,
}
impl std::error::Error for AtspiError {}
impl std::fmt::Display for AtspiError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Conversion(e) => f.write_str(&format!("atspi: conversion failure: {e}")),
Self::MemberMatch(e) => {
f.write_str("atspi: member mismatch in conversion: ")?;
e.fmt(f)
}
Self::InterfaceMatch(e) => {
f.write_str("atspi: interface mismatch in conversion: ")?;
e.fmt(f)
}
Self::KindMatch(e) => {
f.write_str(format!("atspi: kind mismatch in conversion: {e}").as_str())
}
Self::SignatureMatch(e) => {
f.write_str(format!("atspi: body signature mismatch in conversion: {e:?}").as_str())
}
Self::InterfaceNotAvailable(e) => {
f.write_str(format!("atspi: interface not available: {e}").as_str())
}
Self::UnknownInterface => f.write_str("Unknown interface."),
Self::MissingInterface => f.write_str("Missing interface."),
Self::MissingMember => f.write_str("Missing member."),
Self::MissingPath => f.write_str("Missing path."),
Self::UnknownRole(e) => {
f.write_str("atspi: Unknown role: ")?;
e.fmt(f)
}
Self::UnknownSignal => f.write_str("atspi: Unknown signal"),
Self::CacheVariantMismatch => f.write_str("atspi: Cache variant mismatch"),
Self::Owned(e) => {
f.write_str("atspi: other error: ")?;
e.fmt(f)
}
Self::Zbus(e) => {
f.write_str("ZBus Error: ")?;
e.fmt(f)
}
Self::Zvariant(e) => {
f.write_str("Zvariant error: ")?;
e.fmt(f)
}
Self::ZBusNames(e) => {
f.write_str("ZBus_names Error: ")?;
e.fmt(f)
}
Self::ParseError(e) => f.write_str(e),
Self::PathConversionError(e) => {
f.write_str("ID cannot be extracted from the path: ")?;
e.fmt(f)
}
Self::IO(e) => {
f.write_str("std IO Error: ")?;
e.fmt(f)
}
Self::IntConversionError(e) => {
f.write_str("Integer conversion error: ")?;
e.fmt(f)
}
Self::MissingName => f.write_str("Missing name for a bus."),
Self::Infallible => {
f.write_str("Infallible; only to trick the compiler. This should never happen.")
}
}
}
}
impl From<std::convert::Infallible> for AtspiError {
fn from(_e: std::convert::Infallible) -> Self {
Self::Infallible
}
}
impl From<std::num::TryFromIntError> for AtspiError {
fn from(e: std::num::TryFromIntError) -> Self {
Self::IntConversionError(e)
}
}
#[cfg(feature = "zbus")]
impl From<zbus::fdo::Error> for AtspiError {
fn from(e: zbus::fdo::Error) -> Self {
Self::Zbus(format!("{e:?}"))
}
}
#[cfg(feature = "zbus")]
impl From<zbus::Error> for AtspiError {
fn from(e: zbus::Error) -> Self {
Self::Zbus(format!("{e:?}"))
}
}
impl From<zbus_names::Error> for AtspiError {
fn from(e: zbus_names::Error) -> Self {
Self::ZBusNames(e)
}
}
impl From<zvariant::Error> for AtspiError {
fn from(e: zvariant::Error) -> Self {
Self::Zvariant(e)
}
}
impl From<std::io::Error> for AtspiError {
fn from(e: std::io::Error) -> Self {
Self::IO(e)
}
}
impl From<ObjectPathConversionError> for AtspiError {
fn from(e: ObjectPathConversionError) -> AtspiError {
Self::PathConversionError(e)
}
}
#[allow(clippy::module_name_repetitions)]
#[derive(Clone, Debug)]
pub enum ObjectPathConversionError {
NoIdAvailable,
ParseError(<i64 as std::str::FromStr>::Err),
}
impl std::fmt::Display for ObjectPathConversionError {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::NoIdAvailable => f.write_str("No ID available in the path."),
Self::ParseError(e) => {
f.write_str("Failure to parse: ")?;
e.fmt(f)
}
}
}
}
impl std::error::Error for ObjectPathConversionError {}