|
|
@ -18,7 +18,6 @@ |
|
|
|
|
|
|
|
import datetime |
|
|
|
import threading |
|
|
|
import Queue |
|
|
|
|
|
|
|
from sickbeard import logger |
|
|
|
|
|
|
@ -27,25 +26,33 @@ class QueuePriorities: |
|
|
|
NORMAL = 20 |
|
|
|
HIGH = 30 |
|
|
|
|
|
|
|
class GenericQueue: |
|
|
|
class GenericQueue(object): |
|
|
|
|
|
|
|
def __init__(self): |
|
|
|
|
|
|
|
self.currentItem = None |
|
|
|
self.queue = [] |
|
|
|
|
|
|
|
self.thread = None |
|
|
|
|
|
|
|
self.queue_name = "QUEUE" |
|
|
|
|
|
|
|
self.min_priority = 0 |
|
|
|
self.queue = Queue.Queue() |
|
|
|
|
|
|
|
self.currentItem = None |
|
|
|
|
|
|
|
def pause(self): |
|
|
|
logger.log(u"Pausing queue") |
|
|
|
self.min_priority = 999999999999 |
|
|
|
|
|
|
|
|
|
|
|
def unpause(self): |
|
|
|
logger.log(u"Unpausing queue") |
|
|
|
self.min_priority = 0 |
|
|
|
|
|
|
|
def add_item(self, item): |
|
|
|
item.added = datetime.datetime.now() |
|
|
|
self.queue.put(item) |
|
|
|
self.queue.append(item) |
|
|
|
|
|
|
|
return item |
|
|
|
|
|
|
|
def run(self, force=False): |
|
|
@ -58,31 +65,61 @@ class GenericQueue: |
|
|
|
self.currentItem.finish() |
|
|
|
self.currentItem = None |
|
|
|
|
|
|
|
if not self.queue.empty(): |
|
|
|
queueItem = self.queue.get() |
|
|
|
# if there's something in the queue then run it in a thread and take it out of the queue |
|
|
|
if len(self.queue) > 0: |
|
|
|
|
|
|
|
# sort by priority |
|
|
|
def sorter(x,y): |
|
|
|
""" |
|
|
|
Sorts by priority descending then time ascending |
|
|
|
""" |
|
|
|
if x.priority == y.priority: |
|
|
|
if y.added == x.added: |
|
|
|
return 0 |
|
|
|
elif y.added < x.added: |
|
|
|
return 1 |
|
|
|
elif y.added > x.added: |
|
|
|
return -1 |
|
|
|
else: |
|
|
|
return y.priority-x.priority |
|
|
|
|
|
|
|
self.queue.sort(cmp=sorter) |
|
|
|
|
|
|
|
queueItem = self.queue[0] |
|
|
|
|
|
|
|
if queueItem.priority < self.min_priority: |
|
|
|
return |
|
|
|
|
|
|
|
# launch the queue item in a thread |
|
|
|
# TODO: improve thread name |
|
|
|
threadName = self.queue_name + '-' + queueItem.get_thread_name() |
|
|
|
self.thread = threading.Thread(None, queueItem.execute, threadName) |
|
|
|
self.thread.start() |
|
|
|
|
|
|
|
self.currentItem = queueItem |
|
|
|
|
|
|
|
# take it out of the queue |
|
|
|
del self.queue[0] |
|
|
|
|
|
|
|
class QueueItem: |
|
|
|
def __init__(self, name, action_id=0): |
|
|
|
def __init__(self, name, action_id = 0): |
|
|
|
self.name = name |
|
|
|
|
|
|
|
self.inProgress = False |
|
|
|
|
|
|
|
self.priority = QueuePriorities.NORMAL |
|
|
|
|
|
|
|
self.thread_name = None |
|
|
|
|
|
|
|
self.action_id = action_id |
|
|
|
|
|
|
|
self.added = None |
|
|
|
|
|
|
|
def get_thread_name(self): |
|
|
|
if self.thread_name: |
|
|
|
return self.thread_name |
|
|
|
else: |
|
|
|
return self.name.replace(" ", "-").upper() |
|
|
|
return self.name.replace(" ","-").upper() |
|
|
|
|
|
|
|
def execute(self): |
|
|
|
"""Implementing classes should call this""" |
|
|
@ -92,4 +129,4 @@ class QueueItem: |
|
|
|
def finish(self): |
|
|
|
"""Implementing Classes should call this""" |
|
|
|
|
|
|
|
self.inProgress = False |
|
|
|
self.inProgress = False |