http_types/error.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
//! HTTP error types
use std::error::Error as StdError;
use std::fmt::{self, Debug, Display};
use crate::StatusCode;
use std::convert::TryInto;
/// A specialized `Result` type for HTTP operations.
///
/// This type is broadly used across `http_types` for any operation which may
/// produce an error.
pub type Result<T> = std::result::Result<T, Error>;
/// The error type for HTTP operations.
pub struct Error {
error: anyhow::Error,
status: crate::StatusCode,
type_name: Option<&'static str>,
}
#[allow(unreachable_pub)]
#[derive(Debug)]
#[doc(hidden)]
pub struct BacktracePlaceholder;
impl Display for BacktracePlaceholder {
fn fmt(&self, _: &mut fmt::Formatter<'_>) -> fmt::Result {
unreachable!()
}
}
impl Error {
/// Create a new error object from any error type.
///
/// The error type must be threadsafe and 'static, so that the Error will be
/// as well. If the error type does not provide a backtrace, a backtrace will
/// be created here to ensure that a backtrace exists.
pub fn new<S, E>(status: S, error: E) -> Self
where
S: TryInto<StatusCode>,
S::Error: Debug,
E: Into<anyhow::Error>,
{
Self {
status: status
.try_into()
.expect("Could not convert into a valid `StatusCode`"),
error: error.into(),
type_name: Some(std::any::type_name::<E>()),
}
}
/// Create a new error object from static string.
pub fn from_str<S, M>(status: S, msg: M) -> Self
where
S: TryInto<StatusCode>,
S::Error: Debug,
M: Display + Debug + Send + Sync + 'static,
{
Self {
status: status
.try_into()
.expect("Could not convert into a valid `StatusCode`"),
error: anyhow::Error::msg(msg),
type_name: None,
}
}
/// Create a new error from a message.
pub(crate) fn new_adhoc<M>(message: M) -> Error
where
M: Display + Debug + Send + Sync + 'static,
{
Self::from_str(StatusCode::InternalServerError, message)
}
/// Get the status code associated with this error.
pub fn status(&self) -> StatusCode {
self.status
}
/// Set the status code associated with this error.
pub fn set_status<S>(&mut self, status: S)
where
S: TryInto<StatusCode>,
S::Error: Debug,
{
self.status = status
.try_into()
.expect("Could not convert into a valid `StatusCode`");
}
/// Get the backtrace for this Error.
///
/// Backtraces are only available on the nightly channel. Tracking issue:
/// [rust-lang/rust#53487][tracking].
///
/// In order for the backtrace to be meaningful, the environment variable
/// `RUST_LIB_BACKTRACE=1` must be defined. Backtraces are somewhat
/// expensive to capture in Rust, so we don't necessarily want to be
/// capturing them all over the place all the time.
///
/// [tracking]: https://github.com/rust-lang/rust/issues/53487
///
/// Note: This function can be called whether or not backtraces
/// are enabled and available. It will return a `None` variant if
/// compiled on a toolchain that does not support backtraces, or
/// if executed without backtraces enabled with
/// `RUST_LIB_BACKTRACE=1`.
#[cfg(backtrace)]
pub fn backtrace(&self) -> Option<&std::backtrace::Backtrace> {
let backtrace = self.error.backtrace();
if let std::backtrace::BacktraceStatus::Captured = backtrace.status() {
Some(backtrace)
} else {
None
}
}
#[cfg(not(backtrace))]
#[allow(missing_docs)]
pub const fn backtrace(&self) -> Option<BacktracePlaceholder> {
None
}
/// Returns the inner [`anyhow::Error`]
/// Note: This will lose status code information
pub fn into_inner(self) -> anyhow::Error {
self.error
}
/// Attempt to downcast the error object to a concrete type.
pub fn downcast<E>(self) -> std::result::Result<E, Self>
where
E: Display + Debug + Send + Sync + 'static,
{
if self.error.downcast_ref::<E>().is_some() {
Ok(self.error.downcast().unwrap())
} else {
Err(self)
}
}
/// Downcast this error object by reference.
pub fn downcast_ref<E>(&self) -> Option<&E>
where
E: Display + Debug + Send + Sync + 'static,
{
self.error.downcast_ref::<E>()
}
/// Downcast this error object by mutable reference.
pub fn downcast_mut<E>(&mut self) -> Option<&mut E>
where
E: Display + Debug + Send + Sync + 'static,
{
self.error.downcast_mut::<E>()
}
/// Retrieves a reference to the type name of the error, if available.
pub fn type_name(&self) -> Option<&str> {
self.type_name.as_deref()
}
/// Converts anything which implements `Display` into an `http_types::Error`.
///
/// This is handy for errors which are not `Send + Sync + 'static` because `std::error::Error` requires `Display`.
/// Note that any assiciated context not included in the `Display` output will be lost,
/// and so this may be lossy for some types which implement `std::error::Error`.
///
/// **Note: Prefer `error.into()` via `From<Into<anyhow::Error>>` when possible!**
pub fn from_display<D: Display>(error: D) -> Self {
anyhow::Error::msg(error.to_string()).into()
}
/// Converts anything which implements `Debug` into an `http_types::Error`.
///
/// This is handy for errors which are not `Send + Sync + 'static` because `std::error::Error` requires `Debug`.
/// Note that any assiciated context not included in the `Debug` output will be lost,
/// and so this may be lossy for some types which implement `std::error::Error`.
///
/// **Note: Prefer `error.into()` via `From<Into<anyhow::Error>>` when possible!**
pub fn from_debug<D: Debug>(error: D) -> Self {
anyhow::Error::msg(format!("{:?}", error)).into()
}
}
impl Display for Error {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
Display::fmt(&self.error, formatter)
}
}
impl Debug for Error {
fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
Debug::fmt(&self.error, formatter)
}
}
impl<E: Into<anyhow::Error>> From<E> for Error {
fn from(error: E) -> Self {
Self::new(StatusCode::InternalServerError, error)
}
}
impl AsRef<dyn StdError + Send + Sync> for Error {
fn as_ref(&self) -> &(dyn StdError + Send + Sync + 'static) {
self.error.as_ref()
}
}
impl AsRef<StatusCode> for Error {
fn as_ref(&self) -> &StatusCode {
&self.status
}
}
impl AsMut<StatusCode> for Error {
fn as_mut(&mut self) -> &mut StatusCode {
&mut self.status
}
}
impl AsRef<dyn StdError> for Error {
fn as_ref(&self) -> &(dyn StdError + 'static) {
self.error.as_ref()
}
}
impl From<Error> for Box<dyn StdError + Send + Sync + 'static> {
fn from(error: Error) -> Self {
error.error.into()
}
}
impl From<Error> for Box<dyn StdError + 'static> {
fn from(error: Error) -> Self {
Box::<dyn StdError + Send + Sync>::from(error.error)
}
}
impl AsRef<anyhow::Error> for Error {
fn as_ref(&self) -> &anyhow::Error {
&self.error
}
}