mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-17 14:55:07 -05:00
1398c38275
Removed multi-threading as it was more problems then usefull for now. Added in match & snatch, any quality from initial quality settings gets downloaded first and does not continue searching, if archive qualities exist it'll stop once it hits max quality from said list.
102 lines
3.0 KiB
Python
102 lines
3.0 KiB
Python
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of Sick Beard.
|
|
#
|
|
# Sick Beard is free software: you can redistribute it and/or modify
|
|
# 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.
|
|
#
|
|
# Sick Beard is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Sick Beard. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import datetime
|
|
import threading
|
|
import Queue
|
|
|
|
import sickbeard
|
|
from lib.concurrent.futures.thread import ThreadPoolExecutor
|
|
|
|
from sickbeard import logger
|
|
|
|
|
|
class QueuePriorities:
|
|
LOW = 10
|
|
NORMAL = 20
|
|
HIGH = 30
|
|
|
|
class GenericQueue:
|
|
def __init__(self):
|
|
#self.executor = ThreadPoolExecutor(sickbeard.NUM_OF_THREADS)
|
|
self.currentItem = None
|
|
self.thread = None
|
|
self.queue_name = "QUEUE"
|
|
self.min_priority = 0
|
|
self.queue = Queue.Queue()
|
|
|
|
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)
|
|
return item
|
|
|
|
def run(self, queue=None):
|
|
# dynamically set queue
|
|
if queue:
|
|
self.queue = queue
|
|
|
|
# only start a new task if one isn't already going
|
|
if self.thread == None or self.thread.isAlive() == False:
|
|
|
|
# if the thread is dead then the current item should be finished
|
|
if self.currentItem != None:
|
|
self.currentItem.finish()
|
|
self.currentItem = None
|
|
|
|
if not self.queue.empty():
|
|
queueItem = self.queue.get()
|
|
if queueItem.priority < self.min_priority:
|
|
return
|
|
|
|
threadName = self.queue_name + '-' + queueItem.get_thread_name()
|
|
executor = ThreadPoolExecutor(sickbeard.NUM_OF_THREADS)
|
|
self.thread = executor.submit(queueItem.execute, name=threadName)
|
|
self.currentItem = queueItem
|
|
|
|
class QueueItem:
|
|
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()
|
|
|
|
def execute(self):
|
|
"""Implementing classes should call this"""
|
|
|
|
self.inProgress = True
|
|
|
|
def finish(self):
|
|
"""Implementing Classes should call this"""
|
|
|
|
self.inProgress = False |