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 GetFn<A, I, T, U>: Send + 'static {
fn execute(&self, scope: &mut Scope<I>, value: &T) -> Result<U>;
}
impl<F, R, I, T, U> GetFn<ForScope, I, T, U> for F
where
F: Fn(&mut Scope<I>) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
catch(|| self(scope).into_result())
}
}
impl<F, R, I, T, U> GetFn<ForScopeValue, I, T, U> for F
where
F: Fn(&mut Scope<I>, &T) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
catch(|| self(scope, value).into_result())
}
}
impl<F, R, I, T, U> GetFn<ForKey, I, T, U> for F
where
F: Fn(&Key<I>) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
catch(|| self(scope.key()).into_result())
}
}
impl<F, R, I, T, U> GetFn<ForKeyValue, I, T, U> for F
where
F: Fn(&Key<I>, &T) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
catch(|| self(scope.key(), value).into_result())
}
}
impl<F, R, I, T, U> GetFn<ForId, I, T, U> for F
where
F: Fn(&I) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
catch(|| self(scope.key().try_as_id()?).into_result())
}
}
impl<F, R, I, T, U> GetFn<ForIdValue, I, T, U> for F
where
F: Fn(&I, &T) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
catch(|| self(scope.key().try_as_id()?, value).into_result())
}
}
impl<F, R, I, T, U> GetFn<ForValue, I, T, U> for F
where
F: Fn(&T) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
catch(|| self(value).into_result())
}
}
macro_rules! impl_get_fn_for_scope_splat {
($($T:ident),+) => {
impl<F, R, I, $($T,)+ U> GetFn<ForScopeSplat, I, ($($T,)+), U> for F
where
F: Fn(&mut Scope<I>, $(&$T),+) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self(scope, $($T),+).into_result())
}
}
};
}
macro_rules! impl_get_fn_for_key_splat {
($($T:ident),+) => {
impl<F, R, I, $($T,)+ U> GetFn<ForKeySplat, I, ($($T,)+), U> for F
where
F: Fn(&Key<I>, $(&$T),+) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self(scope.key(), $($T),+).into_result())
}
}
};
}
macro_rules! impl_get_fn_for_id_splat {
($($T:ident),+) => {
impl<F, R, I, $($T,)+ U> GetFn<ForIdSplat, I, ($($T,)+), U> for F
where
F: Fn(&I, $(&$T),+) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self(scope.key().try_as_id()?, $($T),+).into_result())
}
}
};
}
macro_rules! impl_get_fn_for_splat {
($($T:ident),+) => {
impl<F, R, I, $($T,)+ U> GetFn<ForSplat, I, ($($T,)+), U> for F
where
F: Fn($(&$T),+) -> R + Send + 'static,
R: IntoResult<U>,
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<U> {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self($($T),+).into_result())
}
}
};
}
macro_rules! impl_get_fn {
($($T:ident),+) => {
impl_get_fn_for_scope_splat!($($T),+);
impl_get_fn_for_key_splat!($($T),+);
impl_get_fn_for_id_splat!($($T),+);
impl_get_fn_for_splat!($($T),+);
};
}
impl_get_fn!(T1);
impl_get_fn!(T1, T2);
impl_get_fn!(T1, T2, T3);
impl_get_fn!(T1, T2, T3, T4);
impl_get_fn!(T1, T2, T3, T4, T5);
impl_get_fn!(T1, T2, T3, T4, T5, T6);
impl_get_fn!(T1, T2, T3, T4, T5, T6, T7);
impl_get_fn!(T1, T2, T3, T4, T5, T6, T7, T8);