Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
pattern_resolver.ml1 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 735module Branch = struct type t = { year : int; month : int; day : int; hour : int; minute : int; second : int; ns : int; } let to_timestamp_local t = Timedesc.Zoneless.of_date_and_time (Timedesc.Date.Ymd.make_exn ~year:t.year ~month:t.month ~day:t.day) (Timedesc.Time.make_exn ~hour:t.hour ~minute:t.minute ~second:t.second ~ns:t.ns ()) |> Timedesc.Zoneless.to_timestamp_local let to_date_time ~offset_from_utc (x : t) : Timedesc.t option = match Timedesc.make_unambiguous ~offset_from_utc ~year:x.year ~month:x.month ~day:x.day ~hour:x.hour ~minute:x.minute ~second:x.second ~ns:x.ns () with | Ok t -> Some t | Error `Does_not_exist -> None | Error _ -> failwith "Unexpected case" let of_date_time (x : Timedesc.t) : t = let { Timedesc.Date.Ymd.year; month; day } = Timedesc.ymd_date x in let { Timedesc.Time.hour; minute; second; ns } = Timedesc.time_view x in { year; month; day; hour; minute; second; ns } let set_to_first_ns (x : t) : t = { x with ns = 0 } let set_to_last_ns (x : t) : t = { x with ns = Timedesc.Span.ns_count_in_s - 1 } let set_to_first_sec_ns (x : t) : t = { x with second = 0 } |> set_to_first_ns let set_to_last_sec_ns (x : t) : t = { x with second = 59 } |> set_to_last_ns let set_to_first_min_sec_ns (x : t) : t = { x with minute = 0 } |> set_to_first_sec_ns let set_to_last_min_sec_ns (x : t) : t = { x with minute = 59 } |> set_to_last_sec_ns let set_to_first_hour_min_sec_ns (x : t) : t = { x with hour = 0 } |> set_to_first_min_sec_ns let set_to_last_hour_min_sec_ns (x : t) : t = { x with hour = 23 } |> set_to_last_min_sec_ns let set_to_first_day_hour_min_sec_ns (x : t) : t = { x with day = 1 } |> set_to_first_hour_min_sec_ns let set_to_last_day_hour_min_sec_ns (x : t) : t = { x with day = Timedesc.Utils.day_count_of_month ~year:x.year ~month:x.month; } |> set_to_last_hour_min_sec_ns let set_to_first_month_day_hour_min_sec_ns (x : t) : t = { x with month = 1 } |> set_to_first_day_hour_min_sec_ns let set_to_last_month_day_hour_min_sec_ns (x : t) : t = { x with month = 12 } |> set_to_last_day_hour_min_sec_ns end module Search_param = struct type t = { search_using_offset_from_utc : Timedesc.Span.t; start : Branch.t; end_inc : Branch.t; start_dt : Timedesc.t; end_inc_dt : Timedesc.t; } let make ~search_using_offset_from_utc_s ((start, end_exc) : Time.Interval'.t) : t = let search_using_offset_from_utc = Timedesc.Span.make_small ~s:search_using_offset_from_utc_s () in let tz_of_date_time = Timedesc.Time_zone.make_offset_only_exn search_using_offset_from_utc in let start_dt = CCOption.get_exn_or "Expected successful date time construction from timestamp" @@ Timedesc.of_timestamp ~tz_of_date_time start in let end_inc_dt = CCOption.get_exn_or "Expected successful date time construction from timestamp" @@ Timedesc.of_timestamp ~tz_of_date_time (Timedesc.Span.pred end_exc) in { search_using_offset_from_utc; start = Branch.of_date_time start_dt; end_inc = Branch.of_date_time end_inc_dt; start_dt; end_inc_dt; } end let failwith_unexpected_case (_ : 'a) = failwith "Unexpected case" module Matching_ns = struct let get_cur_branch_search_start cur_branch = Branch.set_to_first_ns cur_branch let get_cur_branch_search_end_inc cur_branch = Branch.set_to_last_ns cur_branch let matching_ns_inc_ranges (t : Pattern.t) (cur_branch : Branch.t) : (Branch.t * Branch.t) Seq.t = let cur_branch_search_start = get_cur_branch_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc cur_branch in let map_inc ~(cur_branch : Branch.t) (x, y) = ({ cur_branch with ns = x }, { cur_branch with ns = y }) in if Diet.Int.is_empty t.ns then Seq.return (cur_branch_search_start, cur_branch_search_end_inc) else let ns_inc_list = Diet.Int.fold (fun interval acc -> (Diet.Int.Interval.x interval, Diet.Int.Interval.y interval) :: acc) t.ns [] |> List.rev in let ns_inc_seq = ns_inc_list |> CCList.to_seq in Seq.map (map_inc ~cur_branch) ns_inc_seq end module Matching_seconds = struct let get_cur_branch_search_start cur_branch = Branch.set_to_first_sec_ns cur_branch let get_cur_branch_search_end_inc cur_branch = Branch.set_to_last_sec_ns cur_branch let matching_seconds (t : Pattern.t) (cur_branch : Branch.t) : Branch.t Seq.t = let cur_branch_search_start = get_cur_branch_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc cur_branch in if Int_set.is_empty t.seconds then Seq.map (fun second -> { cur_branch with second }) OSeq.( cur_branch_search_start.second -- cur_branch_search_end_inc.second) else t.seconds |> Int_set.to_seq |> Seq.map (fun second -> { cur_branch with second }) let matching_second_inc_ranges (t : Pattern.t) (cur_branch : Branch.t) : (Branch.t * Branch.t) Seq.t = let cur_branch_search_start = get_cur_branch_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc cur_branch in let map_inc ~(cur_branch : Branch.t) (x, y) = ( Branch.set_to_first_ns { cur_branch with second = x }, Branch.set_to_last_ns { cur_branch with second = y } ) in if Int_set.is_empty t.seconds then Seq.return (cur_branch_search_start, cur_branch_search_end_inc) else t.seconds |> Int_set.to_seq |> Time.Second_ranges.Of_seq.range_seq_of_seq |> Time.Second_ranges.get_inc |> Seq.map (map_inc ~cur_branch) end module Matching_minutes = struct let get_cur_branch_search_start (cur_branch : Branch.t) : Branch.t = Branch.set_to_first_min_sec_ns cur_branch let get_cur_branch_search_end_inc (cur_branch : Branch.t) : Branch.t = Branch.set_to_last_min_sec_ns cur_branch let matching_minutes (t : Pattern.t) (cur_branch : Branch.t) : Branch.t Seq.t = let cur_branch_search_start = get_cur_branch_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc cur_branch in if Int_set.is_empty t.minutes then Seq.map (fun minute -> { cur_branch with minute }) OSeq.( cur_branch_search_start.minute -- cur_branch_search_end_inc.minute) else t.minutes |> Int_set.to_seq |> Seq.map (fun minute -> { cur_branch_search_start with minute }) let matching_minute_inc_ranges (t : Pattern.t) (cur_branch : Branch.t) : (Branch.t * Branch.t) Seq.t = let cur_branch_search_start = get_cur_branch_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc cur_branch in let map_inc ~(cur_branch : Branch.t) (x, y) = ( Branch.set_to_first_sec_ns { cur_branch with minute = x }, Branch.set_to_last_sec_ns { cur_branch with minute = y } ) in if Int_set.is_empty t.minutes then Seq.return (cur_branch_search_start, cur_branch_search_end_inc) else t.minutes |> Int_set.to_seq |> Time.Minute_ranges.Of_seq.range_seq_of_seq |> Time.Minute_ranges.get_inc |> Seq.map (map_inc ~cur_branch) end module Matching_hours = struct let get_cur_branch_search_start ~(overall_search_start : Branch.t) (cur_branch : Branch.t) : Branch.t = if overall_search_start.year = cur_branch.year && overall_search_start.month = cur_branch.month && overall_search_start.day = cur_branch.day then overall_search_start else Branch.set_to_first_hour_min_sec_ns cur_branch let get_cur_branch_search_end_inc ~(overall_search_end_inc : Branch.t) (cur_branch : Branch.t) : Branch.t = if overall_search_end_inc.year = cur_branch.year && overall_search_end_inc.month = cur_branch.month && overall_search_end_inc.day = cur_branch.day then overall_search_end_inc else Branch.set_to_last_hour_min_sec_ns cur_branch let matching_hours ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) (t : Pattern.t) (cur_branch : Branch.t) : Branch.t Seq.t = let cur_branch_search_start = get_cur_branch_search_start ~overall_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc ~overall_search_end_inc cur_branch in let hour_start = cur_branch_search_start.hour in let hour_end_inc = cur_branch_search_end_inc.hour in if Int_set.is_empty t.hours then Seq.map (fun hour -> { cur_branch with hour }) OSeq.(cur_branch_search_start.hour -- cur_branch_search_end_inc.hour) else t.hours |> Int_set.to_seq |> Seq.filter (fun hour -> hour_start <= hour && hour <= hour_end_inc) |> Seq.map (fun hour -> { cur_branch with hour }) let matching_hour_inc_ranges ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) (t : Pattern.t) (cur_branch : Branch.t) : (Branch.t * Branch.t) Seq.t = let cur_branch_search_start = get_cur_branch_search_start ~overall_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc ~overall_search_end_inc cur_branch in let map_inc ~(cur_branch : Branch.t) (x, y) = ( Branch.set_to_first_min_sec_ns { cur_branch with hour = x }, Branch.set_to_last_min_sec_ns { cur_branch with hour = y } ) in let hour_start = cur_branch_search_start.hour in let hour_end_inc = cur_branch_search_end_inc.hour in if Int_set.is_empty t.hours then Seq.return (cur_branch_search_start, cur_branch_search_end_inc) else t.hours |> Int_set.to_seq |> Seq.filter (fun hour -> hour_start <= hour && hour <= hour_end_inc) |> Time.Hour_ranges.Of_seq.range_seq_of_seq |> Time.Hour_ranges.get_inc |> Seq.map (map_inc ~cur_branch) end module Matching_days = struct let get_cur_branch_search_start ~(overall_search_start : Branch.t) (cur_branch : Branch.t) : Branch.t = if overall_search_start.year = cur_branch.year && overall_search_start.month = cur_branch.month then overall_search_start else Branch.set_to_first_day_hour_min_sec_ns cur_branch let get_cur_branch_search_end_inc ~(overall_search_end_inc : Branch.t) (cur_branch : Branch.t) : Branch.t = if overall_search_end_inc.year = cur_branch.year && overall_search_end_inc.month = cur_branch.month then overall_search_end_inc else Branch.set_to_last_day_hour_min_sec_ns cur_branch let int_month_days_of_matching_weekdays ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) ~(cur_branch : Branch.t) (t : Pattern.t) : int Seq.t = let cur_branch_search_start = get_cur_branch_search_start ~overall_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc ~overall_search_end_inc cur_branch in let day_start = cur_branch_search_start.day in let day_end_inc = cur_branch_search_end_inc.day in if Weekday_set.is_empty t.weekdays then OSeq.(day_start -- day_end_inc) else OSeq.(day_start -- day_end_inc) |> Seq.filter (fun day -> let wday = Timedesc.Date.Ymd.make_exn ~year:cur_branch.year ~month:cur_branch.month ~day |> Timedesc.Date.weekday in Weekday_set.mem wday t.weekdays) let direct_matching_int_month_days ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) ~(cur_branch : Branch.t) (t : Pattern.t) : int Seq.t = let cur_branch_search_start = get_cur_branch_search_start ~overall_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc ~overall_search_end_inc cur_branch in let day_start = cur_branch_search_start.day in let day_end_inc = cur_branch_search_end_inc.day in let day_count = Timedesc.Utils.day_count_of_month ~year:cur_branch.year ~month:cur_branch.month in if Int_set.is_empty t.month_days then OSeq.(day_start -- day_end_inc) else t.month_days |> Int_set.to_seq |> Seq.map (fun mday -> if mday < 0 then day_count + mday + 1 else mday) |> Seq.filter (fun mday -> 1 <= mday && mday <= day_end_inc) let matching_int_month_days ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) ~(cur_branch : Branch.t) (t : Pattern.t) : int Seq.t = let matching_month_days = direct_matching_int_month_days t ~overall_search_start ~overall_search_end_inc ~cur_branch |> Int_set.of_seq in let month_days_of_matching_weekdays = int_month_days_of_matching_weekdays t ~overall_search_start ~overall_search_end_inc ~cur_branch |> Int_set.of_seq in Int_set.inter matching_month_days month_days_of_matching_weekdays |> Int_set.to_seq let matching_days ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) (t : Pattern.t) (cur_branch : Branch.t) : Branch.t Seq.t = matching_int_month_days t ~overall_search_start ~overall_search_end_inc ~cur_branch |> Seq.map (fun day -> { cur_branch with day }) let matching_day_inc_ranges ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) (t : Pattern.t) (cur_branch : Branch.t) : (Branch.t * Branch.t) Seq.t = let cur_branch_search_start = get_cur_branch_search_start ~overall_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc ~overall_search_end_inc cur_branch in let map_inc ~(cur_branch : Branch.t) (x, y) = ( Branch.set_to_first_hour_min_sec_ns { cur_branch with day = x }, Branch.set_to_last_hour_min_sec_ns { cur_branch with day = y } ) in match (Int_set.is_empty t.month_days, Weekday_set.is_empty t.weekdays) with | true, true -> Seq.return (cur_branch_search_start, cur_branch_search_end_inc) | true, false -> int_month_days_of_matching_weekdays ~overall_search_start ~overall_search_end_inc ~cur_branch t |> Time.Month_day_ranges.Of_seq.range_seq_of_seq |> Time.Month_day_ranges.get_inc |> Seq.map (map_inc ~cur_branch) | false, true -> direct_matching_int_month_days t ~overall_search_start ~overall_search_end_inc ~cur_branch |> Time.Month_day_ranges.Of_seq.range_seq_of_seq |> Time.Month_day_ranges.get_inc |> Seq.map (map_inc ~cur_branch) | false, false -> matching_int_month_days t ~overall_search_start ~overall_search_end_inc ~cur_branch |> Time.Month_day_ranges.Of_seq.range_seq_of_seq |> Time.Month_day_ranges.get_inc |> Seq.map (map_inc ~cur_branch) end module Matching_months = struct let get_cur_branch_search_start ~(overall_search_start : Branch.t) (cur_branch : Branch.t) : Branch.t = if overall_search_start.year = cur_branch.year then overall_search_start else Branch.set_to_first_month_day_hour_min_sec_ns cur_branch let get_cur_branch_search_end_inc ~(overall_search_end_inc : Branch.t) (cur_branch : Branch.t) : Branch.t = if overall_search_end_inc.year = cur_branch.year then overall_search_end_inc else Branch.set_to_last_month_day_hour_min_sec_ns cur_branch let matching_months ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) (t : Pattern.t) (cur_branch : Branch.t) : Branch.t Seq.t = let cur_branch_search_start = get_cur_branch_search_start ~overall_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc ~overall_search_end_inc cur_branch in let month_start = cur_branch_search_start.month in let month_end_inc = cur_branch_search_end_inc.month in if Int_set.is_empty t.months then OSeq.(month_start -- month_end_inc) |> Seq.map (fun month -> { cur_branch_search_start with month }) else t.months |> Int_set.to_seq |> Seq.filter (fun month -> month_start <= month && month <= month_end_inc) |> Seq.map (fun month -> { cur_branch_search_start with month }) let matching_month_inc_ranges ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) (t : Pattern.t) (cur_branch : Branch.t) : (Branch.t * Branch.t) Seq.t = let cur_branch_search_start = get_cur_branch_search_start ~overall_search_start cur_branch in let cur_branch_search_end_inc = get_cur_branch_search_end_inc ~overall_search_end_inc cur_branch in let map_inc ~(cur_branch : Branch.t) (x, y) = ( Branch.set_to_first_day_hour_min_sec_ns { cur_branch with month = x }, Branch.set_to_last_day_hour_min_sec_ns { cur_branch with month = y } ) in let month_start = cur_branch_search_start.month in let month_end_inc = cur_branch_search_end_inc.month in if Int_set.is_empty t.months then Seq.return (cur_branch_search_start, cur_branch_search_end_inc) else t.months |> Int_set.to_seq |> Seq.filter (fun month -> month_start <= month && month <= month_end_inc) |> Time.Month_ranges.Of_seq.range_seq_of_seq |> Time.Month_ranges.get_inc |> Seq.map (map_inc ~cur_branch) end module Matching_years = struct let matching_years ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) (t : Pattern.t) : Branch.t Seq.t = if Int_set.is_empty t.years then OSeq.(overall_search_start.year -- overall_search_end_inc.year) |> Seq.map (fun year -> { overall_search_start with year }) else t.years |> Int_set.to_seq |> Seq.filter (fun year -> overall_search_start.year <= year && year <= overall_search_end_inc.year) |> Seq.map (fun year -> { overall_search_start with year }) let matching_year_inc_ranges ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) (t : Pattern.t) : (Branch.t * Branch.t) Seq.t = let map_inc ~(overall_search_start : Branch.t) ~(overall_search_end_inc : Branch.t) (x, y) = let range_map_start = Branch.set_to_first_month_day_hour_min_sec_ns { overall_search_start with year = x } in let range_map_end_inc = Branch.set_to_last_month_day_hour_min_sec_ns { overall_search_end_inc with year = y } in (range_map_start, range_map_end_inc) in if Int_set.is_empty t.years then Seq.return (overall_search_start, overall_search_end_inc) else t.years |> Int_set.to_seq |> Seq.filter (fun year -> overall_search_start.year <= year && year <= overall_search_end_inc.year) |> Time.Year_ranges.Of_seq.range_seq_of_seq |> Time.Year_ranges.get_inc |> Seq.map (map_inc ~overall_search_start ~overall_search_end_inc) end let matching_date_time_inc_ranges (search_param : Search_param.t) (t : Pattern.t) : (Branch.t * Branch.t) Seq.t = let overall_search_start = search_param.start in let overall_search_end_inc = search_param.end_inc in match ( Int_set.is_empty t.years, Int_set.is_empty t.months, Int_set.is_empty t.month_days, Weekday_set.is_empty t.weekdays, Int_set.is_empty t.hours, Int_set.is_empty t.minutes, Int_set.is_empty t.seconds, Diet.Int.is_empty t.ns ) with | _years_is_empty, true, true, true, true, true, true, true -> Matching_years.matching_year_inc_ranges ~overall_search_start ~overall_search_end_inc t | _years_is_empty, _months_is_empty, true, true, true, true, true, true -> Matching_years.matching_years ~overall_search_start ~overall_search_end_inc t |> Seq.flat_map (Matching_months.matching_month_inc_ranges ~overall_search_start ~overall_search_end_inc t) | ( _years_is_empty, _months_is_empty, _month_days_is_empty, _weekdays_is_empty, true, true, true, true ) -> Matching_years.matching_years ~overall_search_start ~overall_search_end_inc t |> Seq.flat_map (Matching_months.matching_months ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_days.matching_day_inc_ranges ~overall_search_start ~overall_search_end_inc t) | ( _years_is_empty, _months_is_empty, _month_days_is_empty, _weekdays_is_empty, _hours_is_empty, true, true, true ) -> Matching_years.matching_years ~overall_search_start ~overall_search_end_inc t |> Seq.flat_map (Matching_months.matching_months ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_days.matching_days ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_hours.matching_hour_inc_ranges ~overall_search_start ~overall_search_end_inc t) | ( _years_is_empty, _months_is_empty, _month_days_is_empty, _weekdays_is_empty, _hours_is_empty, _minutes_is_empty, true, true ) -> Matching_years.matching_years ~overall_search_start ~overall_search_end_inc t |> Seq.flat_map (Matching_months.matching_months ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_days.matching_days ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_hours.matching_hours ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_minutes.matching_minute_inc_ranges t) | ( _years_is_empty, _months_is_empty, _month_days_is_empty, _weekdays_is_empty, _hours_is_empty, _minutes_is_empty, _seconds_is_empty, true ) -> Matching_years.matching_years ~overall_search_start ~overall_search_end_inc t |> Seq.flat_map (Matching_months.matching_months ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_days.matching_days ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_hours.matching_hours ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_minutes.matching_minutes t) |> Seq.flat_map (Matching_seconds.matching_second_inc_ranges t) | ( _years_is_empty, _months_is_empty, _month_days_is_empty, _weekdays_is_empty, _hours_is_empty, _minutes_is_empty, _seconds_is_empty, _ns_is_empty ) -> Matching_years.matching_years ~overall_search_start ~overall_search_end_inc t |> Seq.flat_map (Matching_months.matching_months ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_days.matching_days ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_hours.matching_hours ~overall_search_start ~overall_search_end_inc t) |> Seq.flat_map (Matching_minutes.matching_minutes t) |> Seq.flat_map (Matching_seconds.matching_seconds t) |> Seq.flat_map (Matching_ns.matching_ns_inc_ranges t) let one_ns = Timedesc.Span.make ~ns:1 () let resolve (search_param : Search_param.t) (t : Pattern.t) : (Timedesc.Span.t * Timedesc.Span.t) Seq.t = let f (x', y') = let x = x' |> Branch.to_date_time ~offset_from_utc:search_param.search_using_offset_from_utc |> CCOption.map Timedesc.to_timestamp_single in let y = y' |> Branch.to_date_time ~offset_from_utc:search_param.search_using_offset_from_utc |> CCOption.map Timedesc.to_timestamp_single in match (x, y) with | Some x, Some y -> Some (x, y) | _, _ -> let x = Timedesc.Span.( Branch.to_timestamp_local x' - search_param.search_using_offset_from_utc) in let y = Timedesc.Span.( Branch.to_timestamp_local y' - search_param.search_using_offset_from_utc) in if Timedesc.Span.(y <= Timedesc.Timestamp.min_val) then None else if Timedesc.Span.(Timedesc.Timestamp.max_val <= x) then None else Some ( Timedesc.Span.max Timedesc.Timestamp.min_val x, Timedesc.Span.min Timedesc.Timestamp.max_val y ) in matching_date_time_inc_ranges search_param t |> Seq.filter_map f |> Seq.map (fun (x, y) -> (x, Timestamp_utils.timestamp_safe_add y one_ns)) |> Time.Intervals.normalize ~skip_filter_invalid:true ~skip_sort:true |> Time.Intervals.Slice.slice ~start:(Timedesc.to_timestamp_single search_param.start_dt) ~end_exc: (Timedesc.Span.succ @@ Timedesc.to_timestamp_single search_param.end_inc_dt)