| 
									
										
										
										
											2000-02-04 15:39:30 +00:00
										 |  |  | """Functions that read and write gzipped files.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00: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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-27 21:05:21 +00:00
										 |  |  | import struct, sys, time | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | import zlib | 
					
						
							| 
									
										
										
										
											1997-07-19 20:22:23 +00:00
										 |  |  | import __builtin__ | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-23 15:35:05 +00:00
										 |  |  | __all__ = ["GzipFile","open"] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | FTEXT, FHCRC, FEXTRA, FNAME, FCOMMENT = 1, 2, 4, 8, 16 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | READ, WRITE = 1, 2 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-04 19:50:11 +00:00
										 |  |  | def U32(i): | 
					
						
							|  |  |  |     """Return i as an unsigned integer, assuming it fits in 32 bits.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If it's >= 2GB when viewed as a 32-bit unsigned int, return a long. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     if i < 0: | 
					
						
							|  |  |  |         i += 1L << 32 | 
					
						
							|  |  |  |     return i | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-05 20:38:55 +00:00
										 |  |  | def LOWU32(i): | 
					
						
							|  |  |  |     """Return the low-order 32 bits of an int, as a non-negative int.""" | 
					
						
							|  |  |  |     return i & 0xFFFFFFFFL | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | def write32(output, value): | 
					
						
							| 
									
										
										
										
											1999-03-23 23:05:34 +00:00
										 |  |  |     output.write(struct.pack("<l", value)) | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-12 14:34:16 +00:00
										 |  |  | def write32u(output, value): | 
					
						
							| 
									
										
										
										
											2002-11-04 19:50:11 +00:00
										 |  |  |     # The L format writes the bit pattern correctly whether signed | 
					
						
							|  |  |  |     # or unsigned. | 
					
						
							| 
									
										
										
										
											1999-04-12 14:34:16 +00:00
										 |  |  |     output.write(struct.pack("<L", value)) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | def read32(input): | 
					
						
							| 
									
										
										
										
											1999-03-23 23:05:34 +00:00
										 |  |  |     return struct.unpack("<l", input.read(4))[0] | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-05 18:37:59 +00:00
										 |  |  | def open(filename, mode="rb", compresslevel=9): | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  |     """Shorthand for GzipFile(filename, mode, compresslevel).
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     The filename argument is required; mode defaults to 'rb' | 
					
						
							|  |  |  |     and compresslevel defaults to 9. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  |     return GzipFile(filename, mode, compresslevel) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class GzipFile: | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  |     """The GzipFile class simulates most of the methods of a file object with
 | 
					
						
							| 
									
										
										
										
											2002-08-06 17:03:25 +00:00
										 |  |  |     the exception of the readinto() and truncate() methods. | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-07-19 20:22:23 +00:00
										 |  |  |     myfileobj = None | 
					
						
							| 
									
										
										
										
											2005-06-09 14:19:32 +00:00
										 |  |  |     max_read_chunk = 10 * 1024 * 1024   # 10Mb | 
					
						
							| 
									
										
										
										
											1997-07-19 20:22:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  |     def __init__(self, filename=None, mode=None, | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |                  compresslevel=9, fileobj=None): | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00: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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-23 01:43:05 +00: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 21:13:24 +00:00
										 |  |  |         if fileobj is None: | 
					
						
							| 
									
										
										
										
											1999-04-05 18:33:40 +00:00
										 |  |  |             fileobj = self.myfileobj = __builtin__.open(filename, mode or 'rb') | 
					
						
							| 
									
										
										
										
											1997-07-19 20:22:23 +00:00
										 |  |  |         if filename is None: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             if hasattr(fileobj, 'name'): filename = fileobj.name | 
					
						
							|  |  |  |             else: filename = '' | 
					
						
							| 
									
										
										
										
											1997-07-19 20:22:23 +00:00
										 |  |  |         if mode is None: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             if hasattr(fileobj, 'mode'): mode = fileobj.mode | 
					
						
							| 
									
										
										
										
											1999-04-05 18:33:40 +00:00
										 |  |  |             else: mode = 'rb' | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if mode[0:1] == 'r': | 
					
						
							|  |  |  |             self.mode = READ | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  |             # Set flag indicating start of a new member | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             self._new_member = True | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |             self.extrabuf = "" | 
					
						
							|  |  |  |             self.extrasize = 0 | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             self.filename = filename | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |         elif mode[0:1] == 'w' or mode[0:1] == 'a': | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             self.mode = WRITE | 
					
						
							|  |  |  |             self._init_write(filename) | 
					
						
							|  |  |  |             self.compress = zlib.compressobj(compresslevel, | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  |                                              zlib.DEFLATED, | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |                                              -zlib.MAX_WBITS, | 
					
						
							|  |  |  |                                              zlib.DEF_MEM_LEVEL, | 
					
						
							|  |  |  |                                              0) | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-03-11 06:46:52 +00:00
										 |  |  |             raise IOError, "Mode " + mode + " not supported" | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.fileobj = fileobj | 
					
						
							| 
									
										
										
										
											2001-08-09 07:21:56 +00:00
										 |  |  |         self.offset = 0 | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if self.mode == WRITE: | 
					
						
							|  |  |  |             self._write_gzip_header() | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __repr__(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         s = repr(self.fileobj) | 
					
						
							|  |  |  |         return '<gzip ' + s[1:-1] + ' ' + hex(id(self)) + '>' | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _init_write(self, filename): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if filename[-3:] != '.gz': | 
					
						
							|  |  |  |             filename = filename + '.gz' | 
					
						
							|  |  |  |         self.filename = filename | 
					
						
							|  |  |  |         self.crc = zlib.crc32("") | 
					
						
							|  |  |  |         self.size = 0 | 
					
						
							|  |  |  |         self.writebuf = [] | 
					
						
							|  |  |  |         self.bufsize = 0 | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _write_gzip_header(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         self.fileobj.write('\037\213')             # magic header | 
					
						
							|  |  |  |         self.fileobj.write('\010')                 # compression method | 
					
						
							|  |  |  |         fname = self.filename[:-3] | 
					
						
							|  |  |  |         flags = 0 | 
					
						
							|  |  |  |         if fname: | 
					
						
							|  |  |  |             flags = FNAME | 
					
						
							|  |  |  |         self.fileobj.write(chr(flags)) | 
					
						
							| 
									
										
										
										
											1999-04-12 14:34:16 +00:00
										 |  |  |         write32u(self.fileobj, long(time.time())) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         self.fileobj.write('\002') | 
					
						
							|  |  |  |         self.fileobj.write('\377') | 
					
						
							|  |  |  |         if fname: | 
					
						
							|  |  |  |             self.fileobj.write(fname + '\000') | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _init_read(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         self.crc = zlib.crc32("") | 
					
						
							|  |  |  |         self.size = 0 | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _read_gzip_header(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         magic = self.fileobj.read(2) | 
					
						
							|  |  |  |         if magic != '\037\213': | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |             raise IOError, 'Not a gzipped file' | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         method = ord( self.fileobj.read(1) ) | 
					
						
							|  |  |  |         if method != 8: | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |             raise IOError, 'Unknown compression method' | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         flag = ord( self.fileobj.read(1) ) | 
					
						
							|  |  |  |         # modtime = self.fileobj.read(4) | 
					
						
							|  |  |  |         # extraflag = self.fileobj.read(1) | 
					
						
							|  |  |  |         # os = self.fileobj.read(1) | 
					
						
							|  |  |  |         self.fileobj.read(6) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if flag & FEXTRA: | 
					
						
							|  |  |  |             # Read & discard the extra field, if present | 
					
						
							| 
									
										
										
										
											2002-11-04 19:50:11 +00:00
										 |  |  |             xlen = ord(self.fileobj.read(1)) | 
					
						
							|  |  |  |             xlen = xlen + 256*ord(self.fileobj.read(1)) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             self.fileobj.read(xlen) | 
					
						
							|  |  |  |         if flag & FNAME: | 
					
						
							|  |  |  |             # Read and discard a null-terminated string containing the filename | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             while True: | 
					
						
							| 
									
										
										
										
											2002-11-04 19:50:11 +00:00
										 |  |  |                 s = self.fileobj.read(1) | 
					
						
							|  |  |  |                 if not s or s=='\000': | 
					
						
							|  |  |  |                     break | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if flag & FCOMMENT: | 
					
						
							|  |  |  |             # Read and discard a null-terminated string containing a comment | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             while True: | 
					
						
							| 
									
										
										
										
											2002-11-04 19:50:11 +00:00
										 |  |  |                 s = self.fileobj.read(1) | 
					
						
							|  |  |  |                 if not s or s=='\000': | 
					
						
							|  |  |  |                     break | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if flag & FHCRC: | 
					
						
							|  |  |  |             self.fileobj.read(2)     # Read & discard the 16-bit header CRC | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def write(self,data): | 
					
						
							| 
									
										
										
										
											2002-03-11 06:46:52 +00:00
										 |  |  |         if self.mode != WRITE: | 
					
						
							|  |  |  |             import errno | 
					
						
							|  |  |  |             raise IOError(errno.EBADF, "write() on read-only GzipFile object") | 
					
						
							| 
									
										
										
										
											2002-04-16 01:38:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if self.fileobj is None: | 
					
						
							|  |  |  |             raise ValueError, "write() on closed GzipFile object" | 
					
						
							|  |  |  |         if len(data) > 0: | 
					
						
							|  |  |  |             self.size = self.size + len(data) | 
					
						
							|  |  |  |             self.crc = zlib.crc32(data, self.crc) | 
					
						
							|  |  |  |             self.fileobj.write( self.compress.compress(data) ) | 
					
						
							| 
									
										
										
										
											2001-08-09 07:21:56 +00:00
										 |  |  |             self.offset += len(data) | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 16:51:06 +00:00
										 |  |  |     def read(self, size=-1): | 
					
						
							| 
									
										
										
										
											2002-03-11 06:46:52 +00:00
										 |  |  |         if self.mode != READ: | 
					
						
							|  |  |  |             import errno | 
					
						
							| 
									
										
										
										
											2003-12-04 19:28:06 +00:00
										 |  |  |             raise IOError(errno.EBADF, "read() on write-only GzipFile object") | 
					
						
							| 
									
										
										
										
											2002-04-16 01:38:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if self.extrasize <= 0 and self.fileobj is None: | 
					
						
							|  |  |  |             return '' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         readsize = 1024 | 
					
						
							| 
									
										
										
										
											2000-02-02 16:51:06 +00:00
										 |  |  |         if size < 0:        # get the whole thing | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             try: | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |                 while True: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |                     self._read(readsize) | 
					
						
							| 
									
										
										
										
											2005-06-09 14:19:32 +00:00
										 |  |  |                     readsize = min(self.max_read_chunk, readsize * 2) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             except EOFError: | 
					
						
							|  |  |  |                 size = self.extrasize | 
					
						
							|  |  |  |         else:               # just get some more of it | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 while size > self.extrasize: | 
					
						
							|  |  |  |                     self._read(readsize) | 
					
						
							| 
									
										
										
										
											2005-06-09 14:19:32 +00:00
										 |  |  |                     readsize = min(self.max_read_chunk, readsize * 2) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             except EOFError: | 
					
						
							| 
									
										
										
										
											1998-08-03 15:41:39 +00:00
										 |  |  |                 if size > self.extrasize: | 
					
						
							|  |  |  |                     size = self.extrasize | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         chunk = self.extrabuf[:size] | 
					
						
							|  |  |  |         self.extrabuf = self.extrabuf[size:] | 
					
						
							|  |  |  |         self.extrasize = self.extrasize - size | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-09 07:21:56 +00:00
										 |  |  |         self.offset += size | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return chunk | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-01-27 19:29:45 +00:00
										 |  |  |     def _unread(self, buf): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         self.extrabuf = buf + self.extrabuf | 
					
						
							| 
									
										
										
										
											1998-08-03 15:41:39 +00:00
										 |  |  |         self.extrasize = len(buf) + self.extrasize | 
					
						
							| 
									
										
										
										
											2001-08-09 07:21:56 +00:00
										 |  |  |         self.offset -= len(buf) | 
					
						
							| 
									
										
										
										
											1998-01-27 19:29:45 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _read(self, size=1024): | 
					
						
							| 
									
										
										
										
											2002-11-04 19:50:11 +00:00
										 |  |  |         if self.fileobj is None: | 
					
						
							|  |  |  |             raise EOFError, "Reached EOF" | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |         if self._new_member: | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |             # If the _new_member flag is set, we have to | 
					
						
							|  |  |  |             # jump to the next member, if there is one. | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  |             # | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00: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 16:34:51 +00:00
										 |  |  |                 raise EOFError, "Reached EOF" | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |                 self.fileobj.seek( pos ) # Return to original position | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             self._init_read() | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |             self._read_gzip_header() | 
					
						
							|  |  |  |             self.decompress = zlib.decompressobj(-zlib.MAX_WBITS) | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             self._new_member = False | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |         # Read a chunk of data from the file | 
					
						
							|  |  |  |         buf = self.fileobj.read(size) | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |         # If the EOF has been reached, flush the decompression object | 
					
						
							|  |  |  |         # and mark this object as finished. | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if buf == "": | 
					
						
							|  |  |  |             uncompress = self.decompress.flush() | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |             self._read_eof() | 
					
						
							|  |  |  |             self._add_read_data( uncompress ) | 
					
						
							|  |  |  |             raise EOFError, 'Reached EOF' | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00: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 23:47:14 +00:00
										 |  |  |             # a new member on the next call | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |             self._read_eof() | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             self._new_member = True | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _add_read_data(self, data): | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |         self.crc = zlib.crc32(data, self.crc) | 
					
						
							|  |  |  |         self.extrabuf = self.extrabuf + data | 
					
						
							|  |  |  |         self.extrasize = self.extrasize + len(data) | 
					
						
							|  |  |  |         self.size = self.size + len(data) | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _read_eof(self): | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |         # We've read to the end of the file, so we have to rewind in order | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  |         # to reread the 8 bytes containing the CRC and the file size. | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |         # We check the that the computed CRC and size of the | 
					
						
							| 
									
										
										
										
											2002-11-05 20:38:55 +00:00
										 |  |  |         # uncompressed data matches the stored values.  Note that the size | 
					
						
							|  |  |  |         # stored is the true file size mod 2**32. | 
					
						
							| 
									
										
										
										
											1999-03-25 21:49:14 +00:00
										 |  |  |         self.fileobj.seek(-8, 1) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         crc32 = read32(self.fileobj) | 
					
						
							| 
									
										
										
										
											2002-11-04 19:50:11 +00:00
										 |  |  |         isize = U32(read32(self.fileobj))   # may exceed 2GB | 
					
						
							|  |  |  |         if U32(crc32) != U32(self.crc): | 
					
						
							| 
									
										
										
										
											2003-02-05 21:35:07 +00:00
										 |  |  |             raise IOError, "CRC check failed" | 
					
						
							| 
									
										
										
										
											2002-11-05 20:38:55 +00:00
										 |  |  |         elif isize != LOWU32(self.size): | 
					
						
							| 
									
										
										
										
											2003-02-05 21:35:07 +00:00
										 |  |  |             raise IOError, "Incorrect length of data produced" | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  |     def close(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if self.mode == WRITE: | 
					
						
							|  |  |  |             self.fileobj.write(self.compress.flush()) | 
					
						
							|  |  |  |             write32(self.fileobj, self.crc) | 
					
						
							| 
									
										
										
										
											2002-11-05 20:38:55 +00:00
										 |  |  |             # self.size may exceed 2GB, or even 4GB | 
					
						
							|  |  |  |             write32u(self.fileobj, LOWU32(self.size)) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             self.fileobj = None | 
					
						
							|  |  |  |         elif self.mode == READ: | 
					
						
							|  |  |  |             self.fileobj = None | 
					
						
							|  |  |  |         if self.myfileobj: | 
					
						
							|  |  |  |             self.myfileobj.close() | 
					
						
							|  |  |  |             self.myfileobj = None | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-08-10 13:19:30 +00:00
										 |  |  |     def __del__(self): | 
					
						
							| 
									
										
										
										
											2000-05-08 16:59:59 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             if (self.myfileobj is None and | 
					
						
							|  |  |  |                 self.fileobj is None): | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  |         except AttributeError: | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         self.close() | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-03-03 08:35:22 +00:00
										 |  |  |     def flush(self,zlib_mode=zlib.Z_SYNC_FLUSH): | 
					
						
							|  |  |  |         if self.mode == WRITE: | 
					
						
							| 
									
										
										
										
											2005-03-28 01:08:02 +00:00
										 |  |  |             # Ensure the compressor's buffer is flushed | 
					
						
							|  |  |  |             self.fileobj.write(self.compress.flush(zlib_mode)) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         self.fileobj.flush() | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-07-27 21:02:02 +00: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() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  |     def isatty(self): | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |         return False | 
					
						
							| 
									
										
										
										
											1997-04-30 16:04:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-09 07:21:56 +00:00
										 |  |  |     def tell(self): | 
					
						
							|  |  |  |         return self.offset | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def rewind(self): | 
					
						
							|  |  |  |         '''Return the uncompressed stream file position indicator to the
 | 
					
						
							| 
									
										
										
										
											2001-08-09 21:40:30 +00:00
										 |  |  |         beginning of the file'''
 | 
					
						
							| 
									
										
										
										
											2001-08-09 07:21:56 +00:00
										 |  |  |         if self.mode != READ: | 
					
						
							|  |  |  |             raise IOError("Can't rewind in write mode") | 
					
						
							|  |  |  |         self.fileobj.seek(0) | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |         self._new_member = True | 
					
						
							| 
									
										
										
										
											2001-08-09 07:21:56 +00:00
										 |  |  |         self.extrabuf = "" | 
					
						
							|  |  |  |         self.extrasize = 0 | 
					
						
							|  |  |  |         self.offset = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def seek(self, offset): | 
					
						
							|  |  |  |         if self.mode == WRITE: | 
					
						
							|  |  |  |             if offset < self.offset: | 
					
						
							|  |  |  |                 raise IOError('Negative seek in write mode') | 
					
						
							|  |  |  |             count = offset - self.offset | 
					
						
							| 
									
										
										
										
											2002-11-04 19:50:11 +00:00
										 |  |  |             for i in range(count // 1024): | 
					
						
							|  |  |  |                 self.write(1024 * '\0') | 
					
						
							|  |  |  |             self.write((count % 1024) * '\0') | 
					
						
							| 
									
										
										
										
											2001-08-09 07:21:56 +00: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 19:50:11 +00:00
										 |  |  |             for i in range(count // 1024): | 
					
						
							|  |  |  |                 self.read(1024) | 
					
						
							| 
									
										
										
										
											2001-08-09 07:21:56 +00:00
										 |  |  |             self.read(count % 1024) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |     def readline(self, size=-1): | 
					
						
							|  |  |  |         if size < 0: size = sys.maxint | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         bufs = [] | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |         readsize = min(100, size)    # Read from the file in small chunks | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |         while True: | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |             if size == 0: | 
					
						
							| 
									
										
										
										
											2001-02-09 09:10:35 +00:00
										 |  |  |                 return "".join(bufs) # Return resulting line | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             c = self.read(readsize) | 
					
						
							| 
									
										
										
										
											2001-02-09 09:10:35 +00:00
										 |  |  |             i = c.find('\n') | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |             if size is not None: | 
					
						
							|  |  |  |                 # We set i=size to break out of the loop under two | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  |                 # conditions: 1) there's no newline, and the chunk is | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |                 # larger than size, or 2) there is a newline, but the | 
					
						
							|  |  |  |                 # resulting line would be longer than 'size'. | 
					
						
							|  |  |  |                 if i==-1 and len(c) > size: i=size-1 | 
					
						
							|  |  |  |                 elif size <= i: i = size -1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             if i >= 0 or c == '': | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |                 bufs.append(c[:i+1])    # Add portion of last chunk | 
					
						
							|  |  |  |                 self._unread(c[i+1:])   # Push back rest of chunk | 
					
						
							| 
									
										
										
										
											2001-02-09 09:10:35 +00:00
										 |  |  |                 return ''.join(bufs)    # Return resulting line | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             # Append chunk to list, decrease 'size', | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             bufs.append(c) | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |             size = size - len(c) | 
					
						
							|  |  |  |             readsize = min(size, readsize * 2) | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |     def readlines(self, sizehint=0): | 
					
						
							|  |  |  |         # Negative numbers result in reading all the lines | 
					
						
							| 
									
										
										
										
											2002-11-04 19:50:11 +00:00
										 |  |  |         if sizehint <= 0: | 
					
						
							|  |  |  |             sizehint = sys.maxint | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |         L = [] | 
					
						
							|  |  |  |         while sizehint > 0: | 
					
						
							|  |  |  |             line = self.readline() | 
					
						
							| 
									
										
										
										
											2002-11-04 19:50:11 +00:00
										 |  |  |             if line == "": | 
					
						
							|  |  |  |                 break | 
					
						
							| 
									
										
										
										
											2002-04-07 06:36:23 +00:00
										 |  |  |             L.append(line) | 
					
						
							| 
									
										
										
										
											2000-07-29 20:15:26 +00:00
										 |  |  |             sizehint = sizehint - len(line) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return L | 
					
						
							| 
									
										
										
										
											1997-07-19 20:22:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def writelines(self, L): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         for line in L: | 
					
						
							|  |  |  |             self.write(line) | 
					
						
							| 
									
										
										
										
											1997-12-30 20:09:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-20 18:36:00 +00:00
										 |  |  |     def __iter__(self): | 
					
						
							|  |  |  |         return self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def next(self): | 
					
						
							|  |  |  |         line = self.readline() | 
					
						
							|  |  |  |         if line: | 
					
						
							|  |  |  |             return line | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             raise StopIteration | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-12-30 20:09:08 +00: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 21:13:24 +00:00
										 |  |  |         args = args[1:] | 
					
						
							| 
									
										
										
										
											1997-12-30 20:09:08 +00:00
										 |  |  |     if not args: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         args = ["-"] | 
					
						
							| 
									
										
										
										
											1997-12-30 20:09:08 +00:00
										 |  |  |     for arg in args: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if decompress: | 
					
						
							|  |  |  |             if arg == "-": | 
					
						
							|  |  |  |                 f = GzipFile(filename="", mode="rb", fileobj=sys.stdin) | 
					
						
							|  |  |  |                 g = sys.stdout | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 if arg[-3:] != ".gz": | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |                     print "filename doesn't end in .gz:", repr(arg) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00: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 06:36:23 +00:00
										 |  |  |         while True: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00: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 20:09:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     _test() |