jiff/tz/ambiguous.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 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
use crate::{
civil::DateTime,
error::{err, Error, ErrorContext},
shared::util::itime::IAmbiguousOffset,
tz::{Offset, TimeZone},
Timestamp, Zoned,
};
/// Configuration for resolving ambiguous datetimes in a particular time zone.
///
/// This is useful for specifying how to disambiguate ambiguous datetimes at
/// runtime. For example, as configuration for parsing [`Zoned`] values via
/// [`fmt::temporal::DateTimeParser::disambiguation`](crate::fmt::temporal::DateTimeParser::disambiguation).
///
/// Note that there is no difference in using
/// `Disambiguation::Compatible.disambiguate(ambiguous_timestamp)` and
/// `ambiguous_timestamp.compatible()`. They are equivalent. The purpose of
/// this enum is to expose the disambiguation strategy as a runtime value for
/// configuration purposes.
///
/// The default value is `Disambiguation::Compatible`, which matches the
/// behavior specified in [RFC 5545 (iCalendar)]. Namely, when an ambiguous
/// datetime is found in a fold (the clocks are rolled back), then the earlier
/// time is selected. And when an ambiguous datetime is found in a gap (the
/// clocks are skipped forward), then the later time is selected.
///
/// This enum is non-exhaustive so that other forms of disambiguation may be
/// added in semver compatible releases.
///
/// [RFC 5545 (iCalendar)]: https://datatracker.ietf.org/doc/html/rfc5545
///
/// # Example
///
/// This example shows the default disambiguation mode ("compatible") when
/// given a datetime that falls in a "gap" (i.e., a forwards DST transition).
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let newyork = tz::db().get("America/New_York")?;
/// let ambiguous = newyork.to_ambiguous_zoned(date(2024, 3, 10).at(2, 30, 0, 0));
///
/// // NOTE: This is identical to `ambiguous.compatible()`.
/// let zdt = ambiguous.disambiguate(tz::Disambiguation::Compatible)?;
/// assert_eq!(zdt.datetime(), date(2024, 3, 10).at(3, 30, 0, 0));
/// // In compatible mode, forward transitions select the later
/// // time. In the EST->EDT transition, that's the -04 (EDT) offset.
/// assert_eq!(zdt.offset(), tz::offset(-4));
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
///
/// # Example: parsing
///
/// This example shows how to set the disambiguation configuration while
/// parsing a [`Zoned`] datetime. In this example, we always prefer the earlier
/// time.
///
/// ```
/// use jiff::{civil::date, fmt::temporal::DateTimeParser, tz};
///
/// static PARSER: DateTimeParser = DateTimeParser::new()
/// .disambiguation(tz::Disambiguation::Earlier);
///
/// let zdt = PARSER.parse_zoned("2024-03-10T02:30[America/New_York]")?;
/// // In earlier mode, forward transitions select the earlier time, unlike
/// // in compatible mode. In this case, that's the pre-DST offset of -05.
/// assert_eq!(zdt.datetime(), date(2024, 3, 10).at(1, 30, 0, 0));
/// assert_eq!(zdt.offset(), tz::offset(-5));
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[derive(Clone, Copy, Debug, Default)]
#[non_exhaustive]
pub enum Disambiguation {
/// In a backward transition, the earlier time is selected. In forward
/// transition, the later time is selected.
///
/// This is equivalent to [`AmbiguousTimestamp::compatible`] and
/// [`AmbiguousZoned::compatible`].
#[default]
Compatible,
/// The earlier time is always selected.
///
/// This is equivalent to [`AmbiguousTimestamp::earlier`] and
/// [`AmbiguousZoned::earlier`].
Earlier,
/// The later time is always selected.
///
/// This is equivalent to [`AmbiguousTimestamp::later`] and
/// [`AmbiguousZoned::later`].
Later,
/// When an ambiguous datetime is encountered, this strategy will always
/// result in an error. This is useful if you need to require datetimes
/// from users to unambiguously refer to a specific instant.
///
/// This is equivalent to [`AmbiguousTimestamp::unambiguous`] and
/// [`AmbiguousZoned::unambiguous`].
Reject,
}
/// A possibly ambiguous [`Offset`].
///
/// An `AmbiguousOffset` is part of both [`AmbiguousTimestamp`] and
/// [`AmbiguousZoned`], which are created by
/// [`TimeZone::to_ambiguous_timestamp`] and
/// [`TimeZone::to_ambiguous_zoned`], respectively.
///
/// When converting a civil datetime in a particular time zone to a precise
/// instant in time (that is, either `Timestamp` or `Zoned`), then the primary
/// thing needed to form a precise instant in time is an [`Offset`]. The
/// problem is that some civil datetimes are ambiguous. That is, some do not
/// exist (because they fall into a gap, where some civil time is skipped),
/// or some are repeated (because they fall into a fold, where some civil time
/// is repeated).
///
/// The purpose of this type is to represent that ambiguity when it occurs.
/// The ambiguity is manifest through the offset choice: it is either the
/// offset _before_ the transition or the offset _after_ the transition. This
/// is true regardless of whether the ambiguity occurs as a result of a gap
/// or a fold.
///
/// It is generally considered very rare to need to inspect values of this
/// type directly. Instead, higher level routines like
/// [`AmbiguousZoned::compatible`] or [`AmbiguousZoned::unambiguous`] will
/// implement a strategy for you.
///
/// # Example
///
/// This example shows how the "compatible" disambiguation strategy is
/// implemented. Recall that the "compatible" strategy chooses the offset
/// corresponding to the civil datetime after a gap, and the offset
/// corresponding to the civil datetime before a gap.
///
/// ```
/// use jiff::{civil::date, tz::{self, AmbiguousOffset}};
///
/// let tz = tz::db().get("America/New_York")?;
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let offset = match tz.to_ambiguous_timestamp(dt).offset() {
/// AmbiguousOffset::Unambiguous { offset } => offset,
/// // This is counter-intuitive, but in order to get the civil datetime
/// // *after* the gap, we need to select the offset from *before* the
/// // gap.
/// AmbiguousOffset::Gap { before, .. } => before,
/// AmbiguousOffset::Fold { before, .. } => before,
/// };
/// assert_eq!(offset.to_timestamp(dt)?.to_string(), "2024-03-10T07:30:00Z");
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum AmbiguousOffset {
/// The offset for a particular civil datetime and time zone is
/// unambiguous.
///
/// This is the overwhelmingly common case. In general, the only time this
/// case does not occur is when there is a transition to a different time
/// zone (rare) or to/from daylight saving time (occurs for 1 hour twice
/// in year in many geographic locations).
Unambiguous {
/// The offset from UTC for the corresponding civil datetime given. The
/// offset is determined via the relevant time zone data, and in this
/// case, there is only one possible offset that could be applied to
/// the given civil datetime.
offset: Offset,
},
/// The offset for a particular civil datetime and time zone is ambiguous
/// because there is a gap.
///
/// This most commonly occurs when a civil datetime corresponds to an hour
/// that was "skipped" in a jump to DST (daylight saving time).
Gap {
/// The offset corresponding to the time before a gap.
///
/// For example, given a time zone of `America/Los_Angeles`, the offset
/// for time immediately preceding `2020-03-08T02:00:00` is `-08`.
before: Offset,
/// The offset corresponding to the later time in a gap.
///
/// For example, given a time zone of `America/Los_Angeles`, the offset
/// for time immediately following `2020-03-08T02:59:59` is `-07`.
after: Offset,
},
/// The offset for a particular civil datetime and time zone is ambiguous
/// because there is a fold.
///
/// This most commonly occurs when a civil datetime corresponds to an hour
/// that was "repeated" in a jump to standard time from DST (daylight
/// saving time).
Fold {
/// The offset corresponding to the earlier time in a fold.
///
/// For example, given a time zone of `America/Los_Angeles`, the offset
/// for time on the first `2020-11-01T01:00:00` is `-07`.
before: Offset,
/// The offset corresponding to the earlier time in a fold.
///
/// For example, given a time zone of `America/Los_Angeles`, the offset
/// for time on the second `2020-11-01T01:00:00` is `-08`.
after: Offset,
},
}
impl AmbiguousOffset {
#[inline]
pub(crate) const fn from_iambiguous_offset_const(
iaoff: IAmbiguousOffset,
) -> AmbiguousOffset {
match iaoff {
IAmbiguousOffset::Unambiguous { offset } => {
let offset = Offset::from_ioffset_const(offset);
AmbiguousOffset::Unambiguous { offset }
}
IAmbiguousOffset::Gap { before, after } => {
let before = Offset::from_ioffset_const(before);
let after = Offset::from_ioffset_const(after);
AmbiguousOffset::Gap { before, after }
}
IAmbiguousOffset::Fold { before, after } => {
let before = Offset::from_ioffset_const(before);
let after = Offset::from_ioffset_const(after);
AmbiguousOffset::Fold { before, after }
}
}
}
}
/// A possibly ambiguous [`Timestamp`], created by
/// [`TimeZone::to_ambiguous_timestamp`].
///
/// While this is called an ambiguous _timestamp_, the thing that is
/// actually ambiguous is the offset. That is, an ambiguous timestamp is
/// actually a pair of a [`civil::DateTime`](crate::civil::DateTime) and an
/// [`AmbiguousOffset`].
///
/// When the offset is ambiguous, it either represents a gap (civil time is
/// skipped) or a fold (civil time is repeated). In both cases, there are, by
/// construction, two different offsets to choose from: the offset from before
/// the transition and the offset from after the transition.
///
/// The purpose of this type is to represent that ambiguity (when it occurs)
/// and enable callers to make a choice about how to resolve that ambiguity.
/// In some cases, you might want to reject ambiguity altogether, which is
/// supported by the [`AmbiguousTimestamp::unambiguous`] routine.
///
/// This type provides four different out-of-the-box disambiguation strategies:
///
/// * [`AmbiguousTimestamp::compatible`] implements the
/// [`Disambiguation::Compatible`] strategy. In the case of a gap, the offset
/// after the gap is selected. In the case of a fold, the offset before the
/// fold occurs is selected.
/// * [`AmbiguousTimestamp::earlier`] implements the
/// [`Disambiguation::Earlier`] strategy. This always selects the "earlier"
/// offset.
/// * [`AmbiguousTimestamp::later`] implements the
/// [`Disambiguation::Later`] strategy. This always selects the "later"
/// offset.
/// * [`AmbiguousTimestamp::unambiguous`] implements the
/// [`Disambiguation::Reject`] strategy. It acts as an assertion that the
/// offset is unambiguous. If it is ambiguous, then an appropriate error is
/// returned.
///
/// The [`AmbiguousTimestamp::disambiguate`] method can be used with the
/// [`Disambiguation`] enum when the disambiguation strategy isn't known until
/// runtime.
///
/// Note also that these aren't the only disambiguation strategies. The
/// [`AmbiguousOffset`] type, accessible via [`AmbiguousTimestamp::offset`],
/// exposes the full details of the ambiguity. So any strategy can be
/// implemented.
///
/// # Example
///
/// This example shows how the "compatible" disambiguation strategy is
/// implemented. Recall that the "compatible" strategy chooses the offset
/// corresponding to the civil datetime after a gap, and the offset
/// corresponding to the civil datetime before a gap.
///
/// ```
/// use jiff::{civil::date, tz::{self, AmbiguousOffset}};
///
/// let tz = tz::db().get("America/New_York")?;
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let offset = match tz.to_ambiguous_timestamp(dt).offset() {
/// AmbiguousOffset::Unambiguous { offset } => offset,
/// // This is counter-intuitive, but in order to get the civil datetime
/// // *after* the gap, we need to select the offset from *before* the
/// // gap.
/// AmbiguousOffset::Gap { before, .. } => before,
/// AmbiguousOffset::Fold { before, .. } => before,
/// };
/// assert_eq!(offset.to_timestamp(dt)?.to_string(), "2024-03-10T07:30:00Z");
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub struct AmbiguousTimestamp {
dt: DateTime,
offset: AmbiguousOffset,
}
impl AmbiguousTimestamp {
#[inline]
pub(crate) fn new(
dt: DateTime,
kind: AmbiguousOffset,
) -> AmbiguousTimestamp {
AmbiguousTimestamp { dt, offset: kind }
}
/// Returns the civil datetime that was used to create this ambiguous
/// timestamp.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
/// let dt = date(2024, 7, 10).at(17, 15, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(ts.datetime(), dt);
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn datetime(&self) -> DateTime {
self.dt
}
/// Returns the possibly ambiguous offset that is the ultimate source of
/// ambiguity.
///
/// Most civil datetimes are not ambiguous, and thus, the offset will not
/// be ambiguous either. In this case, the offset returned will be the
/// [`AmbiguousOffset::Unambiguous`] variant.
///
/// But, not all civil datetimes are unambiguous. There are exactly two
/// cases where a civil datetime can be ambiguous: when a civil datetime
/// does not exist (a gap) or when a civil datetime is repeated (a fold).
/// In both such cases, the _offset_ is the thing that is ambiguous as
/// there are two possible choices for the offset in both cases: the offset
/// before the transition (whether it's a gap or a fold) or the offset
/// after the transition.
///
/// This type captures the fact that computing an offset from a civil
/// datetime in a particular time zone is in one of three possible states:
///
/// 1. It is unambiguous.
/// 2. It is ambiguous because there is a gap in time.
/// 3. It is ambiguous because there is a fold in time.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz::{self, AmbiguousOffset}};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(ts.offset(), AmbiguousOffset::Unambiguous {
/// offset: tz::offset(-4),
/// });
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(ts.offset(), AmbiguousOffset::Gap {
/// before: tz::offset(-5),
/// after: tz::offset(-4),
/// });
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(ts.offset(), AmbiguousOffset::Fold {
/// before: tz::offset(-4),
/// after: tz::offset(-5),
/// });
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn offset(&self) -> AmbiguousOffset {
self.offset
}
/// Returns true if and only if this possibly ambiguous timestamp is
/// actually ambiguous.
///
/// This occurs precisely in cases when the offset is _not_
/// [`AmbiguousOffset::Unambiguous`].
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz::{self, AmbiguousOffset}};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert!(!ts.is_ambiguous());
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert!(ts.is_ambiguous());
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert!(ts.is_ambiguous());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn is_ambiguous(&self) -> bool {
!matches!(self.offset(), AmbiguousOffset::Unambiguous { .. })
}
/// Disambiguates this timestamp according to the
/// [`Disambiguation::Compatible`] strategy.
///
/// If this timestamp is unambiguous, then this is a no-op.
///
/// The "compatible" strategy selects the offset corresponding to the civil
/// time after a gap, and the offset corresponding to the civil time before
/// a fold. This is what is specified in [RFC 5545].
///
/// [RFC 5545]: https://datatracker.ietf.org/doc/html/rfc5545
///
/// # Errors
///
/// This returns an error when the combination of the civil datetime
/// and offset would lead to a `Timestamp` outside of the
/// [`Timestamp::MIN`] and [`Timestamp::MAX`] limits. This only occurs
/// when the civil datetime is "close" to its own [`DateTime::MIN`]
/// and [`DateTime::MAX`] limits.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(
/// ts.compatible()?.to_string(),
/// "2024-07-15T21:30:00Z",
/// );
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(
/// ts.compatible()?.to_string(),
/// "2024-03-10T07:30:00Z",
/// );
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(
/// ts.compatible()?.to_string(),
/// "2024-11-03T05:30:00Z",
/// );
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn compatible(self) -> Result<Timestamp, Error> {
let offset = match self.offset() {
AmbiguousOffset::Unambiguous { offset } => offset,
AmbiguousOffset::Gap { before, .. } => before,
AmbiguousOffset::Fold { before, .. } => before,
};
offset.to_timestamp(self.dt)
}
/// Disambiguates this timestamp according to the
/// [`Disambiguation::Earlier`] strategy.
///
/// If this timestamp is unambiguous, then this is a no-op.
///
/// The "earlier" strategy selects the offset corresponding to the civil
/// time before a gap, and the offset corresponding to the civil time
/// before a fold.
///
/// # Errors
///
/// This returns an error when the combination of the civil datetime
/// and offset would lead to a `Timestamp` outside of the
/// [`Timestamp::MIN`] and [`Timestamp::MAX`] limits. This only occurs
/// when the civil datetime is "close" to its own [`DateTime::MIN`]
/// and [`DateTime::MAX`] limits.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(
/// ts.earlier()?.to_string(),
/// "2024-07-15T21:30:00Z",
/// );
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(
/// ts.earlier()?.to_string(),
/// "2024-03-10T06:30:00Z",
/// );
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(
/// ts.earlier()?.to_string(),
/// "2024-11-03T05:30:00Z",
/// );
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn earlier(self) -> Result<Timestamp, Error> {
let offset = match self.offset() {
AmbiguousOffset::Unambiguous { offset } => offset,
AmbiguousOffset::Gap { after, .. } => after,
AmbiguousOffset::Fold { before, .. } => before,
};
offset.to_timestamp(self.dt)
}
/// Disambiguates this timestamp according to the
/// [`Disambiguation::Later`] strategy.
///
/// If this timestamp is unambiguous, then this is a no-op.
///
/// The "later" strategy selects the offset corresponding to the civil
/// time after a gap, and the offset corresponding to the civil time
/// after a fold.
///
/// # Errors
///
/// This returns an error when the combination of the civil datetime
/// and offset would lead to a `Timestamp` outside of the
/// [`Timestamp::MIN`] and [`Timestamp::MAX`] limits. This only occurs
/// when the civil datetime is "close" to its own [`DateTime::MIN`]
/// and [`DateTime::MAX`] limits.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(
/// ts.later()?.to_string(),
/// "2024-07-15T21:30:00Z",
/// );
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(
/// ts.later()?.to_string(),
/// "2024-03-10T07:30:00Z",
/// );
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(
/// ts.later()?.to_string(),
/// "2024-11-03T06:30:00Z",
/// );
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn later(self) -> Result<Timestamp, Error> {
let offset = match self.offset() {
AmbiguousOffset::Unambiguous { offset } => offset,
AmbiguousOffset::Gap { before, .. } => before,
AmbiguousOffset::Fold { after, .. } => after,
};
offset.to_timestamp(self.dt)
}
/// Disambiguates this timestamp according to the
/// [`Disambiguation::Reject`] strategy.
///
/// If this timestamp is unambiguous, then this is a no-op.
///
/// The "reject" strategy always returns an error when the timestamp
/// is ambiguous.
///
/// # Errors
///
/// This returns an error when the combination of the civil datetime
/// and offset would lead to a `Timestamp` outside of the
/// [`Timestamp::MIN`] and [`Timestamp::MAX`] limits. This only occurs
/// when the civil datetime is "close" to its own [`DateTime::MIN`]
/// and [`DateTime::MAX`] limits.
///
/// This also returns an error when the timestamp is ambiguous.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert_eq!(
/// ts.later()?.to_string(),
/// "2024-07-15T21:30:00Z",
/// );
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert!(ts.unambiguous().is_err());
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let ts = tz.to_ambiguous_timestamp(dt);
/// assert!(ts.unambiguous().is_err());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn unambiguous(self) -> Result<Timestamp, Error> {
let offset = match self.offset() {
AmbiguousOffset::Unambiguous { offset } => offset,
AmbiguousOffset::Gap { before, after } => {
return Err(err!(
"the datetime {dt} is ambiguous since it falls into \
a gap between offsets {before} and {after}",
dt = self.dt,
));
}
AmbiguousOffset::Fold { before, after } => {
return Err(err!(
"the datetime {dt} is ambiguous since it falls into \
a fold between offsets {before} and {after}",
dt = self.dt,
));
}
};
offset.to_timestamp(self.dt)
}
/// Disambiguates this (possibly ambiguous) timestamp into a specific
/// timestamp.
///
/// This is the same as calling one of the disambiguation methods, but
/// the method chosen is indicated by the option given. This is useful
/// when the disambiguation option needs to be chosen at runtime.
///
/// # Errors
///
/// This returns an error if this would have returned a timestamp
/// outside of its minimum and maximum values.
///
/// This can also return an error when using the [`Disambiguation::Reject`]
/// strategy. Namely, when using the `Reject` strategy, any ambiguous
/// timestamp always results in an error.
///
/// # Example
///
/// This example shows the various disambiguation modes when given a
/// datetime that falls in a "fold" (i.e., a backwards DST transition).
///
/// ```
/// use jiff::{civil::date, tz::{self, Disambiguation}};
///
/// let newyork = tz::db().get("America/New_York")?;
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let ambiguous = newyork.to_ambiguous_timestamp(dt);
///
/// // In compatible mode, backward transitions select the earlier
/// // time. In the EDT->EST transition, that's the -04 (EDT) offset.
/// let ts = ambiguous.clone().disambiguate(Disambiguation::Compatible)?;
/// assert_eq!(ts.to_string(), "2024-11-03T05:30:00Z");
///
/// // The earlier time in the EDT->EST transition is the -04 (EDT) offset.
/// let ts = ambiguous.clone().disambiguate(Disambiguation::Earlier)?;
/// assert_eq!(ts.to_string(), "2024-11-03T05:30:00Z");
///
/// // The later time in the EDT->EST transition is the -05 (EST) offset.
/// let ts = ambiguous.clone().disambiguate(Disambiguation::Later)?;
/// assert_eq!(ts.to_string(), "2024-11-03T06:30:00Z");
///
/// // Since our datetime is ambiguous, the 'reject' strategy errors.
/// assert!(ambiguous.disambiguate(Disambiguation::Reject).is_err());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn disambiguate(
self,
option: Disambiguation,
) -> Result<Timestamp, Error> {
match option {
Disambiguation::Compatible => self.compatible(),
Disambiguation::Earlier => self.earlier(),
Disambiguation::Later => self.later(),
Disambiguation::Reject => self.unambiguous(),
}
}
/// Convert this ambiguous timestamp into an ambiguous zoned date time by
/// attaching a time zone.
///
/// This is useful when you have a [`civil::DateTime`], [`TimeZone`] and
/// want to convert it to an instant while applying a particular
/// disambiguation strategy without an extra clone of the `TimeZone`.
///
/// This isn't currently exposed because I believe use cases for crate
/// users can be satisfied via [`TimeZone::into_ambiguous_zoned`] (which
/// is implemented via this routine).
#[inline]
pub(crate) fn into_ambiguous_zoned(self, tz: TimeZone) -> AmbiguousZoned {
AmbiguousZoned::new(self, tz)
}
}
/// A possibly ambiguous [`Zoned`], created by
/// [`TimeZone::to_ambiguous_zoned`].
///
/// While this is called an ambiguous zoned datetime, the thing that is
/// actually ambiguous is the offset. That is, an ambiguous zoned datetime
/// is actually a triple of a [`civil::DateTime`](crate::civil::DateTime), a
/// [`TimeZone`] and an [`AmbiguousOffset`].
///
/// When the offset is ambiguous, it either represents a gap (civil time is
/// skipped) or a fold (civil time is repeated). In both cases, there are, by
/// construction, two different offsets to choose from: the offset from before
/// the transition and the offset from after the transition.
///
/// The purpose of this type is to represent that ambiguity (when it occurs)
/// and enable callers to make a choice about how to resolve that ambiguity.
/// In some cases, you might want to reject ambiguity altogether, which is
/// supported by the [`AmbiguousZoned::unambiguous`] routine.
///
/// This type provides four different out-of-the-box disambiguation strategies:
///
/// * [`AmbiguousZoned::compatible`] implements the
/// [`Disambiguation::Compatible`] strategy. In the case of a gap, the offset
/// after the gap is selected. In the case of a fold, the offset before the
/// fold occurs is selected.
/// * [`AmbiguousZoned::earlier`] implements the
/// [`Disambiguation::Earlier`] strategy. This always selects the "earlier"
/// offset.
/// * [`AmbiguousZoned::later`] implements the
/// [`Disambiguation::Later`] strategy. This always selects the "later"
/// offset.
/// * [`AmbiguousZoned::unambiguous`] implements the
/// [`Disambiguation::Reject`] strategy. It acts as an assertion that the
/// offset is unambiguous. If it is ambiguous, then an appropriate error is
/// returned.
///
/// The [`AmbiguousZoned::disambiguate`] method can be used with the
/// [`Disambiguation`] enum when the disambiguation strategy isn't known until
/// runtime.
///
/// Note also that these aren't the only disambiguation strategies. The
/// [`AmbiguousOffset`] type, accessible via [`AmbiguousZoned::offset`],
/// exposes the full details of the ambiguity. So any strategy can be
/// implemented.
///
/// # Example
///
/// This example shows how the "compatible" disambiguation strategy is
/// implemented. Recall that the "compatible" strategy chooses the offset
/// corresponding to the civil datetime after a gap, and the offset
/// corresponding to the civil datetime before a gap.
///
/// ```
/// use jiff::{civil::date, tz::{self, AmbiguousOffset}};
///
/// let tz = tz::db().get("America/New_York")?;
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let ambiguous = tz.to_ambiguous_zoned(dt);
/// let offset = match ambiguous.offset() {
/// AmbiguousOffset::Unambiguous { offset } => offset,
/// // This is counter-intuitive, but in order to get the civil datetime
/// // *after* the gap, we need to select the offset from *before* the
/// // gap.
/// AmbiguousOffset::Gap { before, .. } => before,
/// AmbiguousOffset::Fold { before, .. } => before,
/// };
/// let zdt = offset.to_timestamp(dt)?.to_zoned(ambiguous.into_time_zone());
/// assert_eq!(zdt.to_string(), "2024-03-10T03:30:00-04:00[America/New_York]");
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct AmbiguousZoned {
ts: AmbiguousTimestamp,
tz: TimeZone,
}
impl AmbiguousZoned {
#[inline]
fn new(ts: AmbiguousTimestamp, tz: TimeZone) -> AmbiguousZoned {
AmbiguousZoned { ts, tz }
}
/// Returns a reference to the time zone that was used to create this
/// ambiguous zoned datetime.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
/// let dt = date(2024, 7, 10).at(17, 15, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(&tz, zdt.time_zone());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn time_zone(&self) -> &TimeZone {
&self.tz
}
/// Consumes this ambiguous zoned datetime and returns the underlying
/// `TimeZone`. This is useful if you no longer need the ambiguous zoned
/// datetime and want its `TimeZone` without cloning it. (Cloning a
/// `TimeZone` is cheap but not free.)
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
/// let dt = date(2024, 7, 10).at(17, 15, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(tz, zdt.into_time_zone());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn into_time_zone(self) -> TimeZone {
self.tz
}
/// Returns the civil datetime that was used to create this ambiguous
/// zoned datetime.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
/// let dt = date(2024, 7, 10).at(17, 15, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(zdt.datetime(), dt);
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn datetime(&self) -> DateTime {
self.ts.datetime()
}
/// Returns the possibly ambiguous offset that is the ultimate source of
/// ambiguity.
///
/// Most civil datetimes are not ambiguous, and thus, the offset will not
/// be ambiguous either. In this case, the offset returned will be the
/// [`AmbiguousOffset::Unambiguous`] variant.
///
/// But, not all civil datetimes are unambiguous. There are exactly two
/// cases where a civil datetime can be ambiguous: when a civil datetime
/// does not exist (a gap) or when a civil datetime is repeated (a fold).
/// In both such cases, the _offset_ is the thing that is ambiguous as
/// there are two possible choices for the offset in both cases: the offset
/// before the transition (whether it's a gap or a fold) or the offset
/// after the transition.
///
/// This type captures the fact that computing an offset from a civil
/// datetime in a particular time zone is in one of three possible states:
///
/// 1. It is unambiguous.
/// 2. It is ambiguous because there is a gap in time.
/// 3. It is ambiguous because there is a fold in time.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz::{self, AmbiguousOffset}};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(zdt.offset(), AmbiguousOffset::Unambiguous {
/// offset: tz::offset(-4),
/// });
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(zdt.offset(), AmbiguousOffset::Gap {
/// before: tz::offset(-5),
/// after: tz::offset(-4),
/// });
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(zdt.offset(), AmbiguousOffset::Fold {
/// before: tz::offset(-4),
/// after: tz::offset(-5),
/// });
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn offset(&self) -> AmbiguousOffset {
self.ts.offset
}
/// Returns true if and only if this possibly ambiguous zoned datetime is
/// actually ambiguous.
///
/// This occurs precisely in cases when the offset is _not_
/// [`AmbiguousOffset::Unambiguous`].
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz::{self, AmbiguousOffset}};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert!(!zdt.is_ambiguous());
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert!(zdt.is_ambiguous());
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert!(zdt.is_ambiguous());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn is_ambiguous(&self) -> bool {
!matches!(self.offset(), AmbiguousOffset::Unambiguous { .. })
}
/// Disambiguates this zoned datetime according to the
/// [`Disambiguation::Compatible`] strategy.
///
/// If this zoned datetime is unambiguous, then this is a no-op.
///
/// The "compatible" strategy selects the offset corresponding to the civil
/// time after a gap, and the offset corresponding to the civil time before
/// a fold. This is what is specified in [RFC 5545].
///
/// [RFC 5545]: https://datatracker.ietf.org/doc/html/rfc5545
///
/// # Errors
///
/// This returns an error when the combination of the civil datetime
/// and offset would lead to a `Zoned` with a timestamp outside of the
/// [`Timestamp::MIN`] and [`Timestamp::MAX`] limits. This only occurs
/// when the civil datetime is "close" to its own [`DateTime::MIN`]
/// and [`DateTime::MAX`] limits.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(
/// zdt.compatible()?.to_string(),
/// "2024-07-15T17:30:00-04:00[America/New_York]",
/// );
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(
/// zdt.compatible()?.to_string(),
/// "2024-03-10T03:30:00-04:00[America/New_York]",
/// );
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(
/// zdt.compatible()?.to_string(),
/// "2024-11-03T01:30:00-04:00[America/New_York]",
/// );
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn compatible(self) -> Result<Zoned, Error> {
let ts = self.ts.compatible().with_context(|| {
err!(
"error converting datetime {dt} to instant in time zone {tz}",
dt = self.datetime(),
tz = self.time_zone().diagnostic_name(),
)
})?;
Ok(ts.to_zoned(self.tz))
}
/// Disambiguates this zoned datetime according to the
/// [`Disambiguation::Earlier`] strategy.
///
/// If this zoned datetime is unambiguous, then this is a no-op.
///
/// The "earlier" strategy selects the offset corresponding to the civil
/// time before a gap, and the offset corresponding to the civil time
/// before a fold.
///
/// # Errors
///
/// This returns an error when the combination of the civil datetime
/// and offset would lead to a `Zoned` with a timestamp outside of the
/// [`Timestamp::MIN`] and [`Timestamp::MAX`] limits. This only occurs
/// when the civil datetime is "close" to its own [`DateTime::MIN`]
/// and [`DateTime::MAX`] limits.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(
/// zdt.earlier()?.to_string(),
/// "2024-07-15T17:30:00-04:00[America/New_York]",
/// );
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(
/// zdt.earlier()?.to_string(),
/// "2024-03-10T01:30:00-05:00[America/New_York]",
/// );
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(
/// zdt.earlier()?.to_string(),
/// "2024-11-03T01:30:00-04:00[America/New_York]",
/// );
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn earlier(self) -> Result<Zoned, Error> {
let ts = self.ts.earlier().with_context(|| {
err!(
"error converting datetime {dt} to instant in time zone {tz}",
dt = self.datetime(),
tz = self.time_zone().diagnostic_name(),
)
})?;
Ok(ts.to_zoned(self.tz))
}
/// Disambiguates this zoned datetime according to the
/// [`Disambiguation::Later`] strategy.
///
/// If this zoned datetime is unambiguous, then this is a no-op.
///
/// The "later" strategy selects the offset corresponding to the civil
/// time after a gap, and the offset corresponding to the civil time
/// after a fold.
///
/// # Errors
///
/// This returns an error when the combination of the civil datetime
/// and offset would lead to a `Zoned` with a timestamp outside of the
/// [`Timestamp::MIN`] and [`Timestamp::MAX`] limits. This only occurs
/// when the civil datetime is "close" to its own [`DateTime::MIN`]
/// and [`DateTime::MAX`] limits.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(
/// zdt.later()?.to_string(),
/// "2024-07-15T17:30:00-04:00[America/New_York]",
/// );
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(
/// zdt.later()?.to_string(),
/// "2024-03-10T03:30:00-04:00[America/New_York]",
/// );
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(
/// zdt.later()?.to_string(),
/// "2024-11-03T01:30:00-05:00[America/New_York]",
/// );
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn later(self) -> Result<Zoned, Error> {
let ts = self.ts.later().with_context(|| {
err!(
"error converting datetime {dt} to instant in time zone {tz}",
dt = self.datetime(),
tz = self.time_zone().diagnostic_name(),
)
})?;
Ok(ts.to_zoned(self.tz))
}
/// Disambiguates this zoned datetime according to the
/// [`Disambiguation::Reject`] strategy.
///
/// If this zoned datetime is unambiguous, then this is a no-op.
///
/// The "reject" strategy always returns an error when the zoned datetime
/// is ambiguous.
///
/// # Errors
///
/// This returns an error when the combination of the civil datetime
/// and offset would lead to a `Zoned` with a timestamp outside of the
/// [`Timestamp::MIN`] and [`Timestamp::MAX`] limits. This only occurs
/// when the civil datetime is "close" to its own [`DateTime::MIN`]
/// and [`DateTime::MAX`] limits.
///
/// This also returns an error when the timestamp is ambiguous.
///
/// # Example
///
/// ```
/// use jiff::{civil::date, tz};
///
/// let tz = tz::db().get("America/New_York")?;
///
/// // Not ambiguous.
/// let dt = date(2024, 7, 15).at(17, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert_eq!(
/// zdt.later()?.to_string(),
/// "2024-07-15T17:30:00-04:00[America/New_York]",
/// );
///
/// // Ambiguous because of a gap.
/// let dt = date(2024, 3, 10).at(2, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert!(zdt.unambiguous().is_err());
///
/// // Ambiguous because of a fold.
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let zdt = tz.to_ambiguous_zoned(dt);
/// assert!(zdt.unambiguous().is_err());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn unambiguous(self) -> Result<Zoned, Error> {
let ts = self.ts.unambiguous().with_context(|| {
err!(
"error converting datetime {dt} to instant in time zone {tz}",
dt = self.datetime(),
tz = self.time_zone().diagnostic_name(),
)
})?;
Ok(ts.to_zoned(self.tz))
}
/// Disambiguates this (possibly ambiguous) timestamp into a concrete
/// time zone aware timestamp.
///
/// This is the same as calling one of the disambiguation methods, but
/// the method chosen is indicated by the option given. This is useful
/// when the disambiguation option needs to be chosen at runtime.
///
/// # Errors
///
/// This returns an error if this would have returned a zoned datetime
/// outside of its minimum and maximum values.
///
/// This can also return an error when using the [`Disambiguation::Reject`]
/// strategy. Namely, when using the `Reject` strategy, any ambiguous
/// timestamp always results in an error.
///
/// # Example
///
/// This example shows the various disambiguation modes when given a
/// datetime that falls in a "fold" (i.e., a backwards DST transition).
///
/// ```
/// use jiff::{civil::date, tz::{self, Disambiguation}};
///
/// let newyork = tz::db().get("America/New_York")?;
/// let dt = date(2024, 11, 3).at(1, 30, 0, 0);
/// let ambiguous = newyork.to_ambiguous_zoned(dt);
///
/// // In compatible mode, backward transitions select the earlier
/// // time. In the EDT->EST transition, that's the -04 (EDT) offset.
/// let zdt = ambiguous.clone().disambiguate(Disambiguation::Compatible)?;
/// assert_eq!(
/// zdt.to_string(),
/// "2024-11-03T01:30:00-04:00[America/New_York]",
/// );
///
/// // The earlier time in the EDT->EST transition is the -04 (EDT) offset.
/// let zdt = ambiguous.clone().disambiguate(Disambiguation::Earlier)?;
/// assert_eq!(
/// zdt.to_string(),
/// "2024-11-03T01:30:00-04:00[America/New_York]",
/// );
///
/// // The later time in the EDT->EST transition is the -05 (EST) offset.
/// let zdt = ambiguous.clone().disambiguate(Disambiguation::Later)?;
/// assert_eq!(
/// zdt.to_string(),
/// "2024-11-03T01:30:00-05:00[America/New_York]",
/// );
///
/// // Since our datetime is ambiguous, the 'reject' strategy errors.
/// assert!(ambiguous.disambiguate(Disambiguation::Reject).is_err());
///
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[inline]
pub fn disambiguate(self, option: Disambiguation) -> Result<Zoned, Error> {
match option {
Disambiguation::Compatible => self.compatible(),
Disambiguation::Earlier => self.earlier(),
Disambiguation::Later => self.later(),
Disambiguation::Reject => self.unambiguous(),
}
}
}