gzip.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  1. """Functions that read and write gzipped files.
  2. The user of the file doesn't have to worry about the compression,
  3. but random access is not allowed."""
  4. # based on Andrew Kuchling's minigzip.py distributed with the zlib module
  5. import struct, sys, time, os
  6. import zlib
  7. import builtins
  8. import io
  9. import _compression
  10. __all__ = ["GzipFile", "open", "compress", "decompress"]
  11. FTEXT, FHCRC, FEXTRA, FNAME, FCOMMENT = 1, 2, 4, 8, 16
  12. READ, WRITE = 1, 2
  13. def open(filename, mode="rb", compresslevel=9,
  14. encoding=None, errors=None, newline=None):
  15. """Open a gzip-compressed file in binary or text mode.
  16. The filename argument can be an actual filename (a str or bytes object), or
  17. an existing file object to read from or write to.
  18. The mode argument can be "r", "rb", "w", "wb", "x", "xb", "a" or "ab" for
  19. binary mode, or "rt", "wt", "xt" or "at" for text mode. The default mode is
  20. "rb", and the default compresslevel is 9.
  21. For binary mode, this function is equivalent to the GzipFile constructor:
  22. GzipFile(filename, mode, compresslevel). In this case, the encoding, errors
  23. and newline arguments must not be provided.
  24. For text mode, a GzipFile object is created, and wrapped in an
  25. io.TextIOWrapper instance with the specified encoding, error handling
  26. behavior, and line ending(s).
  27. """
  28. if "t" in mode:
  29. if "b" in mode:
  30. raise ValueError("Invalid mode: %r" % (mode,))
  31. else:
  32. if encoding is not None:
  33. raise ValueError("Argument 'encoding' not supported in binary mode")
  34. if errors is not None:
  35. raise ValueError("Argument 'errors' not supported in binary mode")
  36. if newline is not None:
  37. raise ValueError("Argument 'newline' not supported in binary mode")
  38. gz_mode = mode.replace("t", "")
  39. if isinstance(filename, (str, bytes)):
  40. binary_file = GzipFile(filename, gz_mode, compresslevel)
  41. elif hasattr(filename, "read") or hasattr(filename, "write"):
  42. binary_file = GzipFile(None, gz_mode, compresslevel, filename)
  43. else:
  44. raise TypeError("filename must be a str or bytes object, or a file")
  45. if "t" in mode:
  46. return io.TextIOWrapper(binary_file, encoding, errors, newline)
  47. else:
  48. return binary_file
  49. def write32u(output, value):
  50. # The L format writes the bit pattern correctly whether signed
  51. # or unsigned.
  52. output.write(struct.pack("<L", value))
  53. class _PaddedFile:
  54. """Minimal read-only file object that prepends a string to the contents
  55. of an actual file. Shouldn't be used outside of gzip.py, as it lacks
  56. essential functionality."""
  57. def __init__(self, f, prepend=b''):
  58. self._buffer = prepend
  59. self._length = len(prepend)
  60. self.file = f
  61. self._read = 0
  62. def read(self, size):
  63. if self._read is None:
  64. return self.file.read(size)
  65. if self._read + size <= self._length:
  66. read = self._read
  67. self._read += size
  68. return self._buffer[read:self._read]
  69. else:
  70. read = self._read
  71. self._read = None
  72. return self._buffer[read:] + \
  73. self.file.read(size-self._length+read)
  74. def prepend(self, prepend=b''):
  75. if self._read is None:
  76. self._buffer = prepend
  77. else: # Assume data was read since the last prepend() call
  78. self._read -= len(prepend)
  79. return
  80. self._length = len(self._buffer)
  81. self._read = 0
  82. def seek(self, off):
  83. self._read = None
  84. self._buffer = None
  85. return self.file.seek(off)
  86. def seekable(self):
  87. return True # Allows fast-forwarding even in unseekable streams
  88. class GzipFile(_compression.BaseStream):
  89. """The GzipFile class simulates most of the methods of a file object with
  90. the exception of the truncate() method.
  91. This class only supports opening files in binary mode. If you need to open a
  92. compressed file in text mode, use the gzip.open() function.
  93. """
  94. # Overridden with internal file object to be closed, if only a filename
  95. # is passed in
  96. myfileobj = None
  97. def __init__(self, filename=None, mode=None,
  98. compresslevel=9, fileobj=None, mtime=None):
  99. """Constructor for the GzipFile class.
  100. At least one of fileobj and filename must be given a
  101. non-trivial value.
  102. The new class instance is based on fileobj, which can be a regular
  103. file, an io.BytesIO object, or any other object which simulates a file.
  104. It defaults to None, in which case filename is opened to provide
  105. a file object.
  106. When fileobj is not None, the filename argument is only used to be
  107. included in the gzip file header, which may include the original
  108. filename of the uncompressed file. It defaults to the filename of
  109. fileobj, if discernible; otherwise, it defaults to the empty string,
  110. and in this case the original filename is not included in the header.
  111. The mode argument can be any of 'r', 'rb', 'a', 'ab', 'w', 'wb', 'x', or
  112. 'xb' depending on whether the file will be read or written. The default
  113. is the mode of fileobj if discernible; otherwise, the default is 'rb'.
  114. A mode of 'r' is equivalent to one of 'rb', and similarly for 'w' and
  115. 'wb', 'a' and 'ab', and 'x' and 'xb'.
  116. The compresslevel argument is an integer from 0 to 9 controlling the
  117. level of compression; 1 is fastest and produces the least compression,
  118. and 9 is slowest and produces the most compression. 0 is no compression
  119. at all. The default is 9.
  120. The mtime argument is an optional numeric timestamp to be written
  121. to the last modification time field in the stream when compressing.
  122. If omitted or None, the current time is used.
  123. """
  124. if mode and ('t' in mode or 'U' in mode):
  125. raise ValueError("Invalid mode: {!r}".format(mode))
  126. if mode and 'b' not in mode:
  127. mode += 'b'
  128. if fileobj is None:
  129. fileobj = self.myfileobj = builtins.open(filename, mode or 'rb')
  130. if filename is None:
  131. filename = getattr(fileobj, 'name', '')
  132. if not isinstance(filename, (str, bytes)):
  133. filename = ''
  134. if mode is None:
  135. mode = getattr(fileobj, 'mode', 'rb')
  136. if mode.startswith('r'):
  137. self.mode = READ
  138. raw = _GzipReader(fileobj)
  139. self._buffer = io.BufferedReader(raw)
  140. self.name = filename
  141. elif mode.startswith(('w', 'a', 'x')):
  142. self.mode = WRITE
  143. self._init_write(filename)
  144. self.compress = zlib.compressobj(compresslevel,
  145. zlib.DEFLATED,
  146. -zlib.MAX_WBITS,
  147. zlib.DEF_MEM_LEVEL,
  148. 0)
  149. self._write_mtime = mtime
  150. else:
  151. raise ValueError("Invalid mode: {!r}".format(mode))
  152. self.fileobj = fileobj
  153. if self.mode == WRITE:
  154. self._write_gzip_header()
  155. @property
  156. def filename(self):
  157. import warnings
  158. warnings.warn("use the name attribute", DeprecationWarning, 2)
  159. if self.mode == WRITE and self.name[-3:] != ".gz":
  160. return self.name + ".gz"
  161. return self.name
  162. @property
  163. def mtime(self):
  164. """Last modification time read from stream, or None"""
  165. return self._buffer.raw._last_mtime
  166. def __repr__(self):
  167. s = repr(self.fileobj)
  168. return '<gzip ' + s[1:-1] + ' ' + hex(id(self)) + '>'
  169. def _init_write(self, filename):
  170. self.name = filename
  171. self.crc = zlib.crc32(b"")
  172. self.size = 0
  173. self.writebuf = []
  174. self.bufsize = 0
  175. self.offset = 0 # Current file offset for seek(), tell(), etc
  176. def _write_gzip_header(self):
  177. self.fileobj.write(b'\037\213') # magic header
  178. self.fileobj.write(b'\010') # compression method
  179. try:
  180. # RFC 1952 requires the FNAME field to be Latin-1. Do not
  181. # include filenames that cannot be represented that way.
  182. fname = os.path.basename(self.name)
  183. if not isinstance(fname, bytes):
  184. fname = fname.encode('latin-1')
  185. if fname.endswith(b'.gz'):
  186. fname = fname[:-3]
  187. except UnicodeEncodeError:
  188. fname = b''
  189. flags = 0
  190. if fname:
  191. flags = FNAME
  192. self.fileobj.write(chr(flags).encode('latin-1'))
  193. mtime = self._write_mtime
  194. if mtime is None:
  195. mtime = time.time()
  196. write32u(self.fileobj, int(mtime))
  197. self.fileobj.write(b'\002')
  198. self.fileobj.write(b'\377')
  199. if fname:
  200. self.fileobj.write(fname + b'\000')
  201. def write(self,data):
  202. self._check_not_closed()
  203. if self.mode != WRITE:
  204. import errno
  205. raise OSError(errno.EBADF, "write() on read-only GzipFile object")
  206. if self.fileobj is None:
  207. raise ValueError("write() on closed GzipFile object")
  208. if isinstance(data, bytes):
  209. length = len(data)
  210. else:
  211. # accept any data that supports the buffer protocol
  212. data = memoryview(data)
  213. length = data.nbytes
  214. if length > 0:
  215. self.fileobj.write(self.compress.compress(data))
  216. self.size += length
  217. self.crc = zlib.crc32(data, self.crc)
  218. self.offset += length
  219. return length
  220. def read(self, size=-1):
  221. self._check_not_closed()
  222. if self.mode != READ:
  223. import errno
  224. raise OSError(errno.EBADF, "read() on write-only GzipFile object")
  225. return self._buffer.read(size)
  226. def read1(self, size=-1):
  227. """Implements BufferedIOBase.read1()
  228. Reads up to a buffer's worth of data is size is negative."""
  229. self._check_not_closed()
  230. if self.mode != READ:
  231. import errno
  232. raise OSError(errno.EBADF, "read1() on write-only GzipFile object")
  233. if size < 0:
  234. size = io.DEFAULT_BUFFER_SIZE
  235. return self._buffer.read1(size)
  236. def peek(self, n):
  237. self._check_not_closed()
  238. if self.mode != READ:
  239. import errno
  240. raise OSError(errno.EBADF, "peek() on write-only GzipFile object")
  241. return self._buffer.peek(n)
  242. @property
  243. def closed(self):
  244. return self.fileobj is None
  245. def close(self):
  246. fileobj = self.fileobj
  247. if fileobj is None:
  248. return
  249. self.fileobj = None
  250. try:
  251. if self.mode == WRITE:
  252. fileobj.write(self.compress.flush())
  253. write32u(fileobj, self.crc)
  254. # self.size may exceed 2GB, or even 4GB
  255. write32u(fileobj, self.size & 0xffffffff)
  256. elif self.mode == READ:
  257. self._buffer.close()
  258. finally:
  259. myfileobj = self.myfileobj
  260. if myfileobj:
  261. self.myfileobj = None
  262. myfileobj.close()
  263. def flush(self,zlib_mode=zlib.Z_SYNC_FLUSH):
  264. self._check_not_closed()
  265. if self.mode == WRITE:
  266. # Ensure the compressor's buffer is flushed
  267. self.fileobj.write(self.compress.flush(zlib_mode))
  268. self.fileobj.flush()
  269. def fileno(self):
  270. """Invoke the underlying file object's fileno() method.
  271. This will raise AttributeError if the underlying file object
  272. doesn't support fileno().
  273. """
  274. return self.fileobj.fileno()
  275. def rewind(self):
  276. '''Return the uncompressed stream file position indicator to the
  277. beginning of the file'''
  278. if self.mode != READ:
  279. raise OSError("Can't rewind in write mode")
  280. self._buffer.seek(0)
  281. def readable(self):
  282. return self.mode == READ
  283. def writable(self):
  284. return self.mode == WRITE
  285. def seekable(self):
  286. return True
  287. def seek(self, offset, whence=io.SEEK_SET):
  288. if self.mode == WRITE:
  289. if whence != io.SEEK_SET:
  290. if whence == io.SEEK_CUR:
  291. offset = self.offset + offset
  292. else:
  293. raise ValueError('Seek from end not supported')
  294. if offset < self.offset:
  295. raise OSError('Negative seek in write mode')
  296. count = offset - self.offset
  297. chunk = bytes(1024)
  298. for i in range(count // 1024):
  299. self.write(chunk)
  300. self.write(bytes(count % 1024))
  301. elif self.mode == READ:
  302. self._check_not_closed()
  303. return self._buffer.seek(offset, whence)
  304. return self.offset
  305. def readline(self, size=-1):
  306. self._check_not_closed()
  307. return self._buffer.readline(size)
  308. class _GzipReader(_compression.DecompressReader):
  309. def __init__(self, fp):
  310. super().__init__(_PaddedFile(fp), zlib.decompressobj,
  311. wbits=-zlib.MAX_WBITS)
  312. # Set flag indicating start of a new member
  313. self._new_member = True
  314. self._last_mtime = None
  315. def _init_read(self):
  316. self._crc = zlib.crc32(b"")
  317. self._stream_size = 0 # Decompressed size of unconcatenated stream
  318. def _read_exact(self, n):
  319. '''Read exactly *n* bytes from `self._fp`
  320. This method is required because self._fp may be unbuffered,
  321. i.e. return short reads.
  322. '''
  323. data = self._fp.read(n)
  324. while len(data) < n:
  325. b = self._fp.read(n - len(data))
  326. if not b:
  327. raise EOFError("Compressed file ended before the "
  328. "end-of-stream marker was reached")
  329. data += b
  330. return data
  331. def _read_gzip_header(self):
  332. magic = self._fp.read(2)
  333. if magic == b'':
  334. return False
  335. if magic != b'\037\213':
  336. raise OSError('Not a gzipped file (%r)' % magic)
  337. (method, flag,
  338. self._last_mtime) = struct.unpack("<BBIxx", self._read_exact(8))
  339. if method != 8:
  340. raise OSError('Unknown compression method')
  341. if flag & FEXTRA:
  342. # Read & discard the extra field, if present
  343. extra_len, = struct.unpack("<H", self._read_exact(2))
  344. self._read_exact(extra_len)
  345. if flag & FNAME:
  346. # Read and discard a null-terminated string containing the filename
  347. while True:
  348. s = self._fp.read(1)
  349. if not s or s==b'\000':
  350. break
  351. if flag & FCOMMENT:
  352. # Read and discard a null-terminated string containing a comment
  353. while True:
  354. s = self._fp.read(1)
  355. if not s or s==b'\000':
  356. break
  357. if flag & FHCRC:
  358. self._read_exact(2) # Read & discard the 16-bit header CRC
  359. return True
  360. def read(self, size=-1):
  361. if size < 0:
  362. return self.readall()
  363. # size=0 is special because decompress(max_length=0) is not supported
  364. if not size:
  365. return b""
  366. # For certain input data, a single
  367. # call to decompress() may not return
  368. # any data. In this case, retry until we get some data or reach EOF.
  369. while True:
  370. if self._decompressor.eof:
  371. # Ending case: we've come to the end of a member in the file,
  372. # so finish up this member, and read a new gzip header.
  373. # Check the CRC and file size, and set the flag so we read
  374. # a new member
  375. self._read_eof()
  376. self._new_member = True
  377. self._decompressor = self._decomp_factory(
  378. **self._decomp_args)
  379. if self._new_member:
  380. # If the _new_member flag is set, we have to
  381. # jump to the next member, if there is one.
  382. self._init_read()
  383. if not self._read_gzip_header():
  384. self._size = self._pos
  385. return b""
  386. self._new_member = False
  387. # Read a chunk of data from the file
  388. buf = self._fp.read(io.DEFAULT_BUFFER_SIZE)
  389. uncompress = self._decompressor.decompress(buf, size)
  390. if self._decompressor.unconsumed_tail != b"":
  391. self._fp.prepend(self._decompressor.unconsumed_tail)
  392. elif self._decompressor.unused_data != b"":
  393. # Prepend the already read bytes to the fileobj so they can
  394. # be seen by _read_eof() and _read_gzip_header()
  395. self._fp.prepend(self._decompressor.unused_data)
  396. if uncompress != b"":
  397. break
  398. if buf == b"":
  399. raise EOFError("Compressed file ended before the "
  400. "end-of-stream marker was reached")
  401. self._add_read_data( uncompress )
  402. self._pos += len(uncompress)
  403. return uncompress
  404. def _add_read_data(self, data):
  405. self._crc = zlib.crc32(data, self._crc)
  406. self._stream_size = self._stream_size + len(data)
  407. def _read_eof(self):
  408. # We've read to the end of the file
  409. # We check the that the computed CRC and size of the
  410. # uncompressed data matches the stored values. Note that the size
  411. # stored is the true file size mod 2**32.
  412. crc32, isize = struct.unpack("<II", self._read_exact(8))
  413. if crc32 != self._crc:
  414. raise OSError("CRC check failed %s != %s" % (hex(crc32),
  415. hex(self._crc)))
  416. elif isize != (self._stream_size & 0xffffffff):
  417. raise OSError("Incorrect length of data produced")
  418. # Gzip files can be padded with zeroes and still have archives.
  419. # Consume all zero bytes and set the file position to the first
  420. # non-zero byte. See http://www.gzip.org/#faq8
  421. c = b"\x00"
  422. while c == b"\x00":
  423. c = self._fp.read(1)
  424. if c:
  425. self._fp.prepend(c)
  426. def _rewind(self):
  427. super()._rewind()
  428. self._new_member = True
  429. def compress(data, compresslevel=9):
  430. """Compress data in one shot and return the compressed string.
  431. Optional argument is the compression level, in range of 0-9.
  432. """
  433. buf = io.BytesIO()
  434. with GzipFile(fileobj=buf, mode='wb', compresslevel=compresslevel) as f:
  435. f.write(data)
  436. return buf.getvalue()
  437. def decompress(data):
  438. """Decompress a gzip compressed string in one shot.
  439. Return the decompressed string.
  440. """
  441. with GzipFile(fileobj=io.BytesIO(data)) as f:
  442. return f.read()
  443. def _test():
  444. # Act like gzip; with -d, act like gunzip.
  445. # The input file is not deleted, however, nor are any other gzip
  446. # options or features supported.
  447. args = sys.argv[1:]
  448. decompress = args and args[0] == "-d"
  449. if decompress:
  450. args = args[1:]
  451. if not args:
  452. args = ["-"]
  453. for arg in args:
  454. if decompress:
  455. if arg == "-":
  456. f = GzipFile(filename="", mode="rb", fileobj=sys.stdin.buffer)
  457. g = sys.stdout.buffer
  458. else:
  459. if arg[-3:] != ".gz":
  460. print("filename doesn't end in .gz:", repr(arg))
  461. continue
  462. f = open(arg, "rb")
  463. g = builtins.open(arg[:-3], "wb")
  464. else:
  465. if arg == "-":
  466. f = sys.stdin.buffer
  467. g = GzipFile(filename="", mode="wb", fileobj=sys.stdout.buffer)
  468. else:
  469. f = builtins.open(arg, "rb")
  470. g = open(arg + ".gz", "wb")
  471. while True:
  472. chunk = f.read(1024)
  473. if not chunk:
  474. break
  475. g.write(chunk)
  476. if g is not sys.stdout.buffer:
  477. g.close()
  478. if f is not sys.stdin.buffer:
  479. f.close()
  480. if __name__ == '__main__':
  481. _test()