icu_datetime 2.3.0

Human-readable formatting of dates, times, and time zones in hundreds of locales
Documentation
// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).

#![cfg_attr(
    not(test),
    allow(
        unused,
        reason = "TODO(#5448): difference resolution is not yet used in non-test code"
    )
)]

use crate::format::DateTimeInputUnchecked;
use crate::provider::names::DayPeriodNames;
use icu_calendar::types::YearInfo;
use icu_time::Hour;

/// The greatest difference between two datetimes.
///
/// Ordered from smallest to largest difference.
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
#[non_exhaustive]
pub enum Difference {
    /// No difference (inputs are identical).
    None,
    /// Difference in second or subsecond (leads to fallback).
    Second,
    /// Difference in minute.
    Minute,
    /// Difference in hour.
    Hour,
    /// Difference in flexible day period.
    DayPeriodB,
    /// Difference in standard day period (AM/PM).
    DayPeriodA,
    /// Difference in day.
    Day,
    /// Difference in month.
    Month,
    /// Difference in year.
    Year,
    /// Difference in era.
    Era,
    /// Incomparable difference (e.g., timezone difference, different calendars).
    Incomparable,
}

impl Difference {
    /// Returns whether the difference is in a time field (minute, hour, or day period).
    pub(crate) fn is_time_diff(self) -> bool {
        matches!(
            self,
            Self::Minute | Self::Hour | Self::DayPeriodB | Self::DayPeriodA
        )
    }
    /// Returns whether the difference is in a date field (day, month, year, era).
    pub(crate) fn is_date_diff(self) -> bool {
        matches!(self, Self::Day | Self::Month | Self::Year | Self::Era)
    }
}
/// Resolves the greatest difference between two datetimes.
///
/// If `dayperiod_names` is provided, it will be used to resolve flexible day periods (`B`).
/// If it is `None`, flexible day periods will be assumed to be the same, and only
/// standard AM/PM (`a`) will be compared.
pub(crate) fn resolve_difference(
    input1: &DateTimeInputUnchecked,
    input2: &DateTimeInputUnchecked,
    dayperiod_names: Option<&DayPeriodNames<'_>>,
) -> Difference {
    if !input1.has_same_zone(input2) {
        return Difference::Incomparable;
    }

    // Compare Date fields
    match (input1.year, input2.year) {
        (Some(YearInfo::Era(e1)), Some(YearInfo::Era(e2))) => {
            if e1.era != e2.era {
                return Difference::Era;
            }
            if e1.year != e2.year {
                return Difference::Year;
            }
        }
        (Some(YearInfo::Cyclic(c1)), Some(YearInfo::Cyclic(c2))) => {
            if c1.related_iso != c2.related_iso {
                return Difference::Year;
            }
        }
        (None, None) => {}
        _ => {
            // One input has a year and the other does not (Some/None mismatch),
            // or they have different year types (e.g., Era vs Cyclic).
            // This is a major structural difference, so we fall back to Era
            // (the largest date-specific difference).
            return Difference::Era;
        }
    }

    let month1 = input1.month.map(|m| m.to_input());
    let month2 = input2.month.map(|m| m.to_input());
    if month1 != month2 {
        // This also catches the Some != None case in case
        // one input chooses to not use month codes. This is
        // expected: date time formatting typically needs month codes
        // to work and "unspecified" should count as a difference.
        return Difference::Month;
    }

    if input1.day_of_month != input2.day_of_month {
        return Difference::Day;
    }

    // Compare Time fields
    match (input1.hour, input2.hour) {
        (Some(h1), Some(h2)) => {
            if h1 != h2 {
                // Check standard AM/PM (DayPeriodA)
                let ampm1 = h1.number() < 12;
                let ampm2 = h2.number() < 12;
                if ampm1 != ampm2 {
                    return Difference::DayPeriodA;
                }

                // Check flexible day period (DayPeriodB)
                if dayperiod_names.is_some_and(|dp| has_flexible_day_period_difference(dp, h1, h2))
                {
                    return Difference::DayPeriodB;
                }
                return Difference::Hour;
            }
        }
        (None, None) => {}
        _ => {
            // One input has an hour and the other does not (Some/None mismatch).
            return Difference::Hour;
        }
    }

    if input1.minute != input2.minute {
        return Difference::Minute;
    }

    if input1.second != input2.second || input1.subsecond != input2.subsecond {
        return Difference::Second;
    }

    Difference::None
}

fn has_flexible_day_period_difference(
    dayperiod_names: &DayPeriodNames<'_>,
    hour1: Hour,
    hour2: Hour,
) -> bool {
    if let Some(rules) = dayperiod_names.day_period_rules() {
        return rules.name_offset(hour1) != rules.name_offset(hour2);
    }
    false
}

#[cfg(test)]
mod tests {
    use super::*;
    use icu_calendar::Date;
    use icu_time::Time;

    fn create_input(y: i32, m: u8, d: u8, hr: u8, min: u8, sec: u8) -> DateTimeInputUnchecked {
        let mut input = DateTimeInputUnchecked::default();
        let date = Date::try_new_iso(y, m, d).unwrap();
        input.set_date_fields_unchecked(date);
        let time = Time::try_new(hr, min, sec, 0).unwrap();
        input.set_time_fields(time);
        input
    }

    #[test]
    fn test_identical() {
        let input1 = create_input(2024, 1, 15, 10, 30, 0);
        let input2 = create_input(2024, 1, 15, 10, 30, 0);
        assert_eq!(resolve_difference(&input1, &input2, None), Difference::None);
    }

    #[test]
    fn test_year_diff() {
        let input1 = create_input(2024, 1, 15, 10, 30, 0);
        let input2 = create_input(2025, 1, 15, 10, 30, 0);
        assert_eq!(resolve_difference(&input1, &input2, None), Difference::Year);
    }

    #[test]
    fn test_month_diff() {
        let input1 = create_input(2024, 1, 15, 10, 30, 0);
        let input2 = create_input(2024, 2, 15, 10, 30, 0);
        assert_eq!(
            resolve_difference(&input1, &input2, None),
            Difference::Month
        );
    }

    #[test]
    fn test_day_diff() {
        let input1 = create_input(2024, 1, 15, 10, 30, 0);
        let input2 = create_input(2024, 1, 16, 10, 30, 0);
        assert_eq!(resolve_difference(&input1, &input2, None), Difference::Day);
    }

    #[test]
    fn test_hour_diff_same_ampm() {
        let input1 = create_input(2024, 1, 15, 10, 30, 0);
        let input2 = create_input(2024, 1, 15, 11, 30, 0);
        assert_eq!(resolve_difference(&input1, &input2, None), Difference::Hour);
    }

    #[test]
    fn test_hour_diff_different_ampm() {
        let input1 = create_input(2024, 1, 15, 10, 30, 0);
        let input2 = create_input(2024, 1, 15, 22, 30, 0); // 10 PM
        assert_eq!(
            resolve_difference(&input1, &input2, None),
            Difference::DayPeriodA
        );
    }

    #[test]
    fn test_minute_diff() {
        let input1 = create_input(2024, 1, 15, 10, 30, 0);
        let input2 = create_input(2024, 1, 15, 10, 31, 0);
        assert_eq!(
            resolve_difference(&input1, &input2, None),
            Difference::Minute
        );
    }

    #[test]
    fn test_second_diff() {
        let input1 = create_input(2024, 1, 15, 10, 30, 0);
        let input2 = create_input(2024, 1, 15, 10, 30, 1);
        assert_eq!(
            resolve_difference(&input1, &input2, None),
            Difference::Second
        );
    }

    #[test]
    fn test_timezone_diff() {
        let mut input1 = create_input(2024, 1, 15, 10, 30, 0);
        let mut input2 = create_input(2024, 1, 15, 10, 30, 0);
        input1.zone_offset = Some(icu_time::zone::UtcOffset::zero());
        input2.zone_offset = Some(icu_time::zone::UtcOffset::try_from_seconds(3600).unwrap());
        assert_eq!(
            resolve_difference(&input1, &input2, None),
            Difference::Incomparable
        );
    }
}