use std::fmt::Display;
use zrx_scheduler::step::error::IntoResult;
use zrx_scheduler::step::{Result, Scope};
use zrx_scheduler::Key;
use crate::stream::function::arguments::{
ForId, ForIdSplat, ForIdValue, ForKey, ForKeySplat, ForKeyValue, ForScope,
ForScopeSplat, ForScopeValue, ForSplat, ForValue,
};
use crate::stream::function::catch;
pub trait InspectFn<A, I, T>: Send + 'static {
fn execute(&self, scope: &mut Scope<I>, value: &T) -> Result;
}
impl<F, R, I, T> InspectFn<ForScope, I, T> for F
where
F: Fn(&mut Scope<I>) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(&self, scope: &mut Scope<I>, _: &T) -> Result {
catch(|| self(scope).into_result())
}
}
impl<F, R, I, T> InspectFn<ForScopeValue, I, T> for F
where
F: Fn(&mut Scope<I>, &T) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(&self, scope: &mut Scope<I>, value: &T) -> Result {
catch(|| self(scope, value).into_result())
}
}
impl<F, R, I, T> InspectFn<ForKey, I, T> for F
where
F: Fn(&Key<I>) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(&self, scope: &mut Scope<I>, _: &T) -> Result {
catch(|| self(scope.key()).into_result())
}
}
impl<F, R, I, T> InspectFn<ForKeyValue, I, T> for F
where
F: Fn(&Key<I>, &T) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(&self, scope: &mut Scope<I>, value: &T) -> Result {
catch(|| self(scope.key(), value).into_result())
}
}
impl<F, R, I, T> InspectFn<ForId, I, T> for F
where
F: Fn(&I) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(&self, scope: &mut Scope<I>, _: &T) -> Result {
catch(|| self(scope.key().try_as_id()?).into_result())
}
}
impl<F, R, I, T> InspectFn<ForIdValue, I, T> for F
where
F: Fn(&I, &T) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(&self, scope: &mut Scope<I>, value: &T) -> Result {
catch(|| self(scope.key().try_as_id()?, value).into_result())
}
}
impl<F, R, I, T> InspectFn<ForValue, I, T> for F
where
F: Fn(&T) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(&self, scope: &mut Scope<I>, value: &T) -> Result {
catch(|| self(value).into_result())
}
}
macro_rules! impl_inspect_fn_for_scope_splat {
($($T:ident),+) => {
impl<F, R, I, $($T,)+> InspectFn<ForScopeSplat, I, ($($T,)+)> for F
where
F: Fn(&mut Scope<I>, $(&$T),+) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(
&self, scope: &mut Scope<I>, value: &($($T,)+)
) -> Result {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self(scope, $($T),+).into_result())
}
}
};
}
macro_rules! impl_inspect_fn_for_key_splat {
($($T:ident),+) => {
impl<F, R, I, $($T,)+> InspectFn<ForKeySplat, I, ($($T,)+)> for F
where
F: Fn(&Key<I>, $(&$T),+) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(
&self, scope: &mut Scope<I>, value: &($($T,)+)
) -> Result {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self(scope.key(), $($T),+).into_result())
}
}
};
}
macro_rules! impl_inspect_fn_for_id_splat {
($($T:ident),+) => {
impl<F, R, I, $($T,)+> InspectFn<ForIdSplat, I, ($($T,)+)> for F
where
F: Fn(&I, $(&$T),+) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(
&self, scope: &mut Scope<I>, value: &($($T,)+)
) -> Result {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self(scope.key().try_as_id()?, $($T),+).into_result())
}
}
};
}
macro_rules! impl_inspect_fn_for_splat {
($($T:ident),+) => {
impl<F, R, I, $($T,)+> InspectFn<ForSplat, I, ($($T,)+)> for F
where
F: Fn($(&$T),+) -> R + Send + 'static,
R: IntoResult,
I: Display,
{
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(
&self, scope: &mut Scope<I>, value: &($($T,)+)
) -> Result {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self($($T),+).into_result())
}
}
};
}
macro_rules! impl_inspect_fn {
($($T:ident),+) => {
impl_inspect_fn_for_scope_splat!($($T),+);
impl_inspect_fn_for_key_splat!($($T),+);
impl_inspect_fn_for_id_splat!($($T),+);
impl_inspect_fn_for_splat!($($T),+);
};
}
impl_inspect_fn!(T1);
impl_inspect_fn!(T1, T2);
impl_inspect_fn!(T1, T2, T3);
impl_inspect_fn!(T1, T2, T3, T4);
impl_inspect_fn!(T1, T2, T3, T4, T5);
impl_inspect_fn!(T1, T2, T3, T4, T5, T6);
impl_inspect_fn!(T1, T2, T3, T4, T5, T6, T7);
impl_inspect_fn!(T1, T2, T3, T4, T5, T6, T7, T8);