Source file time_pattern.ml
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
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
type time_pattern = {
years : int list;
months : Time.month list;
month_days : int list;
weekdays : Time.weekday list;
hours : int list;
minutes : int list;
seconds : int list;
unix_seconds : int64 list;
}
type time_pattern_error =
| Invalid_years of int list
| Invalid_month_days of int list
| Invalid_hours of int list
| Invalid_minutes of int list
| Invalid_seconds of int list
| Invalid_unix_seconds of int64 list
type error =
| Invalid_search_param of Search_param.error
| Invalid_time_pattern of time_pattern_error
type time_range_pattern = time_pattern Range.range
type single_or_ranges =
| Single_time_pattern of time_pattern
| Time_range_patterns of time_range_pattern list
module Check = struct
let check_time_pattern (x : time_pattern) : (unit, time_pattern_error) result
=
let invalid_years = List.filter (fun x -> x < 0 || 9999 < x) x.years in
let invalid_month_days =
List.filter (fun x -> x < 1 || 31 < x) x.month_days
in
let invalid_hours = List.filter (fun x -> x < 0 || 23 < x) x.hours in
let invalid_minutes = List.filter (fun x -> x < 0 || 59 < x) x.minutes in
let invalid_seconds = List.filter (fun x -> x < 0 || 59 < x) x.seconds in
let invalid_unix_seconds =
List.filter
(fun x ->
Result.is_error
(Time.Date_time.of_unix_second ~tz_offset_s_of_date_time:None x))
x.unix_seconds
in
match invalid_years with
| [] -> (
match invalid_month_days with
| [] -> (
match invalid_hours with
| [] -> (
match invalid_minutes with
| [] -> (
match invalid_seconds with
| [] -> (
match invalid_unix_seconds with
| [] -> Ok ()
| l -> Error (Invalid_unix_seconds l) )
| l -> Error (Invalid_seconds l) )
| l -> Error (Invalid_minutes l) )
| l -> Error (Invalid_hours l) )
| l -> Error (Invalid_month_days l) )
| l -> Error (Invalid_years l)
let check_time_range_pattern (x : time_range_pattern) :
(unit, time_pattern_error) result =
match x with
| `Range_inc (x, y) | `Range_exc (x, y) -> (
match check_time_pattern x with
| Error e -> Error e
| Ok () -> (
match check_time_pattern y with
| Error e -> Error e
| Ok () -> Ok () ) )
let check_search_param_and_time_pattern (search_param : Search_param.t)
(x : time_pattern) : (unit, error) result =
match Search_param.Check.check_search_param search_param with
| Error e -> Error (Invalid_search_param e)
| Ok () -> (
match check_time_pattern x with
| Error e -> Error (Invalid_time_pattern e)
| Ok () -> Ok () )
let check_search_param_and_time_range_pattern (search_param : Search_param.t)
(x : time_range_pattern) : (unit, error) result =
match Search_param.Check.check_search_param search_param with
| Error e -> Error (Invalid_search_param e)
| Ok () -> (
match check_time_range_pattern x with
| Error e -> Error (Invalid_time_pattern e)
| Ok () -> Ok () )
end
let empty =
{
years = [];
months = [];
weekdays = [];
month_days = [];
hours = [];
minutes = [];
seconds = [];
unix_seconds = [];
}
let of_unix_second ~(tz_offset_s_of_time_pattern : Time.tz_offset_s option)
(x : int64) : (time_pattern, unit) result =
Time.Date_time.of_unix_second
~tz_offset_s_of_date_time:tz_offset_s_of_time_pattern x
|> Result.map (fun x ->
let open Time.Date_time in
{
years = [ x.year ];
months = [ x.month ];
weekdays = [];
month_days = [ x.day ];
hours = [ x.hour ];
minutes = [ x.minute ];
seconds = [ x.second ];
unix_seconds = [];
})
module Matching_seconds = struct
let get_cur_branch_search_start ~(overall_search_start : Time.Date_time.t)
(cur_branch : Time.Date_time.t) : Time.Date_time.t =
if
cur_branch.year = overall_search_start.year
&& cur_branch.month = overall_search_start.month
&& cur_branch.day = overall_search_start.day
&& cur_branch.hour = overall_search_start.hour
&& cur_branch.minute = overall_search_start.minute
then overall_search_start
else Time.Date_time.set_to_first_sec cur_branch
let matching_seconds (t : time_pattern)
~(overall_search_start : Time.Date_time.t) (cur_branch : Time.Date_time.t)
: Time.Date_time.t Seq.t =
let cur_branch_search_start =
get_cur_branch_search_start ~overall_search_start cur_branch
in
match t.seconds with
| [] ->
Seq.map
(fun second -> { cur_branch with second })
OSeq.(cur_branch_search_start.second --^ 60)
| pat_sec_list ->
pat_sec_list
|> List.to_seq
|> Seq.filter (fun second ->
cur_branch_search_start.second <= second && second < 60)
|> Seq.map (fun second -> { cur_branch with second })
let matching_second_ranges (t : time_pattern)
~(overall_search_start : Time.Date_time.t) (cur_branch : Time.Date_time.t)
: Time.Date_time.t Range.range Seq.t =
let range_map_start ~(cur_branch_search_start : Time.Date_time.t) x =
if x = cur_branch_search_start.second then cur_branch_search_start
else { cur_branch_search_start with second = x }
in
let range_map_inc ~(cur_branch_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~cur_branch_search_start x,
{ cur_branch_search_start with second = y } )
in
let range_map_exc ~(cur_branch_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~cur_branch_search_start x,
{ cur_branch_search_start with second = y } )
in
let cur_branch_search_start =
get_cur_branch_search_start ~overall_search_start cur_branch
in
match t.seconds with
| [] ->
Seq.return
(`Range_inc
(cur_branch_search_start, Time.Date_time.set_to_last_sec cur_branch))
| l ->
List.sort_uniq compare l
|> Time.Second_ranges.Of_list.range_seq_of_list
|> Seq.map
(Range.map
~f_inc:(range_map_inc ~cur_branch_search_start)
~f_exc:(range_map_exc ~cur_branch_search_start))
end
module Matching_minutes = struct
let get_cur_branch_search_start ~(overall_search_start : Time.Date_time.t)
(cur_branch : Time.Date_time.t) : Time.Date_time.t =
if
cur_branch.year = overall_search_start.year
&& cur_branch.month = overall_search_start.month
&& cur_branch.day = overall_search_start.day
&& cur_branch.hour = overall_search_start.hour
then overall_search_start
else Time.Date_time.set_to_first_min_sec cur_branch
let matching_minutes (t : time_pattern)
~(overall_search_start : Time.Date_time.t) (cur_branch : Time.Date_time.t)
: Time.Date_time.t Seq.t =
let cur_branch_search_start =
get_cur_branch_search_start ~overall_search_start cur_branch
in
match t.minutes with
| [] ->
Seq.map
(fun minute -> { cur_branch with minute })
OSeq.(cur_branch_search_start.minute --^ 60)
| pat_min_list ->
pat_min_list
|> List.to_seq
|> Seq.filter (fun minute ->
cur_branch_search_start.minute <= minute && minute < 60)
|> Seq.map (fun minute -> { cur_branch_search_start with minute })
let matching_minute_ranges (t : time_pattern)
~(overall_search_start : Time.Date_time.t) (cur_branch : Time.Date_time.t)
: Time.Date_time.t Range.range Seq.t =
let range_map_start ~(cur_branch_search_start : Time.Date_time.t) x =
if x = cur_branch_search_start.minute then cur_branch_search_start
else
Time.Date_time.set_to_first_sec
{ cur_branch_search_start with minute = x }
in
let range_map_inc ~(cur_branch_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~cur_branch_search_start x,
Time.Date_time.set_to_last_sec
{ cur_branch_search_start with minute = y } )
in
let range_map_exc ~(cur_branch_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~cur_branch_search_start x,
Time.Date_time.set_to_first_sec
{ cur_branch_search_start with minute = y } )
in
let cur_branch_search_start =
get_cur_branch_search_start ~overall_search_start cur_branch
in
match t.minutes with
| [] ->
Seq.return
(`Range_inc
( cur_branch_search_start,
Time.Date_time.set_to_last_min_sec cur_branch_search_start ))
| l ->
List.filter (fun min -> cur_branch_search_start.minute <= min) l
|> List.sort_uniq compare
|> Time.Minute_ranges.Of_list.range_seq_of_list
|> Seq.map
(Range.map
~f_inc:(range_map_inc ~cur_branch_search_start)
~f_exc:(range_map_exc ~cur_branch_search_start))
end
module Matching_hours = struct
let get_cur_branch_search_start ~(overall_search_start : Time.Date_time.t)
(cur_branch : Time.Date_time.t) : Time.Date_time.t =
if
cur_branch.year = overall_search_start.year
&& cur_branch.month = overall_search_start.month
&& cur_branch.day = overall_search_start.day
then overall_search_start
else Time.Date_time.set_to_first_hour_min_sec cur_branch
let matching_hours (t : time_pattern)
~(overall_search_start : Time.Date_time.t) (cur_branch : Time.Date_time.t)
: Time.Date_time.t Seq.t =
let cur_branch_search_start =
get_cur_branch_search_start ~overall_search_start cur_branch
in
match t.hours with
| [] ->
Seq.map
(fun hour -> { cur_branch with hour })
OSeq.(cur_branch_search_start.hour --^ 24)
| pat_hour_list ->
pat_hour_list
|> List.to_seq
|> Seq.filter (fun hour ->
cur_branch_search_start.hour <= hour && hour < 24)
|> Seq.map (fun hour -> { cur_branch with hour })
let matching_hour_ranges (t : time_pattern)
~(overall_search_start : Time.Date_time.t) (cur_branch : Time.Date_time.t)
: Time.Date_time.t Range.range Seq.t =
let range_map_start ~(cur_branch_search_start : Time.Date_time.t) x =
if x = cur_branch_search_start.hour then cur_branch_search_start
else
Time.Date_time.set_to_first_min_sec
{ cur_branch_search_start with hour = x }
in
let range_map_inc ~(cur_branch_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~cur_branch_search_start x,
Time.Date_time.set_to_last_min_sec
{ cur_branch_search_start with hour = y } )
in
let range_map_exc ~(cur_branch_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~cur_branch_search_start x,
Time.Date_time.set_to_first_min_sec
{ cur_branch_search_start with hour = y } )
in
let cur_branch_search_start =
get_cur_branch_search_start ~overall_search_start cur_branch
in
match t.hours with
| [] ->
Seq.return
(`Range_inc
( cur_branch_search_start,
Time.Date_time.set_to_last_hour_min_sec cur_branch ))
| l ->
List.filter
(fun hour -> cur_branch_search_start.hour <= hour && hour < 24)
l
|> List.sort_uniq compare
|> Time.Hour_ranges.Of_list.range_seq_of_list
|> Seq.map
(Range.map
~f_inc:(range_map_inc ~cur_branch_search_start)
~f_exc:(range_map_exc ~cur_branch_search_start))
end
module Matching_days = struct
let get_cur_branch_search_start ~(overall_search_start : Time.Date_time.t)
(cur_branch : Time.Date_time.t) : Time.Date_time.t =
if
cur_branch.year = overall_search_start.year
&& cur_branch.month = overall_search_start.month
then overall_search_start
else Time.Date_time.set_to_first_day_hour_min_sec cur_branch
let int_month_days_of_matching_weekdays (t : time_pattern)
~(cur_branch_search_start : Time.Date_time.t) : int Seq.t =
let day_count =
Time.day_count_of_month ~year:cur_branch_search_start.year
~month:cur_branch_search_start.month
in
match t.weekdays with
| [] -> OSeq.(cur_branch_search_start.day -- day_count)
| l ->
OSeq.(cur_branch_search_start.day -- day_count)
|> Seq.filter (fun mday ->
match
Time.weekday_of_month_day ~year:cur_branch_search_start.year
~month:cur_branch_search_start.month ~mday
with
| Ok wday -> List.mem wday l
| Error () -> false)
let direct_matching_int_month_days (t : time_pattern)
~(cur_branch_search_start : Time.Date_time.t) : int Seq.t =
let day_count =
Time.day_count_of_month ~year:cur_branch_search_start.year
~month:cur_branch_search_start.month
in
match t.month_days with
| [] -> OSeq.(cur_branch_search_start.day -- day_count)
| l ->
List.filter
(fun mday -> cur_branch_search_start.day <= mday && mday <= day_count)
l
|> List.sort_uniq compare
|> List.to_seq
let matching_int_month_days (t : time_pattern)
~(cur_branch_search_start : Time.Date_time.t) : int Seq.t =
let matching_month_days =
direct_matching_int_month_days t ~cur_branch_search_start
|> List.of_seq
|> List.sort_uniq compare
in
let month_days_of_matching_weekdays =
int_month_days_of_matching_weekdays t ~cur_branch_search_start
|> List.of_seq
|> List.sort_uniq compare
in
OSeq.(1 -- 31)
|> Seq.filter (fun mday ->
List.mem mday matching_month_days
&& List.mem mday month_days_of_matching_weekdays)
let matching_days (t : time_pattern)
~(overall_search_start : Time.Date_time.t) (cur_branch : Time.Date_time.t)
: Time.Date_time.t Seq.t =
let cur_branch_search_start =
get_cur_branch_search_start ~overall_search_start cur_branch
in
matching_int_month_days t ~cur_branch_search_start
|> Seq.map (fun day -> { cur_branch_search_start with day })
let matching_day_ranges (t : time_pattern)
~(overall_search_start : Time.Date_time.t) (cur_branch : Time.Date_time.t)
: Time.Date_time.t Range.range Seq.t =
let range_map_start ~(cur_branch_search_start : Time.Date_time.t) x =
if x = cur_branch_search_start.day then cur_branch_search_start
else
Time.Date_time.set_to_first_hour_min_sec
{ cur_branch_search_start with day = x }
in
let range_map_inc ~(cur_branch_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~cur_branch_search_start x,
Time.Date_time.set_to_last_hour_min_sec
{ cur_branch_search_start with day = y } )
in
let range_map_exc ~(cur_branch_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~cur_branch_search_start x,
Time.Date_time.set_to_first_hour_min_sec
{ cur_branch_search_start with day = y } )
in
let cur_branch_search_start =
get_cur_branch_search_start ~overall_search_start cur_branch
in
let f_inc = range_map_inc ~cur_branch_search_start in
let f_exc = range_map_exc ~cur_branch_search_start in
match (t.month_days, t.weekdays) with
| [], [] ->
Seq.return
(`Range_inc
( cur_branch_search_start,
Time.Date_time.set_to_last_day_hour_min_sec cur_branch ))
| [], _weekdays ->
int_month_days_of_matching_weekdays t ~cur_branch_search_start
|> Time.Month_day_ranges.Of_seq.range_seq_of_seq
|> Seq.map (Range.map ~f_inc ~f_exc)
| _month_days, [] ->
direct_matching_int_month_days t ~cur_branch_search_start
|> Time.Month_day_ranges.Of_seq.range_seq_of_seq
|> Seq.map (Range.map ~f_inc ~f_exc)
| _, _ ->
matching_int_month_days t ~cur_branch_search_start
|> Time.Month_day_ranges.Of_seq.range_seq_of_seq
|> Seq.map (Range.map ~f_inc ~f_exc)
end
module Matching_months = struct
let get_cur_branch_search_start ~(overall_search_start : Time.Date_time.t)
(cur_branch : Time.Date_time.t) : Time.Date_time.t =
if cur_branch.year = overall_search_start.year then overall_search_start
else Time.Date_time.set_to_first_month_day_hour_min_sec cur_branch
let matching_months (t : time_pattern)
~(overall_search_start : Time.Date_time.t) (cur_branch : Time.Date_time.t)
: Time.Date_time.t Seq.t =
let cur_branch_search_start =
get_cur_branch_search_start ~overall_search_start cur_branch
in
let start_month_int =
Time.human_int_of_month cur_branch_search_start.month
in
match t.months with
| [] ->
OSeq.(start_month_int -- 12)
|> Seq.map (fun month -> Time.month_of_human_int month |> Result.get_ok)
|> Seq.map (fun month -> { cur_branch_search_start with month })
| pat_mon_list ->
pat_mon_list
|> List.to_seq
|> Seq.map Time.human_int_of_month
|> Seq.filter (fun month -> start_month_int <= month && month <= 12)
|> Seq.map (fun month -> Time.month_of_human_int month |> Result.get_ok)
|> Seq.map (fun month -> { cur_branch_search_start with month })
let matching_month_ranges (t : time_pattern)
~(overall_search_start : Time.Date_time.t) (cur_branch : Time.Date_time.t)
: Time.Date_time.t Range.range Seq.t =
let range_map_start ~(cur_branch_search_start : Time.Date_time.t) x =
if x = cur_branch_search_start.month then cur_branch_search_start
else
Time.Date_time.set_to_first_day_hour_min_sec
{ cur_branch_search_start with month = x }
in
let range_map_inc ~(cur_branch_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~cur_branch_search_start x,
Time.Date_time.set_to_last_day_hour_min_sec
{ cur_branch_search_start with month = y } )
in
let range_map_exc ~(cur_branch_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~cur_branch_search_start x,
Time.Date_time.set_to_first_day_hour_min_sec
{ cur_branch_search_start with month = y } )
in
let cur_branch_search_start =
get_cur_branch_search_start ~overall_search_start cur_branch
in
let start_month_int =
Time.human_int_of_month cur_branch_search_start.month
in
match t.months with
| [] ->
Seq.return
(`Range_inc
( cur_branch_search_start,
Time.Date_time.set_to_last_month_day_hour_min_sec
cur_branch_search_start ))
| l ->
l
|> List.sort_uniq Time.compare_month
|> List.to_seq
|> Seq.map Time.human_int_of_month
|> Seq.filter (fun month -> start_month_int <= month && month <= 12)
|> Seq.map (fun month -> Time.month_of_human_int month |> Result.get_ok)
|> Time.Month_ranges.Of_seq.range_seq_of_seq
|> Seq.map
(Range.map
~f_inc:(range_map_inc ~cur_branch_search_start)
~f_exc:(range_map_exc ~cur_branch_search_start))
end
module Matching_years = struct
let matching_years ~search_years_ahead (t : time_pattern)
~(overall_search_start : Time.Date_time.t) : Time.Date_time.t Seq.t =
match t.years with
| [] ->
OSeq.(
overall_search_start.year
--^ (overall_search_start.year + search_years_ahead))
|> Seq.map (fun year -> { overall_search_start with year })
| pat_year_list ->
pat_year_list
|> List.to_seq
|> Seq.filter (fun year ->
overall_search_start.year <= year
&& year < overall_search_start.year + search_years_ahead)
|> Seq.map (fun year -> { overall_search_start with year })
let matching_year_ranges ~search_years_ahead (t : time_pattern)
~(overall_search_start : Time.Date_time.t) :
Time.Date_time.t Range.range Seq.t =
let range_map_start ~(overall_search_start : Time.Date_time.t) x =
if x = overall_search_start.year then overall_search_start
else
Time.Date_time.set_to_first_month_day_hour_min_sec
{ overall_search_start with year = x }
in
let range_map_inc ~(overall_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~overall_search_start x,
Time.Date_time.set_to_last_month_day_hour_min_sec
{ overall_search_start with year = y } )
in
let range_map_exc ~(overall_search_start : Time.Date_time.t) (x, y) =
( range_map_start ~overall_search_start x,
Time.Date_time.set_to_last_month_day_hour_min_sec
{ overall_search_start with year = y } )
in
match t.years with
| [] ->
Seq.return
(`Range_inc
( overall_search_start,
Time.Date_time.set_to_last_month_day_hour_min_sec
{
overall_search_start with
year = overall_search_start.year + search_years_ahead - 1;
} ))
| l ->
List.sort_uniq compare l
|> List.to_seq
|> Seq.filter (fun year ->
overall_search_start.year <= year
&& year < overall_search_start.year + search_years_ahead)
|> Time.Year_ranges.Of_seq.range_seq_of_seq
|> Seq.map
(Range.map
~f_inc:(range_map_inc ~overall_search_start)
~f_exc:(range_map_exc ~overall_search_start))
end
module Matching_unix_seconds = struct
let matching_unix_seconds
~(search_using_tz_offset_s : Time.tz_offset_s option) (t : time_pattern)
(start : Time.Date_time.t) : Time.Date_time_set.t =
match Time.Date_time.to_unix_second start with
| Error () -> Time.Date_time_set.empty
| Ok start ->
t.unix_seconds
|> List.sort_uniq compare
|> List.to_seq
|> OSeq.filter (fun x -> x >= start)
|> Seq.filter_map (fun x ->
match
Time.Date_time.of_unix_second
~tz_offset_s_of_date_time:search_using_tz_offset_s x
with
| Ok x -> Some x
| Error () -> None)
|> Time.Date_time_set.of_seq
end
let override_search_param_possibly ~allow_search_param_override
(search_param : Search_param.t) (t : time_pattern) : Search_param.t =
if allow_search_param_override then
match t.years with
| [] -> search_param
| l -> (
let l = List.sort_uniq compare l in
let start_year = List.hd l in
let end_inc_year = List.hd (List.rev l) in
let search_using_tz_offset_s =
Search_param.search_using_tz_offset_s_of_search_param search_param
|> Option.value ~default:0
in
let start_date_time =
let open Time.Date_time in
{ min with year = start_year; tz_offset_s = search_using_tz_offset_s }
|> set_to_first_month_day_hour_min_sec
in
match
Search_param.start_date_time_and_search_years_ahead_of_search_param
search_param
with
| None ->
Search_param.Years_ahead_start_date_time
{
search_using_tz_offset_s = Some search_using_tz_offset_s;
start = start_date_time;
search_years_ahead = end_inc_year - start_year + 1;
}
| Some (start_date_time', search_years_ahead') ->
let cmp_value =
Time.Date_time.compare start_date_time start_date_time'
in
let end_inc_year =
max (start_date_time'.year + search_years_ahead') end_inc_year
in
let start_date_time =
if cmp_value <= 0 then start_date_time else start_date_time'
in
Search_param.Years_ahead_start_date_time
{
search_using_tz_offset_s = Some search_using_tz_offset_s;
start = start_date_time;
search_years_ahead = end_inc_year - start_date_time.year + 1;
} )
else search_param
module Single_pattern = struct
let filter_using_matching_unix_seconds ~search_using_tz_offset_s
(t : time_pattern) ~overall_search_start (s : Time.Date_time.t Seq.t) :
Time.Date_time.t Seq.t =
let matching_unix_seconds =
Matching_unix_seconds.matching_unix_seconds ~search_using_tz_offset_s t
overall_search_start
in
if Time.Date_time_set.is_empty matching_unix_seconds then s
else Seq.filter (fun x -> Time.Date_time_set.mem x matching_unix_seconds) s
let date_time_range_seq_of_unix_seconds ~search_using_tz_offset_s
(s : int64 Seq.t) : Time.Date_time.t Range.range Seq.t =
let f (x, y) =
( Time.Date_time.of_unix_second
~tz_offset_s_of_date_time:search_using_tz_offset_s x,
Time.Date_time.of_unix_second
~tz_offset_s_of_date_time:search_using_tz_offset_s y )
in
s
|> Ranges.Of_seq.range_seq_of_seq ~modulo:None
~to_int64:(fun x -> x)
~of_int64:(fun x -> x)
|> Seq.map (Range.map ~f_inc:f ~f_exc:f)
|> Seq.filter_map Range_utils.result_range_get
let matching_date_times ~(allow_search_param_override : bool)
(search_param : Search_param.t) (t : time_pattern) :
(Time.Date_time.t Seq.t, error) result =
Check.check_search_param_and_time_pattern search_param t
|> Result.map (fun () ->
let search_param =
override_search_param_possibly ~allow_search_param_override
search_param t
in
match
Search_param.start_date_time_and_search_years_ahead_of_search_param
search_param
with
| None -> Seq.empty
| Some (overall_search_start, search_years_ahead) ->
let search_using_tz_offset_s =
Search_param.search_using_tz_offset_s_of_search_param
search_param
in
Matching_years.matching_years ~search_years_ahead t
~overall_search_start
|> Seq.flat_map
(Matching_months.matching_months t ~overall_search_start)
|> Seq.flat_map
(Matching_days.matching_days t ~overall_search_start)
|> Seq.flat_map
(Matching_hours.matching_hours t ~overall_search_start)
|> Seq.flat_map
(Matching_minutes.matching_minutes t ~overall_search_start)
|> Seq.flat_map
(Matching_seconds.matching_seconds t ~overall_search_start)
|> filter_using_matching_unix_seconds ~search_using_tz_offset_s t
~overall_search_start)
let matching_unix_seconds ~(allow_search_param_override : bool)
(search_param : Search_param.t) (t : time_pattern) :
(int64 Seq.t, error) result =
matching_date_times ~allow_search_param_override search_param t
|> Result.map (fun s ->
Seq.filter_map
(fun x ->
match Time.Date_time.to_unix_second x with
| Ok x -> Some x
| Error () -> None)
s)
let matching_date_time_ranges ~(allow_search_param_override : bool)
(search_param : Search_param.t) (t : time_pattern) :
(Time.Date_time.t Range.range Seq.t, error) result =
match Check.check_search_param_and_time_pattern search_param t with
| Error msg -> Error msg
| Ok () -> (
let search_param =
override_search_param_possibly ~allow_search_param_override
search_param t
in
match
Search_param.start_date_time_and_search_years_ahead_of_search_param
search_param
with
| None -> Ok Seq.empty
| Some (overall_search_start, search_years_ahead) -> (
let search_using_tz_offset_s =
Search_param.search_using_tz_offset_s_of_search_param search_param
in
match
( t.years,
t.months,
t.month_days,
t.weekdays,
t.hours,
t.minutes,
t.seconds,
t.unix_seconds )
with
| _years, [], [], [], [], [], [], [] ->
Matching_years.matching_year_ranges ~search_years_ahead t
~overall_search_start
|> Result.ok
| _years, _months, [], [], [], [], [], [] ->
Matching_years.matching_years ~search_years_ahead t
~overall_search_start
|> Seq.flat_map
(Matching_months.matching_month_ranges t
~overall_search_start)
|> Result.ok
| _years, _months, _month_days, _weekdays, [], [], [], [] ->
Matching_years.matching_years ~search_years_ahead t
~overall_search_start
|> Seq.flat_map
(Matching_months.matching_months t ~overall_search_start)
|> Seq.flat_map
(Matching_days.matching_day_ranges t ~overall_search_start)
|> Result.ok
| _years, _months, _month_days, _weekdays, _hours, [], [], [] ->
Matching_years.matching_years ~search_years_ahead t
~overall_search_start
|> Seq.flat_map
(Matching_months.matching_months t ~overall_search_start)
|> Seq.flat_map
(Matching_days.matching_days t ~overall_search_start)
|> Seq.flat_map
(Matching_hours.matching_hour_ranges t
~overall_search_start)
|> Result.ok
| _years, _months, _month_days, _weekdays, _hours, _minutes, [], []
->
Matching_years.matching_years ~search_years_ahead t
~overall_search_start
|> Seq.flat_map
(Matching_months.matching_months t ~overall_search_start)
|> Seq.flat_map
(Matching_days.matching_days t ~overall_search_start)
|> Seq.flat_map
(Matching_hours.matching_hours t ~overall_search_start)
|> Seq.flat_map
(Matching_minutes.matching_minute_ranges t
~overall_search_start)
|> Result.ok
| ( _years,
_months,
_month_days,
_weekdays,
_hours,
_minutes,
_seconds,
[] ) ->
Matching_years.matching_years ~search_years_ahead t
~overall_search_start
|> Seq.flat_map
(Matching_months.matching_months t ~overall_search_start)
|> Seq.flat_map
(Matching_days.matching_days t ~overall_search_start)
|> Seq.flat_map
(Matching_hours.matching_hours t ~overall_search_start)
|> Seq.flat_map
(Matching_minutes.matching_minutes t ~overall_search_start)
|> Seq.flat_map
(Matching_seconds.matching_second_ranges t
~overall_search_start)
|> Result.ok
| [], [], [], [], [], [], [], unix_seconds ->
unix_seconds
|> List.to_seq
|> date_time_range_seq_of_unix_seconds ~search_using_tz_offset_s
|> Result.ok
| ( _years,
_months,
_month_days,
_weekdays,
_hours,
_minutes,
_seconds,
_unix_seconds ) ->
Matching_years.matching_years ~search_years_ahead t
~overall_search_start
|> Seq.flat_map
(Matching_months.matching_months t ~overall_search_start)
|> Seq.flat_map
(Matching_days.matching_days t ~overall_search_start)
|> Seq.flat_map
(Matching_hours.matching_hours t ~overall_search_start)
|> Seq.flat_map
(Matching_minutes.matching_minutes t ~overall_search_start)
|> Seq.flat_map
(Matching_seconds.matching_seconds t ~overall_search_start)
|> filter_using_matching_unix_seconds ~search_using_tz_offset_s
t ~overall_search_start
|> Seq.map (fun x -> `Range_inc (x, x))
|> Result.ok ) )
let matching_time_slots ~allow_search_param_override
(search_param : Search_param.t) (t : time_pattern) :
(Time_slot.t Seq.t, error) result =
let f (x, y) =
(Time.Date_time.to_unix_second x, Time.Date_time.to_unix_second y)
in
matching_date_time_ranges ~allow_search_param_override search_param t
|> Result.map (fun s ->
s
|> Seq.map (Range.map ~f_inc:f ~f_exc:f)
|> Seq.filter_map Range_utils.result_range_get
|> Seq.map (fun r ->
match r with
| `Range_inc (x, y) -> (x, Int64.succ y)
| `Range_exc (x, y) -> (x, y))
|> fun l ->
let time_slots =
match search_param with
| Time_slots { time_slots; _ } ->
let time_slots =
time_slots |> Time_slots.Normalize.normalize_list_in_seq_out
in
Some time_slots
| _ -> None
in
match time_slots with
| None -> l
| Some time_slots ->
Time_slots.inter time_slots ~skip_check:true l
|> Time_slots.Normalize.normalize ~skip_filter_invalid:true
~skip_sort:true)
let matching_time_slots_round_robin_non_decreasing
~allow_search_param_override (search_param : Search_param.t)
(l : time_pattern list) : (Time_slot.t list Seq.t, error) result =
let l =
List.map (matching_time_slots ~allow_search_param_override search_param) l
in
match List.find_opt Result.is_error l with
| Some e -> Error (Result.get_error e)
| None ->
l
|> List.map Result.get_ok
|> Time_slots.Round_robin.collect_round_robin_non_decreasing
~skip_check:true
|> OSeq.take_while (List.for_all Option.is_some)
|> Seq.map (List.map Option.get)
|> Result.ok
let matching_time_slots_round_robin_non_decreasing_flat
~allow_search_param_override (search_param : Search_param.t)
(l : time_pattern list) : (Time_slot.t Seq.t, error) result =
matching_time_slots_round_robin_non_decreasing ~allow_search_param_override
search_param l
|> Result.map (Seq.flat_map List.to_seq)
let next_match_date_time ~(allow_search_param_override : bool)
(search_param : Search_param.t) (t : time_pattern) :
(Time.Date_time.t option, error) result =
matching_date_times ~allow_search_param_override search_param t
|> Result.map (fun s ->
match s () with Seq.Nil -> None | Seq.Cons (x, _) -> Some x)
let next_match_unix_second ~(allow_search_param_override : bool)
(search_param : Search_param.t) (t : time_pattern) :
(int64 option, error) result =
next_match_date_time ~allow_search_param_override search_param t
|> Result.map (fun x ->
match x with
| None -> None
| Some x -> (
match Time.Date_time.to_unix_second x with
| Error () -> None
| Ok x -> Some x ))
let next_match_time_slot ~(allow_search_param_override : bool)
(search_param : Search_param.t) (t : time_pattern) :
(Time_slot.t option, error) result =
matching_time_slots ~allow_search_param_override search_param t
|> Result.map (fun s ->
match s () with Seq.Nil -> None | Seq.Cons (x, _) -> Some x)
end
module Range_pattern = struct
let matching_time_slots ~allow_search_param_override
(search_param : Search_param.t) (range : time_range_pattern) :
(Time_slot.t Seq.t, error) result =
let start_pat =
match range with `Range_inc (t1, _) | `Range_exc (t1, _) -> t1
in
let search_param =
override_search_param_possibly ~allow_search_param_override search_param
start_pat
in
let search_and_get_start (search_param : Search_param.t) (t : time_pattern)
((start, _) : Time_slot.t) : Time_slot.t option =
let search_param =
Search_param.push_search_param_to_later_start ~start search_param
|> Result.get_ok
in
match
Single_pattern.next_match_time_slot ~allow_search_param_override:false
search_param t
|> Result.get_ok
with
| None -> None
| Some (start', _) -> Some (start, start')
in
let search_and_get_end_exc (search_param : Search_param.t)
(t : time_pattern) ((start, _) : Time_slot.t) : Time_slot.t option =
let search_param =
Search_param.push_search_param_to_later_start ~start search_param
|> Result.get_ok
in
match
Single_pattern.next_match_time_slot ~allow_search_param_override:false
search_param t
|> Result.get_ok
with
| None -> None
| Some (_, end_exc') -> Some (start, end_exc')
in
Check.check_search_param_and_time_range_pattern search_param range
|> Result.map (fun () ->
let s =
Single_pattern.matching_time_slots
~allow_search_param_override:false search_param start_pat
|> Result.get_ok
in
match range with
| `Range_inc (_, t2) ->
Seq.filter_map (search_and_get_end_exc search_param t2) s
| `Range_exc (_, t2) ->
Seq.filter_map (search_and_get_start search_param t2) s)
let next_match_time_slot ~allow_search_param_override
(search_param : Search_param.t) (range : time_range_pattern) :
((int64 * int64) option, error) result =
matching_time_slots ~allow_search_param_override search_param range
|> Result.map (fun s ->
match s () with
| Seq.Nil -> None
| Seq.Cons ((start, end_exc), _) -> Some (start, end_exc))
let matching_time_slots_multi ~allow_search_param_override
(search_param : Search_param.t) (l : time_range_pattern list) :
(Time_slot.t Seq.t, error) result =
let l =
List.map (matching_time_slots ~allow_search_param_override search_param) l
in
match List.find_opt Result.is_error l with
| Some e -> Error (Result.get_error e)
| None ->
l
|> List.map Result.get_ok
|> Time_slots.Merge.merge_multi_list ~skip_check:true
|> Result.ok
let next_match_time_slot_multi ~allow_search_param_override
(search_param : Search_param.t) (l : time_range_pattern list) :
((int64 * int64) option, error) result =
matching_time_slots_multi ~allow_search_param_override search_param l
|> Result.map (fun s ->
match s () with
| Seq.Nil -> None
| Seq.Cons ((start, end_exc), _) -> Some (start, end_exc))
let matching_time_slots_round_robin_non_decreasing
~allow_search_param_override (search_param : Search_param.t)
(l : time_range_pattern list) : (Time_slot.t list Seq.t, error) result =
let l =
List.map (matching_time_slots ~allow_search_param_override search_param) l
in
match List.find_opt Result.is_error l with
| Some e -> Error (Result.get_error e)
| None ->
l
|> List.map Result.get_ok
|> Time_slots.Round_robin.collect_round_robin_non_decreasing
~skip_check:true
|> OSeq.take_while (List.for_all Option.is_some)
|> Seq.map (List.map Option.get)
|> Result.ok
let matching_time_slots_round_robin_non_decreasing_flat
~allow_search_param_override (search_param : Search_param.t)
(l : time_range_pattern list) : (Time_slot.t Seq.t, error) result =
matching_time_slots_round_robin_non_decreasing ~allow_search_param_override
search_param l
|> Result.map (Seq.flat_map List.to_seq)
end
module Serialize = struct
let pack_pattern (t : time_pattern) : Time_pattern_t.time_pattern =
{
years = t.years;
months = t.months;
weekdays = t.weekdays;
month_days = t.month_days;
hours = t.hours;
minutes = t.minutes;
seconds = t.seconds;
unix_seconds = List.map Misc_utils.int32_int32_of_int64 t.unix_seconds;
}
end
module Deserialize = struct
let unpack_pattern (t : Time_pattern_t.time_pattern) : time_pattern =
{
years = t.years;
months = t.months;
weekdays = t.weekdays;
month_days = t.month_days;
hours = t.hours;
minutes = t.minutes;
seconds = t.seconds;
unix_seconds = List.map Misc_utils.int64_of_int32_int32 t.unix_seconds;
}
end
module Equal = struct
let equal (pat1 : time_pattern) (pat2 : time_pattern) : bool =
List.sort compare pat1.years = List.sort compare pat2.years
&& List.sort compare pat1.months = List.sort compare pat2.months
&& List.sort compare pat1.weekdays = List.sort compare pat2.weekdays
&& List.sort compare pat1.month_days = List.sort compare pat2.month_days
&& List.sort compare pat1.hours = List.sort compare pat2.hours
&& List.sort compare pat1.minutes = List.sort compare pat2.minutes
end
module Parsers = struct
open CCParse
open Parser_components
let end_markers = " ]"
let non_end_markers = chars_if (fun c -> not (String.contains end_markers c))
let range_inc_expr (p : 'a t) : 'a Range.range t =
try_ (p >>= fun x -> hyphen *> p >>= fun y -> return (`Range_inc (x, y)))
<|> (p >>= fun x -> return (`Range_inc (x, x)))
let ranges_expr ~allow_empty ~(f_flatten : 'a Range.range list -> 'a list)
(p : 'a t) : 'a list t =
get_cnum
>>= fun cnum ->
( if allow_empty then
sep_fail_on_first_fail ~by:',' ~end_markers (range_inc_expr p)
else sep_fail_on_first_fail ~by:',' ~end_markers (range_inc_expr p) )
>>= fun l ->
try return (f_flatten l)
with Range.Range_is_invalid -> failf "Invalid range, pos: %d" cnum
let time_pattern_ranges_expr (p : 'a list t) : 'a list t =
try_ (char '[') *> p
>>= (fun l ->
try_ (char ']' *> return l)
<|> ( get_cnum
>>= fun cnum ->
non_square_bracket_string
>>= fun s ->
if s = "" then failf "Missing ], pos: %d" cnum
else failf "Invalid ranges: %s, pos: %d" s cnum ))
<|> return []
module Second = struct
let second_expr =
nat_zero
>>= (fun x -> if x >= 60 then failf "Invalid second: %d" x else return x)
<|> ( get_cnum
>>= fun cnum ->
non_end_markers
>>= fun s -> failf "Invalid second term: %s, pos: %d" s cnum )
let seconds_expr ~allow_empty =
ranges_expr ~allow_empty
~f_flatten:Time.Second_ranges.Flatten.flatten_list second_expr
let seconds_cron_expr =
try_ (char '*' *> return []) <|> seconds_expr ~allow_empty:false
let seconds_time_pattern_expr =
time_pattern_ranges_expr (seconds_expr ~allow_empty:true)
end
module Minute = struct
let minute_expr =
try_ nat_zero
>>= (fun x -> if x >= 60 then failf "Invalid minute: %d" x else return x)
<|> ( get_cnum
>>= fun cnum ->
non_end_markers
>>= fun s -> failf "Invalid minute term: %s, pos: %d" s cnum )
let minutes_expr ~allow_empty =
ranges_expr ~allow_empty
~f_flatten:Time.Minute_ranges.Flatten.flatten_list minute_expr
let minutes_cron_expr =
try_ (char '*' *> return []) <|> minutes_expr ~allow_empty:false
let minutes_time_pattern_expr =
time_pattern_ranges_expr (minutes_expr ~allow_empty:true)
end
module Hour = struct
let hour_expr =
nat_zero
>>= (fun x -> if x >= 24 then failf "Invalid hour: %d" x else return x)
<|> ( get_cnum
>>= fun cnum ->
non_end_markers
>>= fun s -> failf "Invalid hour term: %s, pos: %d" s cnum )
let hours_expr ~allow_empty =
ranges_expr ~allow_empty ~f_flatten:Time.Hour_ranges.Flatten.flatten_list
hour_expr
let hours_cron_expr =
try_ (char '*' *> return []) <|> hours_expr ~allow_empty:false
let hours_time_pattern_expr =
time_pattern_ranges_expr (hours_expr ~allow_empty:true)
end
module Month_day = struct
let month_day_expr =
nat_zero
>>= fun x ->
if 1 <= x && x <= 31 then return x else failf "Invalid month day: %d" x
let month_days_expr ~allow_empty =
ranges_expr ~allow_empty
~f_flatten:Time.Month_day_ranges.Flatten.flatten_list month_day_expr
let month_days_cron_expr =
try_ (char '*' *> return []) <|> month_days_expr ~allow_empty:false
let month_days_time_pattern_expr =
time_pattern_ranges_expr (month_days_expr ~allow_empty:true)
end
module Month = struct
let month_int_expr =
nat_zero
>>= fun x ->
match Time.month_of_human_int x with
| Ok x -> return x
| Error () -> failf "Invalid month int: %d" x
let month_word_expr ~for_cron =
alpha_string
>>= fun x ->
if for_cron && String.length x <> 3 then
failf "Invalid length for month string: %s" x
else
match Time.Of_string.month_of_string x with
| Ok x -> return x
| Error () -> failf "Invalid month string: %s" x
let month_expr ~for_cron =
month_word_expr ~for_cron <|> month_int_expr
let months_expr ~allow_empty ~for_cron =
ranges_expr ~allow_empty ~f_flatten:Time.Month_ranges.Flatten.flatten_list
(month_expr ~for_cron)
let months_cron_expr =
try_ (char '*' *> return [])
<|> months_expr ~allow_empty:false ~for_cron:true
let months_time_pattern_expr =
time_pattern_ranges_expr (months_expr ~allow_empty:true ~for_cron:false)
end
module Year = struct
let year_expr =
try_ nat_zero
<|> ( get_cnum
>>= fun cnum ->
non_end_markers
>>= fun s -> failf "Invalid year term: %s, pos: %d" s cnum )
let years_expr ~allow_empty =
ranges_expr ~allow_empty ~f_flatten:Time.Year_ranges.Flatten.flatten_list
year_expr
let years_time_pattern_expr =
time_pattern_ranges_expr (years_expr ~allow_empty:true)
end
module Weekday = struct
let weekday_int_expr =
get_cnum
>>= fun cnum ->
nat_zero
>>= fun x ->
match Time.weekday_of_tm_int x with
| Ok x -> return x
| Error () -> failf "Invalid weekday int: %d, pos: %d" x cnum
let weekday_word_expr ~for_cron =
get_cnum
>>= fun cnum ->
alpha_string
>>= fun x ->
if for_cron && String.length x <> 3 then
failf "Invalid length for weekday string: %s, pos: %d" x cnum
else
match Time.Of_string.weekday_of_string x with
| Ok x -> return x
| Error () -> failf "Invalid weekday string: %s, pos: %d" x cnum
let weekday_expr ~for_cron =
if for_cron then weekday_int_expr <|> weekday_word_expr ~for_cron
else weekday_word_expr ~for_cron
let weekdays_expr ~allow_empty ~for_cron =
ranges_expr ~allow_empty
~f_flatten:Time.Weekday_ranges.Flatten.flatten_list
(weekday_expr ~for_cron)
let weekdays_cron_expr =
try_ (char '*' *> return [])
<|> weekdays_expr ~allow_empty:false ~for_cron:true
let weekdays_time_pattern_expr =
time_pattern_ranges_expr (weekdays_expr ~allow_empty:true ~for_cron:false)
end
let cron_expr =
Minute.minutes_cron_expr
>>= fun minutes ->
skip_space1 *> Hour.hours_cron_expr
>>= fun hours ->
skip_space1 *> Month_day.month_days_cron_expr
>>= fun month_days ->
skip_space1 *> Month.months_cron_expr
>>= fun months ->
skip_space1 *> Weekday.weekdays_cron_expr
>>= fun weekdays ->
eoi
*> return
{
years = [];
months;
month_days;
weekdays;
hours;
minutes;
seconds = [];
unix_seconds = [];
}
let unit_char c : unit t =
get_cnum
>>= fun cnum ->
try_ (char c) *> nop
<|> ( char_if (fun _ -> true)
>>= fun c -> failf "Invalid unit char: %c, pos: %d" c cnum )
let optional_part p = option [] (try_ p)
let time_pattern_core_expr =
optional_part (unit_char 'y' *> skip_space *> Year.years_time_pattern_expr)
>>= fun years ->
skip_space
*> optional_part
(unit_char 'm' *> skip_space *> Month.months_time_pattern_expr)
>>= fun months ->
skip_space
*> optional_part
(unit_char 'd' *> skip_space *> Month_day.month_days_time_pattern_expr)
>>= fun month_days ->
skip_space
*> optional_part
(unit_char 'w' *> skip_space *> Weekday.weekdays_time_pattern_expr)
>>= fun weekdays ->
skip_space
*> optional_part
(unit_char 'h' *> skip_space *> Hour.hours_time_pattern_expr)
>>= fun hours ->
skip_space
*> unit_char 'm'
*> skip_space
*> Minute.minutes_time_pattern_expr
>>= fun minutes ->
skip_space
*> optional_part
(unit_char 's' *> skip_space *> Second.seconds_time_pattern_expr)
>>= fun seconds ->
return
{
years;
months;
month_days;
weekdays;
hours;
minutes;
seconds;
unix_seconds = [];
}
let time_pattern_expr = try_ time_pattern_core_expr <|> cron_expr
end
module Of_string = struct
open CCParse
let time_pattern_of_cron_string (s : string) : (time_pattern, string) result =
parse_string (Parsers.cron_expr <* eoi) s
let time_pattern_of_string (s : string) : (time_pattern, string) result =
parse_string (Parsers.time_pattern_expr <* skip_space <* eoi) s
end
module To_string = struct
let string_of_error (e : error) : string =
match e with
| Invalid_search_param _ -> "Invalid search param"
| Invalid_time_pattern _ -> "Invalid time pattern"
let debug_string_of_weekdays (days : Time.weekday list) : string =
let aux l =
String.concat "," (List.map Time.To_string.string_of_weekday l)
in
Printf.sprintf "weekday [%s]" (aux days)
let debug_string_of_month_days (days : int list) : string =
let aux l = String.concat "," (List.map string_of_int l) in
Printf.sprintf "month day [%s]" (aux days)
let debug_string_of_time_pattern ?(indent_level = 0)
?(buffer = Buffer.create 4096) (t : time_pattern) : string =
let aux l = String.concat "," (List.map string_of_int l) in
let aux_months l =
String.concat "," (List.map Time.To_string.string_of_month l)
in
Debug_print.bprintf ~indent_level buffer "time pattern :\n";
Debug_print.bprintf ~indent_level:(indent_level + 1) buffer "years : [%s]\n"
(aux t.years);
Debug_print.bprintf ~indent_level:(indent_level + 1) buffer
"months : [%s]\n" (aux_months t.months);
Debug_print.bprintf ~indent_level:(indent_level + 1) buffer
"month days : %s\n"
(debug_string_of_month_days t.month_days);
Debug_print.bprintf ~indent_level:(indent_level + 1) buffer
"weekdays : %s\n"
(debug_string_of_weekdays t.weekdays);
Debug_print.bprintf ~indent_level:(indent_level + 1) buffer "hours : [%s]\n"
(aux t.hours);
Debug_print.bprintf ~indent_level:(indent_level + 1) buffer
"minutes : [%s]\n" (aux t.minutes);
Debug_print.bprintf ~indent_level:(indent_level + 1) buffer
"seconds : [%s]\n" (aux t.seconds);
Buffer.contents buffer
let debug_string_of_time_range_pattern ?(indent_level = 0)
?(buffer = Buffer.create 4096) (t : time_range_pattern) : string =
( match t with
| `Range_inc (t1, t2) ->
Debug_print.bprintf ~indent_level buffer
"time range pattern inclusive:\n";
debug_string_of_time_pattern ~indent_level:(indent_level + 1) ~buffer t1
|> ignore;
debug_string_of_time_pattern ~indent_level:(indent_level + 1) ~buffer t2
|> ignore
| `Range_exc (t1, t2) ->
Debug_print.bprintf ~indent_level buffer
"time range pattern exclusive:\n";
debug_string_of_time_pattern ~indent_level:(indent_level + 1) ~buffer t1
|> ignore;
debug_string_of_time_pattern ~indent_level:(indent_level + 1) ~buffer t2
|> ignore );
Buffer.contents buffer
let debug_string_of_single_or_ranges ?(indent_level = 0)
?(buffer = Buffer.create 4096) (t : single_or_ranges) : string =
match t with
| Single_time_pattern t ->
debug_string_of_time_pattern ~indent_level ~buffer t
| Time_range_patterns l ->
List.iter
(fun t ->
debug_string_of_time_range_pattern ~indent_level ~buffer t |> ignore)
l;
Buffer.contents buffer
end
module Print = struct
let debug_print_time_pattern ?(indent_level = 0) t =
print_string (To_string.debug_string_of_time_pattern ~indent_level t)
let debug_print_time_range_pattern ?(indent_level = 0) t =
print_string (To_string.debug_string_of_time_range_pattern ~indent_level t)
let debug_print_single_or_ranges ?(indent_level = 0) t =
print_string (To_string.debug_string_of_single_or_ranges ~indent_level t)
end