-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrontab.py
217 lines (183 loc) · 7.37 KB
/
crontab.py
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
import datetime
from math import ceil
from enum import Enum
from collections import namedtuple
class Bounds(namedtuple('Bound', ("min", "max")), Enum):
minute = (0, 59)
hour = (0, 23)
dom = (1, 31)
month = (1, 12)
dow = (1, 7)
def range(self, step=1):
return Range(self.min, self.max, step)
def range_set(self, step=1):
return Set((self.range(),))
class Job:
"""
Represents a cron job. This handles parsing of the job to get timing
information, as well as determining when the job will be run next.
>>> import parser
>>> job = parser.parse_job("* * * * * true")
>>> (job.mins, job.hours, job.doms, job.months, job.dows)
(0-59/1, 0-23/1, 1-31/1, 1-12/1, 1-7/1)
>>> parser.parse_job("* * * * * true").job
'true'
>>> parser.parse_job("* * * * * echo test").job
'echo test'
"""
def __init__(self, times, job):
(self.mins, self.hours, self.doms, self.months, self.dows) = times
self.job = job
def next_value(self, dt):
"""
Returns the next time this cron job will run.
>>> import parser
>>> parser.parse_job("* * * * * true").next_value(
... datetime.datetime(2014, 11, 15, 17, 4, 49))
datetime.datetime(2014, 11, 15, 17, 5)
>>> parser.parse_job("* * 1 * * true").next_value(
... datetime.datetime(2014, 11, 15, 17, 4, 49))
datetime.datetime(2014, 12, 1, 0, 0)
>>> end_of_year = datetime.datetime(2014, 12, 31, 23, 59)
>>> parser.parse_job("* * * * * true").next_value(end_of_year)
datetime.datetime(2015, 1, 1, 0, 0)
>>> parser.parse_job("* * 29 2 * true").next_value(
... datetime.datetime(2196, 2, 29, 23, 59))
datetime.datetime(2204, 2, 29, 0, 0)
"""
#dt.minute, dt.hour, dt.day, dt.month, dt.isoweekday(), dt.year)
dt = dt.replace(second=0)
def find_minute_hour(dt, minute_carry=True):
minute_carry, next_minute = self.mins.next_value(
dt.minute, minute_carry)
hour_carry, next_hour = self.hours.next_value(
dt.hour, minute_carry)
if hour_carry:
_, next_minute = self.mins.next_value(0, carry=False)
try:
return (hour_carry,
dt.replace(hour=next_hour, minute=next_minute))
except:
raise ValueError(
"Couldn't find a valid time for the cron job") from None
def find_dom_month_year(dt, hour_carry):
dom = dt.day
month = dt.month
year = dt.year
for i in range(100):
dom_carry, dom = self.doms.next_value(dom, hour_carry)
month_carry, month = self.months.next_value(month, dom_carry)
year += month_carry
if month_carry:
dom_carry, dom = self.doms.next_value(0, carry=False)
try:
return (dom_carry or month_carry,
dt.replace(year=year, month=month, day=dom))
except ValueError:
continue # There should be something here
raise ValueError("Couldn't find a valid time for the cron job")
def find_dow_month_year(dt, hour_carry):
old_dow = dt.isoweekday() % 7
month = dt.month
dow_carry, dow = self.dows.next_value(
old_dow, carry=hour_carry)
delta = _dows_to_timedelta(old_dow, dow)
month_carry, next_month = self.months.next_value(
month, carry=False)
if (dt + delta).month == month and next_month == month:
return dow_carry, dt + delta
month_carry, next_month = self.months.next_value(month, carry=True)
dt = dt.replace(year=dt.year+month_carry,
month=next_month, day=1)
tmp_dow = dt.isoweekday() % 7
_, dow = self.dows.next_value(tmp_dow, carry=False)
return True, dt + _dows_to_timedelta(tmp_dow, dow)
hour_carry, time = find_minute_hour(dt)
dom_dt, dow_dt = (find_minute_hour(
dt.replace(hour=0, minute=0), minute_carry=False)[1]
if high_carry else dt
for high_carry, dt in (find_dom_month_year(time, hour_carry),
find_dow_month_year(time, hour_carry)))
if self.dow_specified and self.dom_specified:
return min(dom_dt, dow_dt)
elif self.dow_specified and not self.dom_specified:
return dow_dt
else:
return dom_dt
def __eq__(self, other):
return (self.mins == other.mins and
self.hours == other.hours and
self.doms == other.doms and
self.months == other.months and
self.dows == other.dows and
self.job == other.job)
def _dows_to_timedelta(current, next):
return datetime.timedelta(
days=next-current, weeks=1 if next < current else 0)
class Set:
"""
Represents a set of ranges in one particular field of one particular
job.
>>> Set((Range(1, 5, 4), Range(34, 57, 59), Range(59, 59),
... Range(0, 59, 30)))
1-5/4,34-57/59,59-59/1,0-59/30
"""
def __init__(self, ranges):
self.ranges = ranges
def __repr__(self):
return ','.join(str(r) for r in self.ranges)
def next_value(self, current, carry=True):
"""
Finds the next occurring time for a set of ranges. This should
be the first of the next_values of all of the ranges in the set.
>>> Set((Range(1, 5, 4), Range(34, 57, 59), Range(59,59),
... Range(0, 59, 30))).next_value(23)
(False, 30)
>>> Set((Range(1, 4), Range(3, 7))).next_value(8)
(True, 1)
"""
return min(r.next_value(current, carry) for r in self.ranges)
def __eq__(self, other):
return self.ranges == other.ranges
class Range:
"""
Represents a range of times, plus an optional step value.
"""
def __init__(self, min, max, step=1):
self.min = min
self.max = max
self.step = step
def __repr__(self):
return '{}-{}/{}'.format(self.min, self.max, self.step)
def next_value(self, current, carry=True):
"""
Returns the following value that this particular range will be
triggered on, as well as a bool indicating if the range had to
wrap around to reach this value.
>>> Bounds.minute.range().next_value(10)
(False, 11)
>>> Range(5, 20, 11).next_value(17)
(True, 5)
>>> Range(5, 20, 11).next_value(11)
(False, 16)
>>> Range(59, 60, 29).next_value(3)
(False, 59)
>>> Range(29, 60, 29).next_value(3)
(False, 29)
"""
distance = ceil((current + carry - self.min)/self.step)
next = self.min + self.step*distance
if current+carry <= self.min:
return (False, self.min)
elif next > self.max:
return (True, self.min)
else:
return (False, next)
def __eq__(self, other):
if type(other) == tuple:
print(other)
raise ValueError
return (type(self) == type(other) and
self.min == other.min and
self.max == other.max and
self.step == other.step)