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
|
require 'set'
require 'date'
#
# Parses cron expressions and computes the next occurence of the "job"
#
class CronParser
# internal "mutable" time representation
class InternalTime
attr_accessor :year, :month, :day, :hour, :min
attr_accessor :time_source
def initialize(time,time_source = Time)
@year = time.year
@month = time.month
@day = time.day
@hour = time.hour
@min = time.min
@time_source = time_source
end
def to_time
time_source.local(@year, @month, @day, @hour, @min, 0)
end
def inspect
[year, month, day, hour, min].inspect
end
end
SYMBOLS = {
"jan" => "1",
"feb" => "2",
"mar" => "3",
"apr" => "4",
"may" => "5",
"jun" => "6",
"jul" => "7",
"aug" => "8",
"sep" => "9",
"oct" => "10",
"nov" => "11",
"dec" => "12",
"sun" => "0",
"mon" => "1",
"tue" => "2",
"wed" => "3",
"thu" => "4",
"fri" => "5",
"sat" => "6"
}
def initialize(source,time_source = Time)
@source = interpret_vixieisms(source)
@time_source = time_source
validate_source
end
def interpret_vixieisms(spec)
case spec
when '@reboot'
raise ArgumentError, "Can't predict last/next run of @reboot"
when '@yearly', '@annually'
'0 0 1 1 *'
when '@monthly'
'0 0 1 * *'
when '@weekly'
'0 0 * * 0'
when '@daily', '@midnight'
'0 0 * * *'
when '@hourly'
'0 * * * *'
else
spec
end
end
# returns the next occurence after the given date
def next(now = @time_source.now)
t = InternalTime.new(now, @time_source)
unless time_specs[:month][0].include?(t.month)
nudge_month(t)
t.day = 0
end
unless interpolate_weekdays(t.year, t.month)[0].include?(t.day)
nudge_date(t)
t.hour = -1
end
unless time_specs[:hour][0].include?(t.hour)
nudge_hour(t)
t.min = -1
end
# always nudge the minute
nudge_minute(t)
t.to_time
end
# returns the last occurence before the given date
def last(now = @time_source.now)
t = InternalTime.new(now,@time_source)
unless time_specs[:month][0].include?(t.month)
nudge_month(t, :last)
t.day = 32
end
if t.day == 32 || !interpolate_weekdays(t.year, t.month)[0].include?(t.day)
nudge_date(t, :last)
t.hour = 24
end
unless time_specs[:hour][0].include?(t.hour)
nudge_hour(t, :last)
t.min = 60
end
# always nudge the minute
nudge_minute(t, :last)
t.to_time
end
SUBELEMENT_REGEX = %r{^(\d+)(-(\d+)(/(\d+))?)?$}
def parse_element(elem, allowed_range)
values = elem.split(',').map do |subel|
if subel =~ /^\*/
step = subel.length > 1 ? subel[2..-1].to_i : 1
stepped_range(allowed_range, step)
else
if SUBELEMENT_REGEX === subel
if $5 # with range
stepped_range($1.to_i..$3.to_i, $5.to_i)
elsif $3 # range without step
stepped_range($1.to_i..$3.to_i, 1)
else # just a numeric
[$1.to_i]
end
else
raise ArgumentError, "Bad Vixie-style specification #{subel}"
end
end
end.flatten.sort
[Set.new(values), values, elem]
end
protected
# returns a list of days which do both match time_spec[:dom] or time_spec[:dow]
def interpolate_weekdays(year, month)
@_interpolate_weekdays_cache ||= {}
@_interpolate_weekdays_cache["#{year}-#{month}"] ||= interpolate_weekdays_without_cache(year, month)
end
def interpolate_weekdays_without_cache(year, month)
t = Date.new(year, month, 1)
valid_mday, _, mday_field = time_specs[:dom]
valid_wday, _, wday_field = time_specs[:dow]
# Careful, if both DOW and DOM fields are non-wildcard,
# then we only need to match *one* for cron to run the job:
if not (mday_field == '*' and wday_field == '*')
valid_mday = [] if mday_field == '*'
valid_wday = [] if wday_field == '*'
end
# Careful: crontabs may use either 0 or 7 for Sunday:
valid_wday << 0 if valid_wday.include?(7)
result = []
while t.month == month
result << t.mday if valid_mday.include?(t.mday) || valid_wday.include?(t.wday)
t = t.succ
end
[Set.new(result), result]
end
def nudge_year(t, dir = :next)
t.year = t.year + (dir == :next ? 1 : -1)
end
def nudge_month(t, dir = :next)
spec = time_specs[:month][1]
next_value = find_best_next(t.month, spec, dir)
t.month = next_value || (dir == :next ? spec.first : spec.last)
nudge_year(t, dir) if next_value.nil?
# we changed the month, so its likely that the date is incorrect now
valid_days = interpolate_weekdays(t.year, t.month)[1]
t.day = dir == :next ? valid_days.first : valid_days.last
end
def date_valid?(t, dir = :next)
interpolate_weekdays(t.year, t.month)[0].include?(t.day)
end
def nudge_date(t, dir = :next, can_nudge_month = true)
spec = interpolate_weekdays(t.year, t.month)[1]
next_value = find_best_next(t.day, spec, dir)
t.day = next_value || (dir == :next ? spec.first : spec.last)
nudge_month(t, dir) if next_value.nil? && can_nudge_month
end
def nudge_hour(t, dir = :next)
spec = time_specs[:hour][1]
next_value = find_best_next(t.hour, spec, dir)
t.hour = next_value || (dir == :next ? spec.first : spec.last)
nudge_date(t, dir) if next_value.nil?
end
def nudge_minute(t, dir = :next)
spec = time_specs[:minute][1]
next_value = find_best_next(t.min, spec, dir)
t.min = next_value || (dir == :next ? spec.first : spec.last)
nudge_hour(t, dir) if next_value.nil?
end
def time_specs
@time_specs ||= begin
# tokens now contains the 5 fields
tokens = substitute_parse_symbols(@source).split(/\s+/)
{
:minute => parse_element(tokens[0], 0..59), #minute
:hour => parse_element(tokens[1], 0..23), #hour
:dom => parse_element(tokens[2], 1..31), #DOM
:month => parse_element(tokens[3], 1..12), #mon
:dow => parse_element(tokens[4], 0..6) #DOW
}
end
end
def substitute_parse_symbols(str)
SYMBOLS.inject(str.downcase) do |s, (symbol, replacement)|
s.gsub(symbol, replacement)
end
end
def stepped_range(rng, step = 1)
len = rng.last - rng.first
num = len.div(step)
result = (0..num).map { |i| rng.first + step * i }
result.pop if result[-1] == rng.last and rng.exclude_end?
result
end
# returns the smallest element from allowed which is greater than current
# returns nil if no matching value was found
def find_best_next(current, allowed, dir)
if dir == :next
allowed.sort.find { |val| val > current }
else
allowed.sort.reverse.find { |val| val < current }
end
end
def validate_source
unless @source.respond_to?(:split)
raise ArgumentError, 'not a valid cronline'
end
source_length = @source.split(/\s+/).length
unless source_length >= 5 && source_length <= 6
raise ArgumentError, 'not a valid cronline'
end
end
end
|