use crate::cron::Schedule;
use anyhow::{Context, Result};
use chrono::{DateTime, Duration as ChronoDuration, Utc};
use cron::Schedule as CronExprSchedule;
use std::str::FromStr;
pub fn next_run_for_schedule(schedule: &Schedule, from: DateTime<Utc>) -> Result<DateTime<Utc>> {
match schedule {
Schedule::Cron { expr, tz } => {
let normalized = normalize_expression(expr)?;
let cron = CronExprSchedule::from_str(&normalized)
.with_context(|| format!("Invalid cron expression: {expr}"))?;
if let Some(tz_name) = tz {
let timezone = chrono_tz::Tz::from_str(tz_name)
.with_context(|| format!("Invalid IANA timezone: {tz_name}"))?;
let localized_from = from.with_timezone(&timezone);
let next_local = cron.after(&localized_from).next().ok_or_else(|| {
anyhow::anyhow!("No future occurrence for expression: {expr}")
})?;
Ok(next_local.with_timezone(&Utc))
} else {
let local_from = from.with_timezone(&chrono::Local);
let next_local = cron.after(&local_from).next().ok_or_else(|| {
anyhow::anyhow!("No future occurrence for expression: {expr}")
})?;
Ok(next_local.with_timezone(&Utc))
}
}
Schedule::At { at } => Ok(*at),
Schedule::Every { every_ms } => {
if *every_ms == 0 {
anyhow::bail!("Invalid schedule: every_ms must be > 0");
}
let ms = i64::try_from(*every_ms).context("every_ms is too large")?;
let delta = ChronoDuration::milliseconds(ms);
from.checked_add_signed(delta)
.ok_or_else(|| anyhow::anyhow!("every_ms overflowed DateTime"))
}
}
}
pub fn validate_schedule(schedule: &Schedule, now: DateTime<Utc>) -> Result<()> {
match schedule {
Schedule::Cron { expr, .. } => {
let _ = normalize_expression(expr)?;
let _ = next_run_for_schedule(schedule, now)?;
Ok(())
}
Schedule::At { at } => {
if *at <= now {
anyhow::bail!("Invalid schedule: 'at' must be in the future");
}
Ok(())
}
Schedule::Every { every_ms } => {
if *every_ms == 0 {
anyhow::bail!("Invalid schedule: every_ms must be > 0");
}
Ok(())
}
}
}
pub fn schedule_cron_expression(schedule: &Schedule) -> Option<String> {
match schedule {
Schedule::Cron { expr, .. } => Some(expr.clone()),
_ => None,
}
}
pub fn normalize_expression(expression: &str) -> Result<String> {
let expression = expression.trim();
let field_count = expression.split_whitespace().count();
match field_count {
5 => {
let mut fields: Vec<&str> = expression.split_whitespace().collect();
let weekday = fields[4];
let normalized_weekday = normalize_weekday_field(weekday)?;
fields[4] = &normalized_weekday;
Ok(format!(
"0 {} {} {} {} {}",
fields[0], fields[1], fields[2], fields[3], fields[4]
))
}
6 | 7 => Ok(expression.to_string()),
_ => anyhow::bail!(
"Invalid cron expression: {expression} (expected 5, 6, or 7 fields, got {field_count})"
),
}
}
fn translate_weekday_value(val: u8) -> Result<u8> {
match val {
0 | 7 => Ok(1), 1..=6 => Ok(val + 1),
_ => anyhow::bail!("Invalid weekday value: {val} (expected 0-7)"),
}
}
fn normalize_weekday_field(field: &str) -> Result<String> {
if field == "*" || field == "?" {
return Ok(field.to_string());
}
if field.chars().any(|c| c.is_ascii_alphabetic()) {
return Ok(field.to_string());
}
let parts: Vec<&str> = field.split(',').collect();
let mut result_parts = Vec::with_capacity(parts.len());
for part in parts {
let (range_part, step) = if let Some((r, s)) = part.split_once('/') {
(r, Some(s))
} else {
(part, None)
};
let translated = if let Some((start_s, end_s)) = range_part.split_once('-') {
let start: u8 = start_s
.parse()
.with_context(|| format!("Invalid weekday in range: {start_s}"))?;
let end: u8 = end_s
.parse()
.with_context(|| format!("Invalid weekday in range: {end_s}"))?;
let new_start = translate_weekday_value(start)?;
let new_end = translate_weekday_value(end)?;
format!("{new_start}-{new_end}")
} else if range_part == "*" {
"*".to_string()
} else {
let val: u8 = range_part
.parse()
.with_context(|| format!("Invalid weekday value: {range_part}"))?;
translate_weekday_value(val)?.to_string()
};
if let Some(s) = step {
result_parts.push(format!("{translated}/{s}"));
} else {
result_parts.push(translated);
}
}
Ok(result_parts.join(","))
}
#[cfg(test)]
mod tests {
use super::*;
use chrono::{Datelike, Offset, TimeZone};
#[test]
fn next_run_for_schedule_supports_every_and_at() {
let now = Utc::now();
let every = Schedule::Every { every_ms: 60_000 };
let next = next_run_for_schedule(&every, now).unwrap();
assert!(next > now);
let at = now + ChronoDuration::minutes(10);
let at_schedule = Schedule::At { at };
let next_at = next_run_for_schedule(&at_schedule, now).unwrap();
assert_eq!(next_at, at);
}
#[test]
fn next_run_for_schedule_supports_timezone() {
let from = Utc.with_ymd_and_hms(2026, 2, 16, 0, 0, 0).unwrap();
let schedule = Schedule::Cron {
expr: "0 9 * * *".into(),
tz: Some("America/Los_Angeles".into()),
};
let next = next_run_for_schedule(&schedule, from).unwrap();
assert_eq!(next, Utc.with_ymd_and_hms(2026, 2, 16, 17, 0, 0).unwrap());
}
#[test]
fn normalize_weekday_field_translates_standard_crontab_values() {
assert_eq!(normalize_weekday_field("0").unwrap(), "1"); assert_eq!(normalize_weekday_field("1").unwrap(), "2"); assert_eq!(normalize_weekday_field("5").unwrap(), "6"); assert_eq!(normalize_weekday_field("6").unwrap(), "7"); assert_eq!(normalize_weekday_field("7").unwrap(), "1"); }
#[test]
fn normalize_weekday_field_translates_ranges() {
assert_eq!(normalize_weekday_field("1-5").unwrap(), "2-6");
assert_eq!(normalize_weekday_field("0-6").unwrap(), "1-7");
}
#[test]
fn normalize_weekday_field_translates_lists() {
assert_eq!(normalize_weekday_field("0,6").unwrap(), "1,7");
assert_eq!(normalize_weekday_field("1,3,5").unwrap(), "2,4,6");
}
#[test]
fn normalize_weekday_field_translates_steps() {
assert_eq!(normalize_weekday_field("1-5/2").unwrap(), "2-6/2");
assert_eq!(normalize_weekday_field("*/2").unwrap(), "*/2");
}
#[test]
fn normalize_weekday_field_passes_through_wildcards_and_names() {
assert_eq!(normalize_weekday_field("*").unwrap(), "*");
assert_eq!(normalize_weekday_field("?").unwrap(), "?");
assert_eq!(normalize_weekday_field("MON-FRI").unwrap(), "MON-FRI");
assert_eq!(
normalize_weekday_field("MON,WED,FRI").unwrap(),
"MON,WED,FRI"
);
}
#[test]
fn normalize_expression_applies_weekday_fix_to_5_field() {
let result = normalize_expression("0 9 * * 1-5").unwrap();
assert_eq!(result, "0 0 9 * * 2-6");
}
#[test]
fn normalize_expression_does_not_modify_6_field() {
let result = normalize_expression("0 0 9 * * 1-5").unwrap();
assert_eq!(result, "0 0 9 * * 1-5");
}
#[test]
fn weekday_1_5_schedules_monday_through_friday() {
let sunday = Utc.with_ymd_and_hms(2026, 2, 15, 0, 0, 0).unwrap();
let schedule = Schedule::Cron {
expr: "0 9 * * 1-5".into(),
tz: Some("UTC".into()),
};
let next = next_run_for_schedule(&schedule, sunday).unwrap();
assert_eq!(next, Utc.with_ymd_and_hms(2026, 2, 16, 9, 0, 0).unwrap());
assert_eq!(next.weekday(), chrono::Weekday::Mon);
}
#[test]
fn weekday_1_5_does_not_fire_on_saturday_or_sunday() {
let friday_evening = Utc.with_ymd_and_hms(2026, 2, 20, 18, 0, 0).unwrap();
let schedule = Schedule::Cron {
expr: "0 9 * * 1-5".into(),
tz: Some("UTC".into()),
};
let next = next_run_for_schedule(&schedule, friday_evening).unwrap();
assert_eq!(next, Utc.with_ymd_and_hms(2026, 2, 23, 9, 0, 0).unwrap());
assert_eq!(next.weekday(), chrono::Weekday::Mon);
}
#[test]
fn weekday_0_means_sunday() {
let monday = Utc.with_ymd_and_hms(2026, 2, 16, 0, 0, 0).unwrap();
let schedule = Schedule::Cron {
expr: "0 10 * * 0".into(),
tz: Some("UTC".into()),
};
let next = next_run_for_schedule(&schedule, monday).unwrap();
assert_eq!(next.weekday(), chrono::Weekday::Sun);
}
#[test]
fn weekday_7_means_sunday() {
let monday = Utc.with_ymd_and_hms(2026, 2, 16, 0, 0, 0).unwrap();
let schedule = Schedule::Cron {
expr: "0 10 * * 7".into(),
tz: Some("UTC".into()),
};
let next = next_run_for_schedule(&schedule, monday).unwrap();
assert_eq!(next.weekday(), chrono::Weekday::Sun);
}
#[test]
fn no_tz_defaults_to_local_timezone() {
let from = Utc.with_ymd_and_hms(2026, 6, 15, 12, 0, 0).unwrap();
let schedule_no_tz = Schedule::Cron {
expr: "0 9 * * *".into(),
tz: None,
};
let schedule_utc = Schedule::Cron {
expr: "0 9 * * *".into(),
tz: Some("UTC".into()),
};
let next_local = next_run_for_schedule(&schedule_no_tz, from).unwrap();
let next_utc = next_run_for_schedule(&schedule_utc, from).unwrap();
assert!(next_local > from);
assert!(next_utc > from);
let local_offset = chrono::Local::now().offset().fix().local_minus_utc();
if local_offset == 0 {
assert_eq!(next_local, next_utc);
} else {
assert_ne!(next_local, next_utc);
}
}
}