2000-02-04 11:39:30 -04:00
|
|
|
"""Functions that read and write gzipped files.
|
|
|
|
|
2000-02-04 11:10:34 -04:00
|
|
|
The user of the file doesn't have to worry about the compression,
|
|
|
|
but random access is not allowed."""
|
|
|
|
|
|
|
|
# based on Andrew Kuchling's minigzip.py distributed with the zlib module
|
|
|
|
|
2009-10-29 06:15:00 -03:00
|
|
|
import struct, sys, time, os
|
1997-04-30 13:04:57 -03:00
|
|
|
import zlib
|
2010-01-03 18:29:56 -04:00
|
|
|
import io
|
1997-07-19 17:22:23 -03:00
|
|
|
import __builtin__
|
1997-04-30 13:04:57 -03:00
|
|
|
|
2001-01-23 11:35:05 -04:00
|
|
|
__all__ = ["GzipFile","open"]
|
|
|
|
|
1997-04-30 13:04:57 -03:00
|
|
|
FTEXT, FHCRC, FEXTRA, FNAME, FCOMMENT = 1, 2, 4, 8, 16
|
|
|
|
|
|
|
|
READ, WRITE = 1, 2
|
|
|
|
|
1999-04-12 11:34:16 -03:00
|
|
|
def write32u(output, value):
|
2002-11-04 15:50:11 -04:00
|
|
|
# The L format writes the bit pattern correctly whether signed
|
|
|
|
# or unsigned.
|
1999-04-12 11:34:16 -03:00
|
|
|
output.write(struct.pack("<L", value))
|
|
|
|
|
1997-04-30 13:04:57 -03:00
|
|
|
def read32(input):
|
2008-03-23 18:04:43 -03:00
|
|
|
return struct.unpack("<I", input.read(4))[0]
|
1997-04-30 13:04:57 -03:00
|
|
|
|
1999-04-05 15:37:59 -03:00
|
|
|
def open(filename, mode="rb", compresslevel=9):
|
2002-05-29 13:18:42 -03:00
|
|
|
"""Shorthand for GzipFile(filename, mode, compresslevel).
|
|
|
|
|
|
|
|
The filename argument is required; mode defaults to 'rb'
|
|
|
|
and compresslevel defaults to 9.
|
|
|
|
|
|
|
|
"""
|
1997-04-30 13:04:57 -03:00
|
|
|
return GzipFile(filename, mode, compresslevel)
|
|
|
|
|
2010-01-03 18:29:56 -04:00
|
|
|
class GzipFile(io.BufferedIOBase):
|
2002-05-29 13:18:42 -03:00
|
|
|
"""The GzipFile class simulates most of the methods of a file object with
|
2002-08-06 14:03:25 -03:00
|
|
|
the exception of the readinto() and truncate() methods.
|
2002-05-29 13:18:42 -03:00
|
|
|
|
|
|
|
"""
|
1997-04-30 13:04:57 -03:00
|
|
|
|
1997-07-19 17:22:23 -03:00
|
|
|
myfileobj = None
|
2005-06-09 11:19:32 -03:00
|
|
|
max_read_chunk = 10 * 1024 * 1024 # 10Mb
|
1997-07-19 17:22:23 -03:00
|
|
|
|
2001-01-14 19:47:14 -04:00
|
|
|
def __init__(self, filename=None, mode=None,
|
2009-01-04 17:29:23 -04:00
|
|
|
compresslevel=9, fileobj=None, mtime=None):
|
2002-05-29 13:18:42 -03:00
|
|
|
"""Constructor for the GzipFile class.
|
|
|
|
|
|
|
|
At least one of fileobj and filename must be given a
|
|
|
|
non-trivial value.
|
|
|
|
|
|
|
|
The new class instance is based on fileobj, which can be a regular
|
|
|
|
file, a StringIO object, or any other object which simulates a file.
|
|
|
|
It defaults to None, in which case filename is opened to provide
|
|
|
|
a file object.
|
|
|
|
|
|
|
|
When fileobj is not None, the filename argument is only used to be
|
|
|
|
included in the gzip file header, which may includes the original
|
|
|
|
filename of the uncompressed file. It defaults to the filename of
|
|
|
|
fileobj, if discernible; otherwise, it defaults to the empty string,
|
|
|
|
and in this case the original filename is not included in the header.
|
|
|
|
|
|
|
|
The mode argument can be any of 'r', 'rb', 'a', 'ab', 'w', or 'wb',
|
|
|
|
depending on whether the file will be read or written. The default
|
|
|
|
is the mode of fileobj if discernible; otherwise, the default is 'rb'.
|
|
|
|
Be aware that only the 'rb', 'ab', and 'wb' values should be used
|
|
|
|
for cross-platform portability.
|
|
|
|
|
|
|
|
The compresslevel argument is an integer from 1 to 9 controlling the
|
|
|
|
level of compression; 1 is fastest and produces the least compression,
|
|
|
|
and 9 is slowest and produces the most compression. The default is 9.
|
|
|
|
|
2009-01-04 17:29:23 -04:00
|
|
|
The mtime argument is an optional numeric timestamp to be written
|
|
|
|
to the stream when compressing. All gzip compressed streams
|
|
|
|
are required to contain a timestamp. If omitted or None, the
|
|
|
|
current time is used. This module ignores the timestamp when
|
|
|
|
decompressing; however, some programs, such as gunzip, make use
|
|
|
|
of it. The format of the timestamp is the same as that of the
|
|
|
|
return value of time.time() and of the st_mtime member of the
|
|
|
|
object returned by os.stat().
|
|
|
|
|
2002-05-29 13:18:42 -03:00
|
|
|
"""
|
|
|
|
|
2002-05-22 22:43:05 -03:00
|
|
|
# guarantee the file is opened in binary mode on platforms
|
|
|
|
# that care about that sort of thing
|
|
|
|
if mode and 'b' not in mode:
|
|
|
|
mode += 'b'
|
1998-03-26 17:13:24 -04:00
|
|
|
if fileobj is None:
|
1999-04-05 15:33:40 -03:00
|
|
|
fileobj = self.myfileobj = __builtin__.open(filename, mode or 'rb')
|
1997-07-19 17:22:23 -03:00
|
|
|
if filename is None:
|
1998-03-26 17:13:24 -04:00
|
|
|
if hasattr(fileobj, 'name'): filename = fileobj.name
|
|
|
|
else: filename = ''
|
1997-07-19 17:22:23 -03:00
|
|
|
if mode is None:
|
1998-03-26 17:13:24 -04:00
|
|
|
if hasattr(fileobj, 'mode'): mode = fileobj.mode
|
1999-04-05 15:33:40 -03:00
|
|
|
else: mode = 'rb'
|
1998-03-26 17:13:24 -04:00
|
|
|
|
|
|
|
if mode[0:1] == 'r':
|
|
|
|
self.mode = READ
|
2001-01-14 19:47:14 -04:00
|
|
|
# Set flag indicating start of a new member
|
2002-04-07 03:36:23 -03:00
|
|
|
self._new_member = True
|
2010-01-03 18:29:56 -04:00
|
|
|
# Buffer data read from gzip file. extrastart is offset in
|
|
|
|
# stream where buffer starts. extrasize is number of
|
|
|
|
# bytes remaining in buffer from current stream position.
|
1999-03-25 17:49:14 -04:00
|
|
|
self.extrabuf = ""
|
|
|
|
self.extrasize = 0
|
2010-01-03 18:29:56 -04:00
|
|
|
self.extrastart = 0
|
2007-02-13 12:09:24 -04:00
|
|
|
self.name = filename
|
2006-05-22 12:59:12 -03:00
|
|
|
# Starts small, scales exponentially
|
|
|
|
self.min_readsize = 100
|
1998-03-26 17:13:24 -04:00
|
|
|
|
1999-03-25 17:49:14 -04:00
|
|
|
elif mode[0:1] == 'w' or mode[0:1] == 'a':
|
1998-03-26 17:13:24 -04:00
|
|
|
self.mode = WRITE
|
|
|
|
self._init_write(filename)
|
|
|
|
self.compress = zlib.compressobj(compresslevel,
|
2001-01-14 19:47:14 -04:00
|
|
|
zlib.DEFLATED,
|
1998-03-26 17:13:24 -04:00
|
|
|
-zlib.MAX_WBITS,
|
|
|
|
zlib.DEF_MEM_LEVEL,
|
|
|
|
0)
|
|
|
|
else:
|
2002-03-11 02:46:52 -04:00
|
|
|
raise IOError, "Mode " + mode + " not supported"
|
1998-03-26 17:13:24 -04:00
|
|
|
|
|
|
|
self.fileobj = fileobj
|
2001-08-09 04:21:56 -03:00
|
|
|
self.offset = 0
|
2009-01-04 17:29:23 -04:00
|
|
|
self.mtime = mtime
|
1998-03-26 17:13:24 -04:00
|
|
|
|
|
|
|
if self.mode == WRITE:
|
|
|
|
self._write_gzip_header()
|
1997-04-30 13:04:57 -03:00
|
|
|
|
2007-02-13 12:09:24 -04:00
|
|
|
@property
|
|
|
|
def filename(self):
|
|
|
|
import warnings
|
2009-05-07 23:28:39 -03:00
|
|
|
warnings.warn("use the name attribute", DeprecationWarning, 2)
|
2007-02-13 12:09:24 -04:00
|
|
|
if self.mode == WRITE and self.name[-3:] != ".gz":
|
|
|
|
return self.name + ".gz"
|
|
|
|
return self.name
|
|
|
|
|
1997-04-30 13:04:57 -03:00
|
|
|
def __repr__(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
s = repr(self.fileobj)
|
|
|
|
return '<gzip ' + s[1:-1] + ' ' + hex(id(self)) + '>'
|
1997-04-30 13:04:57 -03:00
|
|
|
|
|
|
|
def _init_write(self, filename):
|
2007-02-13 12:09:24 -04:00
|
|
|
self.name = filename
|
2008-03-23 18:04:43 -03:00
|
|
|
self.crc = zlib.crc32("") & 0xffffffffL
|
1998-03-26 17:13:24 -04:00
|
|
|
self.size = 0
|
|
|
|
self.writebuf = []
|
|
|
|
self.bufsize = 0
|
1997-04-30 13:04:57 -03:00
|
|
|
|
|
|
|
def _write_gzip_header(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
self.fileobj.write('\037\213') # magic header
|
|
|
|
self.fileobj.write('\010') # compression method
|
2009-10-29 06:15:00 -03:00
|
|
|
fname = os.path.basename(self.name)
|
2007-02-13 12:24:00 -04:00
|
|
|
if fname.endswith(".gz"):
|
|
|
|
fname = fname[:-3]
|
1998-03-26 17:13:24 -04:00
|
|
|
flags = 0
|
2007-02-13 12:24:00 -04:00
|
|
|
if fname:
|
1998-03-26 17:13:24 -04:00
|
|
|
flags = FNAME
|
|
|
|
self.fileobj.write(chr(flags))
|
2009-01-04 17:29:23 -04:00
|
|
|
mtime = self.mtime
|
|
|
|
if mtime is None:
|
|
|
|
mtime = time.time()
|
|
|
|
write32u(self.fileobj, long(mtime))
|
1998-03-26 17:13:24 -04:00
|
|
|
self.fileobj.write('\002')
|
|
|
|
self.fileobj.write('\377')
|
2007-02-13 12:24:00 -04:00
|
|
|
if fname:
|
|
|
|
self.fileobj.write(fname + '\000')
|
1997-04-30 13:04:57 -03:00
|
|
|
|
|
|
|
def _init_read(self):
|
2008-03-23 18:04:43 -03:00
|
|
|
self.crc = zlib.crc32("") & 0xffffffffL
|
1998-03-26 17:13:24 -04:00
|
|
|
self.size = 0
|
1997-04-30 13:04:57 -03:00
|
|
|
|
|
|
|
def _read_gzip_header(self):
|
1998-03-26 17:13:24 -04:00
|
|
|
magic = self.fileobj.read(2)
|
|
|
|
if magic != '\037\213':
|
1999-03-25 17:49:14 -04:00
|
|
|
raise IOError, 'Not a gzipped file'
|
1998-03-26 17:13:24 -04:00
|
|
|
method = ord( self.fileobj.read(1) )
|
|
|
|
if method != 8:
|
1999-03-25 17:49:14 -04:00
|
|
|
raise IOError, 'Unknown compression method'
|
1998-03-26 17:13:24 -04:00
|
|
|
flag = ord( self.fileobj.read(1) )
|
2009-01-04 17:29:23 -04:00
|
|
|
self.mtime = read32(self.fileobj)
|
1998-03-26 17:13:24 -04:00
|
|
|
# extraflag = self.fileobj.read(1)
|
|
|
|
# os = self.fileobj.read(1)
|
2009-01-04 17:29:23 -04:00
|
|
|
self.fileobj.read(2)
|
1998-03-26 17:13:24 -04:00
|
|
|
|
|
|
|
if flag & FEXTRA:
|
|
|
|
# Read & discard the extra field, if present
|
2002-11-04 15:50:11 -04:00
|
|
|
xlen = ord(self.fileobj.read(1))
|
|
|
|
xlen = xlen + 256*ord(self.fileobj.read(1))
|
1998-03-26 17:13:24 -04:00
|
|
|
self.fileobj.read(xlen)
|
|
|
|
if flag & FNAME:
|
|
|
|
# Read and discard a null-terminated string containing the filename
|
2002-04-07 03:36:23 -03:00
|
|
|
while True:
|
2002-11-04 15:50:11 -04:00
|
|
|
s = self.fileobj.read(1)
|
|
|
|
if not s or s=='\000':
|
|
|
|
break
|
1998-03-26 17:13:24 -04:00
|
|
|
if flag & FCOMMENT:
|
|
|
|
# Read and discard a null-terminated string containing a comment
|
2002-04-07 03:36:23 -03:00
|
|
|
while True:
|
2002-11-04 15:50:11 -04:00
|
|
|
s = self.fileobj.read(1)
|
|
|
|
if not s or s=='\000':
|
|
|
|
break
|
1998-03-26 17:13:24 -04:00
|
|
|
if flag & FHCRC:
|
|
|
|
self.fileobj.read(2) # Read & discard the 16-bit header CRC
|
1997-04-30 13:04:57 -03:00
|
|
|
|
|
|
|
def write(self,data):
|
2002-03-11 02:46:52 -04:00
|
|
|
if self.mode != WRITE:
|
|
|
|
import errno
|
|
|
|
raise IOError(errno.EBADF, "write() on read-only GzipFile object")
|
2002-04-15 22:38:40 -03:00
|
|
|
|
1998-03-26 17:13:24 -04:00
|
|
|
if self.fileobj is None:
|
|
|
|
raise ValueError, "write() on closed GzipFile object"
|
2010-01-03 18:29:56 -04:00
|
|
|
|
|
|
|
# Convert data type if called by io.BufferedWriter.
|
|
|
|
if isinstance(data, memoryview):
|
|
|
|
data = data.tobytes()
|
|
|
|
|
1998-03-26 17:13:24 -04:00
|
|
|
if len(data) > 0:
|
|
|
|
self.size = self.size + len(data)
|
2008-03-23 18:04:43 -03:00
|
|
|
self.crc = zlib.crc32(data, self.crc) & 0xffffffffL
|
1998-03-26 17:13:24 -04:00
|
|
|
self.fileobj.write( self.compress.compress(data) )
|
2001-08-09 04:21:56 -03:00
|
|
|
self.offset += len(data)
|
1997-04-30 13:04:57 -03:00
|
|
|
|
2010-01-03 18:29:56 -04:00
|
|
|
return len(data)
|
|
|
|
|
2000-02-02 12:51:06 -04:00
|
|
|
def read(self, size=-1):
|
2002-03-11 02:46:52 -04:00
|
|
|
if self.mode != READ:
|
|
|
|
import errno
|
2003-12-04 15:28:06 -04:00
|
|
|
raise IOError(errno.EBADF, "read() on write-only GzipFile object")
|
2002-04-15 22:38:40 -03:00
|
|
|
|
1998-03-26 17:13:24 -04:00
|
|
|
if self.extrasize <= 0 and self.fileobj is None:
|
|
|
|
return ''
|
|
|
|
|
|
|
|
readsize = 1024
|
2000-02-02 12:51:06 -04:00
|
|
|
if size < 0: # get the whole thing
|
1998-03-26 17:13:24 -04:00
|
|
|
try:
|
2002-04-07 03:36:23 -03:00
|
|
|
while True:
|
1998-03-26 17:13:24 -04:00
|
|
|
self._read(readsize)
|
2005-06-09 11:19:32 -03:00
|
|
|
readsize = min(self.max_read_chunk, readsize * 2)
|
1998-03-26 17:13:24 -04:00
|
|
|
except EOFError:
|
|
|
|
size = self.extrasize
|
|
|
|
else: # just get some more of it
|
|
|
|
try:
|
|
|
|
while size > self.extrasize:
|
|
|
|
self._read(readsize)
|
2005-06-09 11:19:32 -03:00
|
|
|
readsize = min(self.max_read_chunk, readsize * 2)
|
1998-03-26 17:13:24 -04:00
|
|
|
except EOFError:
|
1998-08-03 12:41:39 -03:00
|
|
|
if size > self.extrasize:
|
|
|
|
size = self.extrasize
|
2001-01-14 19:47:14 -04:00
|
|
|
|
2010-01-03 18:29:56 -04:00
|
|
|
offset = self.offset - self.extrastart
|
|
|
|
chunk = self.extrabuf[offset: offset + size]
|
1998-03-26 17:13:24 -04:00
|
|
|
self.extrasize = self.extrasize - size
|
|
|
|
|
2001-08-09 04:21:56 -03:00
|
|
|
self.offset += size
|
1998-03-26 17:13:24 -04:00
|
|
|
return chunk
|
1997-04-30 13:04:57 -03:00
|
|
|
|
1998-01-27 15:29:45 -04:00
|
|
|
def _unread(self, buf):
|
1998-08-03 12:41:39 -03:00
|
|
|
self.extrasize = len(buf) + self.extrasize
|
2001-08-09 04:21:56 -03:00
|
|
|
self.offset -= len(buf)
|
1998-01-27 15:29:45 -04:00
|
|
|
|
|
|
|
def _read(self, size=1024):
|
2002-11-04 15:50:11 -04:00
|
|
|
if self.fileobj is None:
|
|
|
|
raise EOFError, "Reached EOF"
|
2001-01-14 19:47:14 -04:00
|
|
|
|
1999-03-25 17:49:14 -04:00
|
|
|
if self._new_member:
|
2000-07-29 17:15:26 -03:00
|
|
|
# If the _new_member flag is set, we have to
|
|
|
|
# jump to the next member, if there is one.
|
2001-01-14 19:47:14 -04:00
|
|
|
#
|
1999-03-25 17:49:14 -04:00
|
|
|
# First, check if we're at the end of the file;
|
|
|
|
# if so, it's time to stop; no more members to read.
|
|
|
|
pos = self.fileobj.tell() # Save current position
|
|
|
|
self.fileobj.seek(0, 2) # Seek to end of file
|
|
|
|
if pos == self.fileobj.tell():
|
1999-09-06 13:34:51 -03:00
|
|
|
raise EOFError, "Reached EOF"
|
2001-01-14 19:47:14 -04:00
|
|
|
else:
|
1999-03-25 17:49:14 -04:00
|
|
|
self.fileobj.seek( pos ) # Return to original position
|
2001-01-14 19:47:14 -04:00
|
|
|
|
|
|
|
self._init_read()
|
1999-03-25 17:49:14 -04:00
|
|
|
self._read_gzip_header()
|
|
|
|
self.decompress = zlib.decompressobj(-zlib.MAX_WBITS)
|
2002-04-07 03:36:23 -03:00
|
|
|
self._new_member = False
|
2001-01-14 19:47:14 -04:00
|
|
|
|
1999-03-25 17:49:14 -04:00
|
|
|
# Read a chunk of data from the file
|
|
|
|
buf = self.fileobj.read(size)
|
2001-01-14 19:47:14 -04:00
|
|
|
|
1999-03-25 17:49:14 -04:00
|
|
|
# If the EOF has been reached, flush the decompression object
|
|
|
|
# and mark this object as finished.
|
2001-01-14 19:47:14 -04:00
|
|
|
|
1998-03-26 17:13:24 -04:00
|
|
|
if buf == "":
|
|
|
|
uncompress = self.decompress.flush()
|
1999-03-25 17:49:14 -04:00
|
|
|
self._read_eof()
|
|
|
|
self._add_read_data( uncompress )
|
|
|
|
raise EOFError, 'Reached EOF'
|
2001-01-14 19:47:14 -04:00
|
|
|
|
1999-03-25 17:49:14 -04:00
|
|
|
uncompress = self.decompress.decompress(buf)
|
|
|
|
self._add_read_data( uncompress )
|
|
|
|
|
|
|
|
if self.decompress.unused_data != "":
|
|
|
|
# Ending case: we've come to the end of a member in the file,
|
|
|
|
# so seek back to the start of the unused data, finish up
|
|
|
|
# this member, and read a new gzip header.
|
|
|
|
# (The number of bytes to seek back is the length of the unused
|
|
|
|
# data, minus 8 because _read_eof() will rewind a further 8 bytes)
|
|
|
|
self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
|
|
|
|
|
|
|
|
# Check the CRC and file size, and set the flag so we read
|
2001-01-14 19:47:14 -04:00
|
|
|
# a new member on the next call
|
1999-03-25 17:49:14 -04:00
|
|
|
self._read_eof()
|
2002-04-07 03:36:23 -03:00
|
|
|
self._new_member = True
|
2001-01-14 19:47:14 -04:00
|
|
|
|
|
|
|
def _add_read_data(self, data):
|
2008-03-23 18:04:43 -03:00
|
|
|
self.crc = zlib.crc32(data, self.crc) & 0xffffffffL
|
2010-01-03 18:29:56 -04:00
|
|
|
offset = self.offset - self.extrastart
|
|
|
|
self.extrabuf = self.extrabuf[offset:] + data
|
1999-03-25 17:49:14 -04:00
|
|
|
self.extrasize = self.extrasize + len(data)
|
2010-01-03 18:29:56 -04:00
|
|
|
self.extrastart = self.offset
|
1999-03-25 17:49:14 -04:00
|
|
|
self.size = self.size + len(data)
|
1997-04-30 13:04:57 -03:00
|
|
|
|
|
|
|
def _read_eof(self):
|
1999-03-25 17:49:14 -04:00
|
|
|
# We've read to the end of the file, so we have to rewind in order
|
2001-01-14 19:47:14 -04:00
|
|
|
# to reread the 8 bytes containing the CRC and the file size.
|
1999-03-25 17:49:14 -04:00
|
|
|
# We check the that the computed CRC and size of the
|
2002-11-05 16:38:55 -04:00
|
|
|
# uncompressed data matches the stored values. Note that the size
|
|
|
|
# stored is the true file size mod 2**32.
|
1999-03-25 17:49:14 -04:00
|
|
|
self.fileobj.seek(-8, 1)
|
1998-03-26 17:13:24 -04:00
|
|
|
crc32 = read32(self.fileobj)
|
2008-03-23 18:04:43 -03:00
|
|
|
isize = read32(self.fileobj) # may exceed 2GB
|
|
|
|
if crc32 != self.crc:
|
|
|
|
raise IOError("CRC check failed %s != %s" % (hex(crc32),
|
|
|
|
hex(self.crc)))
|
2008-03-23 20:43:02 -03:00
|
|
|
elif isize != (self.size & 0xffffffffL):
|
2003-02-05 17:35:07 -04:00
|
|
|
raise IOError, "Incorrect length of data produced"
|
2001-01-14 19:47:14 -04:00
|
|
|
|
2010-01-13 10:32:10 -04:00
|
|
|
# Gzip files can be padded with zeroes and still have archives.
|
|
|
|
# Consume all zero bytes and set the file position to the first
|
|
|
|
# non-zero byte. See http://www.gzip.org/#faq8
|
|
|
|
c = "\x00"
|
|
|
|
while c == "\x00":
|
|
|
|
c = self.fileobj.read(1)
|
|
|
|
if c:
|
|
|
|
self.fileobj.seek(-1, 1)
|
|
|
|
|
2010-01-03 18:29:56 -04:00
|
|
|
@property
|
|
|
|
def closed(self):
|
|
|
|
return self.fileobj is None
|
|
|
|
|
1997-04-30 13:04:57 -03:00
|
|
|
def close(self):
|
2008-05-25 05:07:37 -03:00
|
|
|
if self.fileobj is None:
|
|
|
|
return
|
1998-03-26 17:13:24 -04:00
|
|
|
if self.mode == WRITE:
|
|
|
|
self.fileobj.write(self.compress.flush())
|
2008-03-23 18:04:43 -03:00
|
|
|
write32u(self.fileobj, self.crc)
|
2002-11-05 16:38:55 -04:00
|
|
|
# self.size may exceed 2GB, or even 4GB
|
2008-03-23 20:45:12 -03:00
|
|
|
write32u(self.fileobj, self.size & 0xffffffffL)
|
1998-03-26 17:13:24 -04:00
|
|
|
self.fileobj = None
|
|
|
|
elif self.mode == READ:
|
|
|
|
self.fileobj = None
|
|
|
|
if self.myfileobj:
|
|
|
|
self.myfileobj.close()
|
|
|
|
self.myfileobj = None
|
1997-04-30 13:04:57 -03:00
|
|
|
|
2005-03-03 04:35:22 -04:00
|
|
|
def flush(self,zlib_mode=zlib.Z_SYNC_FLUSH):
|
|
|
|
if self.mode == WRITE:
|
2005-03-27 21:08:02 -04:00
|
|
|
# Ensure the compressor's buffer is flushed
|
|
|
|
self.fileobj.write(self.compress.flush(zlib_mode))
|
1998-03-26 17:13:24 -04:00
|
|
|
self.fileobj.flush()
|
1997-04-30 13:04:57 -03:00
|
|
|
|
2004-07-27 18:02:02 -03:00
|
|
|
def fileno(self):
|
|
|
|
"""Invoke the underlying file object's fileno() method.
|
|
|
|
|
|
|
|
This will raise AttributeError if the underlying file object
|
|
|
|
doesn't support fileno().
|
|
|
|
"""
|
|
|
|
return self.fileobj.fileno()
|
|
|
|
|
2001-08-09 04:21:56 -03:00
|
|
|
def rewind(self):
|
|
|
|
'''Return the uncompressed stream file position indicator to the
|
2001-08-09 18:40:30 -03:00
|
|
|
beginning of the file'''
|
2001-08-09 04:21:56 -03:00
|
|
|
if self.mode != READ:
|
|
|
|
raise IOError("Can't rewind in write mode")
|
|
|
|
self.fileobj.seek(0)
|
2002-04-07 03:36:23 -03:00
|
|
|
self._new_member = True
|
2001-08-09 04:21:56 -03:00
|
|
|
self.extrabuf = ""
|
|
|
|
self.extrasize = 0
|
2010-01-03 18:29:56 -04:00
|
|
|
self.extrastart = 0
|
2001-08-09 04:21:56 -03:00
|
|
|
self.offset = 0
|
|
|
|
|
2010-01-03 18:29:56 -04:00
|
|
|
def readable(self):
|
|
|
|
return self.mode == READ
|
|
|
|
|
|
|
|
def writable(self):
|
|
|
|
return self.mode == WRITE
|
|
|
|
|
|
|
|
def seekable(self):
|
|
|
|
return True
|
|
|
|
|
2006-11-12 06:41:39 -04:00
|
|
|
def seek(self, offset, whence=0):
|
|
|
|
if whence:
|
|
|
|
if whence == 1:
|
|
|
|
offset = self.offset + offset
|
|
|
|
else:
|
|
|
|
raise ValueError('Seek from end not supported')
|
2001-08-09 04:21:56 -03:00
|
|
|
if self.mode == WRITE:
|
|
|
|
if offset < self.offset:
|
|
|
|
raise IOError('Negative seek in write mode')
|
|
|
|
count = offset - self.offset
|
2002-11-04 15:50:11 -04:00
|
|
|
for i in range(count // 1024):
|
|
|
|
self.write(1024 * '\0')
|
|
|
|
self.write((count % 1024) * '\0')
|
2001-08-09 04:21:56 -03:00
|
|
|
elif self.mode == READ:
|
|
|
|
if offset < self.offset:
|
|
|
|
# for negative seek, rewind and do positive seek
|
|
|
|
self.rewind()
|
|
|
|
count = offset - self.offset
|
2002-11-04 15:50:11 -04:00
|
|
|
for i in range(count // 1024):
|
|
|
|
self.read(1024)
|
2001-08-09 04:21:56 -03:00
|
|
|
self.read(count % 1024)
|
|
|
|
|
2010-01-03 18:29:56 -04:00
|
|
|
return self.offset
|
|
|
|
|
2000-07-29 17:15:26 -03:00
|
|
|
def readline(self, size=-1):
|
2006-05-22 12:59:12 -03:00
|
|
|
if size < 0:
|
2010-01-03 18:29:56 -04:00
|
|
|
# Shortcut common case - newline found in buffer.
|
|
|
|
offset = self.offset - self.extrastart
|
|
|
|
i = self.extrabuf.find('\n', offset) + 1
|
|
|
|
if i > 0:
|
|
|
|
self.extrasize -= i - offset
|
|
|
|
self.offset += i - offset
|
|
|
|
return self.extrabuf[offset: i]
|
|
|
|
|
2006-05-22 12:59:12 -03:00
|
|
|
size = sys.maxint
|
|
|
|
readsize = self.min_readsize
|
|
|
|
else:
|
|
|
|
readsize = size
|
2006-05-22 12:22:46 -03:00
|
|
|
bufs = []
|
2006-05-22 12:59:12 -03:00
|
|
|
while size != 0:
|
1998-03-26 17:13:24 -04:00
|
|
|
c = self.read(readsize)
|
2001-02-09 05:10:35 -04:00
|
|
|
i = c.find('\n')
|
2006-05-22 12:59:12 -03:00
|
|
|
|
|
|
|
# We set i=size to break out of the loop under two
|
|
|
|
# conditions: 1) there's no newline, and the chunk is
|
|
|
|
# larger than size, or 2) there is a newline, but the
|
|
|
|
# resulting line would be longer than 'size'.
|
|
|
|
if (size <= i) or (i == -1 and len(c) > size):
|
|
|
|
i = size - 1
|
2000-07-29 17:15:26 -03:00
|
|
|
|
1998-03-26 17:13:24 -04:00
|
|
|
if i >= 0 or c == '':
|
2006-05-22 12:59:12 -03:00
|
|
|
bufs.append(c[:i + 1]) # Add portion of last chunk
|
|
|
|
self._unread(c[i + 1:]) # Push back rest of chunk
|
|
|
|
break
|
2006-05-22 12:22:46 -03:00
|
|
|
|
|
|
|
# Append chunk to list, decrease 'size',
|
|
|
|
bufs.append(c)
|
|
|
|
size = size - len(c)
|
|
|
|
readsize = min(size, readsize * 2)
|
2006-05-22 12:59:12 -03:00
|
|
|
if readsize > self.min_readsize:
|
|
|
|
self.min_readsize = min(readsize, self.min_readsize * 2, 512)
|
|
|
|
return ''.join(bufs) # Return resulting line
|
2001-01-14 19:47:14 -04:00
|
|
|
|
1997-12-30 16:09:08 -04:00
|
|
|
|
|
|
|
def _test():
|
|
|
|
# Act like gzip; with -d, act like gunzip.
|
|
|
|
# The input file is not deleted, however, nor are any other gzip
|
|
|
|
# options or features supported.
|
|
|
|
args = sys.argv[1:]
|
|
|
|
decompress = args and args[0] == "-d"
|
|
|
|
if decompress:
|
1998-03-26 17:13:24 -04:00
|
|
|
args = args[1:]
|
1997-12-30 16:09:08 -04:00
|
|
|
if not args:
|
1998-03-26 17:13:24 -04:00
|
|
|
args = ["-"]
|
1997-12-30 16:09:08 -04:00
|
|
|
for arg in args:
|
1998-03-26 17:13:24 -04:00
|
|
|
if decompress:
|
|
|
|
if arg == "-":
|
|
|
|
f = GzipFile(filename="", mode="rb", fileobj=sys.stdin)
|
|
|
|
g = sys.stdout
|
|
|
|
else:
|
|
|
|
if arg[-3:] != ".gz":
|
2004-02-12 13:35:32 -04:00
|
|
|
print "filename doesn't end in .gz:", repr(arg)
|
1998-03-26 17:13:24 -04:00
|
|
|
continue
|
|
|
|
f = open(arg, "rb")
|
|
|
|
g = __builtin__.open(arg[:-3], "wb")
|
|
|
|
else:
|
|
|
|
if arg == "-":
|
|
|
|
f = sys.stdin
|
|
|
|
g = GzipFile(filename="", mode="wb", fileobj=sys.stdout)
|
|
|
|
else:
|
|
|
|
f = __builtin__.open(arg, "rb")
|
|
|
|
g = open(arg + ".gz", "wb")
|
2002-04-07 03:36:23 -03:00
|
|
|
while True:
|
1998-03-26 17:13:24 -04:00
|
|
|
chunk = f.read(1024)
|
|
|
|
if not chunk:
|
|
|
|
break
|
|
|
|
g.write(chunk)
|
|
|
|
if g is not sys.stdout:
|
|
|
|
g.close()
|
|
|
|
if f is not sys.stdin:
|
|
|
|
f.close()
|
1997-12-30 16:09:08 -04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
_test()
|