use std::fmt::{Debug, Display};
use error_chain::ChainedError;
use crate::backtrace_support::{backtrace_to_stacktrace, error_typename};
use crate::hub::Hub;
use crate::internals::Uuid;
use crate::protocol::{Event, Exception, Level};
fn exceptions_from_error_chain<T>(error: &T) -> Vec<Exception>
where
T: ChainedError,
T::ErrorKind: Debug + Display,
{
let mut rv = vec![];
rv.push(Exception {
ty: error_typename(error.kind()),
value: Some(error.kind().to_string()),
stacktrace: error.backtrace().and_then(backtrace_to_stacktrace),
..Default::default()
});
for error in error.iter().skip(1) {
rv.push(Exception {
ty: error_typename(error),
value: Some(error.to_string()),
..Default::default()
})
}
rv
}
pub fn event_from_error_chain<T>(e: &T) -> Event<'static>
where
T: ChainedError,
T::ErrorKind: Debug + Display,
{
Event {
exception: exceptions_from_error_chain(e).into(),
level: Level::Error,
..Default::default()
}
}
pub fn capture_error_chain<T>(e: &T) -> Uuid
where
T: ChainedError,
T::ErrorKind: Debug + Display,
{
Hub::with_active(|hub| hub.capture_error_chain(e))
}
pub trait ErrorChainHubExt {
fn capture_error_chain<T>(&self, e: &T) -> Uuid
where
T: ChainedError,
T::ErrorKind: Debug + Display;
}
impl ErrorChainHubExt for Hub {
fn capture_error_chain<T>(&self, e: &T) -> Uuid
where
T: ChainedError,
T::ErrorKind: Debug + Display,
{
self.capture_event(event_from_error_chain(e))
}
}