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 FlatMapFn<A, J, I, T, U>: Send + 'static {
type Iter: IntoIterator<Item = (Key<I>, U)>;
fn execute(&self, scope: &mut Scope<I>, value: T) -> Result<Self::Iter>;
}
impl<F, R, J, I, T, U> FlatMapFn<ForScope, J, I, T, U> for F
where
F: Fn(&mut Scope<I>) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(&self, scope: &mut Scope<I>, _: T) -> Result<J> {
catch(|| self(scope).into_result())
}
}
impl<F, R, J, I, T, U> FlatMapFn<ForScopeValue, J, I, T, U> for F
where
F: Fn(&mut Scope<I>, T) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[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<J> {
catch(|| self(scope, value).into_result())
}
}
impl<F, R, J, I, T, U> FlatMapFn<ForKey, J, I, T, U> for F
where
F: Fn(&Key<I>) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(&self, scope: &mut Scope<I>, _: T) -> Result<J> {
catch(|| self(scope.key()).into_result())
}
}
impl<F, R, J, I, T, U> FlatMapFn<ForKeyValue, J, I, T, U> for F
where
F: Fn(&Key<I>, T) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[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<J> {
catch(|| self(scope.key(), value).into_result())
}
}
impl<F, R, J, I, T, U> FlatMapFn<ForId, J, I, T, U> for F
where
F: Fn(&I) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[cfg_attr(
feature = "tracing",
tracing::instrument(
level = "debug", skip_all, fields(key = %scope.key())
)
)]
#[inline]
fn execute(&self, scope: &mut Scope<I>, _: T) -> Result<J> {
catch(|| self(scope.key().try_as_id()?).into_result())
}
}
impl<F, R, J, I, T, U> FlatMapFn<ForIdValue, J, I, T, U> for F
where
F: Fn(&I, T) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[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<J> {
catch(|| self(scope.key().try_as_id()?, value).into_result())
}
}
impl<F, R, J, I, T, U> FlatMapFn<ForValue, J, I, T, U> for F
where
F: Fn(T) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[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<J> {
catch(|| self(value).into_result())
}
}
macro_rules! impl_flat_map_fn_for_scope_splat {
($($T:ident),+) => {
impl<F, R, J, I, $($T,)+ U> FlatMapFn<ForScopeSplat, J, I, ($($T,)+), U>
for F
where
F: Fn(&mut Scope<I>, $($T),+) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[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<J> {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self(scope, $($T),+).into_result())
}
}
};
}
macro_rules! impl_flat_map_fn_for_key_splat {
($($T:ident),+) => {
impl<F, R, J, I, $($T,)+ U> FlatMapFn<ForKeySplat, J, I, ($($T,)+), U>
for F
where
F: Fn(&Key<I>, $($T),+) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[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<J> {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self(scope.key(), $($T),+).into_result())
}
}
};
}
macro_rules! impl_flat_map_fn_for_id_splat {
($($T:ident),+) => {
impl<F, R, J, I, $($T,)+ U> FlatMapFn<ForIdSplat, J, I, ($($T,)+), U>
for F
where
F: Fn(&I, $($T),+) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[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<J> {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self(scope.key().try_as_id()?, $($T),+).into_result())
}
}
};
}
macro_rules! impl_flat_map_fn_for_splat {
($($T:ident),+) => {
impl<F, R, J, I, $($T,)+ U> FlatMapFn<ForSplat, J, I, ($($T,)+), U>
for F
where
F: Fn($($T),+) -> R + Send + 'static,
R: IntoResult<J>,
J: IntoIterator<Item = (Key<I>, U)>,
I: Display,
{
type Iter = J;
#[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<J> {
#[allow(non_snake_case)]
let ($($T,)+) = value;
catch(|| self($($T),+).into_result())
}
}
};
}
macro_rules! impl_flat_map_fn {
($($T:ident),+) => {
impl_flat_map_fn_for_scope_splat!($($T),+);
impl_flat_map_fn_for_key_splat!($($T),+);
impl_flat_map_fn_for_id_splat!($($T),+);
impl_flat_map_fn_for_splat!($($T),+);
};
}
impl_flat_map_fn!(T1);
impl_flat_map_fn!(T1, T2);
impl_flat_map_fn!(T1, T2, T3);
impl_flat_map_fn!(T1, T2, T3, T4);
impl_flat_map_fn!(T1, T2, T3, T4, T5);
impl_flat_map_fn!(T1, T2, T3, T4, T5, T6);
impl_flat_map_fn!(T1, T2, T3, T4, T5, T6, T7);
impl_flat_map_fn!(T1, T2, T3, T4, T5, T6, T7, T8);