binary-newsreaderusenetstabletvshowsqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebuiquickboxtraktkodi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
948 B
34 lines
948 B
11 years ago
|
from lib.hachoir_core.field import CompressedField
|
||
|
|
||
|
try:
|
||
|
from zlib import decompressobj, MAX_WBITS
|
||
|
|
||
|
class DeflateStream:
|
||
|
def __init__(self, stream, wbits=None):
|
||
|
if wbits:
|
||
|
self.gzip = decompressobj(-MAX_WBITS)
|
||
|
else:
|
||
|
self.gzip = decompressobj()
|
||
|
|
||
|
def __call__(self, size, data=None):
|
||
|
if data is None:
|
||
|
data = self.gzip.unconsumed_tail
|
||
|
return self.gzip.decompress(data, size)
|
||
|
|
||
|
class DeflateStreamWbits(DeflateStream):
|
||
|
def __init__(self, stream):
|
||
|
DeflateStream.__init__(self, stream, True)
|
||
|
|
||
|
def Deflate(field, wbits=True):
|
||
|
if wbits:
|
||
|
CompressedField(field, DeflateStreamWbits)
|
||
|
else:
|
||
|
CompressedField(field, DeflateStream)
|
||
|
return field
|
||
|
has_deflate = True
|
||
|
except ImportError:
|
||
|
def Deflate(field, wbits=True):
|
||
|
return field
|
||
|
has_deflate = False
|
||
|
|