2014-03-10 01:18:05 -04:00
|
|
|
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# This file is part of SickRage.
|
2014-03-10 01:18:05 -04:00
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# SickRage is free software: you can redistribute it and/or modify
|
2014-03-10 01:18:05 -04:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2014-05-23 08:37:22 -04:00
|
|
|
# SickRage is distributed in the hope that it will be useful,
|
2014-03-10 01:18:05 -04:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2014-05-26 16:16:07 -04:00
|
|
|
# GNU General Public License for more details.
|
2014-03-10 01:18:05 -04:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2014-05-23 08:37:22 -04:00
|
|
|
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
import datetime
|
|
|
|
import time
|
|
|
|
import threading
|
|
|
|
import traceback
|
|
|
|
|
|
|
|
from sickbeard import logger
|
|
|
|
from sickbeard.exceptions import ex
|
|
|
|
|
|
|
|
|
2014-03-25 01:57:24 -04:00
|
|
|
class Scheduler:
|
2014-06-19 03:12:30 -04:00
|
|
|
def __init__(self, action, cycleTime=datetime.timedelta(minutes=10), run_delay=datetime.timedelta(minutes=0),
|
|
|
|
start_time=None, threadName="ScheduledThread", silent=True):
|
2014-03-10 01:18:05 -04:00
|
|
|
|
2014-06-19 03:12:30 -04:00
|
|
|
self.lastRun = datetime.datetime.now() + run_delay - cycleTime
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
self.action = action
|
|
|
|
self.cycleTime = cycleTime
|
2014-06-19 03:12:30 -04:00
|
|
|
self.start_time = start_time
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
self.thread = None
|
|
|
|
self.threadName = threadName
|
|
|
|
self.silent = silent
|
|
|
|
|
|
|
|
self.initThread()
|
|
|
|
|
|
|
|
self.abort = False
|
2014-05-19 13:40:25 -04:00
|
|
|
self.force = False
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
def initThread(self):
|
2014-03-20 14:03:22 -04:00
|
|
|
if self.thread == None or not self.thread.isAlive():
|
2014-03-10 01:18:05 -04:00
|
|
|
self.thread = threading.Thread(None, self.runAction, self.threadName)
|
|
|
|
|
|
|
|
def timeLeft(self):
|
|
|
|
return self.cycleTime - (datetime.datetime.now() - self.lastRun)
|
|
|
|
|
|
|
|
def forceRun(self):
|
|
|
|
if not self.action.amActive:
|
|
|
|
self.lastRun = datetime.datetime.fromordinal(1)
|
2014-05-19 13:40:25 -04:00
|
|
|
self.force = True
|
2014-03-10 01:18:05 -04:00
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def runAction(self):
|
|
|
|
|
|
|
|
while True:
|
2014-05-17 05:27:17 -04:00
|
|
|
|
2014-06-19 03:12:30 -04:00
|
|
|
current_time = datetime.datetime.now()
|
|
|
|
should_run = False
|
|
|
|
|
|
|
|
# check if interval has passed
|
|
|
|
if current_time - self.lastRun >= self.cycleTime:
|
|
|
|
# check if wanting to start around certain time taking interval into account
|
|
|
|
if self.start_time:
|
|
|
|
hour_diff = current_time.time().hour - self.start_time.hour
|
|
|
|
if not hour_diff < 0 and hour_diff < self.cycleTime.seconds / 3600:
|
|
|
|
should_run = True
|
|
|
|
else:
|
|
|
|
# set lastRun to only check start_time after another cycleTime
|
|
|
|
self.lastRun = current_time
|
|
|
|
else:
|
|
|
|
should_run = True
|
|
|
|
|
|
|
|
if should_run:
|
|
|
|
self.lastRun = current_time
|
2014-03-10 01:18:05 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
if not self.silent:
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(u"Starting new thread: " + self.threadName, logger.DEBUG)
|
2014-05-08 10:03:50 -04:00
|
|
|
|
2014-05-19 13:40:25 -04:00
|
|
|
self.action.run(self.force)
|
2014-03-10 01:18:05 -04:00
|
|
|
except Exception, e:
|
2014-03-25 01:57:24 -04:00
|
|
|
logger.log(u"Exception generated in thread " + self.threadName + ": " + ex(e), logger.ERROR)
|
2014-03-10 01:18:05 -04:00
|
|
|
logger.log(repr(traceback.format_exc()), logger.DEBUG)
|
|
|
|
|
2014-05-13 06:03:11 -04:00
|
|
|
if self.abort:
|
2014-03-10 01:18:05 -04:00
|
|
|
self.abort = False
|
|
|
|
self.thread = None
|
|
|
|
return
|
2014-05-17 05:27:17 -04:00
|
|
|
|
2014-05-19 13:40:25 -04:00
|
|
|
if self.force:
|
|
|
|
self.force = False
|
|
|
|
|
2014-05-17 05:27:17 -04:00
|
|
|
time.sleep(1)
|