189 lines
4.8 KiB
V
189 lines
4.8 KiB
V
module cron
|
|
|
|
import math
|
|
import time
|
|
|
|
const days_in_month = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
|
|
|
|
struct CronExpression {
|
|
minutes []int
|
|
hours []int
|
|
days []int
|
|
months []int
|
|
}
|
|
|
|
// next calculates the earliest time this cron expression is valid. It will
|
|
// always pick a moment in the future, even if ref matches completely up to the
|
|
// minute. This function conciously does not take gap years into account.
|
|
pub fn (ce &CronExpression) next(ref time.Time) ?time.Time {
|
|
// For all of these values, the rule is the following: if their value is
|
|
// the length of their respective array in the CronExpression object, that
|
|
// means we've looped back around. This means that the "bigger" value has
|
|
// to be incremented by one. For example, if the minutes have looped
|
|
// around, that means that the hour has to be incremented as well.
|
|
mut minute_index := 0
|
|
mut hour_index := 0
|
|
mut day_index := 0
|
|
mut month_index := 0
|
|
|
|
// This chain is the same logic multiple times, namely that if a "bigger"
|
|
// value loops around, then the smaller value will always reset as well.
|
|
// For example, if we're going to a new day, the hour & minute will always
|
|
// be their smallest value again.
|
|
for month_index < ce.months.len && ref.month > ce.months[month_index] {
|
|
month_index++
|
|
}
|
|
|
|
if month_index < ce.months.len {
|
|
for day_index < ce.days.len && ref.day > ce.days[day_index] {
|
|
day_index++
|
|
}
|
|
|
|
if day_index < ce.days.len {
|
|
for hour_index < ce.hours.len && ref.hour > ce.hours[hour_index] {
|
|
hour_index++
|
|
}
|
|
|
|
if hour_index < ce.hours.len {
|
|
// Minute is the only value where we explicitely make sure we
|
|
// can't match ref's value exactly. This is to ensure we only
|
|
// return values in the future.
|
|
for minute_index < ce.minutes.len && ref.minute >= ce.minutes[minute_index] {
|
|
minute_index++
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Here, we increment the "bigger" values by one if the smaller ones loop
|
|
// around. The order is important, as it allows a sort-of waterfall effect
|
|
// to occur which updates all values if required.
|
|
if minute_index == ce.minutes.len && hour_index < ce.hours.len {
|
|
hour_index += 1
|
|
}
|
|
|
|
if hour_index == ce.hours.len && day_index < ce.days.len {
|
|
day_index += 1
|
|
}
|
|
|
|
if day_index == ce.days.len && month_index < ce.months.len {
|
|
month_index += 1
|
|
}
|
|
|
|
mut minute := ce.minutes[minute_index % ce.minutes.len]
|
|
mut hour := ce.hours[hour_index % ce.hours.len]
|
|
mut day := ce.days[day_index % ce.days.len]
|
|
|
|
// Sometimes, we end up with a day that does not exist within the selected
|
|
// month, e.g. day 30 in February. When this occurs, we reset day back to
|
|
// the smallest value & loop over to the next month that does have this
|
|
// day.
|
|
if day > cron.days_in_month[ce.months[month_index % ce.months.len] - 1] {
|
|
day = ce.days[0]
|
|
month_index += 1
|
|
|
|
for day > cron.days_in_month[ce.months[month_index & ce.months.len] - 1] {
|
|
month_index += 1
|
|
|
|
// If for whatever reason the day value ends up being something
|
|
// that can't be scheduled in any month, we have to make sure we
|
|
// don't create an infinite loop.
|
|
if month_index == 2 * ce.months.len {
|
|
return error('No schedulable moment.')
|
|
}
|
|
}
|
|
}
|
|
|
|
month := ce.months[month_index % ce.months.len]
|
|
mut year := ref.year
|
|
|
|
// If the month loops over, we need to increment the year.
|
|
if month_index >= ce.months.len {
|
|
year++
|
|
}
|
|
|
|
return time.Time{
|
|
year: year
|
|
month: month
|
|
day: day
|
|
minute: minute
|
|
hour: hour
|
|
}
|
|
}
|
|
|
|
fn (ce &CronExpression) next_from_now() ?time.Time {
|
|
return ce.next(time.now())
|
|
}
|
|
|
|
// parse_range parses a given string into a range of sorted integers, if
|
|
// possible.
|
|
fn parse_range(s string, min int, max int, mut bitv []bool) ? {
|
|
mut start := min
|
|
mut interval := 1
|
|
|
|
if s != '*' {
|
|
exps := s.split('/')
|
|
|
|
start = math.min(max, math.max(exps[0].int(), min))
|
|
|
|
if exps.len > 1 {
|
|
interval = exps[1].int()
|
|
}
|
|
// Here, s solely consists of a number, so that's the only value we
|
|
// should return.
|
|
else {
|
|
bitv[start - min - 1] = true
|
|
return
|
|
}
|
|
}
|
|
|
|
if interval == 0 {
|
|
return
|
|
}
|
|
|
|
for start <= max {
|
|
bitv[start - min - 1] = true
|
|
start += interval
|
|
}
|
|
}
|
|
|
|
fn parse_part(s string, min int, max int) ?[]int {
|
|
mut bitv := []bool{init: false, len: max - min + 1}
|
|
|
|
for range in s.split(',') {
|
|
parse_range(range, min, max, mut bitv) ?
|
|
}
|
|
|
|
mut out := []int{}
|
|
|
|
for i in 0..max + 1 {
|
|
if bitv[i] {
|
|
out << min + i
|
|
}
|
|
}
|
|
|
|
return out
|
|
}
|
|
|
|
// min hour day month day-of-week
|
|
fn parse_expression(exp string) ?CronExpression {
|
|
mut parts := exp.split(' ')
|
|
|
|
if parts.len < 2 || parts.len > 4 {
|
|
return error('Expression must contain between 2 and 4 space-separated parts.')
|
|
}
|
|
|
|
// For ease of use, we allow the user to only specify as many parts as they
|
|
// need.
|
|
for parts.len < 4 {
|
|
parts << '*'
|
|
}
|
|
|
|
return CronExpression{
|
|
minutes: parse_part(parts[0], 0, 59) ?
|
|
hours: parse_part(parts[1], 0, 23) ?
|
|
days: parse_part(parts[2], 1, 31) ?
|
|
months: parse_part(parts[3], 1, 12) ?
|
|
}
|
|
}
|