use std::error::Error;
use notificator::Notificator;
use self::err::*;
use self::ok::*;
pub mod err {
use std::ops::Deref;
use std::ops::DerefMut;
use std::error::Error;
use notify_rust::Notification as RustNotification;
use notify_rust::NotificationUrgency;
use notificator::default::Urgency;
use notificator::default::Notification;
use notificator::Notificator;
use failure::Fallible as Result;
use failure::err_msg;
#[derive(Debug, Default, Clone)]
pub struct ErrorNotification(Notification, usize);
impl ErrorNotification {
pub fn new(trace: usize, timeout: i32) -> ErrorNotification {
let notif = Notification {
timeout,
message: String::new(), summary: "[Error]".to_owned(),
urgency: Urgency::High,
};
ErrorNotification(notif, trace)
}
}
impl<T: Error> Notificator<T> for ErrorNotification {
fn notify(&self, item: &T) -> Result<()>{
fn trace_notify(urgency: NotificationUrgency, e: &Error, u: usize) -> Result<()> {
let mut n = RustNotification::new();
n.appname("imag");
n.summary("[Error]");
n.urgency(urgency);
n.body(e.description());
let _ = n.finalize()
.show()
.map_err(|_| err_msg("Notification error"))?;
if u > 0 {
e.cause().map(|cause| trace_notify(urgency, cause, u - 1));
}
Ok(())
}
trace_notify(self.0.urgency.clone().into(), item, self.1)
}
}
impl Deref for ErrorNotification {
type Target = Notification;
fn deref(&self) -> &Notification {
&self.0
}
}
impl DerefMut for ErrorNotification {
fn deref_mut(&mut self) -> &mut Notification {
&mut self.0
}
}
}
pub mod ok {
use std::ops::Deref;
use std::ops::DerefMut;
use notify_rust::Notification as RustNotification;
use notificator::default::Notification;
use notificator::Notificator;
use failure::Fallible as Result;
use failure::err_msg;
#[derive(Debug, Default, Clone)]
pub struct OkNotification(Notification);
impl From<Notification> for OkNotification {
fn from(n: Notification) -> OkNotification {
OkNotification(n)
}
}
impl<T> Notificator<T> for OkNotification {
fn notify(&self, _: &T) -> Result<()> {
let mut n = RustNotification::new();
n.appname("imag");
n.summary("[Ok]");
n.urgency(self.0.urgency.clone().into());
n.body(&"< >".to_owned());
n.finalize()
.show()
.map(|_| ())
.map_err(|_| err_msg("Notification error"))
}
}
impl Deref for OkNotification {
type Target = Notification;
fn deref(&self) -> &Notification {
&self.0
}
}
impl DerefMut for OkNotification {
fn deref_mut(&mut self) -> &mut Notification {
&mut self.0
}
}
}
pub trait ResultNotification<T, E> {
fn notify_with(self, n: &Notificator<T>) -> Self;
fn notify(self) -> Self;
fn notify_on_err_with(self, n: &Notificator<E>) -> Self;
fn notify_on_err(self) -> Self;
}
impl<T, E: Error> ResultNotification<T, E> for Result<T, E> {
fn notify_with(self, n: &Notificator<T>) -> Self {
self.map(|item| { let _ = n.notify(&item); item })
}
fn notify(self) -> Self {
self.notify_with(&OkNotification::default())
}
fn notify_on_err_with(self, n: &Notificator<E>) -> Self {
self.map_err(|e| { let _ = n.notify(&e); e })
}
fn notify_on_err(self) -> Self {
self.notify_on_err_with(&ErrorNotification::default())
}
}