hans 0.1.0

Task orchestrator.
Documentation
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
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
use std::{future::Future, marker::PhantomData, pin::Pin, time::Duration};

use ::tokio::time::sleep;
use anyhow::Result;
use chrono::{DateTime, Utc};

/// A connector to interract with a provider.
#[cfg_attr(test, mockall::automock)]
pub trait Executor: Send + Sync {}

/// An orchestrator.
pub struct Orchestrator<EXEC: Executor> {
    exec: EXEC,
    delay: Duration,
}

impl<EXEC: Executor> Orchestrator<EXEC> {
    /// Creates an orchestrator.
    pub fn new(exec: EXEC) -> Self {
        Self {
            exec,
            delay: Duration::from_secs(5),
        }
    }

    /// Orchestrates a task chain until its completion.
    ///
    /// You can configure a delay between two loops execution with
    /// [`Self::with_delay`]. By default, the delay is set to 5 seconds.
    ///
    /// Returns the status of the task chain.
    /// It fails if the executor failed.
    pub async fn orchestrate<TASK: Task<EXEC>>(
        &self,
        chain: &TaskChain<EXEC, TASK>,
    ) -> Result<TaskChainStatus> {
        let mut status = self.orchestrate_once(chain).await?;
        while !status.is_finished() {
            sleep(self.delay).await;
            status = self.orchestrate_once(chain).await?;
        }
        Ok(status)
    }

    /// Orchestrates a task chain only once.
    ///
    /// Returns the status of the task chain.
    /// It fails if the executor failed.
    pub fn orchestrate_once<'a, TASK: Task<EXEC>>(
        &'a self,
        chain: &'a TaskChain<EXEC, TASK>,
    ) -> Pin<Box<dyn Future<Output = Result<TaskChainStatus>> + 'a>> {
        Box::pin(async {
            let mut finished = 0;
            let mut succeeded = 0;
            for task in &chain.tasks {
                let status = task.status(&self.exec).await?;
                self.handle_status(&status, task, &mut finished, &mut succeeded)
                    .await?;
            }
            if finished == chain.tasks.len() {
                if succeeded == finished {
                    if let Some(next) = &chain.next {
                        self.orchestrate_once(next.as_ref()).await
                    } else {
                        Ok(TaskChainStatus::Succeeded)
                    }
                } else {
                    Ok(TaskChainStatus::Failed)
                }
            } else {
                Ok(TaskChainStatus::Running)
            }
        })
    }

    /// Sets the delay used between two loops of orchestration.
    pub fn with_delay(mut self, delay: Duration) -> Self {
        self.delay = delay;
        self
    }

    fn handle_status<'a, TASK: Task<EXEC>>(
        &'a self,
        status: &'a TaskStatus,
        task: &'a TASK,
        finished: &'a mut usize,
        succeeded: &'a mut usize,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + 'a>> {
        Box::pin(async move {
            match status {
                TaskStatus::Failed { .. } => {
                    if !task.is_deleted(&self.exec).await? {
                        task.delete(&self.exec).await?;
                    }
                    *finished += 1;
                }
                TaskStatus::Succeeded { .. } => {
                    if !task.is_deleted(&self.exec).await? {
                        task.delete(&self.exec).await?;
                    }
                    *finished += 1;
                    *succeeded += 1;
                }
                TaskStatus::Pending => {
                    let status = task.start(&self.exec).await?;
                    self.handle_status(&status, task, finished, succeeded)
                        .await?;
                }
                _ => {}
            }
            Ok(())
        })
    }
}

/// A task.
#[cfg_attr(test, mockall::automock)]
pub trait Task<EXEC: Executor> {
    /// Deletes this task.
    ///
    /// It fails if the executor failed.
    fn delete(&self, exec: &EXEC) -> impl Future<Output = Result<()>>;

    /// Returns `true` if this task was deleted, `false` otherwise.
    ///
    /// It fails if the executor failed.
    fn is_deleted(&self, exec: &EXEC) -> impl Future<Output = Result<bool>>;

    /// Starts this task.
    ///
    /// Returns the task status.
    /// It fails if the executor failed.
    fn start(&self, exec: &EXEC) -> impl Future<Output = Result<TaskStatus>>;

    /// Returns the status of this task.
    ///
    /// It fails if the executor failed.
    fn status(&self, exec: &EXEC) -> impl Future<Output = Result<TaskStatus>>;
}

/// A task chain.
///
/// It's composed by node.
/// Each node has tasks that can be executed in parallel.
/// If all tasks of the node are succeeded, the next node is started.
///
/// ![task-chain](https://raw.githubusercontent.com/leroyguillaume/hans/main/assets/task-chain.svg)
pub struct TaskChain<EXEC: Executor, TASK: Task<EXEC>> {
    next: Option<Box<TaskChain<EXEC, TASK>>>,
    tasks: Vec<TASK>,
    _exec: PhantomData<EXEC>,
}

impl<EXEC: Executor, TASK: Task<EXEC>> TaskChain<EXEC, TASK> {
    /// Creates a task chain builder.
    ///
    /// It's an alias for [TaskChainBuilder::new].
    ///
    /// - `tasks`: the tasks of the first node of the chain.
    pub fn builder<TASKS: IntoIterator<Item = TASK>>(tasks: TASKS) -> TaskChainBuilder<EXEC, TASK> {
        TaskChainBuilder::new(tasks)
    }
}

/// A task chain builder.
pub struct TaskChainBuilder<EXEC: Executor, TASK: Task<EXEC>> {
    parent: Option<Box<TaskChainBuilder<EXEC, TASK>>>,
    tasks: Vec<TASK>,
    _exec: PhantomData<EXEC>,
}

impl<EXEC: Executor, TASK: Task<EXEC>> TaskChainBuilder<EXEC, TASK> {
    /// Creates a task chain builder.
    ///
    /// - `tasks`: the tasks of the first node of the chain.
    pub fn new<TASKS: IntoIterator<Item = TASK>>(tasks: TASKS) -> Self {
        Self {
            parent: None,
            tasks: tasks.into_iter().collect(),
            _exec: PhantomData,
        }
    }

    /// Buils the task chain.
    pub fn build(self) -> TaskChain<EXEC, TASK> {
        self.build_recursively(None)
    }

    /// Creates a new node that depends of the last one.
    ///
    /// - `tasks`: the tasks of the new node of the chain.
    pub fn then<TASKS: IntoIterator<Item = TASK>>(self, tasks: TASKS) -> Self {
        Self {
            parent: Some(Box::new(self)),
            tasks: tasks.into_iter().collect(),
            _exec: PhantomData,
        }
    }

    fn build_recursively(self, next: Option<TaskChain<EXEC, TASK>>) -> TaskChain<EXEC, TASK> {
        let chain = TaskChain {
            next: next.map(Box::new),
            tasks: self.tasks,
            _exec: PhantomData,
        };
        if let Some(parent) = self.parent {
            parent.build_recursively(Some(chain))
        } else {
            chain
        }
    }
}

/// A status of a task chain.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum TaskChainStatus {
    /// The task chain was failed.
    Failed,
    /// The task chain is running.
    Running,
    /// The task chain was succeeded.
    Succeeded,
}

impl TaskChainStatus {
    /// Returns `true` if this task status is `Succeeded` or `Failed`, `false` otherwise.
    pub fn is_finished(&self) -> bool {
        matches!(self, TaskChainStatus::Failed | TaskChainStatus::Succeeded)
    }
}

/// A status for a task.
///
/// ![task-status](https://raw.githubusercontent.com/leroyguillaume/hans/main/assets/task-status.svg)
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum TaskStatus {
    /// The task was failed.
    Failed {
        finished_at: DateTime<Utc>,
        started_at: DateTime<Utc>,
    },
    /// The task is waiting for its dependencies.
    Pending,
    /// The task is waiting for be started.
    Provisioning,
    /// The task is running.
    Running { started_at: DateTime<Utc> },
    /// The task was succeeded.
    Succeeded {
        finished_at: DateTime<Utc>,
        started_at: DateTime<Utc>,
    },
}

pub mod tokio;

#[cfg(test)]
mod test {
    use chrono::{Duration, Utc};

    use super::{MockExecutor, MockTask, Orchestrator, TaskChain, TaskChainStatus, TaskStatus};

    mod orchestrator {
        use super::*;

        mod orchestrate_once {
            use super::*;

            #[tokio::test]
            async fn start_a_b() {
                let mut a = MockTask::new();
                a.expect_start()
                    .times(1)
                    .returning(move |_| Box::pin(async move { Ok(TaskStatus::Provisioning) }));
                a.expect_status()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(TaskStatus::Pending) }));
                let mut b = MockTask::new();
                b.expect_start()
                    .times(1)
                    .returning(move |_| Box::pin(async move { Ok(TaskStatus::Provisioning) }));
                b.expect_status()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(TaskStatus::Pending) }));
                let c = MockTask::new();
                let chain = TaskChain::builder([a, b]).then([c]).build();
                let orch = Orchestrator::new(MockExecutor::new());
                let status = orch
                    .orchestrate_once(&chain)
                    .await
                    .expect("failed to orchestrate");
                assert_eq!(status, TaskChainStatus::Running);
            }

            #[tokio::test]
            async fn a_b_succeeded_instantly() {
                let mut a = MockTask::new();
                a.expect_delete()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(()) }));
                a.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(false) }));
                a.expect_start().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Succeeded {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                a.expect_status()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(TaskStatus::Pending) }));
                let mut b = MockTask::new();
                b.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(true) }));
                b.expect_start().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Succeeded {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                b.expect_status()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(TaskStatus::Pending) }));
                let mut c = MockTask::new();
                c.expect_start()
                    .times(1)
                    .returning(move |_| Box::pin(async move { Ok(TaskStatus::Provisioning) }));
                c.expect_status()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(TaskStatus::Pending) }));
                let chain = TaskChain::builder([a, b]).then([c]).build();
                let orch = Orchestrator::new(MockExecutor::new());
                let status = orch
                    .orchestrate_once(&chain)
                    .await
                    .expect("failed to orchestrate");
                assert_eq!(status, TaskChainStatus::Running);
            }

            #[tokio::test]
            async fn a_failed_instantly_b_succeeded() {
                let mut a = MockTask::new();
                a.expect_delete()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(()) }));
                a.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(false) }));
                a.expect_start().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Failed {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                a.expect_status()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(TaskStatus::Pending) }));
                let mut b = MockTask::new();
                b.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(false) }));
                b.expect_status().times(1).returning(|_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Succeeded {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                b.expect_delete()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(()) }));
                let c = MockTask::new();
                let chain = TaskChain::builder([a, b]).then([c]).build();
                let orch = Orchestrator::new(MockExecutor::new());
                let status = orch
                    .orchestrate_once(&chain)
                    .await
                    .expect("failed to orchestrate");
                assert_eq!(status, TaskChainStatus::Failed);
            }

            #[tokio::test]
            async fn a_still_running_start_b() {
                let mut a = MockTask::new();
                a.expect_status().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Running {
                            started_at: Utc::now(),
                        })
                    })
                });
                let mut b = MockTask::new();
                b.expect_start()
                    .times(1)
                    .returning(move |_| Box::pin(async move { Ok(TaskStatus::Provisioning) }));
                b.expect_status()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(TaskStatus::Pending) }));
                let c = MockTask::new();
                let chain = TaskChain::builder([a, b]).then([c]).build();
                let orch = Orchestrator::new(MockExecutor::new());
                let status = orch
                    .orchestrate_once(&chain)
                    .await
                    .expect("failed to orchestrate");
                assert_eq!(status, TaskChainStatus::Running);
            }

            #[tokio::test]
            async fn a_still_running_b_succeeded() {
                let mut a = MockTask::new();
                a.expect_status().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Running {
                            started_at: Utc::now(),
                        })
                    })
                });
                let mut b = MockTask::new();
                b.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(true) }));
                b.expect_status().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Succeeded {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                let c = MockTask::new();
                let chain = TaskChain::builder([a, b]).then([c]).build();
                let orch = Orchestrator::new(MockExecutor::new());
                let status = orch
                    .orchestrate_once(&chain)
                    .await
                    .expect("failed to orchestrate");
                assert_eq!(status, TaskChainStatus::Running);
            }

            #[tokio::test]
            async fn start_c() {
                let mut a = MockTask::new();
                a.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(true) }));
                a.expect_status().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Succeeded {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                let mut b = MockTask::new();
                b.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(true) }));
                b.expect_status().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Succeeded {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                let mut c = MockTask::new();
                c.expect_start()
                    .times(1)
                    .returning(move |_| Box::pin(async move { Ok(TaskStatus::Provisioning) }));
                c.expect_status()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(TaskStatus::Pending) }));
                let chain = TaskChain::builder([a, b]).then([c]).build();
                let orch = Orchestrator::new(MockExecutor::new());
                let status = orch
                    .orchestrate_once(&chain)
                    .await
                    .expect("failed to orchestrate");
                assert_eq!(status, TaskChainStatus::Running);
            }

            #[tokio::test]
            async fn a_failed() {
                let mut a = MockTask::new();
                a.expect_delete()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(()) }));
                a.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(false) }));
                a.expect_status().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Failed {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                let mut b = MockTask::new();
                b.expect_delete()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(()) }));
                b.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(false) }));
                b.expect_status().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Succeeded {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                let c = MockTask::new();
                let chain = TaskChain::builder([a, b]).then([c]).build();
                let orch = Orchestrator::new(MockExecutor::new());
                let status = orch
                    .orchestrate_once(&chain)
                    .await
                    .expect("failed to orchestrate");
                assert_eq!(status, TaskChainStatus::Failed);
            }

            #[tokio::test]
            async fn c_succeeded() {
                let mut a = MockTask::new();
                a.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(true) }));
                a.expect_status().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Succeeded {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                let mut b = MockTask::new();
                b.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(true) }));
                b.expect_status().times(1).returning(move |_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Succeeded {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                let mut c = MockTask::new();
                c.expect_delete()
                    .times(1)
                    .returning(|_| Box::pin(async move { Ok(()) }));
                c.expect_is_deleted()
                    .times(1)
                    .returning(|_| Box::pin(async { Ok(false) }));
                c.expect_status().times(1).returning(|_| {
                    Box::pin(async move {
                        Ok(TaskStatus::Succeeded {
                            finished_at: Utc::now(),
                            started_at: Utc::now() - Duration::seconds(5),
                        })
                    })
                });
                let chain = TaskChain::builder([a, b]).then([c]).build();
                let orch = Orchestrator::new(MockExecutor::new());
                let status = orch
                    .orchestrate_once(&chain)
                    .await
                    .expect("failed to orchestrate");
                assert_eq!(status, TaskChainStatus::Succeeded);
            }
        }
    }
}