rexecutor 0.1.0

A robust job processing library
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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
//! A robust job processing library for rust.
//!
//! # Setting up `Rexecutor`
//!
//! To create an instance of [`Rexecutor`] you will need to have an implementation of [`Backend`].
//! The only one provided in this crate is [`backend::memory::InMemoryBackend`] which is primarily
//! provided for testing purposes. Instead a backend should be used from one of the implementations
//! provided by other crates.
//!
//! # Creating executors
//!
//! Jobs are defined by creating a struct/enum and implementing `Executor` for it.
//!
//! ## Example defining an executor
//!
//! You can define and enqueue a job as follows:
//!
//! ```
//! use rexecutor::prelude::*;
//! use chrono::{Utc, TimeDelta};
//! use rexecutor::backend::memory::InMemoryBackend;
//! use rexecutor::assert_enqueued;
//! let backend = InMemoryBackend::new().paused();
//! Rexecutor::new(backend).set_global_backend().unwrap();
//! struct EmailJob;
//!
//! #[async_trait::async_trait]
//! impl Executor for EmailJob {
//!     type Data = String;
//!     type Metadata = String;
//!     const NAME: &'static str = "email_job";
//!     const MAX_ATTEMPTS: u16 = 2;
//!     async fn execute(job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//!         println!("{} running, with args: {}", Self::NAME, job.data);
//!         /// Do something important with an email
//!         ExecutionResult::Done
//!     }
//! }
//!
//! # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
//! let _ = EmailJob::builder()
//!     .with_data("bob.shuruncle@example.com".to_owned())
//!     .schedule_in(TimeDelta::hours(3))
//!     .enqueue()
//!     .await;
//!
//! assert_enqueued!(
//!     with_data: "bob.shuruncle@example.com".to_owned(),
//!     scheduled_after: Utc::now() + TimeDelta::minutes(170),
//!     scheduled_before: Utc::now() + TimeDelta::minutes(190),
//!     for_executor: EmailJob
//! );
//! # });
//! ```
//!
//! ## Unique jobs
//!
//! It is possible to ensure uniqueness of jobs based on certain criteria. This can be defined as
//! part of the implementation of `Executor` via [`Executor::UNIQUENESS_CRITERIA`] or when
//! inserting the job via [`job::builder::JobBuilder::unique`].
//!
//! For example to ensure that only one unique job is ran every five minutes it is possible to use
//! the following uniqueness criteria.
//!
//! ```
//! # use rexecutor::prelude::*;
//! # use chrono::{Utc, TimeDelta};
//! # use rexecutor::backend::memory::InMemoryBackend;
//! # use rexecutor::assert_enqueued;
//! # let backend = InMemoryBackend::new().paused();
//! # Rexecutor::new(backend).set_global_backend().unwrap();
//! struct UniqueJob;
//!
//! #[async_trait::async_trait]
//! impl Executor for UniqueJob {
//!     type Data = ();
//!     type Metadata = ();
//!     const NAME: &'static str = "unique_job";
//!     const MAX_ATTEMPTS: u16 = 1;
//!     const UNIQUENESS_CRITERIA: Option<UniquenessCriteria<'static>> = Some(
//!         UniquenessCriteria::by_executor()
//!             .and_within(TimeDelta::seconds(300))
//!             .on_conflict(Replace::priority().for_statuses(&JobStatus::ALL)),
//!     );
//!     async fn execute(job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//!         println!("{} running, with args: {:?}", Self::NAME, job.data);
//!         // Do something important
//!         ExecutionResult::Done
//!     }
//! }
//!
//! # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
//! let _ = UniqueJob::builder().enqueue().await;
//! let _ = UniqueJob::builder().enqueue().await;
//!
//! // Only one of jobs was enqueued
//! assert_enqueued!(
//!     1 job,
//!     scheduled_before: Utc::now(),
//!     for_executor: UniqueJob
//! );
//! # });
//! ```
//!
//! Additionally it is possible to specify what action should be taken when there is a conflicting
//! job. In the example above the priority is override. For more details of how to use uniqueness
//! see [`job::uniqueness_criteria::UniquenessCriteria`].
//!
//!
//! # Overriding [`Executor`] default values
//!
//! When defining an [`Executor`] you specify the maximum number of attempts via
//! [`Executor::MAX_ATTEMPTS`]. However, when inserting a job it is possible to override this value
//! by calling [`job::builder::JobBuilder::with_max_attempts`] (if not called the max attempts will be equal to
//! [`Executor::MAX_ATTEMPTS`]).
//!
//! Similarly, the executor can define a job uniqueness criteria via
//! [`Executor::UNIQUENESS_CRITERIA`]. However, using [`job::builder::JobBuilder::unique`] it is possible to
//! override this value for a specific job.
//!
//! # Setting up executors to run
//!
//! For each executor you would like to run [`Rexecutor::with_executor`] should be called. Being
//! explicit about this opens the possibility of having specific nodes in a cluster running as
//! worker nodes for certain enqueued jobs while other node not responsible for their execution.
//!
//! ## Example setting up executors
//!
//! ```
//! # use rexecutor::prelude::*;
//! # use std::str::FromStr;
//! # use chrono::TimeDelta;
//! # use rexecutor::backend::memory::InMemoryBackend;
//! # pub(crate) struct RefreshWorker;
//! # pub(crate) struct EmailScheduler;
//! # pub(crate) struct RegistrationWorker;
//! #
//! # #[async_trait::async_trait]
//! # impl Executor for RefreshWorker {
//! #     type Data = String;
//! #     type Metadata = String;
//! #     const NAME: &'static str = "refresh_worker";
//! #     const MAX_ATTEMPTS: u16 = 2;
//! #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//! #         ExecutionResult::Done
//! #     }
//! # }
//! # #[async_trait::async_trait]
//! # impl Executor for EmailScheduler {
//! #     type Data = String;
//! #     type Metadata = String;
//! #     const NAME: &'static str = "email_scheduler";
//! #     const MAX_ATTEMPTS: u16 = 2;
//! #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//! #         ExecutionResult::Done
//! #     }
//! # }
//! # #[async_trait::async_trait]
//! # impl Executor for RegistrationWorker {
//! #     type Data = String;
//! #     type Metadata = String;
//! #     const NAME: &'static str = "registration_worker";
//! #     const MAX_ATTEMPTS: u16 = 2;
//! #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//! #         ExecutionResult::Done
//! #     }
//! # }
//! # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
//! let backend = InMemoryBackend::new();
//! Rexecutor::new(backend)
//!     .with_executor::<RefreshWorker>()
//!     .with_executor::<EmailScheduler>()
//!     .with_executor::<RegistrationWorker>();
//! # });
//! ```
//!
//! # Enqueuing jobs
//!
//! Generally jobs will be enqueued using the [`job::builder::JobBuilder`] returned by [`Executor::builder`].
//!
//! When enqueuing jobs the data and metadata of the job can be specified. Additionally, the
//! default value of the [`Executor`] can be overriden.
//!
//! ## Overriding [`Executor`] default values
//!
//! When defining an [`Executor`] you specify the maximum number of attempts via
//! [`Executor::MAX_ATTEMPTS`]. However, when inserting a job it is possible to override this value
//! by calling [`job::builder::JobBuilder::with_max_attempts`] (if not called the max attempts will be equal to
//! [`Executor::MAX_ATTEMPTS`]).
//!
//! Similarly, the executor can define a job uniqueness criteria via
//! [`Executor::UNIQUENESS_CRITERIA`]. However, using [`job::builder::JobBuilder::unique`] it is possible to
//! override this value for a specific job.
//!
//! ## Example enqueuing a job
//!
//! ```
//! # use rexecutor::prelude::*;
//! # use std::sync::Arc;
//! # use chrono::{Utc, TimeDelta};
//! # use rexecutor::backend::memory::InMemoryBackend;
//! # use rexecutor::assert_enqueued;
//! # pub(crate) struct ExampleExecutor;
//! #
//! # #[async_trait::async_trait]
//! # impl Executor for ExampleExecutor {
//! #     type Data = String;
//! #     type Metadata = String;
//! #     const NAME: &'static str = "simple_executor";
//! #     const MAX_ATTEMPTS: u16 = 2;
//! #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//! #         ExecutionResult::Done
//! #     }
//! # }
//! # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
//! let backend = Arc::new(InMemoryBackend::new().paused());
//! Rexecutor::new(backend.clone()).set_global_backend().unwrap();
//!
//! ExampleExecutor::builder()
//!     .with_max_attempts(2)
//!     .with_tags(vec!["initial_job", "delayed"])
//!     .with_data("First job".into())
//!     .schedule_in(TimeDelta::hours(2))
//!     .enqueue_to_backend(&backend)
//!     .await
//!     .unwrap();
//!
//! assert_enqueued!(
//!     to: backend,
//!     with_data: "First job".to_owned(),
//!     tagged_with: ["initial_job", "delayed"],
//!     scheduled_after: Utc::now() + TimeDelta::minutes(110),
//!     scheduled_before: Utc::now() + TimeDelta::minutes(130),
//!     for_executor: ExampleExecutor
//! );
//! # });
//! ```
//!
//! # Compile time scheduling of cron jobs
//!
//! It can be useful to have jobs that run on a given schedule. Jobs like this can be setup using
//! either [`Rexecutor::with_cron_executor`] or [`Rexecutor::with_cron_executor_for_timezone`]. The
//! later is use to specify the specific timezone that the jobs should be scheduled to run in.
//!
//! ## Example setting up a UTC cron job
//!
//! To setup a cron jobs to run every day at midnight you can use the following code.
//!
//! ```
//! # use rexecutor::prelude::*;
//! # use rexecutor::backend::{Backend, memory::InMemoryBackend};
//! struct CronJob;
//! #[async_trait::async_trait]
//! impl Executor for CronJob {
//!     type Data = String;
//!     type Metadata = ();
//!     const NAME: &'static str = "cron_job";
//!     const MAX_ATTEMPTS: u16 = 1;
//!     async fn execute(job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//!         /// Do something important
//!         ExecutionResult::Done
//!     }
//! }
//! # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
//! let schedule = cron::Schedule::try_from("0 0 0 * * *").unwrap();
//!
//! let backend = InMemoryBackend::new();
//! Rexecutor::new(backend).with_cron_executor::<CronJob>(schedule, "important data".to_owned());
//! # });
//! ```
//!
//! # Pruning jobs
//!
//! After jobs have completed, been cancelled, or discarded it is useful to be able to clean up.
//! To setup the job pruner [`Rexecutor::with_job_pruner`] should be called passing in the given
//! [`PrunerConfig`].
//!
//! Given the different ways in which jobs can finish it is often useful to be able to have fine
//! grained control over how old jobs should be cleaned up. [`PrunerConfig`] enables such control.
//!
//! When constructing [`PrunerConfig`] a [`cron::Schedule`] is provided to specify when the pruner
//! should run.
//!
//! Depending on the load/throughput of the system the pruner can be scheduled to run anywhere
//! from once a year through to multiple times per hour.
//!
//! ## Example configuring the job pruner
//!
//! ```
//! # use rexecutor::prelude::*;
//! # use std::str::FromStr;
//! # use chrono::TimeDelta;
//! # use rexecutor::backend::memory::InMemoryBackend;
//! # pub(crate) struct RefreshWorker;
//! # pub(crate) struct EmailScheduler;
//! # pub(crate) struct RegistrationWorker;
//! #
//! # #[async_trait::async_trait]
//! # impl Executor for RefreshWorker {
//! #     type Data = String;
//! #     type Metadata = String;
//! #     const NAME: &'static str = "refresh_worker";
//! #     const MAX_ATTEMPTS: u16 = 2;
//! #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//! #         ExecutionResult::Done
//! #     }
//! # }
//! # #[async_trait::async_trait]
//! # impl Executor for EmailScheduler {
//! #     type Data = String;
//! #     type Metadata = String;
//! #     const NAME: &'static str = "email_scheduler";
//! #     const MAX_ATTEMPTS: u16 = 2;
//! #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//! #         ExecutionResult::Done
//! #     }
//! # }
//! # #[async_trait::async_trait]
//! # impl Executor for RegistrationWorker {
//! #     type Data = String;
//! #     type Metadata = String;
//! #     const NAME: &'static str = "registration_worker";
//! #     const MAX_ATTEMPTS: u16 = 2;
//! #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//! #         ExecutionResult::Done
//! #     }
//! # }
//! let config = PrunerConfig::new(cron::Schedule::from_str("0 0 * * * *").unwrap())
//!     .with_max_concurrency(Some(2))
//!     .with_pruner(
//!         Pruner::max_age(TimeDelta::days(31), JobStatus::Complete)
//!             .only::<RefreshWorker>()
//!             .and::<EmailScheduler>(),
//!     )
//!     .with_pruner(
//!         Pruner::max_length(200, JobStatus::Discarded)
//!             .except::<RefreshWorker>()
//!             .and::<EmailScheduler>(),
//!     );
//!
//! # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
//! let backend = InMemoryBackend::new();
//! Rexecutor::new(backend)
//!     .with_executor::<RefreshWorker>()
//!     .with_executor::<EmailScheduler>()
//!     .with_executor::<RegistrationWorker>()
//!     .with_job_pruner(config);
//! # });
//! ```
//!
//! # Shutting rexecutor down
//!
//! To avoid jobs getting killed mid way through their executions it is important to make use of
//! graceful shutdown. This can either explicitly be called using [`Rexecutor::graceful_shutdown`],
//! or via use of the [`DropGuard`] obtained via [`Rexecutor::drop_guard`].
//!
//! Using [`Rexecutor::graceful_shutdown`] or [`Rexecutor::drop_guard`] will ensure that all
//! currently executing jobs will be allowed time to complete before shutting rexecutor down.
//!
//! ## Example using the `DropGuard`
//!
//! ```
//! # use rexecutor::prelude::*;
//! # use std::str::FromStr;
//! # use chrono::TimeDelta;
//! # use rexecutor::backend::memory::InMemoryBackend;
//! # pub(crate) struct RefreshWorker;
//! # pub(crate) struct EmailScheduler;
//! # pub(crate) struct RegistrationWorker;
//! #
//! # #[async_trait::async_trait]
//! # impl Executor for RefreshWorker {
//! #     type Data = String;
//! #     type Metadata = String;
//! #     const NAME: &'static str = "refresh_worker";
//! #     const MAX_ATTEMPTS: u16 = 2;
//! #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//! #         ExecutionResult::Done
//! #     }
//! # }
//! # #[async_trait::async_trait]
//! # impl Executor for EmailScheduler {
//! #     type Data = String;
//! #     type Metadata = String;
//! #     const NAME: &'static str = "email_scheduler";
//! #     const MAX_ATTEMPTS: u16 = 2;
//! #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//! #         ExecutionResult::Done
//! #     }
//! # }
//! # #[async_trait::async_trait]
//! # impl Executor for RegistrationWorker {
//! #     type Data = String;
//! #     type Metadata = String;
//! #     const NAME: &'static str = "registration_worker";
//! #     const MAX_ATTEMPTS: u16 = 2;
//! #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
//! #         ExecutionResult::Done
//! #     }
//! # }
//! # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
//! let backend = InMemoryBackend::new();
//! // Note this must be given a name to ensure it is dropped at the end of the scope.
//! // See https://doc.rust-lang.org/book/ch18-03-pattern-syntax.html#ignoring-an-unused-variable-by-starting-its-name-with-_
//! let _guard = Rexecutor::new(backend)
//!     .with_executor::<RefreshWorker>()
//!     .with_executor::<EmailScheduler>()
//!     .with_executor::<RegistrationWorker>()
//!     .drop_guard();
//! # });
//! ```
//!
//! # Global backend
//!
//! Rexecutor can be ran either with use of a global backend. This enables the use of the
//! convenience [`job::builder::JobBuilder::enqueue`] method which does not require a reference to
//! the backend to be passed down to the code that needs to enqueue a job.
//!
//! The global backend can be set using [`Rexecutor::set_global_backend`] this should only be
//! called once otherwise it will return an error.
//!
//! In fact for a single [`Rexecutor`] instance it is impossible to call this twice
//!
//! ```compile_fail
//! # use rexecutor::prelude::*;
//! let backend = rexecutor::backend::memory::InMemoryBackend::new();
//! Rexecutor::new(backend).set_global_backend().set_global_backend();
//! ```
//!
//! Note, using a global backend has many of the same drawbacks of any global variable in
//! particular it can make unit testing more difficult.
#![deny(missing_docs)]
use std::{hash::Hash, marker::PhantomData};

pub mod backend;
pub mod backoff;
mod cron_runner;
pub mod executor;
#[doc(hidden)]
pub mod global_backend;
pub mod job;
pub mod prelude;
pub mod pruner;
pub mod testing;

use backend::{Backend, BackendError};
use chrono::{TimeZone, Utc};
use cron_runner::CronRunner;
use executor::Executor;
use global_backend::GlobalBackend;
use job::runner::JobRunner;
use pruner::{runner::PrunerRunner, PrunerConfig};
use serde::{de::DeserializeOwned, Serialize};
use thiserror::Error;
use tokio_util::sync::CancellationToken;

trait InternalRexecutorState {}

/// The state of [`Rexecutor`] after the global backend has been set, this makes it possible to
/// avoid calling [`Rexecutor::set_global_backend`] multiple times from the same instance.
#[doc(hidden)]
pub struct GlobalSet;

/// The state of [`Rexecutor`] before the global backend has been set. Using different states,
/// makes it possible to avoid calling [`Rexecutor::set_global_backend`] multiple times from the
/// same instance.
#[doc(hidden)]
pub struct GlobalUnset;
impl InternalRexecutorState for GlobalUnset {}
impl InternalRexecutorState for GlobalSet {}

/// The entry point for setting up rexecutor.
///
/// To create an instance of [`Rexecutor`] you will need to have an implementation of [`Backend`].
/// The only one provided in this crate is [`backend::memory::InMemoryBackend`] which is primarily
/// provided for testing purposes. Instead a backend should be used from one of the implementations
/// provided by other crates.
///
/// # Setting up executors
///
/// For each executor you would like to run [`Rexecutor::with_executor`] should be called. Being
/// explicit about this opens the possibility of having specific nodes in a cluster running as
/// worker nodes for certain enqueued jobs while other node not responsible for their execution.
///
/// ## Example setting up executors
///
/// ```
/// # use rexecutor::prelude::*;
/// # use std::str::FromStr;
/// # use chrono::TimeDelta;
/// # use rexecutor::backend::memory::InMemoryBackend;
/// # pub(crate) struct RefreshWorker;
/// # pub(crate) struct EmailScheduler;
/// # pub(crate) struct RegistrationWorker;
/// #
/// # #[async_trait::async_trait]
/// # impl Executor for RefreshWorker {
/// #     type Data = String;
/// #     type Metadata = String;
/// #     const NAME: &'static str = "refresh_worker";
/// #     const MAX_ATTEMPTS: u16 = 2;
/// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
/// #         ExecutionResult::Done
/// #     }
/// # }
/// # #[async_trait::async_trait]
/// # impl Executor for EmailScheduler {
/// #     type Data = String;
/// #     type Metadata = String;
/// #     const NAME: &'static str = "email_scheduler";
/// #     const MAX_ATTEMPTS: u16 = 2;
/// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
/// #         ExecutionResult::Done
/// #     }
/// # }
/// # #[async_trait::async_trait]
/// # impl Executor for RegistrationWorker {
/// #     type Data = String;
/// #     type Metadata = String;
/// #     const NAME: &'static str = "registration_worker";
/// #     const MAX_ATTEMPTS: u16 = 2;
/// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
/// #         ExecutionResult::Done
/// #     }
/// # }
/// # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
/// let backend = InMemoryBackend::new();
/// Rexecutor::new(backend)
///     .with_executor::<RefreshWorker>()
///     .with_executor::<EmailScheduler>()
///     .with_executor::<RegistrationWorker>();
/// # });
/// ```
///
/// # Compile time scheduling of cron jobs
///
/// It can be useful to have jobs that run on a given schedule. Jobs like this can be setup using
/// either [`Rexecutor::with_cron_executor`] or [`Rexecutor::with_cron_executor_for_timezone`]. The
/// later is use to specify the specific timezone that the jobs should be scheduled to run in.
///
/// ## Example setting up a UTC cron job
///
/// To setup a cron jobs to run every day at midnight you can use the following code.
///
/// ```
/// # use rexecutor::prelude::*;
/// # use rexecutor::backend::{Backend, memory::InMemoryBackend};
/// struct CronJob;
/// #[async_trait::async_trait]
/// impl Executor for CronJob {
///     type Data = String;
///     type Metadata = ();
///     const NAME: &'static str = "cron_job";
///     const MAX_ATTEMPTS: u16 = 1;
///     async fn execute(job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
///         /// Do something important
///         ExecutionResult::Done
///     }
/// }
/// # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
/// let schedule = cron::Schedule::try_from("0 0 0 * * *").unwrap();
///
/// let backend = InMemoryBackend::new();
/// Rexecutor::new(backend).with_cron_executor::<CronJob>(schedule, "important data".to_owned());
/// # });
/// ```
///
/// # Pruning jobs
///
/// After jobs have completed, been cancelled, or discarded it is useful to be able to clean up.
/// To setup the job pruner [`Rexecutor::with_job_pruner`] should be called passing in the given
/// [`PrunerConfig`].
///
/// Given the different ways in which jobs can finish it is often useful to be able to have fine
/// grained control over how old jobs should be cleaned up. [`PrunerConfig`] enables such control.
///
/// When constructing [`PrunerConfig`] a [`cron::Schedule`] is provided to specify when the pruner
/// should run.
///
/// Depending on the load/throughput of the system the pruner can be scheduled to run anywhere
/// from once a year through to multiple times per hour.
///
/// ## Example configuring the job pruner
///
/// ```
/// # use rexecutor::prelude::*;
/// # use std::str::FromStr;
/// # use chrono::TimeDelta;
/// # use rexecutor::backend::memory::InMemoryBackend;
/// # pub(crate) struct RefreshWorker;
/// # pub(crate) struct EmailScheduler;
/// # pub(crate) struct RegistrationWorker;
/// #
/// # #[async_trait::async_trait]
/// # impl Executor for RefreshWorker {
/// #     type Data = String;
/// #     type Metadata = String;
/// #     const NAME: &'static str = "refresh_worker";
/// #     const MAX_ATTEMPTS: u16 = 2;
/// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
/// #         ExecutionResult::Done
/// #     }
/// # }
/// # #[async_trait::async_trait]
/// # impl Executor for EmailScheduler {
/// #     type Data = String;
/// #     type Metadata = String;
/// #     const NAME: &'static str = "email_scheduler";
/// #     const MAX_ATTEMPTS: u16 = 2;
/// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
/// #         ExecutionResult::Done
/// #     }
/// # }
/// # #[async_trait::async_trait]
/// # impl Executor for RegistrationWorker {
/// #     type Data = String;
/// #     type Metadata = String;
/// #     const NAME: &'static str = "registration_worker";
/// #     const MAX_ATTEMPTS: u16 = 2;
/// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
/// #         ExecutionResult::Done
/// #     }
/// # }
/// let config = PrunerConfig::new(cron::Schedule::from_str("0 0 * * * *").unwrap())
///     .with_max_concurrency(Some(2))
///     .with_pruner(
///         Pruner::max_age(TimeDelta::days(31), JobStatus::Complete)
///             .only::<RefreshWorker>()
///             .and::<EmailScheduler>(),
///     )
///     .with_pruner(
///         Pruner::max_length(200, JobStatus::Discarded)
///             .except::<RefreshWorker>()
///             .and::<EmailScheduler>(),
///     );
///
/// # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
/// let backend = InMemoryBackend::new();
/// Rexecutor::new(backend)
///     .with_executor::<RefreshWorker>()
///     .with_executor::<EmailScheduler>()
///     .with_executor::<RegistrationWorker>()
///     .with_job_pruner(config);
/// # });
/// ```
///
/// # Shutting rexecutor down
///
/// To avoid jobs getting killed mid way through their executions it is important to make use of
/// graceful shutdown. This can either explicitly be called using [`Rexecutor::graceful_shutdown`],
/// or via use of the [`DropGuard`] obtained via [`Rexecutor::drop_guard`].
///
/// Using [`Rexecutor::graceful_shutdown`] or [`Rexecutor::drop_guard`] will ensure that all
/// currently executing jobs will be allowed time to complete before shutting rexecutor down.
///
/// ## Example using the `DropGuard`
///
/// ```
/// # use rexecutor::prelude::*;
/// # use std::str::FromStr;
/// # use chrono::TimeDelta;
/// # use rexecutor::backend::memory::InMemoryBackend;
/// # pub(crate) struct RefreshWorker;
/// # pub(crate) struct EmailScheduler;
/// # pub(crate) struct RegistrationWorker;
/// #
/// # #[async_trait::async_trait]
/// # impl Executor for RefreshWorker {
/// #     type Data = String;
/// #     type Metadata = String;
/// #     const NAME: &'static str = "refresh_worker";
/// #     const MAX_ATTEMPTS: u16 = 2;
/// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
/// #         ExecutionResult::Done
/// #     }
/// # }
/// # #[async_trait::async_trait]
/// # impl Executor for EmailScheduler {
/// #     type Data = String;
/// #     type Metadata = String;
/// #     const NAME: &'static str = "email_scheduler";
/// #     const MAX_ATTEMPTS: u16 = 2;
/// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
/// #         ExecutionResult::Done
/// #     }
/// # }
/// # #[async_trait::async_trait]
/// # impl Executor for RegistrationWorker {
/// #     type Data = String;
/// #     type Metadata = String;
/// #     const NAME: &'static str = "registration_worker";
/// #     const MAX_ATTEMPTS: u16 = 2;
/// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
/// #         ExecutionResult::Done
/// #     }
/// # }
/// # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
/// let backend = InMemoryBackend::new();
/// // Note this must be given a name to ensure it is dropped at the end of the scope.
/// // See https://doc.rust-lang.org/book/ch18-03-pattern-syntax.html#ignoring-an-unused-variable-by-starting-its-name-with-_
/// let _guard = Rexecutor::new(backend)
///     .with_executor::<RefreshWorker>()
///     .with_executor::<EmailScheduler>()
///     .with_executor::<RegistrationWorker>()
///     .drop_guard();
/// # });
/// ```
///
/// # Global backend
///
/// Rexecutor can be ran either with use of a global backend. This enables the use of the
/// convenience [`job::builder::JobBuilder::enqueue`] method which does not require a reference to
/// the backend to be passed down to the code that needs to enqueue a job.
///
/// The global backend can be set using [`Rexecutor::set_global_backend`] this should only be
/// called once otherwise it will return an error.
///
/// In fact for a single [`Rexecutor`] instance it is impossible to call this twice
///
/// ```compile_fail
/// # use rexecutor::prelude::*;
/// let backend = rexecutor::backend::memory::InMemoryBackend::new();
/// Rexecutor::new(backend).set_global_backend().set_global_backend();
/// ```
///
/// Note, using a global backend has many of the same drawbacks of any global variable in
/// particular it can make unit testing more difficult.
#[derive(Debug)]
#[allow(private_bounds)]
pub struct Rexecutor<B: Backend, State: InternalRexecutorState> {
    backend: B,
    cancellation_token: CancellationToken,
    _state: PhantomData<State>,
}

impl<B> Default for Rexecutor<B, GlobalUnset>
where
    B: Backend + Default,
{
    fn default() -> Self {
        Self::new(Default::default())
    }
}

impl<B> Rexecutor<B, GlobalUnset>
where
    B: Backend,
{
    /// Create an instance of [`Rexecutor`] using the given `backend`.
    pub fn new(backend: B) -> Self {
        Self {
            cancellation_token: Default::default(),
            backend,
            _state: PhantomData,
        }
    }
}

/// To enable automatic clean up this guard will shut down rexucutor and all associated tasks when
/// dropped.
#[allow(dead_code)]
pub struct DropGuard(tokio_util::sync::DropGuard);

impl<B> Rexecutor<B, GlobalUnset>
where
    B: Backend + Send + 'static + Sync + Clone,
{
    /// Sets the global backend to the backend associated with the current instance of
    /// [`Rexecutor`].
    ///
    /// This should only be called once. If called a second time it will return
    /// [`RexecutorError::GlobalBackend`].
    ///
    /// Calling this makes is possible to enqueue jobs without maintaining a reference to the
    /// backend throughout the codebase and enables the use of
    /// [`job::builder::JobBuilder::enqueue`].
    ///
    /// Note is is not possible to call this twice for the same [`Rexecutor`] instance
    ///
    /// ```compile_fail
    /// # use rexecutor::prelude::*;
    /// let backend = rexecutor::backend::memory::InMemoryBackend::new();
    /// Rexecutor::new(backend).set_global_backend().set_global_backend();
    /// ```
    pub fn set_global_backend(self) -> Result<Rexecutor<B, GlobalSet>, RexecutorError> {
        GlobalBackend::set(self.backend.clone())?;

        Ok(Rexecutor {
            cancellation_token: self.cancellation_token,
            backend: self.backend,
            _state: PhantomData,
        })
    }
}

#[allow(private_bounds)]
impl<B, State> Rexecutor<B, State>
where
    B: Backend + Send + 'static + Sync + Clone,
    State: InternalRexecutorState,
{
    /// Enable the execution of jobs for the provided [`Executor`].
    ///
    /// If this isn't called for an executor, then it's jobs will not be ran on this instance.
    /// This can be used to only run jobs on specific executor nodes.
    ///
    /// Jobs can still be enqueued to the backend without calling this method, but they will not be
    /// executed unless this method has been called for at least one instance of the running
    /// application.
    pub fn with_executor<E>(self) -> Self
    where
        E: Executor + 'static + Sync + Send,
        E::Data: Send + DeserializeOwned,
        E::Metadata: Serialize + DeserializeOwned + Send,
    {
        JobRunner::<B, E>::new(self.backend.clone()).spawn(self.cancellation_token.clone());
        self
    }

    /// Setup a cron job to run on the given schedule with the given data.
    ///
    /// Note this will run the schedule according to UTC. To schedule the job in another timezone use
    /// [`Rexecutor::with_cron_executor_for_timezone`].
    ///
    /// # Example
    ///
    /// To setup a cron jobs to run every day at midnight you can use the following code.
    ///
    /// ```
    /// # use rexecutor::prelude::*;
    /// # use rexecutor::backend::{Backend, memory::InMemoryBackend};
    /// struct CronJob;
    /// #[async_trait::async_trait]
    /// impl Executor for CronJob {
    ///     type Data = String;
    ///     type Metadata = ();
    ///     const NAME: &'static str = "cron_job";
    ///     const MAX_ATTEMPTS: u16 = 1;
    ///     async fn execute(job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
    ///         /// Do something important
    ///         ExecutionResult::Done
    ///     }
    /// }
    /// # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
    /// let schedule = cron::Schedule::try_from("0 0 0 * * *").unwrap();
    ///
    /// let backend = InMemoryBackend::new();
    /// Rexecutor::new(backend).with_cron_executor::<CronJob>(schedule, "important data".to_owned());
    /// # });
    /// ```
    pub fn with_cron_executor<E>(self, schedule: cron::Schedule, data: E::Data) -> Self
    where
        E: Executor + 'static + Sync + Send,
        E::Data: Send + Sync + Serialize + DeserializeOwned + Clone + Hash,
        E::Metadata: Serialize + DeserializeOwned + Send + Sync,
    {
        self.with_cron_executor_for_timezone::<E, _>(schedule, data, Utc)
    }

    /// Setup a cron job to run on the given schedule with the given data in the given timezome.
    ///
    /// # Example
    ///
    /// To setup a cron jobs to run every day at midnight you can use the following code.
    ///
    /// ```
    /// # use rexecutor::prelude::*;
    /// # use rexecutor::backend::{Backend, memory::InMemoryBackend};
    /// struct CronJob;
    /// #[async_trait::async_trait]
    /// impl Executor for CronJob {
    ///     type Data = String;
    ///     type Metadata = ();
    ///     const NAME: &'static str = "cron_job";
    ///     const MAX_ATTEMPTS: u16 = 1;
    ///     async fn execute(job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
    ///         /// Do something important
    ///         ExecutionResult::Done
    ///     }
    /// }
    /// # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
    /// let schedule = cron::Schedule::try_from("0 0 0 * * *").unwrap();
    ///
    /// let backend = InMemoryBackend::new();
    /// Rexecutor::new(backend).with_cron_executor_for_timezone::<CronJob, _>(
    ///     schedule,
    ///     "important data".to_owned(),
    ///     chrono::Local,
    /// );
    /// # });
    /// ```
    pub fn with_cron_executor_for_timezone<E, Z>(
        self,
        schedule: cron::Schedule,
        data: E::Data,
        timezone: Z,
    ) -> Self
    where
        E: Executor + 'static + Sync + Send,
        E::Data: Send + Sync + Serialize + DeserializeOwned + Clone + Hash,
        E::Metadata: Serialize + DeserializeOwned + Send + Sync,
        Z: TimeZone + Send + 'static,
    {
        CronRunner::<B, E>::new(self.backend.clone(), schedule, data)
            .spawn(timezone, self.cancellation_token.clone());

        self.with_executor::<E>()
    }

    /// Set the job pruner config.
    ///
    /// After jobs have completed, been cancelled, or discarded it is useful to be able to clean up.
    ///
    /// Given the different ways in which jobs can finish it is often useful to be able to have fine
    /// grained control over how old jobs should be cleaned up. [`PrunerConfig`] enables such control.
    ///
    /// When constructing [`PrunerConfig`] a [`cron::Schedule`] is provided to specify when the pruner
    /// should run.
    ///
    /// Depending on the load/throughput of the system the pruner can be scheduled to run anywhere
    /// from once a year through to multiple times per hour.
    ///
    /// # Example
    ///
    /// To remove all completed jobs more than a month old for both the `RefreshWorker` and
    /// `EmailScheduler` while only maintaining the last 200 discarded jobs for all executors expect
    /// the `EmailScheduler` and `RefreshWorker`, you can do the following:
    ///
    /// ```
    /// # use rexecutor::prelude::*;
    /// # use std::str::FromStr;
    /// # use chrono::TimeDelta;
    /// # use rexecutor::backend::memory::InMemoryBackend;
    /// # pub(crate) struct RefreshWorker;
    /// # pub(crate) struct EmailScheduler;
    /// # pub(crate) struct RegistrationWorker;
    /// #
    /// # #[async_trait::async_trait]
    /// # impl Executor for RefreshWorker {
    /// #     type Data = String;
    /// #     type Metadata = String;
    /// #     const NAME: &'static str = "refresh_worker";
    /// #     const MAX_ATTEMPTS: u16 = 2;
    /// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
    /// #         ExecutionResult::Done
    /// #     }
    /// # }
    /// # #[async_trait::async_trait]
    /// # impl Executor for EmailScheduler {
    /// #     type Data = String;
    /// #     type Metadata = String;
    /// #     const NAME: &'static str = "email_scheduler";
    /// #     const MAX_ATTEMPTS: u16 = 2;
    /// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
    /// #         ExecutionResult::Done
    /// #     }
    /// # }
    /// # #[async_trait::async_trait]
    /// # impl Executor for RegistrationWorker {
    /// #     type Data = String;
    /// #     type Metadata = String;
    /// #     const NAME: &'static str = "registration_worker";
    /// #     const MAX_ATTEMPTS: u16 = 2;
    /// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
    /// #         ExecutionResult::Done
    /// #     }
    /// # }
    /// let config = PrunerConfig::new(cron::Schedule::from_str("0 0 * * * *").unwrap())
    ///     .with_max_concurrency(Some(2))
    ///     .with_pruner(
    ///         Pruner::max_age(TimeDelta::days(31), JobStatus::Complete)
    ///             .only::<RefreshWorker>()
    ///             .and::<EmailScheduler>(),
    ///     )
    ///     .with_pruner(
    ///         Pruner::max_length(200, JobStatus::Discarded)
    ///             .except::<RefreshWorker>()
    ///             .and::<EmailScheduler>(),
    ///     );
    ///
    /// # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
    /// let backend = InMemoryBackend::new();
    /// Rexecutor::new(backend)
    ///     .with_executor::<RefreshWorker>()
    ///     .with_executor::<EmailScheduler>()
    ///     .with_executor::<RegistrationWorker>()
    ///     .with_job_pruner(config);
    /// # });
    /// ```
    pub fn with_job_pruner(self, config: PrunerConfig) -> Self {
        PrunerRunner::new(self.backend.clone(), config).spawn(self.cancellation_token.clone());
        self
    }

    /// Instruct rexecutor to shutdown gracefully giving time for any currently executing jobs to
    /// complete before shutting down.
    pub fn graceful_shutdown(self) {
        tracing::debug!("Shutting down Rexecutor tasks");
        self.cancellation_token.cancel();
    }

    /// Returns a drop guard which will gracefully shutdown rexecutor when droped.
    ///
    /// # Example
    /// ```
    /// # use rexecutor::prelude::*;
    /// # use std::str::FromStr;
    /// # use chrono::TimeDelta;
    /// # use rexecutor::backend::memory::InMemoryBackend;
    /// # pub(crate) struct RefreshWorker;
    /// # pub(crate) struct EmailScheduler;
    /// # pub(crate) struct RegistrationWorker;
    /// #
    /// # #[async_trait::async_trait]
    /// # impl Executor for RefreshWorker {
    /// #     type Data = String;
    /// #     type Metadata = String;
    /// #     const NAME: &'static str = "refresh_worker";
    /// #     const MAX_ATTEMPTS: u16 = 2;
    /// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
    /// #         ExecutionResult::Done
    /// #     }
    /// # }
    /// # #[async_trait::async_trait]
    /// # impl Executor for EmailScheduler {
    /// #     type Data = String;
    /// #     type Metadata = String;
    /// #     const NAME: &'static str = "email_scheduler";
    /// #     const MAX_ATTEMPTS: u16 = 2;
    /// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
    /// #         ExecutionResult::Done
    /// #     }
    /// # }
    /// # #[async_trait::async_trait]
    /// # impl Executor for RegistrationWorker {
    /// #     type Data = String;
    /// #     type Metadata = String;
    /// #     const NAME: &'static str = "registration_worker";
    /// #     const MAX_ATTEMPTS: u16 = 2;
    /// #     async fn execute(_job: Job<Self::Data, Self::Metadata>) -> ExecutionResult {
    /// #         ExecutionResult::Done
    /// #     }
    /// # }
    /// # tokio::runtime::Builder::new_current_thread().build().unwrap().block_on(async {
    /// let backend = InMemoryBackend::new();
    /// // Note this must be given a name to ensure it is dropped at the end of the scope.
    /// // See https://doc.rust-lang.org/book/ch18-03-pattern-syntax.html#ignoring-an-unused-variable-by-starting-its-name-with-_
    /// let _guard = Rexecutor::new(backend)
    ///     .with_executor::<RefreshWorker>()
    ///     .with_executor::<EmailScheduler>()
    ///     .with_executor::<RegistrationWorker>()
    ///     .drop_guard();
    /// # });
    #[must_use]
    pub fn drop_guard(self) -> DropGuard {
        DropGuard(self.cancellation_token.drop_guard())
    }
}

/// Errors that can occur when working with rexecutor.
// TODO: split errors
#[derive(Debug, Error)]
pub enum RexecutorError {
    /// Errors that result from the specific backend chosen.
    #[error("Error communicating with the backend")]
    BackendError(#[from] BackendError),

    /// This error results from trying to enqueue a job to the global backend when it is not set or
    /// when trying to set the global backend multiple times.
    #[error("Error setting global backend")]
    GlobalBackend,

    /// Error encoding or decoding data from json.
    #[error("Error encoding or decoding value")]
    EncodeError(#[from] serde_json::Error),
}

#[cfg(test)]
mod tests {
    use std::{sync::Arc, time::Duration};

    use super::*;
    use crate::{
        backend::{Job, MockBackend},
        executor::test::{MockError, MockExecutionResult, MockReturnExecutor},
        job::JobStatus,
        pruner::Pruner,
    };

    #[tokio::test]
    async fn run_job_error_in_stream() {
        let mut backend = MockBackend::default();
        let sender = backend.expect_subscribe_to_ready_jobs_with_stream();
        let backend = Arc::new(backend);

        let _guard = Rexecutor::<_, _>::new(backend.clone())
            .with_executor::<MockReturnExecutor>()
            .drop_guard();

        tokio::task::yield_now().await;

        sender.send(Err(BackendError::BadState)).unwrap();

        tokio::task::yield_now().await;
    }

    #[tokio::test]
    async fn run_job_success() {
        let mut backend = MockBackend::default();
        backend.expect_mark_job_complete().returning(|_| Ok(()));

        let job = Job::mock_job::<MockReturnExecutor>().with_data(MockExecutionResult::Done);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_success_error_marking_success() {
        let mut backend = MockBackend::default();
        backend
            .expect_mark_job_complete()
            .returning(|_| Err(BackendError::BadState));

        let job = Job::mock_job::<MockReturnExecutor>().with_data(MockExecutionResult::Done);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_retryable() {
        let mut backend = MockBackend::default();
        backend
            .expect_mark_job_retryable()
            .returning(|_, _, _| Ok(()));

        let job = Job::mock_job::<MockReturnExecutor>().with_data(MockExecutionResult::Error {
            error: MockError("oh no".to_owned()),
        });

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_retryable_error_marking_retryable() {
        let mut backend = MockBackend::default();
        backend
            .expect_mark_job_retryable()
            .returning(|_, _, _| Err(BackendError::BadState));

        let job = Job::mock_job::<MockReturnExecutor>().with_data(MockExecutionResult::Error {
            error: MockError("oh no".to_owned()),
        });

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_retryable_timeout() {
        let mut backend = MockBackend::default();
        backend
            .expect_mark_job_retryable()
            .returning(|_, _, _| Ok(()));

        let job = Job::mock_job::<MockReturnExecutor>().with_data(MockExecutionResult::Timeout);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_discarded() {
        let mut backend = MockBackend::default();
        backend.expect_mark_job_discarded().returning(|_, _| Ok(()));

        let job = Job::mock_job::<MockReturnExecutor>()
            .with_data(MockExecutionResult::Error {
                error: MockError("oh no".to_owned()),
            })
            .with_max_attempts(1)
            .with_attempt(1);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_discarded_error_marking_job_discarded() {
        let mut backend = MockBackend::default();
        backend
            .expect_mark_job_discarded()
            .returning(|_, _| Err(BackendError::BadState));

        let job = Job::mock_job::<MockReturnExecutor>()
            .with_data(MockExecutionResult::Error {
                error: MockError("oh no".to_owned()),
            })
            .with_max_attempts(1)
            .with_attempt(1);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_discarded_panic() {
        let mut backend = MockBackend::default();
        backend.expect_mark_job_discarded().returning(|_, _| Ok(()));

        let job = Job::mock_job::<MockReturnExecutor>()
            .with_data(MockExecutionResult::Panic)
            .with_max_attempts(1)
            .with_attempt(1);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_discarded_panic_error_marking_job_discarded() {
        let mut backend = MockBackend::default();
        backend
            .expect_mark_job_discarded()
            .returning(|_, _| Err(BackendError::BadState));

        let job = Job::mock_job::<MockReturnExecutor>()
            .with_data(MockExecutionResult::Panic)
            .with_max_attempts(1)
            .with_attempt(1);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_snoozed() {
        let mut backend = MockBackend::default();
        backend.expect_mark_job_snoozed().returning(|_, _| Ok(()));

        let job = Job::mock_job::<MockReturnExecutor>()
            .with_data(MockExecutionResult::Snooze {
                delay: Duration::from_secs(10),
            })
            .with_max_attempts(1)
            .with_attempt(1);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_snoozed_error_marking_job_snoozed() {
        let mut backend = MockBackend::default();
        backend
            .expect_mark_job_snoozed()
            .returning(|_, _| Err(BackendError::BadState));

        let job = Job::mock_job::<MockReturnExecutor>()
            .with_data(MockExecutionResult::Snooze {
                delay: Duration::from_secs(10),
            })
            .with_max_attempts(1)
            .with_attempt(1);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_cancelled() {
        let mut backend = MockBackend::default();
        backend.expect_mark_job_cancelled().returning(|_, _| Ok(()));

        let job = Job::mock_job::<MockReturnExecutor>()
            .with_data(MockExecutionResult::Cancelled {
                reason: "No need anymore".to_owned(),
            })
            .with_max_attempts(1)
            .with_attempt(1);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn run_job_cancelled_error_marking_job_cancelled() {
        let mut backend = MockBackend::default();
        backend
            .expect_mark_job_cancelled()
            .returning(|_, _| Err(BackendError::BadState));

        let job = Job::mock_job::<MockReturnExecutor>()
            .with_data(MockExecutionResult::Cancelled {
                reason: "No need anymore".to_owned(),
            })
            .with_max_attempts(1)
            .with_attempt(1);

        run_job(backend, job).await;
    }

    #[tokio::test]
    async fn cron_job() {
        let every_second = cron::Schedule::try_from("* * * * * *").unwrap();
        let mut backend = MockBackend::default();
        let _sender = backend.expect_subscribe_to_ready_jobs_with_stream();
        backend.expect_enqueue().returning(|_| Ok(0.into()));
        let backend = Arc::new(backend);

        let _guard = Rexecutor::new(backend.clone())
            .with_cron_executor::<MockReturnExecutor>(every_second, MockExecutionResult::Done)
            .drop_guard();

        tokio::task::yield_now().await;
        tokio::time::sleep(Duration::from_secs(1)).await;
    }

    #[tokio::test]
    async fn cron_job_error() {
        let every_second = cron::Schedule::try_from("* * * * * *").unwrap();
        let mut backend = MockBackend::default();
        let _sender = backend.expect_subscribe_to_ready_jobs_with_stream();
        backend
            .expect_enqueue()
            .returning(|_| Err(BackendError::BadState));
        let backend = Arc::new(backend);

        let _guard = Rexecutor::new(backend.clone())
            .with_cron_executor::<MockReturnExecutor>(every_second, MockExecutionResult::Done)
            .drop_guard();

        tokio::task::yield_now().await;
        tokio::time::sleep(Duration::from_secs(1)).await;
    }

    #[tokio::test]
    async fn with_pruner() {
        let schedule = cron::Schedule::try_from("* * * * * *").unwrap();
        let mut backend = MockBackend::default();
        backend.expect_prune_jobs().returning(|_| Ok(()));
        let backend = Arc::new(backend);

        let pruner = PrunerConfig::new(schedule)
            .with_pruner(Pruner::max_length(5, JobStatus::Complete).only::<MockReturnExecutor>());

        let _guard = Rexecutor::new(backend.clone())
            .with_job_pruner(pruner)
            .drop_guard();

        tokio::task::yield_now().await;
        tokio::time::sleep(Duration::from_secs(1)).await;
    }

    #[tokio::test]
    async fn with_pruner_error() {
        let schedule = cron::Schedule::try_from("* * * * * *").unwrap();
        let mut backend = MockBackend::default();
        backend
            .expect_prune_jobs()
            .returning(|_| Err(BackendError::BadState));
        let backend = Arc::new(backend);

        let pruner = PrunerConfig::new(schedule)
            .with_pruner(Pruner::max_length(5, JobStatus::Complete).only::<MockReturnExecutor>());

        let _guard = Rexecutor::new(backend.clone())
            .with_job_pruner(pruner)
            .drop_guard();

        tokio::task::yield_now().await;
        tokio::time::sleep(Duration::from_secs(1)).await;
    }

    async fn run_job(mut backend: MockBackend, job: Job) {
        let sender = backend.expect_subscribe_to_ready_jobs_with_stream();
        let backend = Arc::new(backend);
        let _guard = Rexecutor::new(backend.clone())
            .with_executor::<MockReturnExecutor>()
            .drop_guard();

        tokio::task::yield_now().await;
        sender.send(Ok(job)).unwrap();
        tokio::task::yield_now().await;
    }
}