qrush 0.6.0

Lightweight Job Queue and Task Scheduler for Rust (Actix + Redis + Cron)
Documentation
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
// // src/cron/cron_parser.rs
// use chrono::{DateTime, Utc, Datelike, TimeZone};
// use anyhow::{Result, anyhow};
// use chrono_tz::Tz;

// /// Simple cron parser
// pub struct CronParser;

// impl CronParser {
//     ///
//     /// `tz_str` must be a valid IANA timezone (e.g. "UTC", "Asia/Kolkata").
//     /// NOTE: We compute next in local tz (for fixed times like 09:00), then return UTC.
//     pub fn next_execution(cron_expr: &str, from: DateTime<Utc>, tz_str: &str) -> Result<DateTime<Utc>> {

//         let parts: Vec<&str> = cron_expr.split_whitespace().collect();
//         if parts.len() != 6 {
//             return Err(anyhow!("Invalid cron expression format. Expected 6 parts: sec min hour day month weekday"));
//         }

//         // Parse timezone; default to UTC if invalid
//         let tz: Tz = tz_str.parse().unwrap_or(chrono_tz::UTC);
//         let from_local = from.with_timezone(&tz);

//         // Simple implementation for common patterns
//         match cron_expr {
//             "0 * * * * *" => Ok(from + chrono::Duration::minutes(1)), // Every minute
//             "0 */5 * * * *" => Ok(from + chrono::Duration::minutes(5)), // Every 5 minutes
//             "0 */10 * * * *" => Ok(from + chrono::Duration::minutes(10)), // Every 10 minutes
//             "0 */15 * * * *" => Ok(from + chrono::Duration::minutes(15)), // Every 15 minutes
//             "0 */30 * * * *" => Ok(from + chrono::Duration::minutes(30)), // Every 30 minutes
//             "0 0 * * * *" => Ok(from + chrono::Duration::hours(1)), // Every hour

//             "0 0 0 * * *" => {
//                 // Daily at local midnight
//                 let mut next_local = tz
//                 .with_ymd_and_hms(from_local.year(), from_local.month(), from_local.day(), 0, 0, 0)
//                 .single()
//                 .unwrap();
//                 if next_local <= from_local {
//                     next_local = next_local + chrono::Duration::days(1);
//                     next_local = tz.with_ymd_and_hms(next_local.year(), next_local.month(), next_local.day(), 0, 0, 0).single().unwrap();
//                 }
//                 Ok(next_local.with_timezone(&Utc))
//             }

//             "0 0 2 * * *" => {
//             // Daily at 2 AM (local)
//             let today_2 = tz.with_ymd_and_hms(from_local.year(), from_local.month(), from_local.day(), 2, 0, 0).single().unwrap();
//             let next_local = if today_2 > from_local {
//                 today_2
//             } else {
//             let t = from_local + chrono::Duration::days(1);
//                 tz.with_ymd_and_hms(t.year(), t.month(), t.day(), 2, 0, 0).single().unwrap()
//             };
//             Ok(next_local.with_timezone(&Utc))
//             },

//             "0 0 9 * * *" => {
//                 // Daily at 9 AM (local)
//                 let today_9 = tz.with_ymd_and_hms(from_local.year(), from_local.month(), from_local.day(), 9, 0, 0).single().unwrap();
//                 let next_local = if today_9 > from_local {
//                   today_9
//                 } else {
//                   let t = from_local + chrono::Duration::days(1);
//                   tz.with_ymd_and_hms(t.year(), t.month(), t.day(), 9, 0, 0).single().unwrap()
//                 };
//                 Ok(next_local.with_timezone(&Utc))
//             },

//             "0 0 0 * * 1" => {
//                 use chrono::Weekday;
//                 let wd = from_local.weekday();
//                 let add_days = match wd {
//                     Weekday::Mon => {
//                         // If it's already Monday but past 00:00 local, push to next week
//                         let today_mid = tz.with_ymd_and_hms(from_local.year(), from_local.month(), from_local.day(), 0, 0, 0).single().unwrap();
//                         if from_local < today_mid { 0 } else { 7 }
//                     },
//                     _ => (7 + (chrono::Weekday::Mon.num_days_from_monday() as i64)
//                           - (wd.num_days_from_monday() as i64)) % 7,
//                 };
//                 let target = from_local + chrono::Duration::days(add_days);
//                 let next_local = tz.with_ymd_and_hms(target.year(), target.month(), target.day(), 0, 0, 0).single().unwrap();
//                 Ok(next_local.with_timezone(&Utc))
//             },

//             "0 0 0 1 * *" => {
//                  let mut y = from_local.year();
//                  let mut m = from_local.month();
//                  // candidate = first of current month at 00:00 local
//                  let mut candidate = tz.with_ymd_and_hms(y, m, 1, 0, 0, 0).single().unwrap();
//                  if candidate <= from_local {
//                      if m == 12 { y += 1; m = 1; } else { m += 1; }
//                      candidate = tz.with_ymd_and_hms(y, m, 1, 0, 0, 0).single().unwrap();
//                  }
//                  Ok(candidate.with_timezone(&Utc))
//             },
//             _ => {
//                 // For complex expressions, you'd implement full cron parsing here
//                 // or use the `cron` crate
//                 Err(anyhow!("Cron expression not supported yet: {}. Supported patterns: '0 * * * * *' (every minute), '0 */5 * * * *' (every 5 min), '0 0 * * * *' (hourly), '0 0 0 * * *' (daily), '0 0 0 * * 1' (weekly), '0 0 0 1 * *' (monthly)", cron_expr))
//             }
//         }
//     }
// }



use anyhow::{anyhow, Context, Result};
use chrono::{DateTime, Datelike, TimeZone, Timelike, Utc};
use chrono_tz::Tz;
use std::collections::HashSet;
use std::str::FromStr;

/// Full-featured cron parser (no external cron crate).
/// Supports:
/// - 6-field:  `sec  min  hour  dom  mon  dow`
/// - 5-field:  `min  hour  dom  mon  dow`   (auto-seconds = 0)
///
/// Tokens per field:
/// ```text
/// *         -> any
/// a         -> exact
/// a,b,c     -> list
/// a-b       -> range inclusive
/// */n       -> step over full range
/// a-b/n     -> stepped range
/// Names:
///   Months:  JAN..DEC
///   Weekdays: SUN,MON,TUE,WED,THU,FRI,SAT  (0/7 = SUN)
/// ```
pub struct CronParser;

#[derive(Debug, Clone)]
struct CronSpec {
    sec:  Field,
    min:  Field,
    hour: Field,
    dom:  FieldDomDow, // day-of-month (1..31) with "any" info
    mon:  Field,
    dow:  FieldDomDow, // day-of-week (0..6, 0/7 = Sun) with "any" info
}

#[derive(Debug, Clone)]
struct Field {
    allowed: HashSet<u32>, // empty => Any
    min: u32,
    max: u32,
}

#[derive(Debug, Clone)]
#[allow(dead_code)]
struct FieldDomDow {
    allowed: HashSet<u32>, // empty => Any
    min: u32,
    max: u32,
    any: bool,
}

impl CronParser {
    /// `cron_expr`: 5 or 6 fields (see header).
    /// `from_utc` : baseline (exclusive) instant in UTC; next > from returned.
    /// `tz_str`   : IANA timezone string, e.g. "UTC", "Asia/Kolkata".
    pub fn next_execution(cron_expr: &str, from_utc: DateTime<Utc>, tz_str: &str) -> Result<DateTime<Utc>> {
        let tz: Tz = tz_str.parse().unwrap_or(chrono_tz::UTC);

        // Normalize to 6 fields if 5 are provided (insert seconds=0 at start)
        let expr = normalize_to_six(cron_expr);
        let spec = CronSpec::parse(&expr)
            .with_context(|| format!("Invalid cron expression: {}", cron_expr))?;

        // Work in local tz for correct wall-clock semantics
        // Start strictly AFTER 'from'
        let mut dt = from_utc.with_timezone(&tz) + chrono::Duration::seconds(1);

        // Hard upper bound to avoid infinite loops: advance up to 5 years
        let end_limit = dt + chrono::Duration::days(366 * 5);

        // Outer loop: year-month-day alignment
        loop {
            if dt > end_limit {
                return Err(anyhow!("Could not find next occurrence within 5 years"));
            }

            // 1) MONTH
            if !spec.mon.matches(dt.month()) {
                if let Some(next_m) = spec.mon.next_ge(dt.month()) {
                    // same year
                    if next_m != dt.month() {
                        // bump month, reset lower units
                        dt = set_ymd_hms(&tz, dt.year(), next_m, 1, 0, 0, 0)?;
                    }
                } else {
                    // move to earliest allowed month next year
                    let first_m = spec.mon.first().unwrap_or(1);
                    dt = set_ymd_hms(&tz, dt.year() + 1, first_m, 1, 0, 0, 0)?;
                }
            }

            // 2) DAY (DOM/DOW with OR)
            if !spec.matches_day(&dt) {
                // advance day by 1 until matching day (or month/year rolls)
                dt = dt + chrono::Duration::days(1);
                dt = set_hms(&tz, dt, 0, 0, 0)?;
                continue; // re-check month/day constraints on new date
            }

            // 3) HOUR
            if !spec.hour.matches(dt.hour()) {
                if let Some(next_h) = spec.hour.next_ge(dt.hour()) {
                    dt = set_hms(&tz, dt, next_h, 0, 0)?;
                } else {
                    // Next allowed hour is in next day
                    dt = dt + chrono::Duration::days(1);
                    dt = set_hms(&tz, dt, spec.hour.first().unwrap_or(0), 0, 0)?;
                    continue; // day may change -> re-run month/day checks
                }
            }

            // 4) MINUTE
            if !spec.min.matches(dt.minute()) {
                if let Some(next_min) = spec.min.next_ge(dt.minute()) {
                    dt = set_hms(&tz, dt, dt.hour(), next_min, 0)?;
                } else {
                    // bump hour
                    if let Some(next_h) = spec.hour.next_gt(dt.hour()) {
                        dt = set_hms(&tz, dt, next_h, spec.min.first().unwrap_or(0), 0)?;
                    } else {
                        // next day at first hour/min
                        dt = dt + chrono::Duration::days(1);
                        dt = set_hms(
                            &tz,
                            dt,
                            spec.hour.first().unwrap_or(0),
                            spec.min.first().unwrap_or(0),
                            0,
                        )?;
                    }
                    continue; // hour/day may change -> re-check
                }
            }

            // 5) SECOND
            if !spec.sec.matches(dt.second()) {
                if let Some(next_s) = spec.sec.next_ge(dt.second()) {
                    dt = set_hms(&tz, dt, dt.hour(), dt.minute(), next_s)?;
                } else {
                    // bump minute
                    if let Some(next_min) = spec.min.next_gt(dt.minute()) {
                        dt = set_hms(&tz, dt, dt.hour(), next_min, spec.sec.first().unwrap_or(0))?;
                    } else if let Some(next_h) = spec.hour.next_gt(dt.hour()) {
                        dt = set_hms(&tz, dt, next_h, spec.min.first().unwrap_or(0), spec.sec.first().unwrap_or(0))?;
                    } else {
                        // next day at first hour/min/sec
                        dt = dt + chrono::Duration::days(1);
                        dt = set_hms(
                            &tz,
                            dt,
                            spec.hour.first().unwrap_or(0),
                            spec.min.first().unwrap_or(0),
                            spec.sec.first().unwrap_or(0),
                        )?;
                    }
                    continue; // minute/hour/day may change -> re-check
                }
            }

            // All constraints satisfied
            return Ok(dt.with_timezone(&Utc));
        }
    }
}

// --------- CronSpec parsing & matching ----------

impl CronSpec {
    fn parse(expr6: &str) -> Result<Self> {
        let parts: Vec<&str> = expr6.split_whitespace().collect();
        if parts.len() != 6 {
            return Err(anyhow!("Expected 6 fields: sec min hour dom mon dow"));
        }

        let sec  = Field::parse(parts[0], 0, 59, None, false)?;
        let min  = Field::parse(parts[1], 0, 59, None, false)?;
        let hour = Field::parse(parts[2], 0, 23, None, false)?;
        let dom  = FieldDomDow::parse_dom(parts[3])?;
        let mon  = Field::parse(parts[4], 1, 12, Some(&month_name_map()), false)?;
        let dow  = FieldDomDow::parse_dow(parts[5])?;

        Ok(Self { sec, min, hour, dom, mon, dow })
    }

    /// DOM/DOW OR logic:
    /// - If both are Any => accept any day
    /// - Else day is valid if (DOM matches) OR (DOW matches)
    fn matches_day(&self, dt: &DateTime<Tz>) -> bool {
        let dom_any = self.dom.any;
        let dow_any = self.dow.any;

        let dom_match = self.dom.matches_dom(dt.day());
        let dow_match = self.dow.matches_dow(dt.weekday().num_days_from_sunday()); // 0=Sun..6=Sat

        match (dom_any, dow_any) {
            (true,  true)  => true,
            (false, true)  => dom_match,
            (true,  false) => dow_match,
            (false, false) => dom_match || dow_match,
        }
    }
}

impl Field {
    fn parse(token: &str, min: u32, max: u32, names: Option<&std::collections::HashMap<&'static str, u32>>, is_dow: bool) -> Result<Self> {
        let mut allowed = HashSet::new();

        // Empty or "*" => Any
        if token.trim() == "*" {
            return Ok(Self { allowed, min, max });
        }

        for part in token.split(',') {
            let part = part.trim();
            if part.is_empty() { continue; }

            // Handle names
            let mut part = if let Some(map) = names {
                // replace names with numbers (case-insensitive)
                let upper = part.to_ascii_uppercase();
                if let Some(&num) = map.get(upper.as_str()) {
                    num.to_string()
                } else {
                    part.to_string()
                }
            } else {
                part.to_string()
            };

            // For DOW: allow 7 => 0 (Sunday)
            if is_dow && part == "7" {
                part = "0".to_string();
            }

            // Step forms: "*/n" or "a-b/n"
            if let Some((lhs, step_s)) = part.split_once('/') {
                let step = parse_u(lhs, step_s, min, max)?; // parse step, lhs can be "*" or "a-b"
                if lhs == "*" {
                    for v in (min..=max).step_by(step as usize) {
                        allowed.insert(v);
                    }
                } else if let Some((a_s, b_s)) = lhs.split_once('-') {
                    let a = parse_num(a_s, min, max, names, is_dow)?;
                    let b = parse_num(b_s, min, max, names, is_dow)?;
                    let (lo, hi) = if a <= b { (a, b) } else { (b, a) };
                    for v in (lo..=hi).step_by(step as usize) {
                        allowed.insert(v);
                    }
                } else {
                    return Err(anyhow!("Invalid stepped token '{}'", part));
                }
                continue;
            }

            // "*/n"
            if let Some(step_s) = part.strip_prefix("*/") {
                let step: u32 = step_s.parse().context("Invalid step")?;
                for v in (min..=max).step_by(step as usize) {
                    allowed.insert(v);
                }
                continue;
            }

            // "a-b"
            if let Some((a_s, b_s)) = part.split_once('-') {
                let a = parse_num(a_s, min, max, names, is_dow)?;
                let b = parse_num(b_s, min, max, names, is_dow)?;
                let (lo, hi) = if a <= b { (a, b) } else { (b, a) };
                for v in lo..=hi {
                    allowed.insert(v);
                }
                continue;
            }

            // single number
            let n = parse_num(&part, min, max, names, is_dow)?;
            allowed.insert(n);
        }

        Ok(Self { allowed, min, max })
    }

    #[inline]
    fn matches(&self, v: u32) -> bool {
        if self.allowed.is_empty() { return true; }
        self.allowed.contains(&v)
    }

    #[inline]
    fn first(&self) -> Option<u32> {
        if self.allowed.is_empty() { return Some(self.min); }
        self.allowed.iter().cloned().min()
    }

    #[inline]
    fn next_ge(&self, v: u32) -> Option<u32> {
        if self.allowed.is_empty() {
            if v < self.min { return Some(self.min); }
            if v > self.max { return None; }
            return Some(v);
        }
        let mut cand: Option<u32> = None;
        for &x in &self.allowed {
            if x >= v {
                cand = Some(match cand {
                    Some(c) => c.min(x),
                    None => x,
                });
            }
        }
        if cand.is_none() {
            // wrap not allowed here; caller handles carry
        }
        cand
    }

    #[inline]
    fn next_gt(&self, v: u32) -> Option<u32> {
        if self.allowed.is_empty() {
            if v < self.max { return Some(v + 1); }
            return None;
        }
        let mut cand: Option<u32> = None;
        for &x in &self.allowed {
            if x > v {
                cand = Some(match cand {
                    Some(c) => c.min(x),
                    None => x,
                });
            }
        }
        cand
    }
}

impl FieldDomDow {
    fn parse_dom(token: &str) -> Result<Self> {
        let base = Field::parse(token, 1, 31, None, false)?;
        Ok(Self { any: base.allowed.is_empty(), allowed: base.allowed, min: 1, max: 31 })
    }
    fn parse_dow(token: &str) -> Result<Self> {
        let base = Field::parse(token, 0, 6, Some(&weekday_name_map()), true)?;
        Ok(Self { any: base.allowed.is_empty(), allowed: base.allowed, min: 0, max: 6 })
    }
    #[inline]
    fn matches_dom(&self, day: u32) -> bool {
        if self.any { return true; }
        self.allowed.contains(&day)
    }
    #[inline]
    fn matches_dow(&self, dow0sun: u32) -> bool {
        if self.any { return true; }
        self.allowed.contains(&dow0sun)
    }
}

// --------- helpers ----------

fn normalize_to_six(expr: &str) -> String {
    let parts: Vec<&str> = expr.split_whitespace().collect();
    match parts.len() {
        5 => format!("0 {}", expr.trim()),
        _ => expr.trim().to_string(),
    }
}

fn set_ymd_hms(tz: &Tz, y: i32, m: u32, d: u32, h: u32, min: u32, s: u32) -> Result<DateTime<Tz>> {
    tz.with_ymd_and_hms(y, m, d, h, min, s)
        .single()
        .ok_or_else(|| anyhow!("Invalid local time (DST gap/overlap): {y}-{m}-{d} {h}:{min}:{s}"))
}

fn set_hms(tz: &Tz, dt: DateTime<Tz>, h: u32, m: u32, s: u32) -> Result<DateTime<Tz>> {
    set_ymd_hms(tz, dt.year(), dt.month(), dt.day(), h, m, s)
}

fn parse_u(lhs: &str, step: &str, _min: u32, _max: u32) -> Result<usize> {
    if !lhs.is_empty() && lhs != "*" && !lhs.contains('-') {
        return Err(anyhow!("Invalid stepped lhs '{}'", lhs));
    }
    let st: u32 = step.parse().context("Invalid step value")?;
    if st == 0 { return Err(anyhow!("Step must be > 0")); }
    Ok(st as usize)
}

fn parse_num(token: &str, min: u32, max: u32, names: Option<&std::collections::HashMap<&'static str, u32>>, is_dow: bool) -> Result<u32> {
    let t = token.trim();
    // names (already handled in Field::parse for ranges/steps/lists), but single could still be a name
    if let Some(map) = names {
        let up = t.to_ascii_uppercase();
        if let Some(&n) = map.get(up.as_str()) {
            return Ok(n);
        }
    }
    let mut n: u32 = u32::from_str(t).context(format!("Invalid number '{}'", t))?;
    if is_dow && n == 7 { n = 0; } // 7 => 0 (Sunday)
    if n < min || n > max {
        return Err(anyhow!("Value {} out of range {}..{}", n, min, max));
    }
    Ok(n)
}

fn month_name_map() -> std::collections::HashMap<&'static str, u32> {
    use std::iter::FromIterator;
    std::collections::HashMap::from_iter([
        ("JAN", 1), ("FEB", 2), ("MAR", 3), ("APR", 4), ("MAY", 5), ("JUN", 6),
        ("JUL", 7), ("AUG", 8), ("SEP", 9), ("OCT", 10), ("NOV", 11), ("DEC", 12),
    ])
}

fn weekday_name_map() -> std::collections::HashMap<&'static str, u32> {
    use std::iter::FromIterator;
    // 0=SUN .. 6=SAT
    std::collections::HashMap::from_iter([
        ("SUN", 0), ("MON", 1), ("TUE", 2), ("WED", 3),
        ("THU", 4), ("FRI", 5), ("SAT", 6),
    ])
}

#[cfg(test)]
mod tests {
    use super::*;
    use chrono::TimeZone;

    #[test]
    fn test_minutely_5field_defaults_seconds0() {
        let from = Utc.with_ymd_and_hms(2025, 9, 26, 10, 0, 10).unwrap();
        let tz = "UTC";
        let next = CronParser::next_execution("*/1 * * * *", from, tz).unwrap();
        assert_eq!(next, Utc.with_ymd_and_hms(2025, 9, 26, 10, 1, 0).unwrap());
    }

    #[test]
    fn test_every_5_minutes_6field() {
        let tz = "Asia/Kolkata";
        let from = Utc.with_ymd_and_hms(2025, 9, 26, 10, 2, 30).unwrap();
        let next = CronParser::next_execution("0 */5 * * * *", from, tz).unwrap();
        assert!(next > from);
    }

    #[test]
    fn test_named_month_and_weekday() {
        let tz = "UTC";
        let from = Utc.with_ymd_and_hms(2025, 1, 30, 23, 59, 59).unwrap();
        // First MON in FEB at 09:00:00
        let next = CronParser::next_execution("0 0 9 1-7 FEB MON", from, tz).unwrap();
        assert!(next > from);
    }

    #[test]
    fn test_dow_sunday_0_or_7() {
        let tz = "UTC";
        let from = Utc.with_ymd_and_hms(2025, 9, 26, 10, 0, 0).unwrap(); // Friday
        let n0 = CronParser::next_execution("0 0 * * * 0", from, tz).unwrap();
        let n7 = CronParser::next_execution("0 0 * * * 7", from, tz).unwrap();
        assert_eq!(n0, n7);
    }
}