rig/pipeline/
parallel.rs

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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
use futures::{join, try_join};

use super::{Op, TryOp};

pub struct Parallel<Op1, Op2> {
    op1: Op1,
    op2: Op2,
}

impl<Op1, Op2> Parallel<Op1, Op2> {
    pub fn new(op1: Op1, op2: Op2) -> Self {
        Self { op1, op2 }
    }
}

impl<Op1, Op2> Op for Parallel<Op1, Op2>
where
    Op1: Op,
    Op1::Input: Clone,
    Op2: Op<Input = Op1::Input>,
{
    type Input = Op1::Input;
    type Output = (Op1::Output, Op2::Output);

    #[inline]
    async fn call(&self, input: Self::Input) -> Self::Output {
        join!(self.op1.call(input.clone()), self.op2.call(input))
    }
}

impl<Op1, Op2> TryOp for Parallel<Op1, Op2>
where
    Op1: TryOp,
    Op1::Input: Clone,
    Op2: TryOp<Input = Op1::Input, Error = Op1::Error>,
{
    type Input = Op1::Input;
    type Output = (Op1::Output, Op2::Output);
    type Error = Op1::Error;

    #[inline]
    async fn try_call(&self, input: Self::Input) -> Result<Self::Output, Self::Error> {
        try_join!(self.op1.try_call(input.clone()), self.op2.try_call(input))
    }
}

// See https://doc.rust-lang.org/src/core/future/join.rs.html#48
#[macro_export]
macro_rules! parallel_internal {
    // Last recursive step
    (
        // Accumulate a token for each future that has been expanded: "_ _ _".
        current_position: [
            $($underscores:tt)*
        ]
        // Accumulate values and their positions in the tuple: `_0th ()   _1st ( _ ) …`.
        values_and_positions: [
            $($acc:tt)*
        ]
        // Munch one value.
        munching: [
            $current:tt
        ]
    ) => (
        $crate::parallel_internal! {
            current_position: [
                $($underscores)*
                _
            ]
            values_and_positions: [
                $($acc)*
                $current ( $($underscores)* + )
            ]
            munching: []
        }
    );

    // Recursion step: map each value with its "position" (underscore count).
    (
        // Accumulate a token for each future that has been expanded: "_ _ _".
        current_position: [
            $($underscores:tt)*
        ]
        // Accumulate values and their positions in the tuple: `_0th ()   _1st ( _ ) …`.
        values_and_positions: [
            $($acc:tt)*
        ]
        // Munch one value.
        munching: [
            $current:tt
            $($rest:tt)+
        ]
    ) => (
        $crate::parallel_internal! {
            current_position: [
                $($underscores)*
                _
            ]
            values_and_positions: [
                $($acc)*
                $current ( $($underscores)* )
            ]
            munching: [
                $($rest)*
            ]
        }
    );

    // End of recursion: flatten the values.
    (
        current_position: [
            $($max:tt)*
        ]
        values_and_positions: [
            $(
                $val:tt ( $($pos:tt)* )
            )*
        ]
        munching: []
    ) => ({
        use $crate::pipeline::op::Op;

        $crate::parallel_op!($($val),*)
            .map(|output| {
                ($(
                    {
                        let $crate::tuple_pattern!(x $($pos)*) = output;
                        x
                    }
                ),+)
            })
    })
}

#[macro_export]
macro_rules! parallel_op {
    ($op1:tt, $op2:tt) => {
        $crate::pipeline::parallel::Parallel::new($op1, $op2)
    };
    ($op1:tt $(, $ops:tt)*) => {
        $crate::pipeline::parallel::Parallel::new(
            $op1,
            $crate::parallel_op!($($ops),*)
        )
    };
}

#[macro_export]
macro_rules! tuple_pattern {
    ($id:ident +) => {
        $id
    };
    ($id:ident) => {
        ($id, ..)
    };
    ($id:ident _ $($symbols:tt)*) => {
        (_, $crate::tuple_pattern!($id $($symbols)*))
    };
}

#[macro_export]
macro_rules! parallel {
    ($($es:expr),+ $(,)?) => {
        $crate::parallel_internal! {
            current_position: []
            values_and_positions: []
            munching: [
                $($es)+
            ]
        }
    };
}

// See https://doc.rust-lang.org/src/core/future/join.rs.html#48
#[macro_export]
macro_rules! try_parallel_internal {
    // Last recursive step
    (
        // Accumulate a token for each future that has been expanded: "_ _ _".
        current_position: [
            $($underscores:tt)*
        ]
        // Accumulate values and their positions in the tuple: `_0th ()   _1st ( _ ) …`.
        values_and_positions: [
            $($acc:tt)*
        ]
        // Munch one value.
        munching: [
            $current:tt
        ]
    ) => (
        $crate::try_parallel_internal! {
            current_position: [
                $($underscores)*
                _
            ]
            values_and_positions: [
                $($acc)*
                $current ( $($underscores)* + )
            ]
            munching: []
        }
    );

    // Recursion step: map each value with its "position" (underscore count).
    (
        // Accumulate a token for each future that has been expanded: "_ _ _".
        current_position: [
            $($underscores:tt)*
        ]
        // Accumulate values and their positions in the tuple: `_0th ()   _1st ( _ ) …`.
        values_and_positions: [
            $($acc:tt)*
        ]
        // Munch one value.
        munching: [
            $current:tt
            $($rest:tt)+
        ]
    ) => (
        $crate::try_parallel_internal! {
            current_position: [
                $($underscores)*
                _
            ]
            values_and_positions: [
                $($acc)*
                $current ( $($underscores)* )
            ]
            munching: [
                $($rest)*
            ]
        }
    );

    // End of recursion: flatten the values.
    (
        current_position: [
            $($max:tt)*
        ]
        values_and_positions: [
            $(
                $val:tt ( $($pos:tt)* )
            )*
        ]
        munching: []
    ) => ({
        use $crate::pipeline::try_op::TryOp;
        $crate::parallel_op!($($val),*)
            .map_ok(|output| {
                ($(
                    {
                        let $crate::tuple_pattern!(x $($pos)*) = output;
                        x
                    }
                ),+)
            })
    })
}

#[macro_export]
macro_rules! try_parallel {
    ($($es:expr),+ $(,)?) => {
        $crate::try_parallel_internal! {
            current_position: []
            values_and_positions: []
            munching: [
                $($es)+
            ]
        }
    };
}

pub use parallel;
pub use parallel_internal;

#[cfg(test)]
mod tests {
    use super::*;
    use crate::pipeline::{
        self,
        op::{map, Sequential},
        passthrough, then,
    };

    #[tokio::test]
    async fn test_parallel() {
        let op1 = map(|x: i32| x + 1);
        let op2 = map(|x: i32| x * 3);
        let pipeline = Parallel::new(op1, op2);

        let result = pipeline.call(1).await;
        assert_eq!(result, (2, 3));
    }

    #[tokio::test]
    async fn test_parallel_nested() {
        let op1 = map(|x: i32| x + 1);
        let op2 = map(|x: i32| x * 3);
        let op3 = map(|x: i32| format!("{} is the number!", x));
        let op4 = map(|x: i32| x - 1);

        let pipeline = Parallel::new(Parallel::new(Parallel::new(op1, op2), op3), op4);

        let result = pipeline.call(1).await;
        assert_eq!(result, (((2, 3), "1 is the number!".to_string()), 0));
    }

    #[tokio::test]
    async fn test_parallel_nested_rev() {
        let op1 = map(|x: i32| x + 1);
        let op2 = map(|x: i32| x * 3);
        let op3 = map(|x: i32| format!("{} is the number!", x));
        let op4 = map(|x: i32| x == 1);

        let pipeline = Parallel::new(op1, Parallel::new(op2, Parallel::new(op3, op4)));

        let result = pipeline.call(1).await;
        assert_eq!(result, (2, (3, ("1 is the number!".to_string(), true))));
    }

    #[tokio::test]
    async fn test_sequential_and_parallel() {
        let op1 = map(|x: i32| x + 1);
        let op2 = map(|x: i32| x * 2);
        let op3 = map(|x: i32| x * 3);
        let op4 = map(|(x, y): (i32, i32)| x + y);

        let pipeline = Sequential::new(Sequential::new(op1, Parallel::new(op2, op3)), op4);

        let result = pipeline.call(1).await;
        assert_eq!(result, 10);
    }

    #[tokio::test]
    async fn test_parallel_chain_compile_check() {
        let _ = pipeline::new().chain(
            Parallel::new(
                map(|x: i32| x + 1),
                Parallel::new(
                    map(|x: i32| x * 3),
                    Parallel::new(
                        map(|x: i32| format!("{} is the number!", x)),
                        map(|x: i32| x == 1),
                    ),
                ),
            )
            .map(|(r1, (r2, (r3, r4)))| (r1, r2, r3, r4)),
        );
    }

    #[tokio::test]
    async fn test_parallel_pass_through() {
        let pipeline = then(|x| {
            let op = Parallel::new(Parallel::new(passthrough(), passthrough()), passthrough());

            async move {
                let ((r1, r2), r3) = op.call(x).await;
                (r1, r2, r3)
            }
        });

        let result = pipeline.call(1).await;
        assert_eq!(result, (1, 1, 1));
    }

    #[tokio::test]
    async fn test_parallel_macro() {
        let op2 = map(|x: i32| x * 2);

        let pipeline = parallel!(
            passthrough(),
            op2,
            map(|x: i32| format!("{} is the number!", x)),
            map(|x: i32| x == 1)
        );

        let result = pipeline.call(1).await;
        assert_eq!(result, (1, 2, "1 is the number!".to_string(), true));
    }

    #[tokio::test]
    async fn test_try_parallel_chain_compile_check() {
        let chain = pipeline::new().chain(
            Parallel::new(
                map(|x: i32| Ok::<_, String>(x + 1)),
                Parallel::new(
                    map(|x: i32| Ok::<_, String>(x * 3)),
                    Parallel::new(
                        map(|x: i32| Err::<i32, _>(format!("{} is the number!", x))),
                        map(|x: i32| Ok::<_, String>(x == 1)),
                    ),
                ),
            )
            .map_ok(|(r1, (r2, (r3, r4)))| (r1, r2, r3, r4)),
        );

        let response = chain.call(1).await;
        assert_eq!(response, Err("1 is the number!".to_string()));
    }

    #[tokio::test]
    async fn test_try_parallel_macro_ok() {
        let op2 = map(|x: i32| Ok::<_, String>(x * 2));

        let pipeline = try_parallel!(
            map(|x: i32| Ok::<_, String>(x)),
            op2,
            map(|x: i32| Ok::<_, String>(format!("{} is the number!", x))),
            map(|x: i32| Ok::<_, String>(x == 1))
        );

        let result = pipeline.try_call(1).await;
        assert_eq!(result, Ok((1, 2, "1 is the number!".to_string(), true)));
    }

    #[tokio::test]
    async fn test_try_parallel_macro_err() {
        let op2 = map(|x: i32| Ok::<_, String>(x * 2));

        let pipeline = try_parallel!(
            map(|x: i32| Ok::<_, String>(x)),
            op2,
            map(|x: i32| Err::<i32, _>(format!("{} is the number!", x))),
            map(|x: i32| Ok::<_, String>(x == 1))
        );

        let result = pipeline.try_call(1).await;
        assert_eq!(result, Err("1 is the number!".to_string()));
    }
}