#![doc(html_favicon_url = "https://sentry-brand.storage.googleapis.com/favicon.ico")]
#![doc(html_logo_url = "https://sentry-brand.storage.googleapis.com/sentry-glyph-black.png")]
#![warn(missing_docs)]
#![deny(unsafe_code)]
use std::fmt::{Debug, Display};
use error_chain::ChainedError;
use sentry_backtrace::backtrace_to_stacktrace;
use sentry_core::parse_type_from_debug;
use sentry_core::protocol::{Event, Exception, Level};
use sentry_core::types::Uuid;
use sentry_core::{ClientOptions, Hub, Integration};
fn exceptions_from_error_chain<T>(error: &T) -> Vec<Exception>
where
T: ChainedError,
T::ErrorKind: Debug + Display,
{
let dbg = format!("{:?}", error.kind());
let mut rv = vec![];
rv.push(Exception {
ty: parse_type_from_debug(&dbg).to_owned(),
value: Some(error.kind().to_string()),
stacktrace: error_chain::ChainedError::backtrace(error).and_then(backtrace_to_stacktrace),
..Default::default()
});
for error in error.iter().skip(1) {
let dbg = format!("{:?}", error);
rv.push(Exception {
ty: parse_type_from_debug(&dbg).to_owned(),
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))
}
}
#[derive(Default)]
pub struct ErrorChainIntegration;
impl ErrorChainIntegration {
pub fn new() -> Self {
Self::default()
}
}
impl Integration for ErrorChainIntegration {
fn name(&self) -> &'static str {
"error-chain"
}
fn setup(&self, cfg: &mut ClientOptions) {
cfg.in_app_exclude.push("error_chain::");
cfg.extra_border_frames.push("error_chain::make_backtrace");
}
}