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
use std::marker::PhantomData;

#[cfg(test)]
mod tests;

pub trait ArgsFactory: Send + Sync + 'static {
    type Input: Send + Sync + 'static;
    type Output: Send + Sync + 'static;

    fn make_args(&mut self, args: Self::Input) -> Self::Output;
}

pub fn unique<T>(value: T) -> Box<dyn ArgsFactory<Input = (), Output = Option<T>>>
where
    UniqueValue<T>: ArgsFactory<Input = (), Output = Option<T>>,
{
    let af = UniqueValue(Some(value));
    Box::new(af)
}

pub fn clone<T>(value: T) -> Box<dyn ArgsFactory<Input = (), Output = T>>
where
    CloneValue<T>: ArgsFactory<Input = (), Output = T>,
{
    let af = CloneValue(value);
    Box::new(af)
}

pub fn call<F, Out>(func: F) -> Box<dyn ArgsFactory<Input = (), Output = Out>>
where
    Call<F, Out>: ArgsFactory<Input = (), Output = Out>,
{
    let af = Call(func, Default::default());
    Box::new(af)
}

pub fn map<F, In, Out>(func: F) -> Box<dyn ArgsFactory<Input = In, Output = Out>>
where
    Map<F, In, Out>: ArgsFactory<Input = In, Output = Out>,
{
    let af = Map(func, Default::default());
    Box::new(af)
}

#[derive(Debug)]
pub struct UniqueValue<T>(Option<T>);

#[derive(Debug)]
pub struct CloneValue<T>(T);

#[derive(Debug)]
pub struct Map<F, In, Out>(F, PhantomData<(In, Out)>);

#[derive(Debug)]
pub struct Call<F, Out>(F, PhantomData<Out>);

impl<T> ArgsFactory for UniqueValue<T>
where
    T: Send + Sync + 'static,
{
    type Input = ();
    type Output = Option<T>;

    fn make_args(&mut self, (): Self::Input) -> Self::Output {
        self.0.take()
    }
}

impl<In, Out> ArgsFactory for Box<dyn ArgsFactory<Input = In, Output = Out>>
where
    In: Send + Sync + 'static,
    Out: Send + Sync + 'static,
{
    type Input = In;
    type Output = Out;

    fn make_args(&mut self, args: Self::Input) -> Self::Output {
        self.as_mut().make_args(args)
    }
}

impl<T> ArgsFactory for CloneValue<T>
where
    T: Clone + Send + Sync + 'static,
{
    type Input = ();
    type Output = T;

    fn make_args(&mut self, (): Self::Input) -> Self::Output {
        self.0.to_owned()
    }
}

impl<F, Out> ArgsFactory for Call<F, Out>
where
    F: FnMut() -> Out,
    F: Send + Sync + 'static,
    Out: Send + Sync + 'static,
{
    type Input = ();
    type Output = Out;

    fn make_args(&mut self, (): Self::Input) -> Self::Output {
        (self.0)()
    }
}

impl<F, In, Out> ArgsFactory for Map<F, In, Out>
where
    F: FnMut(In) -> Out,
    F: Send + Sync + 'static,
    In: Send + Sync + 'static,
    Out: Send + Sync + 'static,
{
    type Input = In;
    type Output = Out;

    fn make_args(&mut self, input: Self::Input) -> Self::Output {
        (self.0)(input)
    }
}