mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-05 17:05:03 -05:00
d02c0bd6eb
Fixed charmap issues for anime show names. Fixed issues with display show page and epCat key errors. Fixed duplicate log messages for clearing provider caches. Fixed issues with email notifier ep names not properly being encoded to UTF-8. TVDB<->TVRAGE Indexer ID mapping is now performed on demand to be used when needed such as newznab providers can be searched with tvrage_id's and some will return tvrage_id's that later can be used to create show objects from for faster and more accurate name parsing, mapping is done via Trakt API calls. Added stop event signals to schedualed tasks, SR now waits indefinate till task has been fully stopped before completing a restart or shutdown event. NameParserCache is now persistent and stores 200 parsed results at any given time for quicker lookups and better performance, this helps maintain results between updates or shutdown/startup events. Black and White lists for anime now only get used for anime shows as intended, performance gain for non-anime shows that dont need to load these lists. Internal name cache now builds it self on demand when needed per show request plus checks if show is already in cache and if true exits routine to save time. Schedualer and QueueItems classes are now a sub-class of threading.Thread and a stop threading event signal has been added to each. If I forgot to list something it doesn't mean its not fixed so please test and report back if anything is wrong or has been corrected by this new release.
142 lines
4.6 KiB
Python
142 lines
4.6 KiB
Python
# Author: Nic Wolfe <nic@wolfeden.ca>
|
|
# URL: http://code.google.com/p/sickbeard/
|
|
#
|
|
# This file is part of SickRage.
|
|
#
|
|
# SickRage 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.
|
|
#
|
|
# SickRage 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 SickRage. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import sickbeard
|
|
|
|
from sickbeard import db
|
|
from sickbeard.helpers import sanitizeSceneName
|
|
from sickbeard import logger
|
|
|
|
nameCache = None
|
|
|
|
|
|
def addNameToCache(name, indexer_id=0):
|
|
"""
|
|
Adds the show & tvdb id to the scene_names table in cache.db.
|
|
|
|
name: The show name to cache
|
|
indexer_id: the TVDB and TVRAGE id that this show should be cached with (can be None/0 for unknown)
|
|
"""
|
|
global nameCache
|
|
|
|
cacheDB = db.DBConnection('cache.db')
|
|
|
|
# standardize the name we're using to account for small differences in providers
|
|
name = sickbeard.helpers.full_sanitizeSceneName(name)
|
|
if name not in nameCache:
|
|
nameCache[name] = int(indexer_id)
|
|
cacheDB.action("INSERT OR REPLACE INTO scene_names (indexer_id, name) VALUES (?, ?)", [indexer_id, name])
|
|
|
|
|
|
def retrieveNameFromCache(name):
|
|
"""
|
|
Looks up the given name in the scene_names table in cache.db.
|
|
|
|
name: The show name to look up.
|
|
|
|
Returns: the TVDB and TVRAGE id that resulted from the cache lookup or None if the show wasn't found in the cache
|
|
"""
|
|
global nameCache
|
|
|
|
name = sickbeard.helpers.full_sanitizeSceneName(name)
|
|
if name in nameCache:
|
|
return int(nameCache[name])
|
|
|
|
|
|
def retrieveShowFromCache(name):
|
|
global nameCache
|
|
|
|
indexer_id = retrieveNameFromCache(name)
|
|
if indexer_id:
|
|
return sickbeard.helpers.findCertainShow(sickbeard.showList, int(indexer_id))
|
|
|
|
|
|
def clearCache():
|
|
"""
|
|
Deletes all "unknown" entries from the cache (names with indexer_id of 0).
|
|
"""
|
|
global nameCache
|
|
|
|
# init name cache
|
|
if not nameCache:
|
|
nameCache = {}
|
|
|
|
cacheDB = db.DBConnection('cache.db')
|
|
cacheDB.action("DELETE FROM scene_names WHERE indexer_id = ?", [0])
|
|
|
|
toRemove = [key for key, value in nameCache.iteritems() if value == 0]
|
|
for key in toRemove:
|
|
del nameCache[key]
|
|
|
|
|
|
def saveNameCacheToDb():
|
|
cacheDB = db.DBConnection('cache.db')
|
|
|
|
for name, indexer_id in nameCache.items():
|
|
cacheDB.action("INSERT OR REPLACE INTO scene_names (indexer_id, name) VALUES (?, ?)", [indexer_id, name])
|
|
|
|
|
|
def buildNameCache(show=None):
|
|
global nameCache
|
|
|
|
# init name cache
|
|
if not nameCache:
|
|
nameCache = {}
|
|
|
|
# clear internal name cache
|
|
clearCache()
|
|
|
|
# update scene exception names
|
|
sickbeard.scene_exceptions.retrieve_exceptions()
|
|
|
|
if not show:
|
|
logger.log(u"Building internal name cache for all shows", logger.MESSAGE)
|
|
|
|
cacheDB = db.DBConnection('cache.db')
|
|
cache_results = cacheDB.select("SELECT * FROM scene_names")
|
|
for cache_result in cache_results:
|
|
name = sickbeard.helpers.full_sanitizeSceneName(cache_result["name"])
|
|
if name in nameCache:
|
|
continue
|
|
|
|
indexer_id = int(cache_result["indexer_id"])
|
|
nameCache[name] = indexer_id
|
|
|
|
for show in sickbeard.showList:
|
|
for curSeason in [-1] + sickbeard.scene_exceptions.get_scene_seasons(show.indexerid):
|
|
for name in list(set(
|
|
sickbeard.scene_exceptions.get_scene_exceptions(show.indexerid, season=curSeason) + [
|
|
show.name])):
|
|
name = sickbeard.helpers.full_sanitizeSceneName(name)
|
|
if name in nameCache:
|
|
continue
|
|
|
|
nameCache[name] = int(show.indexerid)
|
|
else:
|
|
logger.log(u"Building internal name cache for " + show.name, logger.MESSAGE)
|
|
|
|
for curSeason in [-1] + sickbeard.scene_exceptions.get_scene_seasons(show.indexerid):
|
|
for name in list(set(sickbeard.scene_exceptions.get_scene_exceptions(show.indexerid, season=curSeason) + [
|
|
show.name])):
|
|
name = sickbeard.helpers.full_sanitizeSceneName(name)
|
|
if name in nameCache:
|
|
continue
|
|
|
|
nameCache[name] = int(show.indexerid)
|
|
|
|
logger.log(u"Internal name cache set to: " + str(nameCache), logger.DEBUG) |