mirror of
https://github.com/moparisthebest/SickRage
synced 2024-10-31 23:45:02 -04: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!
45 lines
1.8 KiB
Python
45 lines
1.8 KiB
Python
"""
|
|
Integer field classes:
|
|
- UInt8, UInt16, UInt24, UInt32, UInt64: unsigned integer of 8, 16, 32, 64 bits ;
|
|
- Int8, Int16, Int24, Int32, Int64: signed integer of 8, 16, 32, 64 bits.
|
|
"""
|
|
|
|
from lib.hachoir_core.field import Bits, FieldError
|
|
|
|
class GenericInteger(Bits):
|
|
"""
|
|
Generic integer class used to generate other classes.
|
|
"""
|
|
def __init__(self, parent, name, signed, size, description=None):
|
|
if not (8 <= size <= 256):
|
|
raise FieldError("Invalid integer size (%s): have to be in 8..256" % size)
|
|
Bits.__init__(self, parent, name, size, description)
|
|
self.signed = signed
|
|
|
|
def createValue(self):
|
|
return self._parent.stream.readInteger(
|
|
self.absolute_address, self.signed, self._size, self._parent.endian)
|
|
|
|
def integerFactory(name, is_signed, size, doc):
|
|
class Integer(GenericInteger):
|
|
__doc__ = doc
|
|
static_size = size
|
|
def __init__(self, parent, name, description=None):
|
|
GenericInteger.__init__(self, parent, name, is_signed, size, description)
|
|
cls = Integer
|
|
cls.__name__ = name
|
|
return cls
|
|
|
|
UInt8 = integerFactory("UInt8", False, 8, "Unsigned integer of 8 bits")
|
|
UInt16 = integerFactory("UInt16", False, 16, "Unsigned integer of 16 bits")
|
|
UInt24 = integerFactory("UInt24", False, 24, "Unsigned integer of 24 bits")
|
|
UInt32 = integerFactory("UInt32", False, 32, "Unsigned integer of 32 bits")
|
|
UInt64 = integerFactory("UInt64", False, 64, "Unsigned integer of 64 bits")
|
|
|
|
Int8 = integerFactory("Int8", True, 8, "Signed integer of 8 bits")
|
|
Int16 = integerFactory("Int16", True, 16, "Signed integer of 16 bits")
|
|
Int24 = integerFactory("Int24", True, 24, "Signed integer of 24 bits")
|
|
Int32 = integerFactory("Int32", True, 32, "Signed integer of 32 bits")
|
|
Int64 = integerFactory("Int64", True, 64, "Signed integer of 64 bits")
|
|
|