blob: d7f5beba996e6e6e7b446cbf2af31580d6ef4ad1 [file] [log] [blame]
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001"""
2Read and write ZIP files.
Guido van Rossumd6ca5462007-05-22 01:29:33 +00003
4XXX references to utf-8 need further investigation.
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005"""
Antoine Pitroua32f9a22010-01-27 21:18:57 +00006import io
Barry Warsaw28a691b2010-04-17 00:19:56 +00007import os
Antoine Pitroua32f9a22010-01-27 21:18:57 +00008import re
Brett Cannonb57a0852013-06-15 17:32:30 -04009import importlib.util
Barry Warsaw28a691b2010-04-17 00:19:56 +000010import sys
11import time
12import stat
13import shutil
14import struct
15import binascii
16
Serhiy Storchaka9e777732015-10-10 19:43:32 +030017try:
18 import threading
19except ImportError:
20 import dummy_threading as threading
Guido van Rossum32abe6f2000-03-31 17:30:02 +000021
22try:
Tim Peterse1190062001-01-15 03:34:38 +000023 import zlib # We may need its compression method
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000024 crc32 = zlib.crc32
Brett Cannon260fbe82013-07-04 18:16:15 -040025except ImportError:
Guido van Rossum32abe6f2000-03-31 17:30:02 +000026 zlib = None
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000027 crc32 = binascii.crc32
Guido van Rossum32abe6f2000-03-31 17:30:02 +000028
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020029try:
30 import bz2 # We may need its compression method
Brett Cannon260fbe82013-07-04 18:16:15 -040031except ImportError:
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020032 bz2 = None
33
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020034try:
35 import lzma # We may need its compression method
Brett Cannon260fbe82013-07-04 18:16:15 -040036except ImportError:
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020037 lzma = None
38
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020039__all__ = ["BadZipFile", "BadZipfile", "error",
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020040 "ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2", "ZIP_LZMA",
Georg Brandl4d540882010-10-28 06:42:33 +000041 "is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile"]
Skip Montanaro40fc1602001-03-01 04:27:19 +000042
Georg Brandl4d540882010-10-28 06:42:33 +000043class BadZipFile(Exception):
Guido van Rossum32abe6f2000-03-31 17:30:02 +000044 pass
Thomas Wouters0e3f5912006-08-11 14:57:12 +000045
46
47class LargeZipFile(Exception):
48 """
49 Raised when writing a zipfile, the zipfile requires ZIP64 extensions
50 and those extensions are disabled.
51 """
52
Georg Brandl4d540882010-10-28 06:42:33 +000053error = BadZipfile = BadZipFile # Pre-3.2 compatibility names
54
Guido van Rossum32abe6f2000-03-31 17:30:02 +000055
Amaury Forgeot d'Arc0c3f8a42009-01-17 16:42:26 +000056ZIP64_LIMIT = (1 << 31) - 1
Serhiy Storchakacfbb3942014-09-23 21:34:24 +030057ZIP_FILECOUNT_LIMIT = (1 << 16) - 1
Martin v. Löwisb09b8442008-07-03 14:13:42 +000058ZIP_MAX_COMMENT = (1 << 16) - 1
Thomas Wouters0e3f5912006-08-11 14:57:12 +000059
Guido van Rossum32abe6f2000-03-31 17:30:02 +000060# constants for Zip file compression methods
61ZIP_STORED = 0
62ZIP_DEFLATED = 8
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020063ZIP_BZIP2 = 12
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020064ZIP_LZMA = 14
Guido van Rossum32abe6f2000-03-31 17:30:02 +000065# Other ZIP compression methods not supported
66
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020067DEFAULT_VERSION = 20
68ZIP64_VERSION = 45
69BZIP2_VERSION = 46
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020070LZMA_VERSION = 63
Martin v. Löwisd099b562012-05-01 14:08:22 +020071# we recognize (but not necessarily support) all features up to that version
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020072MAX_EXTRACT_VERSION = 63
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020073
Martin v. Löwisb09b8442008-07-03 14:13:42 +000074# Below are some formats and associated data for reading/writing headers using
75# the struct module. The names and structures of headers/records are those used
76# in the PKWARE description of the ZIP file format:
77# http://www.pkware.com/documents/casestudies/APPNOTE.TXT
78# (URL valid as of January 2008)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000079
Martin v. Löwisb09b8442008-07-03 14:13:42 +000080# The "end of central directory" structure, magic number, size, and indices
81# (section V.I in the format document)
Georg Brandl2ee470f2008-07-16 12:55:28 +000082structEndArchive = b"<4s4H2LH"
83stringEndArchive = b"PK\005\006"
84sizeEndCentDir = struct.calcsize(structEndArchive)
Martin v. Löwisb09b8442008-07-03 14:13:42 +000085
86_ECD_SIGNATURE = 0
87_ECD_DISK_NUMBER = 1
88_ECD_DISK_START = 2
89_ECD_ENTRIES_THIS_DISK = 3
90_ECD_ENTRIES_TOTAL = 4
91_ECD_SIZE = 5
92_ECD_OFFSET = 6
93_ECD_COMMENT_SIZE = 7
94# These last two indices are not part of the structure as defined in the
95# spec, but they are used internally by this module as a convenience
96_ECD_COMMENT = 8
97_ECD_LOCATION = 9
98
99# The "central directory" structure, magic number, size, and indices
100# of entries in the structure (section V.F in the format document)
101structCentralDir = "<4s4B4HL2L5H2L"
Georg Brandl2ee470f2008-07-16 12:55:28 +0000102stringCentralDir = b"PK\001\002"
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000103sizeCentralDir = struct.calcsize(structCentralDir)
104
Fred Drake3e038e52001-02-28 17:56:26 +0000105# indexes of entries in the central directory structure
106_CD_SIGNATURE = 0
107_CD_CREATE_VERSION = 1
108_CD_CREATE_SYSTEM = 2
109_CD_EXTRACT_VERSION = 3
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000110_CD_EXTRACT_SYSTEM = 4
Fred Drake3e038e52001-02-28 17:56:26 +0000111_CD_FLAG_BITS = 5
112_CD_COMPRESS_TYPE = 6
113_CD_TIME = 7
114_CD_DATE = 8
115_CD_CRC = 9
116_CD_COMPRESSED_SIZE = 10
117_CD_UNCOMPRESSED_SIZE = 11
118_CD_FILENAME_LENGTH = 12
119_CD_EXTRA_FIELD_LENGTH = 13
120_CD_COMMENT_LENGTH = 14
121_CD_DISK_NUMBER_START = 15
122_CD_INTERNAL_FILE_ATTRIBUTES = 16
123_CD_EXTERNAL_FILE_ATTRIBUTES = 17
124_CD_LOCAL_HEADER_OFFSET = 18
125
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000126# The "local file header" structure, magic number, size, and indices
127# (section V.A in the format document)
128structFileHeader = "<4s2B4HL2L2H"
Georg Brandl2ee470f2008-07-16 12:55:28 +0000129stringFileHeader = b"PK\003\004"
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000130sizeFileHeader = struct.calcsize(structFileHeader)
131
Fred Drake3e038e52001-02-28 17:56:26 +0000132_FH_SIGNATURE = 0
133_FH_EXTRACT_VERSION = 1
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000134_FH_EXTRACT_SYSTEM = 2
Fred Drake3e038e52001-02-28 17:56:26 +0000135_FH_GENERAL_PURPOSE_FLAG_BITS = 3
136_FH_COMPRESSION_METHOD = 4
137_FH_LAST_MOD_TIME = 5
138_FH_LAST_MOD_DATE = 6
139_FH_CRC = 7
140_FH_COMPRESSED_SIZE = 8
141_FH_UNCOMPRESSED_SIZE = 9
142_FH_FILENAME_LENGTH = 10
143_FH_EXTRA_FIELD_LENGTH = 11
144
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000145# The "Zip64 end of central directory locator" structure, magic number, and size
Georg Brandl2ee470f2008-07-16 12:55:28 +0000146structEndArchive64Locator = "<4sLQL"
147stringEndArchive64Locator = b"PK\x06\x07"
148sizeEndCentDir64Locator = struct.calcsize(structEndArchive64Locator)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000149
150# The "Zip64 end of central directory" record, magic number, size, and indices
151# (section V.G in the format document)
Georg Brandl2ee470f2008-07-16 12:55:28 +0000152structEndArchive64 = "<4sQ2H2L4Q"
153stringEndArchive64 = b"PK\x06\x06"
154sizeEndCentDir64 = struct.calcsize(structEndArchive64)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000155
156_CD64_SIGNATURE = 0
157_CD64_DIRECTORY_RECSIZE = 1
158_CD64_CREATE_VERSION = 2
159_CD64_EXTRACT_VERSION = 3
160_CD64_DISK_NUMBER = 4
161_CD64_DISK_NUMBER_START = 5
162_CD64_NUMBER_ENTRIES_THIS_DISK = 6
163_CD64_NUMBER_ENTRIES_TOTAL = 7
164_CD64_DIRECTORY_SIZE = 8
165_CD64_OFFSET_START_CENTDIR = 9
166
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000167def _check_zipfile(fp):
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000168 try:
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000169 if _EndRecData(fp):
170 return True # file has correct magic number
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200171 except OSError:
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000172 pass
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000173 return False
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000174
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000175def is_zipfile(filename):
176 """Quickly see if a file is a ZIP file by checking the magic number.
177
178 The filename argument may be a file or file-like object too.
179 """
180 result = False
181 try:
182 if hasattr(filename, "read"):
183 result = _check_zipfile(fp=filename)
184 else:
185 with open(filename, "rb") as fp:
186 result = _check_zipfile(fp)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200187 except OSError:
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000188 pass
189 return result
190
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000191def _EndRecData64(fpin, offset, endrec):
192 """
193 Read the ZIP64 end-of-archive records and use that to update endrec
194 """
Georg Brandl268e4d42010-10-14 06:59:45 +0000195 try:
196 fpin.seek(offset - sizeEndCentDir64Locator, 2)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200197 except OSError:
Georg Brandl268e4d42010-10-14 06:59:45 +0000198 # If the seek fails, the file is not large enough to contain a ZIP64
199 # end-of-archive record, so just return the end record we were given.
200 return endrec
201
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000202 data = fpin.read(sizeEndCentDir64Locator)
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200203 if len(data) != sizeEndCentDir64Locator:
204 return endrec
Georg Brandl2ee470f2008-07-16 12:55:28 +0000205 sig, diskno, reloff, disks = struct.unpack(structEndArchive64Locator, data)
206 if sig != stringEndArchive64Locator:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000207 return endrec
208
209 if diskno != 0 or disks != 1:
Éric Araujoae2d8322010-10-28 13:49:17 +0000210 raise BadZipFile("zipfiles that span multiple disks are not supported")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000211
212 # Assume no 'zip64 extensible data'
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000213 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2)
214 data = fpin.read(sizeEndCentDir64)
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200215 if len(data) != sizeEndCentDir64:
216 return endrec
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000217 sig, sz, create_version, read_version, disk_num, disk_dir, \
Christian Tismer59202e52013-10-21 03:59:23 +0200218 dircount, dircount2, dirsize, diroffset = \
219 struct.unpack(structEndArchive64, data)
Georg Brandl2ee470f2008-07-16 12:55:28 +0000220 if sig != stringEndArchive64:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000221 return endrec
222
223 # Update the original endrec using data from the ZIP64 record
Antoine Pitrou9e4fdf42008-09-05 23:43:02 +0000224 endrec[_ECD_SIGNATURE] = sig
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000225 endrec[_ECD_DISK_NUMBER] = disk_num
226 endrec[_ECD_DISK_START] = disk_dir
227 endrec[_ECD_ENTRIES_THIS_DISK] = dircount
228 endrec[_ECD_ENTRIES_TOTAL] = dircount2
229 endrec[_ECD_SIZE] = dirsize
230 endrec[_ECD_OFFSET] = diroffset
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000231 return endrec
232
233
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000234def _EndRecData(fpin):
235 """Return data from the "End of Central Directory" record, or None.
236
237 The data is a list of the nine items in the ZIP "End of central dir"
238 record followed by a tenth item, the file seek offset of this record."""
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000239
240 # Determine file size
241 fpin.seek(0, 2)
242 filesize = fpin.tell()
243
244 # Check to see if this is ZIP file with no archive comment (the
245 # "end of central directory" structure should be the last item in the
246 # file if this is the case).
Amaury Forgeot d'Arcbc347802009-07-28 22:18:57 +0000247 try:
248 fpin.seek(-sizeEndCentDir, 2)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200249 except OSError:
Amaury Forgeot d'Arcbc347802009-07-28 22:18:57 +0000250 return None
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000251 data = fpin.read()
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200252 if (len(data) == sizeEndCentDir and
253 data[0:4] == stringEndArchive and
254 data[-2:] == b"\000\000"):
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000255 # the signature is correct and there's no comment, unpack structure
Georg Brandl2ee470f2008-07-16 12:55:28 +0000256 endrec = struct.unpack(structEndArchive, data)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000257 endrec=list(endrec)
258
259 # Append a blank comment and record start offset
260 endrec.append(b"")
261 endrec.append(filesize - sizeEndCentDir)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000262
Amaury Forgeot d'Arcd3fb4bb2009-01-18 00:29:02 +0000263 # Try to read the "Zip64 end of central directory" structure
264 return _EndRecData64(fpin, -sizeEndCentDir, endrec)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000265
266 # Either this is not a ZIP file, or it is a ZIP file with an archive
267 # comment. Search the end of the file for the "end of central directory"
268 # record signature. The comment is the last item in the ZIP file and may be
269 # up to 64K long. It is assumed that the "end of central directory" magic
270 # number does not appear in the comment.
271 maxCommentStart = max(filesize - (1 << 16) - sizeEndCentDir, 0)
272 fpin.seek(maxCommentStart, 0)
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000273 data = fpin.read()
Georg Brandl2ee470f2008-07-16 12:55:28 +0000274 start = data.rfind(stringEndArchive)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000275 if start >= 0:
276 # found the magic number; attempt to unpack and interpret
277 recData = data[start:start+sizeEndCentDir]
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200278 if len(recData) != sizeEndCentDir:
279 # Zip file is corrupted.
280 return None
Georg Brandl2ee470f2008-07-16 12:55:28 +0000281 endrec = list(struct.unpack(structEndArchive, recData))
R David Murray4fbb9db2011-06-09 15:50:51 -0400282 commentSize = endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file
283 comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize]
284 endrec.append(comment)
285 endrec.append(maxCommentStart + start)
Amaury Forgeot d'Arcd3fb4bb2009-01-18 00:29:02 +0000286
R David Murray4fbb9db2011-06-09 15:50:51 -0400287 # Try to read the "Zip64 end of central directory" structure
288 return _EndRecData64(fpin, maxCommentStart + start - filesize,
289 endrec)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000290
291 # Unable to find a valid end of central directory structure
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200292 return None
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000293
Fred Drake484d7352000-10-02 21:14:52 +0000294
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000295class ZipInfo (object):
Fred Drake484d7352000-10-02 21:14:52 +0000296 """Class with attributes describing each file in the ZIP archive."""
297
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000298 __slots__ = (
Christian Tismer59202e52013-10-21 03:59:23 +0200299 'orig_filename',
300 'filename',
301 'date_time',
302 'compress_type',
303 'comment',
304 'extra',
305 'create_system',
306 'create_version',
307 'extract_version',
308 'reserved',
309 'flag_bits',
310 'volume',
311 'internal_attr',
312 'external_attr',
313 'header_offset',
314 'CRC',
315 'compress_size',
316 'file_size',
317 '_raw_time',
318 )
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000319
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000320 def __init__(self, filename="NoName", date_time=(1980,1,1,0,0,0)):
Greg Ward8e36d282003-06-18 00:53:06 +0000321 self.orig_filename = filename # Original file name in archive
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000322
323 # Terminate the file name at the first null byte. Null bytes in file
324 # names are used as tricks by viruses in archives.
Greg Ward8e36d282003-06-18 00:53:06 +0000325 null_byte = filename.find(chr(0))
326 if null_byte >= 0:
327 filename = filename[0:null_byte]
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000328 # This is used to ensure paths in generated ZIP files always use
329 # forward slashes as the directory separator, as required by the
330 # ZIP format specification.
331 if os.sep != "/" and os.sep in filename:
Greg Ward8e36d282003-06-18 00:53:06 +0000332 filename = filename.replace(os.sep, "/")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000333
Greg Ward8e36d282003-06-18 00:53:06 +0000334 self.filename = filename # Normalized file name
Tim Peterse1190062001-01-15 03:34:38 +0000335 self.date_time = date_time # year, month, day, hour, min, sec
Senthil Kumaran29fa9d42011-10-20 01:46:00 +0800336
337 if date_time[0] < 1980:
338 raise ValueError('ZIP does not support timestamps before 1980')
339
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000340 # Standard values:
Tim Peterse1190062001-01-15 03:34:38 +0000341 self.compress_type = ZIP_STORED # Type of compression for the file
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000342 self.comment = b"" # Comment for each file
343 self.extra = b"" # ZIP extra data
Martin v. Löwis00756902006-02-05 17:09:41 +0000344 if sys.platform == 'win32':
345 self.create_system = 0 # System which created ZIP archive
346 else:
347 # Assume everything else is unix-y
348 self.create_system = 3 # System which created ZIP archive
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200349 self.create_version = DEFAULT_VERSION # Version which created ZIP archive
350 self.extract_version = DEFAULT_VERSION # Version needed to extract archive
Tim Peterse1190062001-01-15 03:34:38 +0000351 self.reserved = 0 # Must be zero
352 self.flag_bits = 0 # ZIP flag bits
353 self.volume = 0 # Volume number of file header
354 self.internal_attr = 0 # Internal attributes
355 self.external_attr = 0 # External file attributes
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000356 # Other attributes are set by class ZipFile:
Tim Peterse1190062001-01-15 03:34:38 +0000357 # header_offset Byte offset to the file header
Tim Peterse1190062001-01-15 03:34:38 +0000358 # CRC CRC-32 of the uncompressed file
359 # compress_size Size of the compressed file
360 # file_size Size of the uncompressed file
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000361
Serhiy Storchaka51a43702014-10-29 22:42:06 +0200362 def __repr__(self):
363 result = ['<%s filename=%r' % (self.__class__.__name__, self.filename)]
364 if self.compress_type != ZIP_STORED:
365 result.append(' compress_type=%s' %
366 compressor_names.get(self.compress_type,
367 self.compress_type))
368 hi = self.external_attr >> 16
369 lo = self.external_attr & 0xFFFF
370 if hi:
371 result.append(' filemode=%r' % stat.filemode(hi))
372 if lo:
373 result.append(' external_attr=%#x' % lo)
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200374 isdir = self.is_dir()
Serhiy Storchaka51a43702014-10-29 22:42:06 +0200375 if not isdir or self.file_size:
376 result.append(' file_size=%r' % self.file_size)
377 if ((not isdir or self.compress_size) and
378 (self.compress_type != ZIP_STORED or
379 self.file_size != self.compress_size)):
380 result.append(' compress_size=%r' % self.compress_size)
381 result.append('>')
382 return ''.join(result)
383
Serhiy Storchaka182d7cd2013-01-15 00:31:39 +0200384 def FileHeader(self, zip64=None):
Fred Drake484d7352000-10-02 21:14:52 +0000385 """Return the per-file header as a string."""
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000386 dt = self.date_time
387 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
Tim Peters3caca232001-12-06 06:23:26 +0000388 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000389 if self.flag_bits & 0x08:
Tim Peterse1190062001-01-15 03:34:38 +0000390 # Set these to zero because we write them after the file data
391 CRC = compress_size = file_size = 0
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000392 else:
Tim Peterse1190062001-01-15 03:34:38 +0000393 CRC = self.CRC
394 compress_size = self.compress_size
395 file_size = self.file_size
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000396
397 extra = self.extra
398
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200399 min_version = 0
Serhiy Storchaka182d7cd2013-01-15 00:31:39 +0200400 if zip64 is None:
401 zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT
402 if zip64:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000403 fmt = '<HHQQ'
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000404 extra = extra + struct.pack(fmt,
Christian Tismer59202e52013-10-21 03:59:23 +0200405 1, struct.calcsize(fmt)-4, file_size, compress_size)
Serhiy Storchaka182d7cd2013-01-15 00:31:39 +0200406 if file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT:
407 if not zip64:
408 raise LargeZipFile("Filesize would require ZIP64 extensions")
409 # File is larger than what fits into a 4 byte integer,
410 # fall back to the ZIP64 extension
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000411 file_size = 0xffffffff
412 compress_size = 0xffffffff
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200413 min_version = ZIP64_VERSION
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000414
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200415 if self.compress_type == ZIP_BZIP2:
416 min_version = max(BZIP2_VERSION, min_version)
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200417 elif self.compress_type == ZIP_LZMA:
418 min_version = max(LZMA_VERSION, min_version)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200419
420 self.extract_version = max(min_version, self.extract_version)
421 self.create_version = max(min_version, self.create_version)
Martin v. Löwis8570f6a2008-05-05 17:44:38 +0000422 filename, flag_bits = self._encodeFilenameFlags()
Georg Brandl2ee470f2008-07-16 12:55:28 +0000423 header = struct.pack(structFileHeader, stringFileHeader,
Christian Tismer59202e52013-10-21 03:59:23 +0200424 self.extract_version, self.reserved, flag_bits,
425 self.compress_type, dostime, dosdate, CRC,
426 compress_size, file_size,
427 len(filename), len(extra))
Martin v. Löwis8570f6a2008-05-05 17:44:38 +0000428 return header + filename + extra
429
430 def _encodeFilenameFlags(self):
431 try:
432 return self.filename.encode('ascii'), self.flag_bits
433 except UnicodeEncodeError:
434 return self.filename.encode('utf-8'), self.flag_bits | 0x800
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000435
436 def _decodeExtra(self):
437 # Try to decode the extra field.
438 extra = self.extra
439 unpack = struct.unpack
Gregory P. Smith0af8a862014-05-29 23:42:14 -0700440 while len(extra) >= 4:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000441 tp, ln = unpack('<HH', extra[:4])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000442 if tp == 1:
443 if ln >= 24:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000444 counts = unpack('<QQQ', extra[4:28])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000445 elif ln == 16:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000446 counts = unpack('<QQ', extra[4:20])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000447 elif ln == 8:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000448 counts = unpack('<Q', extra[4:12])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000449 elif ln == 0:
450 counts = ()
451 else:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +0300452 raise BadZipFile("Corrupt extra field %04x (size=%d)" % (tp, ln))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000453
454 idx = 0
455
456 # ZIP64 extension (large files and/or large archives)
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000457 if self.file_size in (0xffffffffffffffff, 0xffffffff):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000458 self.file_size = counts[idx]
459 idx += 1
460
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000461 if self.compress_size == 0xFFFFFFFF:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000462 self.compress_size = counts[idx]
463 idx += 1
464
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000465 if self.header_offset == 0xffffffff:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000466 old = self.header_offset
467 self.header_offset = counts[idx]
468 idx+=1
469
470 extra = extra[ln+4:]
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000471
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200472 @classmethod
473 def from_file(cls, filename, arcname=None):
474 """Construct an appropriate ZipInfo for a file on the filesystem.
475
476 filename should be the path to a file or directory on the filesystem.
477
478 arcname is the name which it will have within the archive (by default,
479 this will be the same as filename, but without a drive letter and with
480 leading path separators removed).
481 """
Serhiy Storchakaeb65edd2017-03-08 15:45:43 +0200482 if isinstance(filename, os.PathLike):
483 filename = os.fspath(filename)
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200484 st = os.stat(filename)
485 isdir = stat.S_ISDIR(st.st_mode)
486 mtime = time.localtime(st.st_mtime)
487 date_time = mtime[0:6]
488 # Create ZipInfo instance to store file information
489 if arcname is None:
490 arcname = filename
491 arcname = os.path.normpath(os.path.splitdrive(arcname)[1])
492 while arcname[0] in (os.sep, os.altsep):
493 arcname = arcname[1:]
494 if isdir:
495 arcname += '/'
496 zinfo = cls(arcname, date_time)
497 zinfo.external_attr = (st.st_mode & 0xFFFF) << 16 # Unix attributes
498 if isdir:
499 zinfo.file_size = 0
500 zinfo.external_attr |= 0x10 # MS-DOS directory flag
501 else:
502 zinfo.file_size = st.st_size
503
504 return zinfo
505
506 def is_dir(self):
Serhiy Storchakaf47fc552016-05-15 12:27:16 +0300507 """Return True if this archive member is a directory."""
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200508 return self.filename[-1] == '/'
509
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000510
Thomas Wouterscf297e42007-02-23 15:07:44 +0000511class _ZipDecrypter:
512 """Class to handle decryption of files stored within a ZIP archive.
513
514 ZIP supports a password-based form of encryption. Even though known
515 plaintext attacks have been found against it, it is still useful
Christian Heimesfdab48e2008-01-20 09:06:41 +0000516 to be able to get data out of such a file.
Thomas Wouterscf297e42007-02-23 15:07:44 +0000517
518 Usage:
519 zd = _ZipDecrypter(mypwd)
520 plain_char = zd(cypher_char)
521 plain_text = map(zd, cypher_text)
522 """
523
524 def _GenerateCRCTable():
525 """Generate a CRC-32 table.
526
527 ZIP encryption uses the CRC32 one-byte primitive for scrambling some
528 internal keys. We noticed that a direct implementation is faster than
529 relying on binascii.crc32().
530 """
531 poly = 0xedb88320
532 table = [0] * 256
533 for i in range(256):
534 crc = i
535 for j in range(8):
536 if crc & 1:
537 crc = ((crc >> 1) & 0x7FFFFFFF) ^ poly
538 else:
539 crc = ((crc >> 1) & 0x7FFFFFFF)
540 table[i] = crc
541 return table
Daniel Holth9dee3042014-01-02 23:17:21 -0500542 crctable = None
Thomas Wouterscf297e42007-02-23 15:07:44 +0000543
544 def _crc32(self, ch, crc):
545 """Compute the CRC32 primitive on one byte."""
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000546 return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ch) & 0xff]
Thomas Wouterscf297e42007-02-23 15:07:44 +0000547
548 def __init__(self, pwd):
Daniel Holth9dee3042014-01-02 23:17:21 -0500549 if _ZipDecrypter.crctable is None:
550 _ZipDecrypter.crctable = _ZipDecrypter._GenerateCRCTable()
Thomas Wouterscf297e42007-02-23 15:07:44 +0000551 self.key0 = 305419896
552 self.key1 = 591751049
553 self.key2 = 878082192
554 for p in pwd:
555 self._UpdateKeys(p)
556
557 def _UpdateKeys(self, c):
558 self.key0 = self._crc32(c, self.key0)
559 self.key1 = (self.key1 + (self.key0 & 255)) & 4294967295
560 self.key1 = (self.key1 * 134775813 + 1) & 4294967295
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000561 self.key2 = self._crc32((self.key1 >> 24) & 255, self.key2)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000562
563 def __call__(self, c):
564 """Decrypt a single character."""
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000565 assert isinstance(c, int)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000566 k = self.key2 | 2
567 c = c ^ (((k * (k^1)) >> 8) & 255)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000568 self._UpdateKeys(c)
569 return c
570
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200571
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200572class LZMACompressor:
573
574 def __init__(self):
575 self._comp = None
576
577 def _init(self):
Nadeem Vawdaa425c3d2012-06-21 23:36:48 +0200578 props = lzma._encode_filter_properties({'id': lzma.FILTER_LZMA1})
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200579 self._comp = lzma.LZMACompressor(lzma.FORMAT_RAW, filters=[
Christian Tismer59202e52013-10-21 03:59:23 +0200580 lzma._decode_filter_properties(lzma.FILTER_LZMA1, props)
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200581 ])
582 return struct.pack('<BBH', 9, 4, len(props)) + props
583
584 def compress(self, data):
585 if self._comp is None:
586 return self._init() + self._comp.compress(data)
587 return self._comp.compress(data)
588
589 def flush(self):
590 if self._comp is None:
591 return self._init() + self._comp.flush()
592 return self._comp.flush()
593
594
595class LZMADecompressor:
596
597 def __init__(self):
598 self._decomp = None
599 self._unconsumed = b''
600 self.eof = False
601
602 def decompress(self, data):
603 if self._decomp is None:
604 self._unconsumed += data
605 if len(self._unconsumed) <= 4:
606 return b''
607 psize, = struct.unpack('<H', self._unconsumed[2:4])
608 if len(self._unconsumed) <= 4 + psize:
609 return b''
610
611 self._decomp = lzma.LZMADecompressor(lzma.FORMAT_RAW, filters=[
Christian Tismer59202e52013-10-21 03:59:23 +0200612 lzma._decode_filter_properties(lzma.FILTER_LZMA1,
613 self._unconsumed[4:4 + psize])
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200614 ])
615 data = self._unconsumed[4 + psize:]
616 del self._unconsumed
617
618 result = self._decomp.decompress(data)
619 self.eof = self._decomp.eof
620 return result
621
622
623compressor_names = {
624 0: 'store',
625 1: 'shrink',
626 2: 'reduce',
627 3: 'reduce',
628 4: 'reduce',
629 5: 'reduce',
630 6: 'implode',
631 7: 'tokenize',
632 8: 'deflate',
633 9: 'deflate64',
634 10: 'implode',
635 12: 'bzip2',
636 14: 'lzma',
637 18: 'terse',
638 19: 'lz77',
639 97: 'wavpack',
640 98: 'ppmd',
641}
642
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200643def _check_compression(compression):
644 if compression == ZIP_STORED:
645 pass
646 elif compression == ZIP_DEFLATED:
647 if not zlib:
648 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +0200649 "Compression requires the (missing) zlib module")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200650 elif compression == ZIP_BZIP2:
651 if not bz2:
652 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +0200653 "Compression requires the (missing) bz2 module")
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200654 elif compression == ZIP_LZMA:
655 if not lzma:
656 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +0200657 "Compression requires the (missing) lzma module")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200658 else:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +0300659 raise NotImplementedError("That compression method is not supported")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200660
661
662def _get_compressor(compress_type):
663 if compress_type == ZIP_DEFLATED:
664 return zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION,
Christian Tismer59202e52013-10-21 03:59:23 +0200665 zlib.DEFLATED, -15)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200666 elif compress_type == ZIP_BZIP2:
667 return bz2.BZ2Compressor()
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200668 elif compress_type == ZIP_LZMA:
669 return LZMACompressor()
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200670 else:
671 return None
672
673
674def _get_decompressor(compress_type):
Martin v. Löwisb3260f02012-05-01 08:38:01 +0200675 if compress_type == ZIP_STORED:
676 return None
677 elif compress_type == ZIP_DEFLATED:
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200678 return zlib.decompressobj(-15)
679 elif compress_type == ZIP_BZIP2:
680 return bz2.BZ2Decompressor()
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200681 elif compress_type == ZIP_LZMA:
682 return LZMADecompressor()
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200683 else:
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200684 descr = compressor_names.get(compress_type)
Martin v. Löwisb3260f02012-05-01 08:38:01 +0200685 if descr:
686 raise NotImplementedError("compression type %d (%s)" % (compress_type, descr))
687 else:
688 raise NotImplementedError("compression type %d" % (compress_type,))
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200689
690
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200691class _SharedFile:
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300692 def __init__(self, file, pos, close, lock, writing):
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200693 self._file = file
694 self._pos = pos
695 self._close = close
Serhiy Storchakaf15e5242015-01-26 13:53:38 +0200696 self._lock = lock
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300697 self._writing = writing
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200698
699 def read(self, n=-1):
Serhiy Storchakaf15e5242015-01-26 13:53:38 +0200700 with self._lock:
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300701 if self._writing():
Serhiy Storchakab0d497c2016-09-10 21:28:07 +0300702 raise ValueError("Can't read from the ZIP file while there "
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300703 "is an open writing handle on it. "
704 "Close the writing handle before trying to read.")
Serhiy Storchakaf15e5242015-01-26 13:53:38 +0200705 self._file.seek(self._pos)
706 data = self._file.read(n)
707 self._pos = self._file.tell()
708 return data
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200709
710 def close(self):
711 if self._file is not None:
712 fileobj = self._file
713 self._file = None
714 self._close(fileobj)
715
Serhiy Storchaka77d89972015-03-23 01:09:35 +0200716# Provide the tell method for unseekable stream
717class _Tellable:
718 def __init__(self, fp):
719 self.fp = fp
720 self.offset = 0
721
722 def write(self, data):
723 n = self.fp.write(data)
724 self.offset += n
725 return n
726
727 def tell(self):
728 return self.offset
729
730 def flush(self):
731 self.fp.flush()
732
733 def close(self):
734 self.fp.close()
735
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200736
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000737class ZipExtFile(io.BufferedIOBase):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000738 """File-like object for reading an archive member.
739 Is returned by ZipFile.open().
740 """
741
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000742 # Max size supported by decompressor.
743 MAX_N = 1 << 31 - 1
Guido van Rossumd8faa362007-04-27 19:54:29 +0000744
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000745 # Read from compressed files in 4k blocks.
746 MIN_READ_SIZE = 4096
Guido van Rossumd8faa362007-04-27 19:54:29 +0000747
Łukasz Langae94980a2010-11-22 23:31:26 +0000748 def __init__(self, fileobj, mode, zipinfo, decrypter=None,
749 close_fileobj=False):
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000750 self._fileobj = fileobj
751 self._decrypter = decrypter
Łukasz Langae94980a2010-11-22 23:31:26 +0000752 self._close_fileobj = close_fileobj
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000753
Ezio Melotti92b47432010-01-28 01:44:41 +0000754 self._compress_type = zipinfo.compress_type
Ezio Melotti92b47432010-01-28 01:44:41 +0000755 self._compress_left = zipinfo.compress_size
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200756 self._left = zipinfo.file_size
Ezio Melotti92b47432010-01-28 01:44:41 +0000757
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200758 self._decompressor = _get_decompressor(self._compress_type)
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000759
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200760 self._eof = False
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000761 self._readbuffer = b''
762 self._offset = 0
763
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000764 self.newlines = None
765
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000766 # Adjust read size for encrypted files since the first 12 bytes
767 # are for the encryption/password information.
768 if self._decrypter is not None:
769 self._compress_left -= 12
770
771 self.mode = mode
Guido van Rossumd8faa362007-04-27 19:54:29 +0000772 self.name = zipinfo.filename
773
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000774 if hasattr(zipinfo, 'CRC'):
775 self._expected_crc = zipinfo.CRC
Martin Panterb82032f2015-12-11 05:19:29 +0000776 self._running_crc = crc32(b'')
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000777 else:
778 self._expected_crc = None
779
Serhiy Storchaka51a43702014-10-29 22:42:06 +0200780 def __repr__(self):
781 result = ['<%s.%s' % (self.__class__.__module__,
782 self.__class__.__qualname__)]
783 if not self.closed:
784 result.append(' name=%r mode=%r' % (self.name, self.mode))
785 if self._compress_type != ZIP_STORED:
786 result.append(' compress_type=%s' %
787 compressor_names.get(self._compress_type,
788 self._compress_type))
789 else:
790 result.append(' [closed]')
791 result.append('>')
792 return ''.join(result)
793
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000794 def readline(self, limit=-1):
795 """Read and return a line from the stream.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000796
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000797 If limit is specified, at most limit bytes will be read.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000798 """
Guido van Rossumd8faa362007-04-27 19:54:29 +0000799
Serhiy Storchakae670be22016-06-11 19:32:44 +0300800 if limit < 0:
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000801 # Shortcut common case - newline found in buffer.
802 i = self._readbuffer.find(b'\n', self._offset) + 1
803 if i > 0:
804 line = self._readbuffer[self._offset: i]
805 self._offset = i
806 return line
Guido van Rossumd8faa362007-04-27 19:54:29 +0000807
Serhiy Storchakae670be22016-06-11 19:32:44 +0300808 return io.BufferedIOBase.readline(self, limit)
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000809
810 def peek(self, n=1):
811 """Returns buffered bytes without advancing the position."""
812 if n > len(self._readbuffer) - self._offset:
813 chunk = self.read(n)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200814 if len(chunk) > self._offset:
815 self._readbuffer = chunk + self._readbuffer[self._offset:]
816 self._offset = 0
817 else:
818 self._offset -= len(chunk)
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000819
820 # Return up to 512 bytes to reduce allocation overhead for tight loops.
821 return self._readbuffer[self._offset: self._offset + 512]
822
823 def readable(self):
824 return True
825
826 def read(self, n=-1):
827 """Read and return up to n bytes.
828 If the argument is omitted, None, or negative, data is read and returned until EOF is reached..
Guido van Rossumd8faa362007-04-27 19:54:29 +0000829 """
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200830 if n is None or n < 0:
831 buf = self._readbuffer[self._offset:]
832 self._readbuffer = b''
833 self._offset = 0
834 while not self._eof:
835 buf += self._read1(self.MAX_N)
836 return buf
Guido van Rossumd8faa362007-04-27 19:54:29 +0000837
Antoine Pitrou78157b32012-06-23 16:44:48 +0200838 end = n + self._offset
839 if end < len(self._readbuffer):
840 buf = self._readbuffer[self._offset:end]
841 self._offset = end
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200842 return buf
843
Antoine Pitrou78157b32012-06-23 16:44:48 +0200844 n = end - len(self._readbuffer)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200845 buf = self._readbuffer[self._offset:]
846 self._readbuffer = b''
847 self._offset = 0
848 while n > 0 and not self._eof:
849 data = self._read1(n)
850 if n < len(data):
851 self._readbuffer = data
852 self._offset = n
853 buf += data[:n]
854 break
855 buf += data
856 n -= len(data)
857 return buf
858
859 def _update_crc(self, newdata):
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000860 # Update the CRC using the given data.
861 if self._expected_crc is None:
862 # No need to compute the CRC if we don't have a reference value
863 return
Martin Panterb82032f2015-12-11 05:19:29 +0000864 self._running_crc = crc32(newdata, self._running_crc)
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000865 # Check the CRC if we're at the end of the file
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200866 if self._eof and self._running_crc != self._expected_crc:
Georg Brandl4d540882010-10-28 06:42:33 +0000867 raise BadZipFile("Bad CRC-32 for file %r" % self.name)
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000868
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000869 def read1(self, n):
870 """Read up to n bytes with at most one read() system call."""
Guido van Rossumd8faa362007-04-27 19:54:29 +0000871
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200872 if n is None or n < 0:
873 buf = self._readbuffer[self._offset:]
874 self._readbuffer = b''
875 self._offset = 0
Serhiy Storchakad2c07a52013-09-27 22:11:57 +0300876 while not self._eof:
877 data = self._read1(self.MAX_N)
878 if data:
879 buf += data
880 break
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200881 return buf
Guido van Rossumd8faa362007-04-27 19:54:29 +0000882
Antoine Pitrou78157b32012-06-23 16:44:48 +0200883 end = n + self._offset
884 if end < len(self._readbuffer):
885 buf = self._readbuffer[self._offset:end]
886 self._offset = end
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200887 return buf
888
Antoine Pitrou78157b32012-06-23 16:44:48 +0200889 n = end - len(self._readbuffer)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200890 buf = self._readbuffer[self._offset:]
891 self._readbuffer = b''
892 self._offset = 0
893 if n > 0:
Serhiy Storchakad2c07a52013-09-27 22:11:57 +0300894 while not self._eof:
895 data = self._read1(n)
896 if n < len(data):
897 self._readbuffer = data
898 self._offset = n
899 buf += data[:n]
900 break
901 if data:
902 buf += data
903 break
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200904 return buf
905
906 def _read1(self, n):
907 # Read up to n compressed bytes with at most one read() system call,
908 # decrypt and decompress them.
909 if self._eof or n <= 0:
910 return b''
Guido van Rossumd8faa362007-04-27 19:54:29 +0000911
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000912 # Read from file.
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200913 if self._compress_type == ZIP_DEFLATED:
914 ## Handle unconsumed data.
915 data = self._decompressor.unconsumed_tail
916 if n > len(data):
917 data += self._read2(n - len(data))
918 else:
919 data = self._read2(n)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000920
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200921 if self._compress_type == ZIP_STORED:
922 self._eof = self._compress_left <= 0
923 elif self._compress_type == ZIP_DEFLATED:
924 n = max(n, self.MIN_READ_SIZE)
925 data = self._decompressor.decompress(data, n)
926 self._eof = (self._decompressor.eof or
Christian Tismer59202e52013-10-21 03:59:23 +0200927 self._compress_left <= 0 and
928 not self._decompressor.unconsumed_tail)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200929 if self._eof:
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000930 data += self._decompressor.flush()
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200931 else:
932 data = self._decompressor.decompress(data)
933 self._eof = self._decompressor.eof or self._compress_left <= 0
Guido van Rossumd8faa362007-04-27 19:54:29 +0000934
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200935 data = data[:self._left]
936 self._left -= len(data)
937 if self._left <= 0:
938 self._eof = True
939 self._update_crc(data)
940 return data
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000941
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200942 def _read2(self, n):
943 if self._compress_left <= 0:
944 return b''
945
946 n = max(n, self.MIN_READ_SIZE)
947 n = min(n, self._compress_left)
948
949 data = self._fileobj.read(n)
950 self._compress_left -= len(data)
Serhiy Storchaka5ce3f102014-01-09 14:50:20 +0200951 if not data:
952 raise EOFError
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200953
954 if self._decrypter is not None:
955 data = bytes(map(self._decrypter, data))
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000956 return data
Guido van Rossumd8faa362007-04-27 19:54:29 +0000957
Łukasz Langae94980a2010-11-22 23:31:26 +0000958 def close(self):
959 try:
960 if self._close_fileobj:
961 self._fileobj.close()
962 finally:
963 super().close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000964
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000965
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300966class _ZipWriteFile(io.BufferedIOBase):
967 def __init__(self, zf, zinfo, zip64):
968 self._zinfo = zinfo
969 self._zip64 = zip64
970 self._zipfile = zf
971 self._compressor = _get_compressor(zinfo.compress_type)
972 self._file_size = 0
973 self._compress_size = 0
974 self._crc = 0
975
976 @property
977 def _fileobj(self):
978 return self._zipfile.fp
979
980 def writable(self):
981 return True
982
983 def write(self, data):
984 nbytes = len(data)
985 self._file_size += nbytes
986 self._crc = crc32(data, self._crc)
987 if self._compressor:
988 data = self._compressor.compress(data)
989 self._compress_size += len(data)
990 self._fileobj.write(data)
991 return nbytes
992
993 def close(self):
994 super().close()
995 # Flush any data from the compressor, and update header info
996 if self._compressor:
997 buf = self._compressor.flush()
998 self._compress_size += len(buf)
999 self._fileobj.write(buf)
1000 self._zinfo.compress_size = self._compress_size
1001 else:
1002 self._zinfo.compress_size = self._file_size
1003 self._zinfo.CRC = self._crc
1004 self._zinfo.file_size = self._file_size
1005
1006 # Write updated header info
1007 if self._zinfo.flag_bits & 0x08:
1008 # Write CRC and file sizes after the file data
1009 fmt = '<LQQ' if self._zip64 else '<LLL'
1010 self._fileobj.write(struct.pack(fmt, self._zinfo.CRC,
1011 self._zinfo.compress_size, self._zinfo.file_size))
1012 self._zipfile.start_dir = self._fileobj.tell()
1013 else:
1014 if not self._zip64:
1015 if self._file_size > ZIP64_LIMIT:
1016 raise RuntimeError('File size unexpectedly exceeded ZIP64 '
1017 'limit')
1018 if self._compress_size > ZIP64_LIMIT:
1019 raise RuntimeError('Compressed size unexpectedly exceeded '
1020 'ZIP64 limit')
1021 # Seek backwards and write file header (which will now include
1022 # correct CRC and file sizes)
1023
1024 # Preserve current position in file
1025 self._zipfile.start_dir = self._fileobj.tell()
1026 self._fileobj.seek(self._zinfo.header_offset)
1027 self._fileobj.write(self._zinfo.FileHeader(self._zip64))
1028 self._fileobj.seek(self._zipfile.start_dir)
1029
1030 self._zipfile._writing = False
1031
1032 # Successfully written: Add file to our caches
1033 self._zipfile.filelist.append(self._zinfo)
1034 self._zipfile.NameToInfo[self._zinfo.filename] = self._zinfo
1035
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001036class ZipFile:
Tim Petersa19a1682001-03-29 04:36:09 +00001037 """ Class with methods to open, read, write, close, list zip files.
1038
Serhiy Storchaka235c5e02013-11-23 15:55:38 +02001039 z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=True)
Tim Petersa19a1682001-03-29 04:36:09 +00001040
Fred Drake3d9091e2001-03-26 15:49:24 +00001041 file: Either the path to the file, or a file-like object.
1042 If it is a path, the file will be opened and closed by ZipFile.
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001043 mode: The mode can be either read 'r', write 'w', exclusive create 'x',
1044 or append 'a'.
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001045 compression: ZIP_STORED (no compression), ZIP_DEFLATED (requires zlib),
1046 ZIP_BZIP2 (requires bz2) or ZIP_LZMA (requires lzma).
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001047 allowZip64: if True ZipFile will create files with ZIP64 extensions when
1048 needed, otherwise it will raise an exception when this would
1049 be necessary.
1050
Fred Drake3d9091e2001-03-26 15:49:24 +00001051 """
Fred Drake484d7352000-10-02 21:14:52 +00001052
Fred Drake90eac282001-02-28 05:29:34 +00001053 fp = None # Set here since __del__ checks it
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001054 _windows_illegal_name_trans_table = None
Fred Drake90eac282001-02-28 05:29:34 +00001055
Serhiy Storchaka235c5e02013-11-23 15:55:38 +02001056 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=True):
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001057 """Open the ZIP file with mode read 'r', write 'w', exclusive create 'x',
1058 or append 'a'."""
1059 if mode not in ('r', 'w', 'x', 'a'):
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001060 raise ValueError("ZipFile requires mode 'r', 'w', 'x', or 'a'")
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001061
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001062 _check_compression(compression)
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001063
1064 self._allowZip64 = allowZip64
1065 self._didModify = False
Tim Peterse1190062001-01-15 03:34:38 +00001066 self.debug = 0 # Level of printing: 0 through 3
1067 self.NameToInfo = {} # Find file info given name
1068 self.filelist = [] # List of ZipInfo instances for archive
1069 self.compression = compression # Method of compression
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001070 self.mode = mode
Thomas Wouterscf297e42007-02-23 15:07:44 +00001071 self.pwd = None
R David Murrayf50b38a2012-04-12 18:44:58 -04001072 self._comment = b''
Tim Petersa19a1682001-03-29 04:36:09 +00001073
Fred Drake3d9091e2001-03-26 15:49:24 +00001074 # Check if we were passed a file-like object
Serhiy Storchakaeb65edd2017-03-08 15:45:43 +02001075 if isinstance(file, os.PathLike):
1076 file = os.fspath(file)
Guido van Rossum3172c5d2007-10-16 18:12:55 +00001077 if isinstance(file, str):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001078 # No, it's a filename
Fred Drake3d9091e2001-03-26 15:49:24 +00001079 self._filePassed = 0
1080 self.filename = file
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001081 modeDict = {'r' : 'rb', 'w': 'w+b', 'x': 'x+b', 'a' : 'r+b',
1082 'r+b': 'w+b', 'w+b': 'wb', 'x+b': 'xb'}
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001083 filemode = modeDict[mode]
1084 while True:
1085 try:
1086 self.fp = io.open(file, filemode)
1087 except OSError:
1088 if filemode in modeDict:
1089 filemode = modeDict[filemode]
1090 continue
Thomas Wouterscf297e42007-02-23 15:07:44 +00001091 raise
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001092 break
Fred Drake3d9091e2001-03-26 15:49:24 +00001093 else:
1094 self._filePassed = 1
1095 self.fp = file
1096 self.filename = getattr(file, 'name', None)
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001097 self._fileRefCnt = 1
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001098 self._lock = threading.RLock()
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001099 self._seekable = True
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001100 self._writing = False
Tim Petersa19a1682001-03-29 04:36:09 +00001101
Antoine Pitrou17babc52012-11-17 23:50:08 +01001102 try:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001103 if mode == 'r':
Martin v. Löwis6f6873b2002-10-13 13:54:50 +00001104 self._RealGetContents()
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001105 elif mode in ('w', 'x'):
Georg Brandl268e4d42010-10-14 06:59:45 +00001106 # set the modified flag so central directory gets written
1107 # even if no files are added to the archive
1108 self._didModify = True
Serhiy Storchaka34cba332017-01-01 19:00:30 +02001109 self._start_disk = 0
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001110 try:
Serhiy Storchaka34cba332017-01-01 19:00:30 +02001111 self.start_dir = self.fp.tell()
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001112 except (AttributeError, OSError):
1113 self.fp = _Tellable(self.fp)
Serhiy Storchaka34cba332017-01-01 19:00:30 +02001114 self.start_dir = 0
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001115 self._seekable = False
1116 else:
1117 # Some file-like objects can provide tell() but not seek()
1118 try:
1119 self.fp.seek(self.start_dir)
1120 except (AttributeError, OSError):
1121 self._seekable = False
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001122 elif mode == 'a':
Antoine Pitrou17babc52012-11-17 23:50:08 +01001123 try:
1124 # See if file is a zip file
1125 self._RealGetContents()
1126 # seek to start of directory and overwrite
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001127 self.fp.seek(self.start_dir)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001128 except BadZipFile:
1129 # file is not a zip file, just append
1130 self.fp.seek(0, 2)
1131
1132 # set the modified flag so central directory gets written
1133 # even if no files are added to the archive
1134 self._didModify = True
Serhiy Storchaka8793b212016-10-07 22:20:50 +03001135 self.start_dir = self._start_disk = self.fp.tell()
Antoine Pitrou17babc52012-11-17 23:50:08 +01001136 else:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001137 raise ValueError("Mode must be 'r', 'w', 'x', or 'a'")
Antoine Pitrou17babc52012-11-17 23:50:08 +01001138 except:
1139 fp = self.fp
1140 self.fp = None
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001141 self._fpclose(fp)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001142 raise
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001143
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001144 def __enter__(self):
1145 return self
1146
1147 def __exit__(self, type, value, traceback):
1148 self.close()
1149
Serhiy Storchaka51a43702014-10-29 22:42:06 +02001150 def __repr__(self):
1151 result = ['<%s.%s' % (self.__class__.__module__,
1152 self.__class__.__qualname__)]
1153 if self.fp is not None:
1154 if self._filePassed:
1155 result.append(' file=%r' % self.fp)
1156 elif self.filename is not None:
1157 result.append(' filename=%r' % self.filename)
1158 result.append(' mode=%r' % self.mode)
1159 else:
1160 result.append(' [closed]')
1161 result.append('>')
1162 return ''.join(result)
1163
Tim Peters7d3bad62001-04-04 18:56:49 +00001164 def _RealGetContents(self):
Fred Drake484d7352000-10-02 21:14:52 +00001165 """Read in the table of contents for the ZIP file."""
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001166 fp = self.fp
Georg Brandl268e4d42010-10-14 06:59:45 +00001167 try:
1168 endrec = _EndRecData(fp)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001169 except OSError:
Georg Brandl4d540882010-10-28 06:42:33 +00001170 raise BadZipFile("File is not a zip file")
Martin v. Löwis6f6873b2002-10-13 13:54:50 +00001171 if not endrec:
Georg Brandl4d540882010-10-28 06:42:33 +00001172 raise BadZipFile("File is not a zip file")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001173 if self.debug > 1:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001174 print(endrec)
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001175 size_cd = endrec[_ECD_SIZE] # bytes in central directory
1176 offset_cd = endrec[_ECD_OFFSET] # offset of central directory
R David Murrayf50b38a2012-04-12 18:44:58 -04001177 self._comment = endrec[_ECD_COMMENT] # archive comment
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001178
Serhiy Storchaka8793b212016-10-07 22:20:50 +03001179 # self._start_disk: Position of the start of ZIP archive
1180 # It is zero, unless ZIP was concatenated to another file
1181 self._start_disk = endrec[_ECD_LOCATION] - size_cd - offset_cd
Antoine Pitrou9e4fdf42008-09-05 23:43:02 +00001182 if endrec[_ECD_SIGNATURE] == stringEndArchive64:
1183 # If Zip64 extension structures are present, account for them
Serhiy Storchaka8793b212016-10-07 22:20:50 +03001184 self._start_disk -= (sizeEndCentDir64 + sizeEndCentDir64Locator)
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001185
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001186 if self.debug > 2:
Serhiy Storchaka8793b212016-10-07 22:20:50 +03001187 inferred = self._start_disk + offset_cd
1188 print("given, inferred, offset", offset_cd, inferred, self._start_disk)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001189 # self.start_dir: Position of start of central directory
Serhiy Storchaka8793b212016-10-07 22:20:50 +03001190 self.start_dir = offset_cd + self._start_disk
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001191 fp.seek(self.start_dir, 0)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001192 data = fp.read(size_cd)
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001193 fp = io.BytesIO(data)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001194 total = 0
1195 while total < size_cd:
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001196 centdir = fp.read(sizeCentralDir)
Serhiy Storchakad2b15272013-01-31 15:27:07 +02001197 if len(centdir) != sizeCentralDir:
1198 raise BadZipFile("Truncated central directory")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001199 centdir = struct.unpack(structCentralDir, centdir)
Serhiy Storchakad2b15272013-01-31 15:27:07 +02001200 if centdir[_CD_SIGNATURE] != stringCentralDir:
1201 raise BadZipFile("Bad magic number for central directory")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001202 if self.debug > 2:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001203 print(centdir)
Fred Drake3e038e52001-02-28 17:56:26 +00001204 filename = fp.read(centdir[_CD_FILENAME_LENGTH])
Martin v. Löwis8570f6a2008-05-05 17:44:38 +00001205 flags = centdir[5]
1206 if flags & 0x800:
1207 # UTF-8 file names extension
1208 filename = filename.decode('utf-8')
1209 else:
1210 # Historical ZIP filename encoding
1211 filename = filename.decode('cp437')
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001212 # Create ZipInfo instance to store file information
Martin v. Löwis8570f6a2008-05-05 17:44:38 +00001213 x = ZipInfo(filename)
Fred Drake3e038e52001-02-28 17:56:26 +00001214 x.extra = fp.read(centdir[_CD_EXTRA_FIELD_LENGTH])
1215 x.comment = fp.read(centdir[_CD_COMMENT_LENGTH])
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001216 x.header_offset = centdir[_CD_LOCAL_HEADER_OFFSET]
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001217 (x.create_version, x.create_system, x.extract_version, x.reserved,
Christian Tismer59202e52013-10-21 03:59:23 +02001218 x.flag_bits, x.compress_type, t, d,
1219 x.CRC, x.compress_size, x.file_size) = centdir[1:12]
Martin v. Löwisd099b562012-05-01 14:08:22 +02001220 if x.extract_version > MAX_EXTRACT_VERSION:
1221 raise NotImplementedError("zip file version %.1f" %
1222 (x.extract_version / 10))
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001223 x.volume, x.internal_attr, x.external_attr = centdir[15:18]
1224 # Convert date/time code to (year, month, day, hour, min, sec)
Christian Heimesfdab48e2008-01-20 09:06:41 +00001225 x._raw_time = t
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001226 x.date_time = ( (d>>9)+1980, (d>>5)&0xF, d&0x1F,
Christian Tismer59202e52013-10-21 03:59:23 +02001227 t>>11, (t>>5)&0x3F, (t&0x1F) * 2 )
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001228
1229 x._decodeExtra()
Serhiy Storchaka8793b212016-10-07 22:20:50 +03001230 x.header_offset = x.header_offset + self._start_disk
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001231 self.filelist.append(x)
1232 self.NameToInfo[x.filename] = x
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001233
1234 # update total bytes read from central directory
1235 total = (total + sizeCentralDir + centdir[_CD_FILENAME_LENGTH]
1236 + centdir[_CD_EXTRA_FIELD_LENGTH]
1237 + centdir[_CD_COMMENT_LENGTH])
1238
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001239 if self.debug > 2:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001240 print("total", total)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001241
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001242
1243 def namelist(self):
Fred Drake484d7352000-10-02 21:14:52 +00001244 """Return a list of file names in the archive."""
Ezio Melotti006917e2012-04-16 21:34:24 -06001245 return [data.filename for data in self.filelist]
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001246
1247 def infolist(self):
Fred Drake484d7352000-10-02 21:14:52 +00001248 """Return a list of class ZipInfo instances for files in the
1249 archive."""
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001250 return self.filelist
1251
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001252 def printdir(self, file=None):
Fred Drake484d7352000-10-02 21:14:52 +00001253 """Print a table of contents for the zip file."""
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001254 print("%-46s %19s %12s" % ("File Name", "Modified ", "Size"),
1255 file=file)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001256 for zinfo in self.filelist:
Guido van Rossum7736b5b2008-01-15 21:44:53 +00001257 date = "%d-%02d-%02d %02d:%02d:%02d" % zinfo.date_time[:6]
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001258 print("%-46s %s %12d" % (zinfo.filename, date, zinfo.file_size),
1259 file=file)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001260
1261 def testzip(self):
Fred Drake484d7352000-10-02 21:14:52 +00001262 """Read all the files and check the CRC."""
Benjamin Peterson4cd6a952008-08-17 20:23:46 +00001263 chunk_size = 2 ** 20
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001264 for zinfo in self.filelist:
1265 try:
Benjamin Peterson4cd6a952008-08-17 20:23:46 +00001266 # Read by chunks, to avoid an OverflowError or a
1267 # MemoryError with very large embedded files.
Antoine Pitrou17babc52012-11-17 23:50:08 +01001268 with self.open(zinfo.filename, "r") as f:
1269 while f.read(chunk_size): # Check CRC-32
1270 pass
Georg Brandl4d540882010-10-28 06:42:33 +00001271 except BadZipFile:
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001272 return zinfo.filename
1273
1274 def getinfo(self, name):
Fred Drake484d7352000-10-02 21:14:52 +00001275 """Return the instance of ZipInfo given 'name'."""
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001276 info = self.NameToInfo.get(name)
1277 if info is None:
1278 raise KeyError(
1279 'There is no item named %r in the archive' % name)
1280
1281 return info
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001282
Thomas Wouterscf297e42007-02-23 15:07:44 +00001283 def setpassword(self, pwd):
1284 """Set default password for encrypted files."""
R. David Murray8d855d82010-12-21 21:53:37 +00001285 if pwd and not isinstance(pwd, bytes):
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001286 raise TypeError("pwd: expected bytes, got %s" % type(pwd).__name__)
R. David Murray8d855d82010-12-21 21:53:37 +00001287 if pwd:
1288 self.pwd = pwd
1289 else:
1290 self.pwd = None
Thomas Wouterscf297e42007-02-23 15:07:44 +00001291
R David Murrayf50b38a2012-04-12 18:44:58 -04001292 @property
1293 def comment(self):
1294 """The comment text associated with the ZIP file."""
1295 return self._comment
1296
1297 @comment.setter
1298 def comment(self, comment):
1299 if not isinstance(comment, bytes):
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001300 raise TypeError("comment: expected bytes, got %s" % type(comment).__name__)
R David Murrayf50b38a2012-04-12 18:44:58 -04001301 # check for valid comment length
Serhiy Storchaka9b7a1a12014-01-20 21:57:40 +02001302 if len(comment) > ZIP_MAX_COMMENT:
1303 import warnings
1304 warnings.warn('Archive comment is too long; truncating to %d bytes'
1305 % ZIP_MAX_COMMENT, stacklevel=2)
R David Murrayf50b38a2012-04-12 18:44:58 -04001306 comment = comment[:ZIP_MAX_COMMENT]
1307 self._comment = comment
1308 self._didModify = True
1309
Thomas Wouterscf297e42007-02-23 15:07:44 +00001310 def read(self, name, pwd=None):
Fred Drake484d7352000-10-02 21:14:52 +00001311 """Return file bytes (as a string) for name."""
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001312 with self.open(name, "r", pwd) as fp:
1313 return fp.read()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001314
Serhiy Storchakaf47fc552016-05-15 12:27:16 +03001315 def open(self, name, mode="r", pwd=None, *, force_zip64=False):
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001316 """Return file-like object for 'name'.
1317
1318 name is a string for the file name within the ZIP file, or a ZipInfo
1319 object.
1320
1321 mode should be 'r' to read a file already in the ZIP file, or 'w' to
1322 write to a file newly added to the archive.
1323
1324 pwd is the password to decrypt files (only used for reading).
1325
1326 When writing, if the file size is not known in advance but may exceed
1327 2 GiB, pass force_zip64 to use the ZIP64 format, which can handle large
1328 files. If the size is known in advance, it is best to pass a ZipInfo
1329 instance for name, with zinfo.file_size set.
1330 """
Serhiy Storchakae670be22016-06-11 19:32:44 +03001331 if mode not in {"r", "w"}:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001332 raise ValueError('open() requires mode "r" or "w"')
R. David Murray8d855d82010-12-21 21:53:37 +00001333 if pwd and not isinstance(pwd, bytes):
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001334 raise TypeError("pwd: expected bytes, got %s" % type(pwd).__name__)
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001335 if pwd and (mode == "w"):
1336 raise ValueError("pwd is only supported for reading files")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001337 if not self.fp:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001338 raise ValueError(
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001339 "Attempt to use ZIP archive that was already closed")
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001340
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001341 # Make sure we have an info object
1342 if isinstance(name, ZipInfo):
1343 # 'name' is already an info object
1344 zinfo = name
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001345 elif mode == 'w':
1346 zinfo = ZipInfo(name)
1347 zinfo.compress_type = self.compression
Guido van Rossumd8faa362007-04-27 19:54:29 +00001348 else:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001349 # Get info object for name
1350 zinfo = self.getinfo(name)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001351
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001352 if mode == 'w':
1353 return self._open_to_write(zinfo, force_zip64=force_zip64)
1354
1355 if self._writing:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001356 raise ValueError("Can't read from the ZIP file while there "
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001357 "is an open writing handle on it. "
1358 "Close the writing handle before trying to read.")
1359
1360 # Open for reading:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001361 self._fileRefCnt += 1
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001362 zef_file = _SharedFile(self.fp, zinfo.header_offset,
1363 self._fpclose, self._lock, lambda: self._writing)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001364 try:
Antoine Pitrou17babc52012-11-17 23:50:08 +01001365 # Skip the file header:
1366 fheader = zef_file.read(sizeFileHeader)
Serhiy Storchakad2b15272013-01-31 15:27:07 +02001367 if len(fheader) != sizeFileHeader:
1368 raise BadZipFile("Truncated file header")
1369 fheader = struct.unpack(structFileHeader, fheader)
1370 if fheader[_FH_SIGNATURE] != stringFileHeader:
Antoine Pitrou17babc52012-11-17 23:50:08 +01001371 raise BadZipFile("Bad magic number for file header")
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001372
Antoine Pitrou17babc52012-11-17 23:50:08 +01001373 fname = zef_file.read(fheader[_FH_FILENAME_LENGTH])
1374 if fheader[_FH_EXTRA_FIELD_LENGTH]:
1375 zef_file.read(fheader[_FH_EXTRA_FIELD_LENGTH])
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001376
Antoine Pitrou8572da52012-11-17 23:52:05 +01001377 if zinfo.flag_bits & 0x20:
1378 # Zip 2.7: compressed patched data
1379 raise NotImplementedError("compressed patched data (flag bit 5)")
Martin v. Löwis2a2ce322012-05-01 08:44:08 +02001380
Antoine Pitrou8572da52012-11-17 23:52:05 +01001381 if zinfo.flag_bits & 0x40:
1382 # strong encryption
1383 raise NotImplementedError("strong encryption (flag bit 6)")
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001384
Antoine Pitrou17babc52012-11-17 23:50:08 +01001385 if zinfo.flag_bits & 0x800:
1386 # UTF-8 filename
1387 fname_str = fname.decode("utf-8")
1388 else:
1389 fname_str = fname.decode("cp437")
Georg Brandl5ba11de2011-01-01 10:09:32 +00001390
Antoine Pitrou17babc52012-11-17 23:50:08 +01001391 if fname_str != zinfo.orig_filename:
1392 raise BadZipFile(
1393 'File name in directory %r and header %r differ.'
1394 % (zinfo.orig_filename, fname))
1395
1396 # check for encrypted flag & handle password
1397 is_encrypted = zinfo.flag_bits & 0x1
1398 zd = None
1399 if is_encrypted:
1400 if not pwd:
1401 pwd = self.pwd
1402 if not pwd:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001403 raise RuntimeError("File %r is encrypted, password "
Antoine Pitrou17babc52012-11-17 23:50:08 +01001404 "required for extraction" % name)
1405
1406 zd = _ZipDecrypter(pwd)
1407 # The first 12 bytes in the cypher stream is an encryption header
1408 # used to strengthen the algorithm. The first 11 bytes are
1409 # completely random, while the 12th contains the MSB of the CRC,
1410 # or the MSB of the file time depending on the header type
1411 # and is used to check the correctness of the password.
1412 header = zef_file.read(12)
1413 h = list(map(zd, header[0:12]))
1414 if zinfo.flag_bits & 0x8:
1415 # compare against the file type from extended local headers
1416 check_byte = (zinfo._raw_time >> 8) & 0xff
1417 else:
1418 # compare against the CRC otherwise
1419 check_byte = (zinfo.CRC >> 24) & 0xff
1420 if h[11] != check_byte:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001421 raise RuntimeError("Bad password for file %r" % name)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001422
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001423 return ZipExtFile(zef_file, mode, zinfo, zd, True)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001424 except:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001425 zef_file.close()
Antoine Pitrou17babc52012-11-17 23:50:08 +01001426 raise
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001427
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001428 def _open_to_write(self, zinfo, force_zip64=False):
1429 if force_zip64 and not self._allowZip64:
1430 raise ValueError(
1431 "force_zip64 is True, but allowZip64 was False when opening "
1432 "the ZIP file."
1433 )
1434 if self._writing:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001435 raise ValueError("Can't write to the ZIP file while there is "
1436 "another write handle open on it. "
1437 "Close the first handle before opening another.")
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001438
1439 # Sizes and CRC are overwritten with correct data after processing the file
1440 if not hasattr(zinfo, 'file_size'):
1441 zinfo.file_size = 0
1442 zinfo.compress_size = 0
1443 zinfo.CRC = 0
1444
1445 zinfo.flag_bits = 0x00
1446 if zinfo.compress_type == ZIP_LZMA:
1447 # Compressed data includes an end-of-stream (EOS) marker
1448 zinfo.flag_bits |= 0x02
1449 if not self._seekable:
1450 zinfo.flag_bits |= 0x08
1451
1452 if not zinfo.external_attr:
1453 zinfo.external_attr = 0o600 << 16 # permissions: ?rw-------
1454
1455 # Compressed size can be larger than uncompressed size
1456 zip64 = self._allowZip64 and \
1457 (force_zip64 or zinfo.file_size * 1.05 > ZIP64_LIMIT)
1458
1459 if self._seekable:
1460 self.fp.seek(self.start_dir)
1461 zinfo.header_offset = self.fp.tell()
1462
1463 self._writecheck(zinfo)
1464 self._didModify = True
1465
1466 self.fp.write(zinfo.FileHeader(zip64))
1467
1468 self._writing = True
1469 return _ZipWriteFile(self, zinfo, zip64)
1470
Christian Heimes790c8232008-01-07 21:14:23 +00001471 def extract(self, member, path=None, pwd=None):
1472 """Extract a member from the archive to the current working directory,
1473 using its full name. Its file information is extracted as accurately
1474 as possible. `member' may be a filename or a ZipInfo object. You can
1475 specify a different directory using `path'.
1476 """
Christian Heimes790c8232008-01-07 21:14:23 +00001477 if path is None:
1478 path = os.getcwd()
Serhiy Storchakaeb65edd2017-03-08 15:45:43 +02001479 else:
1480 path = os.fspath(path)
Christian Heimes790c8232008-01-07 21:14:23 +00001481
1482 return self._extract_member(member, path, pwd)
1483
1484 def extractall(self, path=None, members=None, pwd=None):
1485 """Extract all members from the archive to the current working
1486 directory. `path' specifies a different directory to extract to.
1487 `members' is optional and must be a subset of the list returned
1488 by namelist().
1489 """
1490 if members is None:
1491 members = self.namelist()
1492
Serhiy Storchakaeb65edd2017-03-08 15:45:43 +02001493 if path is None:
1494 path = os.getcwd()
1495 else:
1496 path = os.fspath(path)
1497
Christian Heimes790c8232008-01-07 21:14:23 +00001498 for zipinfo in members:
Serhiy Storchakaeb65edd2017-03-08 15:45:43 +02001499 self._extract_member(zipinfo, path, pwd)
Christian Heimes790c8232008-01-07 21:14:23 +00001500
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001501 @classmethod
1502 def _sanitize_windows_name(cls, arcname, pathsep):
1503 """Replace bad characters and remove trailing dots from parts."""
1504 table = cls._windows_illegal_name_trans_table
1505 if not table:
1506 illegal = ':<>|"?*'
1507 table = str.maketrans(illegal, '_' * len(illegal))
1508 cls._windows_illegal_name_trans_table = table
1509 arcname = arcname.translate(table)
1510 # remove trailing dots
1511 arcname = (x.rstrip('.') for x in arcname.split(pathsep))
1512 # rejoin, removing empty parts.
1513 arcname = pathsep.join(x for x in arcname if x)
1514 return arcname
1515
Christian Heimes790c8232008-01-07 21:14:23 +00001516 def _extract_member(self, member, targetpath, pwd):
1517 """Extract the ZipInfo object 'member' to a physical
1518 file on the path targetpath.
1519 """
Serhiy Storchakaeb65edd2017-03-08 15:45:43 +02001520 if not isinstance(member, ZipInfo):
1521 member = self.getinfo(member)
1522
Christian Heimes790c8232008-01-07 21:14:23 +00001523 # build the destination pathname, replacing
1524 # forward slashes to platform specific separators.
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001525 arcname = member.filename.replace('/', os.path.sep)
Christian Heimes790c8232008-01-07 21:14:23 +00001526
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001527 if os.path.altsep:
1528 arcname = arcname.replace(os.path.altsep, os.path.sep)
1529 # interpret absolute pathname as relative, remove drive letter or
1530 # UNC path, redundant separators, "." and ".." components.
1531 arcname = os.path.splitdrive(arcname)[1]
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001532 invalid_path_parts = ('', os.path.curdir, os.path.pardir)
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001533 arcname = os.path.sep.join(x for x in arcname.split(os.path.sep)
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001534 if x not in invalid_path_parts)
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001535 if os.path.sep == '\\':
Serhiy Storchakae5e64442013-02-02 19:50:59 +02001536 # filter illegal characters on Windows
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001537 arcname = self._sanitize_windows_name(arcname, os.path.sep)
Christian Heimes790c8232008-01-07 21:14:23 +00001538
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001539 targetpath = os.path.join(targetpath, arcname)
Christian Heimes790c8232008-01-07 21:14:23 +00001540 targetpath = os.path.normpath(targetpath)
1541
1542 # Create all upper directories if necessary.
1543 upperdirs = os.path.dirname(targetpath)
1544 if upperdirs and not os.path.exists(upperdirs):
1545 os.makedirs(upperdirs)
1546
Serhiy Storchaka503f9082016-02-08 00:02:25 +02001547 if member.is_dir():
Martin v. Löwis70ccd162009-05-24 19:47:22 +00001548 if not os.path.isdir(targetpath):
1549 os.mkdir(targetpath)
Martin v. Löwis59e47792009-01-24 14:10:07 +00001550 return targetpath
1551
Antoine Pitrou17babc52012-11-17 23:50:08 +01001552 with self.open(member, pwd=pwd) as source, \
1553 open(targetpath, "wb") as target:
1554 shutil.copyfileobj(source, target)
Christian Heimes790c8232008-01-07 21:14:23 +00001555
1556 return targetpath
1557
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001558 def _writecheck(self, zinfo):
Fred Drake484d7352000-10-02 21:14:52 +00001559 """Check for errors before writing a file to the archive."""
Raymond Hettinger54f02222002-06-01 14:18:47 +00001560 if zinfo.filename in self.NameToInfo:
Serhiy Storchaka9b7a1a12014-01-20 21:57:40 +02001561 import warnings
1562 warnings.warn('Duplicate name: %r' % zinfo.filename, stacklevel=3)
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001563 if self.mode not in ('w', 'x', 'a'):
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001564 raise ValueError("write() requires mode 'w', 'x', or 'a'")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001565 if not self.fp:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001566 raise ValueError(
Christian Tismer59202e52013-10-21 03:59:23 +02001567 "Attempt to write ZIP archive that was already closed")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001568 _check_compression(zinfo.compress_type)
Serhiy Storchakacfbb3942014-09-23 21:34:24 +03001569 if not self._allowZip64:
1570 requires_zip64 = None
1571 if len(self.filelist) >= ZIP_FILECOUNT_LIMIT:
1572 requires_zip64 = "Files count"
1573 elif zinfo.file_size > ZIP64_LIMIT:
1574 requires_zip64 = "Filesize"
1575 elif zinfo.header_offset > ZIP64_LIMIT:
1576 requires_zip64 = "Zipfile size"
1577 if requires_zip64:
1578 raise LargeZipFile(requires_zip64 +
1579 " would require ZIP64 extensions")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001580
1581 def write(self, filename, arcname=None, compress_type=None):
Fred Drake484d7352000-10-02 21:14:52 +00001582 """Put the bytes from filename into the archive under the name
1583 arcname."""
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001584 if not self.fp:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001585 raise ValueError(
Christian Tismer59202e52013-10-21 03:59:23 +02001586 "Attempt to write to ZIP archive that was already closed")
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001587 if self._writing:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001588 raise ValueError(
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001589 "Can't write to ZIP archive while an open writing handle exists"
1590 )
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001591
Serhiy Storchaka503f9082016-02-08 00:02:25 +02001592 zinfo = ZipInfo.from_file(filename, arcname)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001593
Serhiy Storchaka503f9082016-02-08 00:02:25 +02001594 if zinfo.is_dir():
1595 zinfo.compress_size = 0
1596 zinfo.CRC = 0
1597 else:
1598 if compress_type is not None:
1599 zinfo.compress_type = compress_type
1600 else:
1601 zinfo.compress_type = self.compression
1602
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001603 if zinfo.is_dir():
1604 with self._lock:
1605 if self._seekable:
1606 self.fp.seek(self.start_dir)
1607 zinfo.header_offset = self.fp.tell() # Start of header bytes
1608 if zinfo.compress_type == ZIP_LZMA:
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001609 # Compressed data includes an end-of-stream (EOS) marker
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001610 zinfo.flag_bits |= 0x02
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001611
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001612 self._writecheck(zinfo)
1613 self._didModify = True
Martin v. Löwis59e47792009-01-24 14:10:07 +00001614
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001615 self.filelist.append(zinfo)
1616 self.NameToInfo[zinfo.filename] = zinfo
1617 self.fp.write(zinfo.FileHeader(False))
1618 self.start_dir = self.fp.tell()
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001619 else:
1620 with open(filename, "rb") as src, self.open(zinfo, 'w') as dest:
1621 shutil.copyfileobj(src, dest, 1024*8)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001622
Ronald Oussorenee5c8852010-02-07 20:24:02 +00001623 def writestr(self, zinfo_or_arcname, data, compress_type=None):
Guido van Rossum85825dc2007-08-27 17:03:28 +00001624 """Write a file into the archive. The contents is 'data', which
1625 may be either a 'str' or a 'bytes' instance; if it is a 'str',
1626 it is encoded as UTF-8 first.
1627 'zinfo_or_arcname' is either a ZipInfo instance or
Just van Rossumb083cb32002-12-12 12:23:32 +00001628 the name of the file in the archive."""
Guido van Rossum85825dc2007-08-27 17:03:28 +00001629 if isinstance(data, str):
1630 data = data.encode("utf-8")
Just van Rossumb083cb32002-12-12 12:23:32 +00001631 if not isinstance(zinfo_or_arcname, ZipInfo):
1632 zinfo = ZipInfo(filename=zinfo_or_arcname,
Guido van Rossum7736b5b2008-01-15 21:44:53 +00001633 date_time=time.localtime(time.time())[:6])
Just van Rossumb083cb32002-12-12 12:23:32 +00001634 zinfo.compress_type = self.compression
Serhiy Storchaka46a34922014-09-23 22:40:23 +03001635 if zinfo.filename[-1] == '/':
1636 zinfo.external_attr = 0o40775 << 16 # drwxrwxr-x
1637 zinfo.external_attr |= 0x10 # MS-DOS directory flag
1638 else:
1639 zinfo.external_attr = 0o600 << 16 # ?rw-------
Just van Rossumb083cb32002-12-12 12:23:32 +00001640 else:
1641 zinfo = zinfo_or_arcname
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001642
1643 if not self.fp:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001644 raise ValueError(
Christian Tismer59202e52013-10-21 03:59:23 +02001645 "Attempt to write to ZIP archive that was already closed")
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001646 if self._writing:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001647 raise ValueError(
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001648 "Can't write to ZIP archive while an open writing handle exists."
1649 )
1650
1651 if compress_type is not None:
1652 zinfo.compress_type = compress_type
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001653
Guido van Rossum85825dc2007-08-27 17:03:28 +00001654 zinfo.file_size = len(data) # Uncompressed size
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001655 with self._lock:
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001656 with self.open(zinfo, mode='w') as dest:
1657 dest.write(data)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001658
1659 def __del__(self):
Fred Drake484d7352000-10-02 21:14:52 +00001660 """Call the "close()" method in case the user forgot."""
Tim Petersd15f8bb2001-11-28 23:16:40 +00001661 self.close()
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001662
1663 def close(self):
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001664 """Close the file, and for mode 'w', 'x' and 'a' write the ending
Fred Drake484d7352000-10-02 21:14:52 +00001665 records."""
Tim Petersd15f8bb2001-11-28 23:16:40 +00001666 if self.fp is None:
1667 return
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001668
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001669 if self._writing:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001670 raise ValueError("Can't close the ZIP file while there is "
1671 "an open writing handle on it. "
1672 "Close the writing handle before closing the zip.")
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001673
Antoine Pitrou17babc52012-11-17 23:50:08 +01001674 try:
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001675 if self.mode in ('w', 'x', 'a') and self._didModify: # write ending records
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001676 with self._lock:
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001677 if self._seekable:
Serhiy Storchakaa14f7d22015-01-26 14:01:27 +02001678 self.fp.seek(self.start_dir)
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001679 self._write_end_record()
Antoine Pitrou17babc52012-11-17 23:50:08 +01001680 finally:
1681 fp = self.fp
1682 self.fp = None
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001683 self._fpclose(fp)
1684
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001685 def _write_end_record(self):
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001686 for zinfo in self.filelist: # write central directory
1687 dt = zinfo.date_time
1688 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
1689 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
1690 extra = []
1691 if zinfo.file_size > ZIP64_LIMIT \
1692 or zinfo.compress_size > ZIP64_LIMIT:
1693 extra.append(zinfo.file_size)
1694 extra.append(zinfo.compress_size)
1695 file_size = 0xffffffff
1696 compress_size = 0xffffffff
1697 else:
1698 file_size = zinfo.file_size
1699 compress_size = zinfo.compress_size
1700
Serhiy Storchaka8793b212016-10-07 22:20:50 +03001701 header_offset = zinfo.header_offset - self._start_disk
1702 if header_offset > ZIP64_LIMIT:
1703 extra.append(header_offset)
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001704 header_offset = 0xffffffff
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001705
1706 extra_data = zinfo.extra
1707 min_version = 0
1708 if extra:
1709 # Append a ZIP64 field to the extra's
1710 extra_data = struct.pack(
1711 '<HH' + 'Q'*len(extra),
1712 1, 8*len(extra), *extra) + extra_data
1713
1714 min_version = ZIP64_VERSION
1715
1716 if zinfo.compress_type == ZIP_BZIP2:
1717 min_version = max(BZIP2_VERSION, min_version)
1718 elif zinfo.compress_type == ZIP_LZMA:
1719 min_version = max(LZMA_VERSION, min_version)
1720
1721 extract_version = max(min_version, zinfo.extract_version)
1722 create_version = max(min_version, zinfo.create_version)
1723 try:
1724 filename, flag_bits = zinfo._encodeFilenameFlags()
1725 centdir = struct.pack(structCentralDir,
1726 stringCentralDir, create_version,
1727 zinfo.create_system, extract_version, zinfo.reserved,
1728 flag_bits, zinfo.compress_type, dostime, dosdate,
1729 zinfo.CRC, compress_size, file_size,
1730 len(filename), len(extra_data), len(zinfo.comment),
1731 0, zinfo.internal_attr, zinfo.external_attr,
1732 header_offset)
1733 except DeprecationWarning:
1734 print((structCentralDir, stringCentralDir, create_version,
1735 zinfo.create_system, extract_version, zinfo.reserved,
1736 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
1737 zinfo.CRC, compress_size, file_size,
1738 len(zinfo.filename), len(extra_data), len(zinfo.comment),
1739 0, zinfo.internal_attr, zinfo.external_attr,
1740 header_offset), file=sys.stderr)
1741 raise
1742 self.fp.write(centdir)
1743 self.fp.write(filename)
1744 self.fp.write(extra_data)
1745 self.fp.write(zinfo.comment)
1746
1747 pos2 = self.fp.tell()
1748 # Write end-of-zip-archive record
1749 centDirCount = len(self.filelist)
1750 centDirSize = pos2 - self.start_dir
Serhiy Storchaka8793b212016-10-07 22:20:50 +03001751 centDirOffset = self.start_dir - self._start_disk
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001752 requires_zip64 = None
1753 if centDirCount > ZIP_FILECOUNT_LIMIT:
1754 requires_zip64 = "Files count"
1755 elif centDirOffset > ZIP64_LIMIT:
1756 requires_zip64 = "Central directory offset"
1757 elif centDirSize > ZIP64_LIMIT:
1758 requires_zip64 = "Central directory size"
1759 if requires_zip64:
1760 # Need to write the ZIP64 end-of-archive records
1761 if not self._allowZip64:
1762 raise LargeZipFile(requires_zip64 +
1763 " would require ZIP64 extensions")
1764 zip64endrec = struct.pack(
1765 structEndArchive64, stringEndArchive64,
1766 44, 45, 45, 0, 0, centDirCount, centDirCount,
1767 centDirSize, centDirOffset)
1768 self.fp.write(zip64endrec)
1769
1770 zip64locrec = struct.pack(
1771 structEndArchive64Locator,
1772 stringEndArchive64Locator, 0, pos2, 1)
1773 self.fp.write(zip64locrec)
1774 centDirCount = min(centDirCount, 0xFFFF)
1775 centDirSize = min(centDirSize, 0xFFFFFFFF)
1776 centDirOffset = min(centDirOffset, 0xFFFFFFFF)
1777
1778 endrec = struct.pack(structEndArchive, stringEndArchive,
1779 0, 0, centDirCount, centDirCount,
1780 centDirSize, centDirOffset, len(self._comment))
1781 self.fp.write(endrec)
1782 self.fp.write(self._comment)
1783 self.fp.flush()
1784
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001785 def _fpclose(self, fp):
1786 assert self._fileRefCnt > 0
1787 self._fileRefCnt -= 1
1788 if not self._fileRefCnt and not self._filePassed:
1789 fp.close()
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001790
1791
1792class PyZipFile(ZipFile):
Fred Drake484d7352000-10-02 21:14:52 +00001793 """Class to create ZIP archives with Python library files and packages."""
1794
Georg Brandl8334fd92010-12-04 10:26:46 +00001795 def __init__(self, file, mode="r", compression=ZIP_STORED,
Serhiy Storchaka235c5e02013-11-23 15:55:38 +02001796 allowZip64=True, optimize=-1):
Georg Brandl8334fd92010-12-04 10:26:46 +00001797 ZipFile.__init__(self, file, mode=mode, compression=compression,
1798 allowZip64=allowZip64)
1799 self._optimize = optimize
1800
Christian Tismer59202e52013-10-21 03:59:23 +02001801 def writepy(self, pathname, basename="", filterfunc=None):
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001802 """Add all files from "pathname" to the ZIP archive.
1803
Fred Drake484d7352000-10-02 21:14:52 +00001804 If pathname is a package directory, search the directory and
1805 all package subdirectories recursively for all *.py and enter
1806 the modules into the archive. If pathname is a plain
1807 directory, listdir *.py and enter all modules. Else, pathname
1808 must be a Python *.py file and the module will be put into the
Brett Cannonf299abd2015-04-13 14:21:02 -04001809 archive. Added modules are always module.pyc.
Fred Drake484d7352000-10-02 21:14:52 +00001810 This method will compile the module.py into module.pyc if
1811 necessary.
Christian Tismer59202e52013-10-21 03:59:23 +02001812 If filterfunc(pathname) is given, it is called with every argument.
1813 When it is False, the file or directory is skipped.
Fred Drake484d7352000-10-02 21:14:52 +00001814 """
Serhiy Storchakaeb65edd2017-03-08 15:45:43 +02001815 pathname = os.fspath(pathname)
Christian Tismer59202e52013-10-21 03:59:23 +02001816 if filterfunc and not filterfunc(pathname):
1817 if self.debug:
Christian Tismer410d9312013-10-22 04:09:28 +02001818 label = 'path' if os.path.isdir(pathname) else 'file'
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001819 print('%s %r skipped by filterfunc' % (label, pathname))
Christian Tismer59202e52013-10-21 03:59:23 +02001820 return
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001821 dir, name = os.path.split(pathname)
1822 if os.path.isdir(pathname):
1823 initname = os.path.join(pathname, "__init__.py")
1824 if os.path.isfile(initname):
1825 # This is a package directory, add it
1826 if basename:
1827 basename = "%s/%s" % (basename, name)
1828 else:
1829 basename = name
1830 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001831 print("Adding package in", pathname, "as", basename)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001832 fname, arcname = self._get_codename(initname[0:-3], basename)
1833 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001834 print("Adding", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001835 self.write(fname, arcname)
1836 dirlist = os.listdir(pathname)
1837 dirlist.remove("__init__.py")
1838 # Add all *.py files and package subdirectories
1839 for filename in dirlist:
1840 path = os.path.join(pathname, filename)
1841 root, ext = os.path.splitext(filename)
1842 if os.path.isdir(path):
1843 if os.path.isfile(os.path.join(path, "__init__.py")):
1844 # This is a package directory, add it
Christian Tismer59202e52013-10-21 03:59:23 +02001845 self.writepy(path, basename,
1846 filterfunc=filterfunc) # Recursive call
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001847 elif ext == ".py":
Christian Tismer410d9312013-10-22 04:09:28 +02001848 if filterfunc and not filterfunc(path):
1849 if self.debug:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001850 print('file %r skipped by filterfunc' % path)
Christian Tismer410d9312013-10-22 04:09:28 +02001851 continue
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001852 fname, arcname = self._get_codename(path[0:-3],
Christian Tismer59202e52013-10-21 03:59:23 +02001853 basename)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001854 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001855 print("Adding", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001856 self.write(fname, arcname)
1857 else:
1858 # This is NOT a package directory, add its files at top level
1859 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001860 print("Adding files from directory", pathname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001861 for filename in os.listdir(pathname):
1862 path = os.path.join(pathname, filename)
1863 root, ext = os.path.splitext(filename)
1864 if ext == ".py":
Christian Tismer410d9312013-10-22 04:09:28 +02001865 if filterfunc and not filterfunc(path):
1866 if self.debug:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001867 print('file %r skipped by filterfunc' % path)
Christian Tismer410d9312013-10-22 04:09:28 +02001868 continue
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001869 fname, arcname = self._get_codename(path[0:-3],
Christian Tismer59202e52013-10-21 03:59:23 +02001870 basename)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001871 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001872 print("Adding", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001873 self.write(fname, arcname)
1874 else:
1875 if pathname[-3:] != ".py":
Collin Winterce36ad82007-08-30 01:19:48 +00001876 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +02001877 'Files added with writepy() must end with ".py"')
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001878 fname, arcname = self._get_codename(pathname[0:-3], basename)
1879 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001880 print("Adding file", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001881 self.write(fname, arcname)
1882
1883 def _get_codename(self, pathname, basename):
1884 """Return (filename, archivename) for the path.
1885
Fred Drake484d7352000-10-02 21:14:52 +00001886 Given a module name path, return the correct file path and
1887 archive name, compiling if necessary. For example, given
1888 /python/lib/string, return (/python/lib/string.pyc, string).
1889 """
Georg Brandl8334fd92010-12-04 10:26:46 +00001890 def _compile(file, optimize=-1):
1891 import py_compile
1892 if self.debug:
1893 print("Compiling", file)
1894 try:
1895 py_compile.compile(file, doraise=True, optimize=optimize)
Serhiy Storchaka45c43752013-01-29 20:10:28 +02001896 except py_compile.PyCompileError as err:
Georg Brandl8334fd92010-12-04 10:26:46 +00001897 print(err.msg)
1898 return False
1899 return True
1900
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001901 file_py = pathname + ".py"
1902 file_pyc = pathname + ".pyc"
Brett Cannonf299abd2015-04-13 14:21:02 -04001903 pycache_opt0 = importlib.util.cache_from_source(file_py, optimization='')
1904 pycache_opt1 = importlib.util.cache_from_source(file_py, optimization=1)
1905 pycache_opt2 = importlib.util.cache_from_source(file_py, optimization=2)
Georg Brandl8334fd92010-12-04 10:26:46 +00001906 if self._optimize == -1:
1907 # legacy mode: use whatever file is present
Brett Cannonf299abd2015-04-13 14:21:02 -04001908 if (os.path.isfile(file_pyc) and
Georg Brandl8334fd92010-12-04 10:26:46 +00001909 os.stat(file_pyc).st_mtime >= os.stat(file_py).st_mtime):
1910 # Use .pyc file.
1911 arcname = fname = file_pyc
Brett Cannonf299abd2015-04-13 14:21:02 -04001912 elif (os.path.isfile(pycache_opt0) and
1913 os.stat(pycache_opt0).st_mtime >= os.stat(file_py).st_mtime):
Georg Brandl8334fd92010-12-04 10:26:46 +00001914 # Use the __pycache__/*.pyc file, but write it to the legacy pyc
1915 # file name in the archive.
Brett Cannonf299abd2015-04-13 14:21:02 -04001916 fname = pycache_opt0
Georg Brandl8334fd92010-12-04 10:26:46 +00001917 arcname = file_pyc
Brett Cannonf299abd2015-04-13 14:21:02 -04001918 elif (os.path.isfile(pycache_opt1) and
1919 os.stat(pycache_opt1).st_mtime >= os.stat(file_py).st_mtime):
1920 # Use the __pycache__/*.pyc file, but write it to the legacy pyc
Georg Brandl8334fd92010-12-04 10:26:46 +00001921 # file name in the archive.
Brett Cannonf299abd2015-04-13 14:21:02 -04001922 fname = pycache_opt1
1923 arcname = file_pyc
1924 elif (os.path.isfile(pycache_opt2) and
1925 os.stat(pycache_opt2).st_mtime >= os.stat(file_py).st_mtime):
1926 # Use the __pycache__/*.pyc file, but write it to the legacy pyc
1927 # file name in the archive.
1928 fname = pycache_opt2
1929 arcname = file_pyc
Barry Warsaw28a691b2010-04-17 00:19:56 +00001930 else:
Georg Brandl8334fd92010-12-04 10:26:46 +00001931 # Compile py into PEP 3147 pyc file.
1932 if _compile(file_py):
Brett Cannonf299abd2015-04-13 14:21:02 -04001933 if sys.flags.optimize == 0:
1934 fname = pycache_opt0
1935 elif sys.flags.optimize == 1:
1936 fname = pycache_opt1
1937 else:
1938 fname = pycache_opt2
1939 arcname = file_pyc
Georg Brandl8334fd92010-12-04 10:26:46 +00001940 else:
1941 fname = arcname = file_py
1942 else:
1943 # new mode: use given optimization level
1944 if self._optimize == 0:
Brett Cannonf299abd2015-04-13 14:21:02 -04001945 fname = pycache_opt0
Georg Brandl8334fd92010-12-04 10:26:46 +00001946 arcname = file_pyc
1947 else:
Brett Cannonf299abd2015-04-13 14:21:02 -04001948 arcname = file_pyc
1949 if self._optimize == 1:
1950 fname = pycache_opt1
1951 elif self._optimize == 2:
1952 fname = pycache_opt2
1953 else:
1954 msg = "invalid value for 'optimize': {!r}".format(self._optimize)
1955 raise ValueError(msg)
Georg Brandl8334fd92010-12-04 10:26:46 +00001956 if not (os.path.isfile(fname) and
1957 os.stat(fname).st_mtime >= os.stat(file_py).st_mtime):
1958 if not _compile(file_py, optimize=self._optimize):
1959 fname = arcname = file_py
Barry Warsaw28a691b2010-04-17 00:19:56 +00001960 archivename = os.path.split(arcname)[1]
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001961 if basename:
1962 archivename = "%s/%s" % (basename, archivename)
1963 return (fname, archivename)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001964
1965
1966def main(args = None):
1967 import textwrap
1968 USAGE=textwrap.dedent("""\
1969 Usage:
1970 zipfile.py -l zipfile.zip # Show listing of a zipfile
1971 zipfile.py -t zipfile.zip # Test if a zipfile is valid
1972 zipfile.py -e zipfile.zip target # Extract zipfile into target dir
1973 zipfile.py -c zipfile.zip src ... # Create zipfile from sources
1974 """)
1975 if args is None:
1976 args = sys.argv[1:]
1977
1978 if not args or args[0] not in ('-l', '-c', '-e', '-t'):
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001979 print(USAGE)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001980 sys.exit(1)
1981
1982 if args[0] == '-l':
1983 if len(args) != 2:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001984 print(USAGE)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001985 sys.exit(1)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001986 with ZipFile(args[1], 'r') as zf:
1987 zf.printdir()
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001988
1989 elif args[0] == '-t':
1990 if len(args) != 2:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001991 print(USAGE)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001992 sys.exit(1)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001993 with ZipFile(args[1], 'r') as zf:
1994 badfile = zf.testzip()
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001995 if badfile:
1996 print("The following enclosed file is corrupted: {!r}".format(badfile))
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001997 print("Done testing")
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001998
1999 elif args[0] == '-e':
2000 if len(args) != 3:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00002001 print(USAGE)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002002 sys.exit(1)
2003
Antoine Pitrou17babc52012-11-17 23:50:08 +01002004 with ZipFile(args[1], 'r') as zf:
Serhiy Storchaka97f17ff2014-08-17 15:14:48 +03002005 zf.extractall(args[2])
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002006
2007 elif args[0] == '-c':
2008 if len(args) < 3:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00002009 print(USAGE)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002010 sys.exit(1)
2011
2012 def addToZip(zf, path, zippath):
2013 if os.path.isfile(path):
2014 zf.write(path, zippath, ZIP_DEFLATED)
2015 elif os.path.isdir(path):
Serhiy Storchaka518e71b2014-10-04 13:39:34 +03002016 if zippath:
2017 zf.write(path, zippath)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002018 for nm in os.listdir(path):
2019 addToZip(zf,
Christian Tismer59202e52013-10-21 03:59:23 +02002020 os.path.join(path, nm), os.path.join(zippath, nm))
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002021 # else: ignore
2022
Serhiy Storchaka235c5e02013-11-23 15:55:38 +02002023 with ZipFile(args[1], 'w') as zf:
Serhiy Storchaka518e71b2014-10-04 13:39:34 +03002024 for path in args[2:]:
2025 zippath = os.path.basename(path)
2026 if not zippath:
2027 zippath = os.path.basename(os.path.dirname(path))
2028 if zippath in ('', os.curdir, os.pardir):
2029 zippath = ''
2030 addToZip(zf, path, zippath)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002031
2032if __name__ == "__main__":
2033 main()