mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 05:04:48 +00:00

Handles more error cases when tunnels close. this logic got super nasty to do as nested if statements, so i added recursion >:)
69 lines
1.7 KiB
Rust
69 lines
1.7 KiB
Rust
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
use std::convert::Infallible;
|
|
|
|
use deno_error::JsErrorBox;
|
|
use deno_error::JsErrorClass;
|
|
use deno_resolver::DenoResolveError;
|
|
use deno_resolver::DenoResolveErrorKind;
|
|
use deno_runtime::deno_core::error::AnyError;
|
|
use deno_runtime::deno_core::error::CoreError;
|
|
use deno_runtime::deno_core::error::CoreErrorKind;
|
|
|
|
pub trait InfallibleResultExt<T> {
|
|
fn unwrap_infallible(self) -> T;
|
|
}
|
|
|
|
impl<T> InfallibleResultExt<T> for Result<T, Infallible> {
|
|
fn unwrap_infallible(self) -> T {
|
|
match self {
|
|
Ok(value) => value,
|
|
Err(never) => match never {},
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn js_error_downcast_ref(
|
|
err: &AnyError,
|
|
) -> Option<&deno_runtime::deno_core::error::JsError> {
|
|
any_and_jserrorbox_downcast_ref(err).or_else(|| {
|
|
err
|
|
.downcast_ref::<CoreError>()
|
|
.and_then(|e| match e.as_kind() {
|
|
CoreErrorKind::Js(e) => Some(e),
|
|
_ => None,
|
|
})
|
|
})
|
|
}
|
|
|
|
pub fn any_and_jserrorbox_downcast_ref<
|
|
E: std::error::Error + Send + Sync + 'static,
|
|
>(
|
|
err: &AnyError,
|
|
) -> Option<&E> {
|
|
err
|
|
.downcast_ref::<E>()
|
|
.or_else(|| {
|
|
err
|
|
.downcast_ref::<JsErrorBox>()
|
|
.and_then(|e| e.get_ref().downcast_ref::<E>())
|
|
})
|
|
.or_else(|| {
|
|
err
|
|
.downcast_ref::<CoreError>()
|
|
.and_then(|e| match e.as_kind() {
|
|
CoreErrorKind::JsBox(e) => e.get_ref().downcast_ref::<E>(),
|
|
_ => None,
|
|
})
|
|
})
|
|
}
|
|
|
|
pub fn downcast_ref_deno_resolve_error(
|
|
err: &JsErrorBox,
|
|
) -> Option<&DenoResolveErrorKind> {
|
|
err
|
|
.get_ref()
|
|
.downcast_ref::<DenoResolveError>()
|
|
.map(|e| e.as_kind())
|
|
.or_else(|| err.get_ref().downcast_ref::<DenoResolveErrorKind>())
|
|
}
|