refector cron.py and support comma-separated schedule pieces

This commit is contained in:
jesopo 2019-12-12 12:00:27 +00:00
parent 89e9122128
commit 80f0a3d94c

View file

@ -12,26 +12,38 @@ class Module(ModuleManager.BaseModule):
now = datetime.datetime.utcnow().replace(second=0, microsecond=0) now = datetime.datetime.utcnow().replace(second=0, microsecond=0)
timer.redo() timer.redo()
current_schedule = [now.minute, now.hour] timestamp = [now.minute, now.hour]
events = self.events.on("cron") events = self.events.on("cron")
event = events.make_event()
for cron in events.get_hooks(): for cron in events.get_hooks():
schedule = cron.get_kwarg("schedule").split(" ") schedule = cron.get_kwarg("schedule").split(" ")
due = True if self._schedule_match(timestamp, schedule):
cron.call(event)
def _schedule_match(self, timestamp, schedule):
for i, schedule_part in enumerate(schedule): for i, schedule_part in enumerate(schedule):
current_part = current_schedule[i] timestamp_part = timestamp[i]
if not self._schedule_match_part(timestamp_part, schedule_part):
return False
return True
def _schedule_match_part(self, timestamp_part, schedule_part):
if schedule_part.startswith("*/"): if schedule_part.startswith("*/"):
schedule_step = int(schedule_part.split("*/", 1)[1]) schedule_step = int(schedule_part.split("*/", 1)[1])
if (current_part%schedule_step) == 0: if (timestamp_part%schedule_step) == 0:
continue return True
elif "," in schedule_part:
for schedule_part in schedule_part.split(","):
if self._match([timestamp_part], [schedule_part]):
return True
elif schedule_part == "*": elif schedule_part == "*":
continue return True
elif int(current_part) == schedule_part:
continue
due = False elif timestamp_part == int(schedule_part):
break return True
if due: return False
cron.call(events.make_event())