forked from serverlessworkflow/sdk-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask.rs
2561 lines (2175 loc) · 84.2 KB
/
task.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
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
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
use crate::services::authentication::*;
use crate::services::timeout::*;
use serde_json::Value;
use serverless_workflow_core::models::duration::*;
use serverless_workflow_core::models::error::*;
use serverless_workflow_core::models::event::*;
use serverless_workflow_core::models::input::*;
use serverless_workflow_core::models::map::*;
use serverless_workflow_core::models::output::*;
use serverless_workflow_core::models::resource::*;
use serverless_workflow_core::models::retry::*;
use serverless_workflow_core::models::schema::*;
use serverless_workflow_core::models::task::*;
use serverless_workflow_core::models::timeout::*;
use std::collections::HashMap;
/// Represents the service used to build TaskDefinitions
pub struct GenericTaskDefinitionBuilder{
builder: Option<TaskDefinitionBuilder>
}
impl GenericTaskDefinitionBuilder{
/// Initializes a new GenericTaskDefinitionBuilder
pub fn new() -> Self{
Self{
builder: None
}
}
/// Configures the task to call the specified function
pub fn call(&mut self, function: &str) -> &mut CalltaskDefinitionBuilder{
let builder = CalltaskDefinitionBuilder::new(function);
self.builder = Some(TaskDefinitionBuilder::Call(builder));
if let Some(TaskDefinitionBuilder::Call(ref mut builder)) = self.builder{
builder
}
else {
unreachable!("Builder should always be set to Call");
}
}
/// Configures the task to perform subtasks sequentially
pub fn do_(&mut self) -> &mut DoTaskDefinitionBuilder{
let builder = DoTaskDefinitionBuilder::new();
self.builder = Some(TaskDefinitionBuilder::Do(builder));
if let Some(TaskDefinitionBuilder::Do(ref mut builder)) = self.builder{
builder
}
else {
unreachable!("Builder should always be set to Do");
}
}
/// Configures the task to perform subtasks sequentially
pub fn emit<F>(&mut self, setup: F) -> &mut EmitTaskDefinitionBuilder
where F: FnOnce(&mut EventDefinitionBuilder){
let mut event_builder: EventDefinitionBuilder = EventDefinitionBuilder::new();
setup(&mut event_builder);
let event = event_builder.build();
let builder = EmitTaskDefinitionBuilder::new(event);
self.builder = Some(TaskDefinitionBuilder::Emit(builder));
if let Some(TaskDefinitionBuilder::Emit(ref mut builder)) = self.builder{
builder
}
else {
unreachable!("Builder should always be set to Emit");
}
}
/// Configures the task to iterate over a collection and perform a task for each of the items it contains
pub fn for_(&mut self) -> &mut ForTaskDefinitionBuilder{
let builder = ForTaskDefinitionBuilder::new();
self.builder = Some(TaskDefinitionBuilder::For(builder));
if let Some(TaskDefinitionBuilder::For(ref mut builder)) = self.builder{
builder
}
else {
unreachable!("Builder should always be set to For");
}
}
/// Configures the task to execute branches concurrently
pub fn fork(&mut self) -> &mut ForkTaskDefinitionBuilder{
let builder = ForkTaskDefinitionBuilder::new();
self.builder = Some(TaskDefinitionBuilder::Fork(builder));
if let Some(TaskDefinitionBuilder::Fork(ref mut builder)) = self.builder{
builder
}
else {
unreachable!("Builder should always be set to Fork");
}
}
/// Configures the task to listen for events
pub fn listen(&mut self) -> &mut ListenTaskDefinitionBuilder{
let builder = ListenTaskDefinitionBuilder::new();
self.builder = Some(TaskDefinitionBuilder::Listen(builder));
if let Some(TaskDefinitionBuilder::Listen(ref mut builder)) = self.builder{
builder
}
else {
unreachable!("Builder should always be set to Listen");
}
}
/// Configures the task to raise the specified error
pub fn raise(&mut self) -> &mut RaiseTaskDefinitionBuilder{
let builder = RaiseTaskDefinitionBuilder::new();
self.builder = Some(TaskDefinitionBuilder::Raise(builder));
if let Some(TaskDefinitionBuilder::Raise(ref mut builder)) = self.builder{
builder
}
else {
unreachable!("Builder should always be set to Raise");
}
}
/// Configures the task to run a process
pub fn run(&mut self) -> &mut RunTaskDefinitionBuilder{
let builder = RunTaskDefinitionBuilder::new();
self.builder = Some(TaskDefinitionBuilder::Run(builder));
if let Some(TaskDefinitionBuilder::Run(ref mut builder)) = self.builder{
builder
}
else {
unreachable!("Builder should always be set to Run");
}
}
/// Configures the task to set variables
pub fn set(&mut self) -> &mut SetTaskDefinitionBuilder{
let builder = SetTaskDefinitionBuilder::new();
self.builder = Some(TaskDefinitionBuilder::Set(builder));
if let Some(TaskDefinitionBuilder::Set(ref mut builder)) = self.builder{
builder
}
else {
unreachable!("Builder should always be set to Set");
}
}
/// Configures the task to branch the flow based on defined conditions
pub fn switch(&mut self) -> &mut SwitchTaskDefinitionBuilder{
let builder = SwitchTaskDefinitionBuilder::new();
self.builder = Some(TaskDefinitionBuilder::Switch(builder));
if let Some(TaskDefinitionBuilder::Switch(ref mut builder)) = self.builder{
builder
}
else{
unreachable!("Builder should always be set to Switch");
}
}
/// Configures the task to try executing a specific task, and handle potential errors
pub fn try_(&mut self) -> &mut TryTaskDefinitionBuilder{
let builder = TryTaskDefinitionBuilder::new();
self.builder = Some(TaskDefinitionBuilder::Try(builder));
if let Some(TaskDefinitionBuilder::Try(ref mut builder)) = self.builder{
builder
}
else{
unreachable!("Builder should always be set to Try");
}
}
/// Configures the task to wait a defined amount of time
pub fn wait(&mut self, duration: OneOfDurationOrIso8601Expression) -> &mut WaitTaskDefinitionBuilder{
let builder = WaitTaskDefinitionBuilder::new(duration);
self.builder = Some(TaskDefinitionBuilder::Wait(builder));
if let Some(TaskDefinitionBuilder::Wait(ref mut builder)) = self.builder{
builder
}
else {
unreachable!("Builder should always be set to Wait");
}
}
/// Builds the configured task
pub fn build(self) -> TaskDefinition{
if let Some(builder) = self.builder {
match builder {
TaskDefinitionBuilder::Call(builder) => builder.build(),
TaskDefinitionBuilder::Do(builder) => builder.build(),
TaskDefinitionBuilder::Emit(builder) => builder.build(),
TaskDefinitionBuilder::For(builder) => builder.build(),
TaskDefinitionBuilder::Fork(builder) => builder.build(),
TaskDefinitionBuilder::Listen(builder) => builder.build(),
TaskDefinitionBuilder::Raise(builder) => builder.build(),
TaskDefinitionBuilder::Run(builder) => builder.build(),
TaskDefinitionBuilder::Set(builder) => builder.build(),
TaskDefinitionBuilder::Switch(builder) => builder.build(),
TaskDefinitionBuilder::Try(builder) => builder.build(),
TaskDefinitionBuilder::Wait(builder) => builder.build()
}
}
else {
panic!("The task must be configured");
}
}
}
/// Enumerates all supported task definition builders
pub enum TaskDefinitionBuilder{
Call(CalltaskDefinitionBuilder),
Do(DoTaskDefinitionBuilder),
Emit(EmitTaskDefinitionBuilder),
For(ForTaskDefinitionBuilder),
Fork(ForkTaskDefinitionBuilder),
Listen(ListenTaskDefinitionBuilder),
Raise(RaiseTaskDefinitionBuilder),
Run(RunTaskDefinitionBuilder),
Set(SetTaskDefinitionBuilder),
Switch(SwitchTaskDefinitionBuilder),
Try(TryTaskDefinitionBuilder),
Wait(WaitTaskDefinitionBuilder)
}
/// Defines functionnality common to all TaskDefinitionBuilder implementations
pub trait TaskDefinitionBuilderBase {
/// Configures the task to build to run only if the specified condition matches
fn if_(&mut self, condition: &str) -> &mut Self;
/// Sets the task's timeout
fn with_timeout_reference(&mut self, reference: &str) -> &mut Self;
/// Sets the task's timeout
fn with_timeout<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut TimeoutDefinitionBuilder);
/// Configures the task's input
fn with_input<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut InputDataModelDefinitionBuilder);
/// Configures the task's output
fn with_output<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder);
/// Configures the task's export
fn with_export<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder);
/// Configures the task to build to then execute the specified flow directive
fn then(&mut self, directive: &str) -> &mut Self;
/// Builds the configured TaskDefinition
fn build(self) -> TaskDefinition;
}
/// Represents the service used to build CallTaskDefinitions
pub struct CalltaskDefinitionBuilder{
task: CallTaskDefinition
}
impl CalltaskDefinitionBuilder {
/// Initializes a new CallTaskDefinitionBuilder
pub fn new(function: &str) -> Self{
Self { task: CallTaskDefinition::new(function, None, None) }
}
/// Adds a new argument to call the function with
pub fn with(&mut self, name: &str, value: Value) -> &mut Self{
if self.task.with.is_none(){
self.task.with = Some(HashMap::new());
}
if let Some(with) = &mut self.task.with {
with.insert(name.to_string(), value);
}
self
}
/// Sets the arguments to call the function with
pub fn with_arguments(&mut self, arguments: HashMap<String, Value>) -> &mut Self{
self.task.with = Some(arguments);
self
}
}
impl TaskDefinitionBuilderBase for CalltaskDefinitionBuilder{
/// Configures the task to build to run only if the specified condition matches
fn if_(&mut self, condition: &str) -> &mut Self{
self.task.common.if_ = Some(condition.to_string());
self
}
/// Sets the task's timeout
fn with_timeout_reference(&mut self, reference: &str) -> &mut Self{
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Reference(reference.to_string()));
self
}
/// Sets the task's timeout
fn with_timeout<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut TimeoutDefinitionBuilder){
let mut builder = TimeoutDefinitionBuilder::new();
setup(&mut builder);
let timeout = builder.build();
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Timeout(timeout));
self
}
/// Configures the task's input
fn with_input<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut InputDataModelDefinitionBuilder){
let mut builder = InputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.input = Some(builder.build());
self
}
/// Configures the task's output
fn with_output<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.output = Some(builder.build());
self
}
/// Configures the task's export
fn with_export<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.export = Some(builder.build());
self
}
/// Configures the task to build to then execute the specified flow directive
fn then(&mut self, directive: &str) -> &mut Self{
self.task.common.then = Some(directive.to_string());
self
}
/// Builds the configures CallTaskDefinition
fn build(self) -> TaskDefinition{
TaskDefinition::Call(self.task)
}
}
/// Represents the service used to build DoTaskDefinitions
pub struct DoTaskDefinitionBuilder{
task: DoTaskDefinition
}
impl DoTaskDefinitionBuilder {
/// Initializes a new DoTaskDefinitionBuilder
pub fn new() -> Self{
Self { task: DoTaskDefinition::default() }
}
/// Adds a new task with the specified name to the task
pub fn do_<F>(&mut self, name: &str, setup: F) -> &mut Self
where F: FnOnce(&mut GenericTaskDefinitionBuilder){
let mut builder = GenericTaskDefinitionBuilder::new();
setup(&mut builder);
let task = builder.build();
self.task.do_.add(name.to_string(), task);
self
}
}
impl TaskDefinitionBuilderBase for DoTaskDefinitionBuilder{
/// Configures the task to build to run only if the specified condition matches
fn if_(&mut self, condition: &str) -> &mut Self{
self.task.common.if_ = Some(condition.to_string());
self
}
/// Sets the task's timeout
fn with_timeout_reference(&mut self, reference: &str) -> &mut Self{
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Reference(reference.to_string()));
self
}
/// Sets the task's timeout
fn with_timeout<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut TimeoutDefinitionBuilder){
let mut builder = TimeoutDefinitionBuilder::new();
setup(&mut builder);
let timeout = builder.build();
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Timeout(timeout));
self
}
/// Configures the task's input
fn with_input<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut InputDataModelDefinitionBuilder){
let mut builder = InputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.input = Some(builder.build());
self
}
/// Configures the task's output
fn with_output<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.output = Some(builder.build());
self
}
/// Configures the task's export
fn with_export<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.export = Some(builder.build());
self
}
/// Configures the task to build to then execute the specified flow directive
fn then(&mut self, directive: &str) -> &mut Self{
self.task.common.then = Some(directive.to_string());
self
}
/// Builds the configures DoTaskDefinition
fn build(self) -> TaskDefinition{
TaskDefinition::Do(self.task)
}
}
/// Represents the service used to build EmitTaskDefinitions
pub struct EmitTaskDefinitionBuilder{
task: EmitTaskDefinition
}
impl EmitTaskDefinitionBuilder {
/// Initializes a new EmitTaskDefinitionBuilder
pub fn new(event: EventDefinition) -> Self{
Self { task: EmitTaskDefinition::new(EventEmissionDefinition::new(event)) }
}
}
impl TaskDefinitionBuilderBase for EmitTaskDefinitionBuilder{
/// Configures the task to build to run only if the specified condition matches
fn if_(&mut self, condition: &str) -> &mut Self{
self.task.common.if_ = Some(condition.to_string());
self
}
/// Sets the task's timeout
fn with_timeout_reference(&mut self, reference: &str) -> &mut Self{
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Reference(reference.to_string()));
self
}
/// Sets the task's timeout
fn with_timeout<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut TimeoutDefinitionBuilder){
let mut builder = TimeoutDefinitionBuilder::new();
setup(&mut builder);
let timeout = builder.build();
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Timeout(timeout));
self
}
/// Configures the task's input
fn with_input<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut InputDataModelDefinitionBuilder){
let mut builder = InputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.input = Some(builder.build());
self
}
/// Configures the task's output
fn with_output<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.output = Some(builder.build());
self
}
/// Configures the task's export
fn with_export<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.export = Some(builder.build());
self
}
/// Configures the task to build to then execute the specified flow directive
fn then(&mut self, directive: &str) -> &mut Self{
self.task.common.then = Some(directive.to_string());
self
}
/// Builds the configures DoTaskDefinition
fn build(self) -> TaskDefinition{
TaskDefinition::Emit(self.task)
}
}
/// Represents the service used to build ForTaskDefinitions
pub struct ForTaskDefinitionBuilder{
task: ForTaskDefinition
}
impl ForTaskDefinitionBuilder{
/// Initializes a new ForTaskDefinitionBuilder
pub fn new() -> Self{
Self { task:ForTaskDefinition::default() }
}
/// Sets the name of the variable to store the iteration item to
pub fn each(&mut self, variable_name: &str) -> &mut Self{
self.task.for_.each = variable_name.to_string();
self
}
/// Sets the runtime expression used to resolve the collection to iterate
pub fn in_(&mut self, expression: &str) -> &mut Self{
self.task.for_.in_ = expression.to_string();
self
}
/// Sets the name of the variable to store the iteration index to
pub fn at(&mut self, variable_name: &str) -> &mut Self{
self.task.for_.at = Some(variable_name.to_string());
self
}
/// Configures the task to execute the specified tasks for each item in the specified collection
pub fn do_<F>(&mut self, name: &str, setup: F) -> &mut Self
where F: FnOnce(&mut GenericTaskDefinitionBuilder){
let mut builder = GenericTaskDefinitionBuilder::new();
setup(&mut builder);
let task = builder.build();
self.task.do_.add(name.to_string(), task);
self
}
}
impl TaskDefinitionBuilderBase for ForTaskDefinitionBuilder{
/// Configures the task to build to run only if the specified condition matches
fn if_(&mut self, condition: &str) -> &mut Self{
self.task.common.if_ = Some(condition.to_string());
self
}
/// Sets the task's timeout
fn with_timeout_reference(&mut self, reference: &str) -> &mut Self{
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Reference(reference.to_string()));
self
}
/// Sets the task's timeout
fn with_timeout<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut TimeoutDefinitionBuilder){
let mut builder = TimeoutDefinitionBuilder::new();
setup(&mut builder);
let timeout = builder.build();
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Timeout(timeout));
self
}
/// Configures the task's input
fn with_input<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut InputDataModelDefinitionBuilder){
let mut builder = InputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.input = Some(builder.build());
self
}
/// Configures the task's output
fn with_output<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.output = Some(builder.build());
self
}
/// Configures the task's export
fn with_export<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.export = Some(builder.build());
self
}
/// Configures the task to build to then execute the specified flow directive
fn then(&mut self, directive: &str) -> &mut Self{
self.task.common.then = Some(directive.to_string());
self
}
/// Builds the configured ForTaskDefinition
fn build(self) -> TaskDefinition{
TaskDefinition::For(self.task)
}
}
/// Represents the service used to build ForkTaskDefinitions
pub struct ForkTaskDefinitionBuilder{
task: ForkTaskDefinition
}
impl ForkTaskDefinitionBuilder{
/// Initializes a new ForkTaskDefinitions
pub fn new() -> Self{
Self { task:ForkTaskDefinition::default() }
}
/// Configures the tasks to perform concurrently
pub fn branch<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut TaskDefinitionMapBuilder){
let mut builder = TaskDefinitionMapBuilder::new();
setup(&mut builder);
let branches = builder.build();
self.task.fork.branches = branches;
self
}
}
impl TaskDefinitionBuilderBase for ForkTaskDefinitionBuilder{
/// Configures the task to build to run only if the specified condition matches
fn if_(&mut self, condition: &str) -> &mut Self{
self.task.common.if_ = Some(condition.to_string());
self
}
/// Sets the task's timeout
fn with_timeout_reference(&mut self, reference: &str) -> &mut Self{
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Reference(reference.to_string()));
self
}
/// Sets the task's timeout
fn with_timeout<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut TimeoutDefinitionBuilder){
let mut builder = TimeoutDefinitionBuilder::new();
setup(&mut builder);
let timeout = builder.build();
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Timeout(timeout));
self
}
/// Configures the task's input
fn with_input<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut InputDataModelDefinitionBuilder){
let mut builder = InputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.input = Some(builder.build());
self
}
/// Configures the task's output
fn with_output<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.output = Some(builder.build());
self
}
/// Configures the task's export
fn with_export<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.export = Some(builder.build());
self
}
/// Configures the task to build to then execute the specified flow directive
fn then(&mut self, directive: &str) -> &mut Self{
self.task.common.then = Some(directive.to_string());
self
}
/// Builds the configured ForkTaskDefinition
fn build(self) -> TaskDefinition{
TaskDefinition::Fork(self.task)
}
}
/// Represents the service used to build ListenTaskDefinitions
pub struct ListenTaskDefinitionBuilder{
task: ListenTaskDefinition
}
impl ListenTaskDefinitionBuilder{
/// Initializes a new ListenTaskDefinitionBuilder
pub fn new() -> Self{
Self { task:ListenTaskDefinition::default() }
}
/// Configures the task to listen to the specified event(s)
pub fn to<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut EventConsumptionStrategyDefinitionBuilder){
let mut builder = EventConsumptionStrategyDefinitionBuilder::new();
setup(&mut builder);
let consumption_strategy = builder.build();
self.task.listen.to = consumption_strategy;
self
}
/// Configures the iterator used to process the consumed events
pub fn foreach<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut SubscriptionIteratorDefinitionBuilder){
let mut builder = SubscriptionIteratorDefinitionBuilder::new();
setup(&mut builder);
self.task.foreach = Some(builder.build());
self
}
}
impl TaskDefinitionBuilderBase for ListenTaskDefinitionBuilder{
/// Configures the task to build to run only if the specified condition matches
fn if_(&mut self, condition: &str) -> &mut Self{
self.task.common.if_ = Some(condition.to_string());
self
}
/// Sets the task's timeout
fn with_timeout_reference(&mut self, reference: &str) -> &mut Self{
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Reference(reference.to_string()));
self
}
/// Sets the task's timeout
fn with_timeout<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut TimeoutDefinitionBuilder){
let mut builder = TimeoutDefinitionBuilder::new();
setup(&mut builder);
let timeout = builder.build();
self.task.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Timeout(timeout));
self
}
/// Configures the task's input
fn with_input<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut InputDataModelDefinitionBuilder){
let mut builder = InputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.input = Some(builder.build());
self
}
/// Configures the task's output
fn with_output<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.output = Some(builder.build());
self
}
/// Configures the task's export
fn with_export<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.task.common.export = Some(builder.build());
self
}
/// Configures the task to build to then execute the specified flow directive
fn then(&mut self, directive: &str) -> &mut Self{
self.task.common.then = Some(directive.to_string());
self
}
/// Builds the configured ListenTaskDefinition
fn build(self) -> TaskDefinition{
TaskDefinition::Listen(self.task)
}
}
/// Represents the service used to build RaiseTaskDefinitions
pub struct RaiseTaskDefinitionBuilder{
common: TaskDefinitionFields,
builder: Option<ErrorDefinitionBuilder>,
reference: Option<String>
}
impl RaiseTaskDefinitionBuilder{
/// Initializes a new RaiseTaskDefinitionBuilder
pub fn new() -> Self{
Self { common: TaskDefinitionFields::new(), builder: None, reference: None }
}
/// Sets the error to raise
pub fn error(&mut self) -> &mut ErrorDefinitionBuilder{
let builder = ErrorDefinitionBuilder::new();
self.builder = Some(builder);
if let Some(ref mut error_builder) = self.builder{
error_builder
}
else {
unreachable!("Builder should always be set to Error");
}
}
/// Sets a reference to the error to raise
pub fn referenced_error(&mut self, reference: &str){
self.reference = Some(reference.to_string());
}
}
impl TaskDefinitionBuilderBase for RaiseTaskDefinitionBuilder{
/// Configures the task to build to run only if the specified condition matches
fn if_(&mut self, condition: &str) -> &mut Self{
self.common.if_ = Some(condition.to_string());
self
}
/// Sets the task's timeout
fn with_timeout_reference(&mut self, reference: &str) -> &mut Self{
self.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Reference(reference.to_string()));
self
}
/// Sets the task's timeout
fn with_timeout<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut TimeoutDefinitionBuilder){
let mut builder = TimeoutDefinitionBuilder::new();
setup(&mut builder);
let timeout = builder.build();
self.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Timeout(timeout));
self
}
/// Configures the task's input
fn with_input<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut InputDataModelDefinitionBuilder){
let mut builder = InputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.common.input = Some(builder.build());
self
}
/// Configures the task's output
fn with_output<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.common.output = Some(builder.build());
self
}
/// Configures the task's export
fn with_export<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.common.export = Some(builder.build());
self
}
/// Configures the task to build to then execute the specified flow directive
fn then(&mut self, directive: &str) -> &mut Self{
self.common.then = Some(directive.to_string());
self
}
/// Builds the configured RaiseTaskDefinition
fn build(self) -> TaskDefinition{
let mut task = RaiseTaskDefinition::default();
if let Some(builder) = self.builder {
let error = builder.build();
task.raise = RaiseErrorDefinition::new(OneOfErrorDefinitionOrReference::Error(error));
}
else if let Some(reference) = self.reference{
task.raise = RaiseErrorDefinition::new(OneOfErrorDefinitionOrReference::Reference(reference));
}
else{
panic!("The error to raise must be configured");
}
task.common = self.common;
TaskDefinition::Raise(task)
}
}
/// Represents the service used to build RunTaskDefinitions
pub struct RunTaskDefinitionBuilder{
common: TaskDefinitionFields,
builder : Option<ProcessDefinitionBuilder>
}
impl RunTaskDefinitionBuilder{
/// Initializes a new RunTaskDefinitionBuilder
pub fn new() -> Self{
Self{ common: TaskDefinitionFields::new(), builder: None }
}
/// Configures the task to run the specified container
pub fn container(&mut self) -> &mut ContainerProcessDefinitionBuilder{
self.builder = Some(ProcessDefinitionBuilder::Container(ContainerProcessDefinitionBuilder::new()));
if let Some(ProcessDefinitionBuilder::Container(ref mut container_builder)) = self.builder {
container_builder
}
else {
unreachable!("Builder should always be set to Container");
}
}
/// Configures the task to run the specified script
pub fn script(&mut self) -> &mut ScriptProcessDefinitionBuilder{
self.builder = Some(ProcessDefinitionBuilder::Script(ScriptProcessDefinitionBuilder::new()));
if let Some(ProcessDefinitionBuilder::Script(ref mut script_builder)) = self.builder {
script_builder
}
else {
unreachable!("Builder should always be set to Script");
}
}
/// Configures the task to run the specified shell command
pub fn shell(&mut self) -> &mut ShellProcessDefinitionBuilder{
self.builder = Some(ProcessDefinitionBuilder::Shell(ShellProcessDefinitionBuilder::new()));
if let Some(ProcessDefinitionBuilder::Shell(ref mut shell_builder)) = self.builder {
shell_builder
}
else {
unreachable!("Builder should always be set to Shell");
}
}
/// Configures the task to run the specified workflow
pub fn workflow(&mut self) -> &mut WorkflowProcessDefinitionBuilder{
self.builder = Some(ProcessDefinitionBuilder::Workflow(WorkflowProcessDefinitionBuilder::new()));
if let Some(ProcessDefinitionBuilder::Workflow(ref mut workflow_builder)) = self.builder {
workflow_builder
}
else {
unreachable!("Builder should always be set to Workflow");
}
}
}
impl TaskDefinitionBuilderBase for RunTaskDefinitionBuilder{
/// Configures the task to build to run only if the specified condition matches
fn if_(&mut self, condition: &str) -> &mut Self{
self.common.if_ = Some(condition.to_string());
self
}
/// Sets the task's timeout
fn with_timeout_reference(&mut self, reference: &str) -> &mut Self{
self.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Reference(reference.to_string()));
self
}
/// Sets the task's timeout
fn with_timeout<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut TimeoutDefinitionBuilder){
let mut builder = TimeoutDefinitionBuilder::new();
setup(&mut builder);
let timeout = builder.build();
self.common.timeout = Some(OneOfTimeoutDefinitionOrReference::Timeout(timeout));
self
}
/// Configures the task's input
fn with_input<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut InputDataModelDefinitionBuilder){
let mut builder = InputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.common.input = Some(builder.build());
self
}
/// Configures the task's output
fn with_output<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){
let mut builder = OutputDataModelDefinitionBuilder::new();
setup(&mut builder);
self.common.output = Some(builder.build());
self
}
/// Configures the task's export
fn with_export<F>(&mut self, setup: F) -> &mut Self
where F: FnOnce(&mut OutputDataModelDefinitionBuilder){