#![allow(missing_docs)]
use std::{fmt, num};
pub type Result<T> = ::std::result::Result<T, Error>;
#[derive(Debug)]
pub struct Error {
kind: ErrorKind
}
#[derive(Debug)]
pub enum ErrorKind {
Msg(String),
#[cfg(all(unix, not(target_os = "macos")))]
Dbus(dbus::Error),
#[cfg(target_os = "macos")]
MacNotificationSys(mac_notification_sys::error::Error),
Parse(num::ParseIntError),
SpecVersion(String),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self.kind {
#[cfg(all(unix, not(target_os = "macos")))]
ErrorKind::Dbus(ref e) => write!(f, "{}", e),
#[cfg(target_os = "macos")]
ErrorKind::MacNotificationSys(ref e) => write!(f, "{}", e),
ErrorKind::Parse(ref e) => write!(f, "Parsing Error: {}", e),
ErrorKind::SpecVersion(ref e) => write!(f, "{}", e),
ErrorKind::Msg(ref e) => write!(f, "{}", e),
}
}
}
impl std::error::Error for Error {}
#[cfg(all(unix, not(target_os = "macos")))]
impl From<dbus::Error> for Error {
fn from(e: dbus::Error) -> Error {
Error { kind: ErrorKind::Dbus(e) }
}
}
#[cfg(target_os = "macos")]
impl From<mac_notification_sys::error::Error> for Error {
fn from(e: mac_notification_sys::error::Error) -> Error {
Error { kind: ErrorKind::MacNotificationSys(e) }
}
}
impl From<num::ParseIntError> for Error {
fn from(e: num::ParseIntError) -> Error {
Error { kind: ErrorKind::Parse(e) }
}
}
impl From<ErrorKind> for Error {
fn from(kind: ErrorKind) -> Error {
Error { kind }
}
}
#[macro_export]
#[doc(hidden)]
macro_rules! bail {
($e:expr) => {
return Err($e.into());
};
($fmt:expr, $($arg:tt)+) => {
return Err(format!($fmt, $($arg)+).into());
};
}
#[macro_export(local_inner_macros)]
#[doc(hidden)]
macro_rules! ensure {
($cond:expr, $e:expr) => {
if !($cond) {
bail!($e);
}
};
($cond:expr, $fmt:expr, $($arg:tt)*) => {
if !($cond) {
bail!($fmt, $($arg)*);
}
};
}