mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-11 11:55:03 -05:00
0d9fbc1ad7
This version of SickBeard uses both TVDB and TVRage to search and gather it's series data from allowing you to now have access to and download shows that you couldn't before because of being locked into only what TheTVDB had to offer. Also this edition is based off the code we used in our XEM editon so it does come with scene numbering support as well as all the other features our XEM edition has to offer. Please before using this with your existing database (sickbeard.db) please make a backup copy of it and delete any other database files such as cache.db and failed.db if present, we HIGHLY recommend starting out with no database files at all to make this a fresh start but the choice is at your own risk! Enjoy!
61 lines
1.9 KiB
Python
61 lines
1.9 KiB
Python
"""
|
|
Utilities used to convert a field to human classic reprentation of data.
|
|
"""
|
|
|
|
from lib.hachoir_core.tools import (
|
|
humanDuration, humanFilesize, alignValue,
|
|
durationWin64 as doDurationWin64,
|
|
deprecated)
|
|
from types import FunctionType, MethodType
|
|
from lib.hachoir_core.field import Field
|
|
|
|
def textHandler(field, handler):
|
|
assert isinstance(handler, (FunctionType, MethodType))
|
|
assert issubclass(field.__class__, Field)
|
|
field.createDisplay = lambda: handler(field)
|
|
return field
|
|
|
|
def displayHandler(field, handler):
|
|
assert isinstance(handler, (FunctionType, MethodType))
|
|
assert issubclass(field.__class__, Field)
|
|
field.createDisplay = lambda: handler(field.value)
|
|
return field
|
|
|
|
@deprecated("Use TimedeltaWin64 field type")
|
|
def durationWin64(field):
|
|
"""
|
|
Convert Windows 64-bit duration to string. The timestamp format is
|
|
a 64-bit number: number of 100ns. See also timestampWin64().
|
|
|
|
>>> durationWin64(type("", (), dict(value=2146280000, size=64)))
|
|
u'3 min 34 sec 628 ms'
|
|
>>> durationWin64(type("", (), dict(value=(1 << 64)-1, size=64)))
|
|
u'58494 years 88 days 5 hours'
|
|
"""
|
|
assert hasattr(field, "value") and hasattr(field, "size")
|
|
assert field.size == 64
|
|
delta = doDurationWin64(field.value)
|
|
return humanDuration(delta)
|
|
|
|
def filesizeHandler(field):
|
|
"""
|
|
Format field value using humanFilesize()
|
|
"""
|
|
return displayHandler(field, humanFilesize)
|
|
|
|
def hexadecimal(field):
|
|
"""
|
|
Convert an integer to hexadecimal in lower case. Returns unicode string.
|
|
|
|
>>> hexadecimal(type("", (), dict(value=412, size=16)))
|
|
u'0x019c'
|
|
>>> hexadecimal(type("", (), dict(value=0, size=32)))
|
|
u'0x00000000'
|
|
"""
|
|
assert hasattr(field, "value") and hasattr(field, "size")
|
|
size = field.size
|
|
padding = alignValue(size, 4) // 4
|
|
pattern = u"0x%%0%ux" % padding
|
|
return pattern % field.value
|
|
|