blob: cc46a6c1d9c20d7336a4881ec14dfd685aa9ea5b [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
Brett Cannonb57a0852013-06-15 17:32:30 -04008import importlib.util
Barry Warsaw28a691b2010-04-17 00:19:56 +00009import sys
10import time
11import stat
12import shutil
13import struct
14import binascii
15
Serhiy Storchaka9e777732015-10-10 19:43:32 +030016try:
17 import threading
18except ImportError:
19 import dummy_threading as threading
Guido van Rossum32abe6f2000-03-31 17:30:02 +000020
21try:
Tim Peterse1190062001-01-15 03:34:38 +000022 import zlib # We may need its compression method
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000023 crc32 = zlib.crc32
Brett Cannon260fbe82013-07-04 18:16:15 -040024except ImportError:
Guido van Rossum32abe6f2000-03-31 17:30:02 +000025 zlib = None
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000026 crc32 = binascii.crc32
Guido van Rossum32abe6f2000-03-31 17:30:02 +000027
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020028try:
29 import bz2 # We may need its compression method
Brett Cannon260fbe82013-07-04 18:16:15 -040030except ImportError:
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020031 bz2 = None
32
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020033try:
34 import lzma # We may need its compression method
Brett Cannon260fbe82013-07-04 18:16:15 -040035except ImportError:
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020036 lzma = None
37
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020038__all__ = ["BadZipFile", "BadZipfile", "error",
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020039 "ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2", "ZIP_LZMA",
Georg Brandl4d540882010-10-28 06:42:33 +000040 "is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile"]
Skip Montanaro40fc1602001-03-01 04:27:19 +000041
Georg Brandl4d540882010-10-28 06:42:33 +000042class BadZipFile(Exception):
Guido van Rossum32abe6f2000-03-31 17:30:02 +000043 pass
Thomas Wouters0e3f5912006-08-11 14:57:12 +000044
45
46class LargeZipFile(Exception):
47 """
48 Raised when writing a zipfile, the zipfile requires ZIP64 extensions
49 and those extensions are disabled.
50 """
51
Georg Brandl4d540882010-10-28 06:42:33 +000052error = BadZipfile = BadZipFile # Pre-3.2 compatibility names
53
Guido van Rossum32abe6f2000-03-31 17:30:02 +000054
Amaury Forgeot d'Arc0c3f8a42009-01-17 16:42:26 +000055ZIP64_LIMIT = (1 << 31) - 1
Serhiy Storchakacfbb3942014-09-23 21:34:24 +030056ZIP_FILECOUNT_LIMIT = (1 << 16) - 1
Martin v. Löwisb09b8442008-07-03 14:13:42 +000057ZIP_MAX_COMMENT = (1 << 16) - 1
Thomas Wouters0e3f5912006-08-11 14:57:12 +000058
Guido van Rossum32abe6f2000-03-31 17:30:02 +000059# constants for Zip file compression methods
60ZIP_STORED = 0
61ZIP_DEFLATED = 8
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020062ZIP_BZIP2 = 12
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020063ZIP_LZMA = 14
Guido van Rossum32abe6f2000-03-31 17:30:02 +000064# Other ZIP compression methods not supported
65
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020066DEFAULT_VERSION = 20
67ZIP64_VERSION = 45
68BZIP2_VERSION = 46
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020069LZMA_VERSION = 63
Martin v. Löwisd099b562012-05-01 14:08:22 +020070# we recognize (but not necessarily support) all features up to that version
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +020071MAX_EXTRACT_VERSION = 63
Martin v. Löwisf6b16a42012-05-01 07:58:44 +020072
Martin v. Löwisb09b8442008-07-03 14:13:42 +000073# Below are some formats and associated data for reading/writing headers using
74# the struct module. The names and structures of headers/records are those used
75# in the PKWARE description of the ZIP file format:
76# http://www.pkware.com/documents/casestudies/APPNOTE.TXT
77# (URL valid as of January 2008)
Thomas Wouters0e3f5912006-08-11 14:57:12 +000078
Martin v. Löwisb09b8442008-07-03 14:13:42 +000079# The "end of central directory" structure, magic number, size, and indices
80# (section V.I in the format document)
Georg Brandl2ee470f2008-07-16 12:55:28 +000081structEndArchive = b"<4s4H2LH"
82stringEndArchive = b"PK\005\006"
83sizeEndCentDir = struct.calcsize(structEndArchive)
Martin v. Löwisb09b8442008-07-03 14:13:42 +000084
85_ECD_SIGNATURE = 0
86_ECD_DISK_NUMBER = 1
87_ECD_DISK_START = 2
88_ECD_ENTRIES_THIS_DISK = 3
89_ECD_ENTRIES_TOTAL = 4
90_ECD_SIZE = 5
91_ECD_OFFSET = 6
92_ECD_COMMENT_SIZE = 7
93# These last two indices are not part of the structure as defined in the
94# spec, but they are used internally by this module as a convenience
95_ECD_COMMENT = 8
96_ECD_LOCATION = 9
97
98# The "central directory" structure, magic number, size, and indices
99# of entries in the structure (section V.F in the format document)
100structCentralDir = "<4s4B4HL2L5H2L"
Georg Brandl2ee470f2008-07-16 12:55:28 +0000101stringCentralDir = b"PK\001\002"
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000102sizeCentralDir = struct.calcsize(structCentralDir)
103
Fred Drake3e038e52001-02-28 17:56:26 +0000104# indexes of entries in the central directory structure
105_CD_SIGNATURE = 0
106_CD_CREATE_VERSION = 1
107_CD_CREATE_SYSTEM = 2
108_CD_EXTRACT_VERSION = 3
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000109_CD_EXTRACT_SYSTEM = 4
Fred Drake3e038e52001-02-28 17:56:26 +0000110_CD_FLAG_BITS = 5
111_CD_COMPRESS_TYPE = 6
112_CD_TIME = 7
113_CD_DATE = 8
114_CD_CRC = 9
115_CD_COMPRESSED_SIZE = 10
116_CD_UNCOMPRESSED_SIZE = 11
117_CD_FILENAME_LENGTH = 12
118_CD_EXTRA_FIELD_LENGTH = 13
119_CD_COMMENT_LENGTH = 14
120_CD_DISK_NUMBER_START = 15
121_CD_INTERNAL_FILE_ATTRIBUTES = 16
122_CD_EXTERNAL_FILE_ATTRIBUTES = 17
123_CD_LOCAL_HEADER_OFFSET = 18
124
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000125# The "local file header" structure, magic number, size, and indices
126# (section V.A in the format document)
127structFileHeader = "<4s2B4HL2L2H"
Georg Brandl2ee470f2008-07-16 12:55:28 +0000128stringFileHeader = b"PK\003\004"
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000129sizeFileHeader = struct.calcsize(structFileHeader)
130
Fred Drake3e038e52001-02-28 17:56:26 +0000131_FH_SIGNATURE = 0
132_FH_EXTRACT_VERSION = 1
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000133_FH_EXTRACT_SYSTEM = 2
Fred Drake3e038e52001-02-28 17:56:26 +0000134_FH_GENERAL_PURPOSE_FLAG_BITS = 3
135_FH_COMPRESSION_METHOD = 4
136_FH_LAST_MOD_TIME = 5
137_FH_LAST_MOD_DATE = 6
138_FH_CRC = 7
139_FH_COMPRESSED_SIZE = 8
140_FH_UNCOMPRESSED_SIZE = 9
141_FH_FILENAME_LENGTH = 10
142_FH_EXTRA_FIELD_LENGTH = 11
143
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000144# The "Zip64 end of central directory locator" structure, magic number, and size
Georg Brandl2ee470f2008-07-16 12:55:28 +0000145structEndArchive64Locator = "<4sLQL"
146stringEndArchive64Locator = b"PK\x06\x07"
147sizeEndCentDir64Locator = struct.calcsize(structEndArchive64Locator)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000148
149# The "Zip64 end of central directory" record, magic number, size, and indices
150# (section V.G in the format document)
Georg Brandl2ee470f2008-07-16 12:55:28 +0000151structEndArchive64 = "<4sQ2H2L4Q"
152stringEndArchive64 = b"PK\x06\x06"
153sizeEndCentDir64 = struct.calcsize(structEndArchive64)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000154
155_CD64_SIGNATURE = 0
156_CD64_DIRECTORY_RECSIZE = 1
157_CD64_CREATE_VERSION = 2
158_CD64_EXTRACT_VERSION = 3
159_CD64_DISK_NUMBER = 4
160_CD64_DISK_NUMBER_START = 5
161_CD64_NUMBER_ENTRIES_THIS_DISK = 6
162_CD64_NUMBER_ENTRIES_TOTAL = 7
163_CD64_DIRECTORY_SIZE = 8
164_CD64_OFFSET_START_CENTDIR = 9
165
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000166def _check_zipfile(fp):
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000167 try:
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000168 if _EndRecData(fp):
169 return True # file has correct magic number
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200170 except OSError:
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000171 pass
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000172 return False
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000173
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000174def is_zipfile(filename):
175 """Quickly see if a file is a ZIP file by checking the magic number.
176
177 The filename argument may be a file or file-like object too.
178 """
179 result = False
180 try:
181 if hasattr(filename, "read"):
182 result = _check_zipfile(fp=filename)
183 else:
184 with open(filename, "rb") as fp:
185 result = _check_zipfile(fp)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200186 except OSError:
Antoine Pitroudb5fe662008-12-27 15:50:40 +0000187 pass
188 return result
189
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000190def _EndRecData64(fpin, offset, endrec):
191 """
192 Read the ZIP64 end-of-archive records and use that to update endrec
193 """
Georg Brandl268e4d42010-10-14 06:59:45 +0000194 try:
195 fpin.seek(offset - sizeEndCentDir64Locator, 2)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200196 except OSError:
Georg Brandl268e4d42010-10-14 06:59:45 +0000197 # If the seek fails, the file is not large enough to contain a ZIP64
198 # end-of-archive record, so just return the end record we were given.
199 return endrec
200
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000201 data = fpin.read(sizeEndCentDir64Locator)
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200202 if len(data) != sizeEndCentDir64Locator:
203 return endrec
Georg Brandl2ee470f2008-07-16 12:55:28 +0000204 sig, diskno, reloff, disks = struct.unpack(structEndArchive64Locator, data)
205 if sig != stringEndArchive64Locator:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000206 return endrec
207
208 if diskno != 0 or disks != 1:
Éric Araujoae2d8322010-10-28 13:49:17 +0000209 raise BadZipFile("zipfiles that span multiple disks are not supported")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000210
211 # Assume no 'zip64 extensible data'
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000212 fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2)
213 data = fpin.read(sizeEndCentDir64)
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200214 if len(data) != sizeEndCentDir64:
215 return endrec
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000216 sig, sz, create_version, read_version, disk_num, disk_dir, \
Christian Tismer59202e52013-10-21 03:59:23 +0200217 dircount, dircount2, dirsize, diroffset = \
218 struct.unpack(structEndArchive64, data)
Georg Brandl2ee470f2008-07-16 12:55:28 +0000219 if sig != stringEndArchive64:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000220 return endrec
221
222 # Update the original endrec using data from the ZIP64 record
Antoine Pitrou9e4fdf42008-09-05 23:43:02 +0000223 endrec[_ECD_SIGNATURE] = sig
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000224 endrec[_ECD_DISK_NUMBER] = disk_num
225 endrec[_ECD_DISK_START] = disk_dir
226 endrec[_ECD_ENTRIES_THIS_DISK] = dircount
227 endrec[_ECD_ENTRIES_TOTAL] = dircount2
228 endrec[_ECD_SIZE] = dirsize
229 endrec[_ECD_OFFSET] = diroffset
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000230 return endrec
231
232
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000233def _EndRecData(fpin):
234 """Return data from the "End of Central Directory" record, or None.
235
236 The data is a list of the nine items in the ZIP "End of central dir"
237 record followed by a tenth item, the file seek offset of this record."""
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000238
239 # Determine file size
240 fpin.seek(0, 2)
241 filesize = fpin.tell()
242
243 # Check to see if this is ZIP file with no archive comment (the
244 # "end of central directory" structure should be the last item in the
245 # file if this is the case).
Amaury Forgeot d'Arcbc347802009-07-28 22:18:57 +0000246 try:
247 fpin.seek(-sizeEndCentDir, 2)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +0200248 except OSError:
Amaury Forgeot d'Arcbc347802009-07-28 22:18:57 +0000249 return None
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000250 data = fpin.read()
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200251 if (len(data) == sizeEndCentDir and
252 data[0:4] == stringEndArchive and
253 data[-2:] == b"\000\000"):
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000254 # the signature is correct and there's no comment, unpack structure
Georg Brandl2ee470f2008-07-16 12:55:28 +0000255 endrec = struct.unpack(structEndArchive, data)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000256 endrec=list(endrec)
257
258 # Append a blank comment and record start offset
259 endrec.append(b"")
260 endrec.append(filesize - sizeEndCentDir)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000261
Amaury Forgeot d'Arcd3fb4bb2009-01-18 00:29:02 +0000262 # Try to read the "Zip64 end of central directory" structure
263 return _EndRecData64(fpin, -sizeEndCentDir, endrec)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000264
265 # Either this is not a ZIP file, or it is a ZIP file with an archive
266 # comment. Search the end of the file for the "end of central directory"
267 # record signature. The comment is the last item in the ZIP file and may be
268 # up to 64K long. It is assumed that the "end of central directory" magic
269 # number does not appear in the comment.
270 maxCommentStart = max(filesize - (1 << 16) - sizeEndCentDir, 0)
271 fpin.seek(maxCommentStart, 0)
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000272 data = fpin.read()
Georg Brandl2ee470f2008-07-16 12:55:28 +0000273 start = data.rfind(stringEndArchive)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000274 if start >= 0:
275 # found the magic number; attempt to unpack and interpret
276 recData = data[start:start+sizeEndCentDir]
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200277 if len(recData) != sizeEndCentDir:
278 # Zip file is corrupted.
279 return None
Georg Brandl2ee470f2008-07-16 12:55:28 +0000280 endrec = list(struct.unpack(structEndArchive, recData))
R David Murray4fbb9db2011-06-09 15:50:51 -0400281 commentSize = endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file
282 comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize]
283 endrec.append(comment)
284 endrec.append(maxCommentStart + start)
Amaury Forgeot d'Arcd3fb4bb2009-01-18 00:29:02 +0000285
R David Murray4fbb9db2011-06-09 15:50:51 -0400286 # Try to read the "Zip64 end of central directory" structure
287 return _EndRecData64(fpin, maxCommentStart + start - filesize,
288 endrec)
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000289
290 # Unable to find a valid end of central directory structure
Serhiy Storchakad2b15272013-01-31 15:27:07 +0200291 return None
Martin v. Löwis6f6873b2002-10-13 13:54:50 +0000292
Fred Drake484d7352000-10-02 21:14:52 +0000293
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000294class ZipInfo (object):
Fred Drake484d7352000-10-02 21:14:52 +0000295 """Class with attributes describing each file in the ZIP archive."""
296
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000297 __slots__ = (
Christian Tismer59202e52013-10-21 03:59:23 +0200298 'orig_filename',
299 'filename',
300 'date_time',
301 'compress_type',
302 'comment',
303 'extra',
304 'create_system',
305 'create_version',
306 'extract_version',
307 'reserved',
308 'flag_bits',
309 'volume',
310 'internal_attr',
311 'external_attr',
312 'header_offset',
313 'CRC',
314 'compress_size',
315 'file_size',
316 '_raw_time',
317 )
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000318
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000319 def __init__(self, filename="NoName", date_time=(1980,1,1,0,0,0)):
Greg Ward8e36d282003-06-18 00:53:06 +0000320 self.orig_filename = filename # Original file name in archive
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000321
322 # Terminate the file name at the first null byte. Null bytes in file
323 # names are used as tricks by viruses in archives.
Greg Ward8e36d282003-06-18 00:53:06 +0000324 null_byte = filename.find(chr(0))
325 if null_byte >= 0:
326 filename = filename[0:null_byte]
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000327 # This is used to ensure paths in generated ZIP files always use
328 # forward slashes as the directory separator, as required by the
329 # ZIP format specification.
330 if os.sep != "/" and os.sep in filename:
Greg Ward8e36d282003-06-18 00:53:06 +0000331 filename = filename.replace(os.sep, "/")
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000332
Greg Ward8e36d282003-06-18 00:53:06 +0000333 self.filename = filename # Normalized file name
Tim Peterse1190062001-01-15 03:34:38 +0000334 self.date_time = date_time # year, month, day, hour, min, sec
Senthil Kumaran29fa9d42011-10-20 01:46:00 +0800335
336 if date_time[0] < 1980:
337 raise ValueError('ZIP does not support timestamps before 1980')
338
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000339 # Standard values:
Tim Peterse1190062001-01-15 03:34:38 +0000340 self.compress_type = ZIP_STORED # Type of compression for the file
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000341 self.comment = b"" # Comment for each file
342 self.extra = b"" # ZIP extra data
Martin v. Löwis00756902006-02-05 17:09:41 +0000343 if sys.platform == 'win32':
344 self.create_system = 0 # System which created ZIP archive
345 else:
346 # Assume everything else is unix-y
347 self.create_system = 3 # System which created ZIP archive
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200348 self.create_version = DEFAULT_VERSION # Version which created ZIP archive
349 self.extract_version = DEFAULT_VERSION # Version needed to extract archive
Tim Peterse1190062001-01-15 03:34:38 +0000350 self.reserved = 0 # Must be zero
351 self.flag_bits = 0 # ZIP flag bits
352 self.volume = 0 # Volume number of file header
353 self.internal_attr = 0 # Internal attributes
354 self.external_attr = 0 # External file attributes
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000355 # Other attributes are set by class ZipFile:
Tim Peterse1190062001-01-15 03:34:38 +0000356 # header_offset Byte offset to the file header
Tim Peterse1190062001-01-15 03:34:38 +0000357 # CRC CRC-32 of the uncompressed file
358 # compress_size Size of the compressed file
359 # file_size Size of the uncompressed file
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000360
Serhiy Storchaka51a43702014-10-29 22:42:06 +0200361 def __repr__(self):
362 result = ['<%s filename=%r' % (self.__class__.__name__, self.filename)]
363 if self.compress_type != ZIP_STORED:
364 result.append(' compress_type=%s' %
365 compressor_names.get(self.compress_type,
366 self.compress_type))
367 hi = self.external_attr >> 16
368 lo = self.external_attr & 0xFFFF
369 if hi:
370 result.append(' filemode=%r' % stat.filemode(hi))
371 if lo:
372 result.append(' external_attr=%#x' % lo)
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200373 isdir = self.is_dir()
Serhiy Storchaka51a43702014-10-29 22:42:06 +0200374 if not isdir or self.file_size:
375 result.append(' file_size=%r' % self.file_size)
376 if ((not isdir or self.compress_size) and
377 (self.compress_type != ZIP_STORED or
378 self.file_size != self.compress_size)):
379 result.append(' compress_size=%r' % self.compress_size)
380 result.append('>')
381 return ''.join(result)
382
Serhiy Storchaka182d7cd2013-01-15 00:31:39 +0200383 def FileHeader(self, zip64=None):
Fred Drake484d7352000-10-02 21:14:52 +0000384 """Return the per-file header as a string."""
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000385 dt = self.date_time
386 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
Tim Peters3caca232001-12-06 06:23:26 +0000387 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000388 if self.flag_bits & 0x08:
Tim Peterse1190062001-01-15 03:34:38 +0000389 # Set these to zero because we write them after the file data
390 CRC = compress_size = file_size = 0
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000391 else:
Tim Peterse1190062001-01-15 03:34:38 +0000392 CRC = self.CRC
393 compress_size = self.compress_size
394 file_size = self.file_size
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000395
396 extra = self.extra
397
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200398 min_version = 0
Serhiy Storchaka182d7cd2013-01-15 00:31:39 +0200399 if zip64 is None:
400 zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT
401 if zip64:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000402 fmt = '<HHQQ'
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000403 extra = extra + struct.pack(fmt,
Christian Tismer59202e52013-10-21 03:59:23 +0200404 1, struct.calcsize(fmt)-4, file_size, compress_size)
Serhiy Storchaka182d7cd2013-01-15 00:31:39 +0200405 if file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT:
406 if not zip64:
407 raise LargeZipFile("Filesize would require ZIP64 extensions")
408 # File is larger than what fits into a 4 byte integer,
409 # fall back to the ZIP64 extension
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000410 file_size = 0xffffffff
411 compress_size = 0xffffffff
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200412 min_version = ZIP64_VERSION
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000413
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200414 if self.compress_type == ZIP_BZIP2:
415 min_version = max(BZIP2_VERSION, min_version)
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200416 elif self.compress_type == ZIP_LZMA:
417 min_version = max(LZMA_VERSION, min_version)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200418
419 self.extract_version = max(min_version, self.extract_version)
420 self.create_version = max(min_version, self.create_version)
Martin v. Löwis8570f6a2008-05-05 17:44:38 +0000421 filename, flag_bits = self._encodeFilenameFlags()
Georg Brandl2ee470f2008-07-16 12:55:28 +0000422 header = struct.pack(structFileHeader, stringFileHeader,
Christian Tismer59202e52013-10-21 03:59:23 +0200423 self.extract_version, self.reserved, flag_bits,
424 self.compress_type, dostime, dosdate, CRC,
425 compress_size, file_size,
426 len(filename), len(extra))
Martin v. Löwis8570f6a2008-05-05 17:44:38 +0000427 return header + filename + extra
428
429 def _encodeFilenameFlags(self):
430 try:
431 return self.filename.encode('ascii'), self.flag_bits
432 except UnicodeEncodeError:
433 return self.filename.encode('utf-8'), self.flag_bits | 0x800
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000434
435 def _decodeExtra(self):
436 # Try to decode the extra field.
437 extra = self.extra
438 unpack = struct.unpack
Gregory P. Smith0af8a862014-05-29 23:42:14 -0700439 while len(extra) >= 4:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000440 tp, ln = unpack('<HH', extra[:4])
Serhiy Storchakafeccdb22017-03-09 18:34:03 +0200441 if ln+4 > len(extra):
442 raise BadZipFile("Corrupt extra field %04x (size=%d)" % (tp, ln))
443 if tp == 0x0001:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000444 if ln >= 24:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000445 counts = unpack('<QQQ', extra[4:28])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000446 elif ln == 16:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000447 counts = unpack('<QQ', extra[4:20])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000448 elif ln == 8:
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000449 counts = unpack('<Q', extra[4:12])
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000450 elif ln == 0:
451 counts = ()
452 else:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +0300453 raise BadZipFile("Corrupt extra field %04x (size=%d)" % (tp, ln))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000454
455 idx = 0
456
457 # ZIP64 extension (large files and/or large archives)
Christian Heimesd5e2b6f2008-03-19 21:50:51 +0000458 if self.file_size in (0xffffffffffffffff, 0xffffffff):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000459 self.file_size = counts[idx]
460 idx += 1
461
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000462 if self.compress_size == 0xFFFFFFFF:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000463 self.compress_size = counts[idx]
464 idx += 1
465
Martin v. Löwisb09b8442008-07-03 14:13:42 +0000466 if self.header_offset == 0xffffffff:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000467 old = self.header_offset
468 self.header_offset = counts[idx]
469 idx+=1
470
471 extra = extra[ln+4:]
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000472
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200473 @classmethod
474 def from_file(cls, filename, arcname=None):
475 """Construct an appropriate ZipInfo for a file on the filesystem.
476
477 filename should be the path to a file or directory on the filesystem.
478
479 arcname is the name which it will have within the archive (by default,
480 this will be the same as filename, but without a drive letter and with
481 leading path separators removed).
482 """
Serhiy Storchaka8606e952017-03-08 14:37:51 +0200483 if isinstance(filename, os.PathLike):
484 filename = os.fspath(filename)
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200485 st = os.stat(filename)
486 isdir = stat.S_ISDIR(st.st_mode)
487 mtime = time.localtime(st.st_mtime)
488 date_time = mtime[0:6]
489 # Create ZipInfo instance to store file information
490 if arcname is None:
491 arcname = filename
492 arcname = os.path.normpath(os.path.splitdrive(arcname)[1])
493 while arcname[0] in (os.sep, os.altsep):
494 arcname = arcname[1:]
495 if isdir:
496 arcname += '/'
497 zinfo = cls(arcname, date_time)
498 zinfo.external_attr = (st.st_mode & 0xFFFF) << 16 # Unix attributes
499 if isdir:
500 zinfo.file_size = 0
501 zinfo.external_attr |= 0x10 # MS-DOS directory flag
502 else:
503 zinfo.file_size = st.st_size
504
505 return zinfo
506
507 def is_dir(self):
Serhiy Storchakaf47fc552016-05-15 12:27:16 +0300508 """Return True if this archive member is a directory."""
Serhiy Storchaka503f9082016-02-08 00:02:25 +0200509 return self.filename[-1] == '/'
510
Guido van Rossum32abe6f2000-03-31 17:30:02 +0000511
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300512# ZIP encryption uses the CRC32 one-byte primitive for scrambling some
513# internal keys. We noticed that a direct implementation is faster than
514# relying on binascii.crc32().
Thomas Wouterscf297e42007-02-23 15:07:44 +0000515
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300516_crctable = None
517def _gen_crc(crc):
518 for j in range(8):
519 if crc & 1:
520 crc = (crc >> 1) ^ 0xEDB88320
521 else:
522 crc >>= 1
523 return crc
Thomas Wouterscf297e42007-02-23 15:07:44 +0000524
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300525# ZIP supports a password-based form of encryption. Even though known
526# plaintext attacks have been found against it, it is still useful
527# to be able to get data out of such a file.
528#
529# Usage:
530# zd = _ZipDecrypter(mypwd)
531# plain_bytes = zd(cypher_bytes)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000532
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300533def _ZipDecrypter(pwd):
534 key0 = 305419896
535 key1 = 591751049
536 key2 = 878082192
Thomas Wouterscf297e42007-02-23 15:07:44 +0000537
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300538 global _crctable
539 if _crctable is None:
540 _crctable = list(map(_gen_crc, range(256)))
541 crctable = _crctable
Thomas Wouterscf297e42007-02-23 15:07:44 +0000542
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300543 def crc32(ch, crc):
Thomas Wouterscf297e42007-02-23 15:07:44 +0000544 """Compute the CRC32 primitive on one byte."""
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300545 return (crc >> 8) ^ crctable[(crc ^ ch) & 0xFF]
Thomas Wouterscf297e42007-02-23 15:07:44 +0000546
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300547 def update_keys(c):
548 nonlocal key0, key1, key2
549 key0 = crc32(c, key0)
550 key1 = (key1 + (key0 & 0xFF)) & 0xFFFFFFFF
551 key1 = (key1 * 134775813 + 1) & 0xFFFFFFFF
552 key2 = crc32(key1 >> 24, key2)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000553
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300554 for p in pwd:
555 update_keys(p)
Thomas Wouterscf297e42007-02-23 15:07:44 +0000556
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300557 def decrypter(data):
558 """Decrypt a bytes object."""
559 result = bytearray()
560 append = result.append
561 for c in data:
562 k = key2 | 2
563 c ^= ((k * (k^1)) >> 8) & 0xFF
564 update_keys(c)
565 append(c)
566 return bytes(result)
567
568 return decrypter
Thomas Wouterscf297e42007-02-23 15:07:44 +0000569
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200570
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200571class LZMACompressor:
572
573 def __init__(self):
574 self._comp = None
575
576 def _init(self):
Nadeem Vawdaa425c3d2012-06-21 23:36:48 +0200577 props = lzma._encode_filter_properties({'id': lzma.FILTER_LZMA1})
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200578 self._comp = lzma.LZMACompressor(lzma.FORMAT_RAW, filters=[
Christian Tismer59202e52013-10-21 03:59:23 +0200579 lzma._decode_filter_properties(lzma.FILTER_LZMA1, props)
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200580 ])
581 return struct.pack('<BBH', 9, 4, len(props)) + props
582
583 def compress(self, data):
584 if self._comp is None:
585 return self._init() + self._comp.compress(data)
586 return self._comp.compress(data)
587
588 def flush(self):
589 if self._comp is None:
590 return self._init() + self._comp.flush()
591 return self._comp.flush()
592
593
594class LZMADecompressor:
595
596 def __init__(self):
597 self._decomp = None
598 self._unconsumed = b''
599 self.eof = False
600
601 def decompress(self, data):
602 if self._decomp is None:
603 self._unconsumed += data
604 if len(self._unconsumed) <= 4:
605 return b''
606 psize, = struct.unpack('<H', self._unconsumed[2:4])
607 if len(self._unconsumed) <= 4 + psize:
608 return b''
609
610 self._decomp = lzma.LZMADecompressor(lzma.FORMAT_RAW, filters=[
Christian Tismer59202e52013-10-21 03:59:23 +0200611 lzma._decode_filter_properties(lzma.FILTER_LZMA1,
612 self._unconsumed[4:4 + psize])
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200613 ])
614 data = self._unconsumed[4 + psize:]
615 del self._unconsumed
616
617 result = self._decomp.decompress(data)
618 self.eof = self._decomp.eof
619 return result
620
621
622compressor_names = {
623 0: 'store',
624 1: 'shrink',
625 2: 'reduce',
626 3: 'reduce',
627 4: 'reduce',
628 5: 'reduce',
629 6: 'implode',
630 7: 'tokenize',
631 8: 'deflate',
632 9: 'deflate64',
633 10: 'implode',
634 12: 'bzip2',
635 14: 'lzma',
636 18: 'terse',
637 19: 'lz77',
638 97: 'wavpack',
639 98: 'ppmd',
640}
641
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200642def _check_compression(compression):
643 if compression == ZIP_STORED:
644 pass
645 elif compression == ZIP_DEFLATED:
646 if not zlib:
647 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +0200648 "Compression requires the (missing) zlib module")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200649 elif compression == ZIP_BZIP2:
650 if not bz2:
651 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +0200652 "Compression requires the (missing) bz2 module")
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200653 elif compression == ZIP_LZMA:
654 if not lzma:
655 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +0200656 "Compression requires the (missing) lzma module")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200657 else:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +0300658 raise NotImplementedError("That compression method is not supported")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200659
660
661def _get_compressor(compress_type):
662 if compress_type == ZIP_DEFLATED:
663 return zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION,
Christian Tismer59202e52013-10-21 03:59:23 +0200664 zlib.DEFLATED, -15)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200665 elif compress_type == ZIP_BZIP2:
666 return bz2.BZ2Compressor()
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200667 elif compress_type == ZIP_LZMA:
668 return LZMACompressor()
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200669 else:
670 return None
671
672
673def _get_decompressor(compress_type):
Martin v. Löwisb3260f02012-05-01 08:38:01 +0200674 if compress_type == ZIP_STORED:
675 return None
676 elif compress_type == ZIP_DEFLATED:
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200677 return zlib.decompressobj(-15)
678 elif compress_type == ZIP_BZIP2:
679 return bz2.BZ2Decompressor()
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200680 elif compress_type == ZIP_LZMA:
681 return LZMADecompressor()
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200682 else:
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +0200683 descr = compressor_names.get(compress_type)
Martin v. Löwisb3260f02012-05-01 08:38:01 +0200684 if descr:
685 raise NotImplementedError("compression type %d (%s)" % (compress_type, descr))
686 else:
687 raise NotImplementedError("compression type %d" % (compress_type,))
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200688
689
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200690class _SharedFile:
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300691 def __init__(self, file, pos, close, lock, writing):
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200692 self._file = file
693 self._pos = pos
694 self._close = close
Serhiy Storchakaf15e5242015-01-26 13:53:38 +0200695 self._lock = lock
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300696 self._writing = writing
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200697
698 def read(self, n=-1):
Serhiy Storchakaf15e5242015-01-26 13:53:38 +0200699 with self._lock:
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300700 if self._writing():
Serhiy Storchakab0d497c2016-09-10 21:28:07 +0300701 raise ValueError("Can't read from the ZIP file while there "
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300702 "is an open writing handle on it. "
703 "Close the writing handle before trying to read.")
Serhiy Storchakaf15e5242015-01-26 13:53:38 +0200704 self._file.seek(self._pos)
705 data = self._file.read(n)
706 self._pos = self._file.tell()
707 return data
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200708
709 def close(self):
710 if self._file is not None:
711 fileobj = self._file
712 self._file = None
713 self._close(fileobj)
714
Serhiy Storchaka77d89972015-03-23 01:09:35 +0200715# Provide the tell method for unseekable stream
716class _Tellable:
717 def __init__(self, fp):
718 self.fp = fp
719 self.offset = 0
720
721 def write(self, data):
722 n = self.fp.write(data)
723 self.offset += n
724 return n
725
726 def tell(self):
727 return self.offset
728
729 def flush(self):
730 self.fp.flush()
731
732 def close(self):
733 self.fp.close()
734
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +0200735
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000736class ZipExtFile(io.BufferedIOBase):
Guido van Rossumd8faa362007-04-27 19:54:29 +0000737 """File-like object for reading an archive member.
738 Is returned by ZipFile.open().
739 """
740
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000741 # Max size supported by decompressor.
742 MAX_N = 1 << 31 - 1
Guido van Rossumd8faa362007-04-27 19:54:29 +0000743
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000744 # Read from compressed files in 4k blocks.
745 MIN_READ_SIZE = 4096
Guido van Rossumd8faa362007-04-27 19:54:29 +0000746
Łukasz Langae94980a2010-11-22 23:31:26 +0000747 def __init__(self, fileobj, mode, zipinfo, decrypter=None,
748 close_fileobj=False):
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000749 self._fileobj = fileobj
750 self._decrypter = decrypter
Łukasz Langae94980a2010-11-22 23:31:26 +0000751 self._close_fileobj = close_fileobj
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000752
Ezio Melotti92b47432010-01-28 01:44:41 +0000753 self._compress_type = zipinfo.compress_type
Ezio Melotti92b47432010-01-28 01:44:41 +0000754 self._compress_left = zipinfo.compress_size
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200755 self._left = zipinfo.file_size
Ezio Melotti92b47432010-01-28 01:44:41 +0000756
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200757 self._decompressor = _get_decompressor(self._compress_type)
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000758
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200759 self._eof = False
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000760 self._readbuffer = b''
761 self._offset = 0
762
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000763 self.newlines = None
764
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000765 # Adjust read size for encrypted files since the first 12 bytes
766 # are for the encryption/password information.
767 if self._decrypter is not None:
768 self._compress_left -= 12
769
770 self.mode = mode
Guido van Rossumd8faa362007-04-27 19:54:29 +0000771 self.name = zipinfo.filename
772
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000773 if hasattr(zipinfo, 'CRC'):
774 self._expected_crc = zipinfo.CRC
Martin Panterb82032f2015-12-11 05:19:29 +0000775 self._running_crc = crc32(b'')
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000776 else:
777 self._expected_crc = None
778
Serhiy Storchaka51a43702014-10-29 22:42:06 +0200779 def __repr__(self):
780 result = ['<%s.%s' % (self.__class__.__module__,
781 self.__class__.__qualname__)]
782 if not self.closed:
783 result.append(' name=%r mode=%r' % (self.name, self.mode))
784 if self._compress_type != ZIP_STORED:
785 result.append(' compress_type=%s' %
786 compressor_names.get(self._compress_type,
787 self._compress_type))
788 else:
789 result.append(' [closed]')
790 result.append('>')
791 return ''.join(result)
792
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000793 def readline(self, limit=-1):
794 """Read and return a line from the stream.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000795
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000796 If limit is specified, at most limit bytes will be read.
Guido van Rossumd8faa362007-04-27 19:54:29 +0000797 """
Guido van Rossumd8faa362007-04-27 19:54:29 +0000798
Serhiy Storchakae670be22016-06-11 19:32:44 +0300799 if limit < 0:
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000800 # Shortcut common case - newline found in buffer.
801 i = self._readbuffer.find(b'\n', self._offset) + 1
802 if i > 0:
803 line = self._readbuffer[self._offset: i]
804 self._offset = i
805 return line
Guido van Rossumd8faa362007-04-27 19:54:29 +0000806
Serhiy Storchakae670be22016-06-11 19:32:44 +0300807 return io.BufferedIOBase.readline(self, limit)
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000808
809 def peek(self, n=1):
810 """Returns buffered bytes without advancing the position."""
811 if n > len(self._readbuffer) - self._offset:
812 chunk = self.read(n)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200813 if len(chunk) > self._offset:
814 self._readbuffer = chunk + self._readbuffer[self._offset:]
815 self._offset = 0
816 else:
817 self._offset -= len(chunk)
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000818
819 # Return up to 512 bytes to reduce allocation overhead for tight loops.
820 return self._readbuffer[self._offset: self._offset + 512]
821
822 def readable(self):
823 return True
824
825 def read(self, n=-1):
826 """Read and return up to n bytes.
827 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 +0000828 """
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200829 if n is None or n < 0:
830 buf = self._readbuffer[self._offset:]
831 self._readbuffer = b''
832 self._offset = 0
833 while not self._eof:
834 buf += self._read1(self.MAX_N)
835 return buf
Guido van Rossumd8faa362007-04-27 19:54:29 +0000836
Antoine Pitrou78157b32012-06-23 16:44:48 +0200837 end = n + self._offset
838 if end < len(self._readbuffer):
839 buf = self._readbuffer[self._offset:end]
840 self._offset = end
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200841 return buf
842
Antoine Pitrou78157b32012-06-23 16:44:48 +0200843 n = end - len(self._readbuffer)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200844 buf = self._readbuffer[self._offset:]
845 self._readbuffer = b''
846 self._offset = 0
847 while n > 0 and not self._eof:
848 data = self._read1(n)
849 if n < len(data):
850 self._readbuffer = data
851 self._offset = n
852 buf += data[:n]
853 break
854 buf += data
855 n -= len(data)
856 return buf
857
858 def _update_crc(self, newdata):
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000859 # Update the CRC using the given data.
860 if self._expected_crc is None:
861 # No need to compute the CRC if we don't have a reference value
862 return
Martin Panterb82032f2015-12-11 05:19:29 +0000863 self._running_crc = crc32(newdata, self._running_crc)
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000864 # Check the CRC if we're at the end of the file
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200865 if self._eof and self._running_crc != self._expected_crc:
Georg Brandl4d540882010-10-28 06:42:33 +0000866 raise BadZipFile("Bad CRC-32 for file %r" % self.name)
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +0000867
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000868 def read1(self, n):
869 """Read up to n bytes with at most one read() system call."""
Guido van Rossumd8faa362007-04-27 19:54:29 +0000870
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200871 if n is None or n < 0:
872 buf = self._readbuffer[self._offset:]
873 self._readbuffer = b''
874 self._offset = 0
Serhiy Storchakad2c07a52013-09-27 22:11:57 +0300875 while not self._eof:
876 data = self._read1(self.MAX_N)
877 if data:
878 buf += data
879 break
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200880 return buf
Guido van Rossumd8faa362007-04-27 19:54:29 +0000881
Antoine Pitrou78157b32012-06-23 16:44:48 +0200882 end = n + self._offset
883 if end < len(self._readbuffer):
884 buf = self._readbuffer[self._offset:end]
885 self._offset = end
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200886 return buf
887
Antoine Pitrou78157b32012-06-23 16:44:48 +0200888 n = end - len(self._readbuffer)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200889 buf = self._readbuffer[self._offset:]
890 self._readbuffer = b''
891 self._offset = 0
892 if n > 0:
Serhiy Storchakad2c07a52013-09-27 22:11:57 +0300893 while not self._eof:
894 data = self._read1(n)
895 if n < len(data):
896 self._readbuffer = data
897 self._offset = n
898 buf += data[:n]
899 break
900 if data:
901 buf += data
902 break
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200903 return buf
904
905 def _read1(self, n):
906 # Read up to n compressed bytes with at most one read() system call,
907 # decrypt and decompress them.
908 if self._eof or n <= 0:
909 return b''
Guido van Rossumd8faa362007-04-27 19:54:29 +0000910
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000911 # Read from file.
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200912 if self._compress_type == ZIP_DEFLATED:
913 ## Handle unconsumed data.
914 data = self._decompressor.unconsumed_tail
915 if n > len(data):
916 data += self._read2(n - len(data))
917 else:
918 data = self._read2(n)
Guido van Rossumd8faa362007-04-27 19:54:29 +0000919
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200920 if self._compress_type == ZIP_STORED:
921 self._eof = self._compress_left <= 0
922 elif self._compress_type == ZIP_DEFLATED:
923 n = max(n, self.MIN_READ_SIZE)
924 data = self._decompressor.decompress(data, n)
925 self._eof = (self._decompressor.eof or
Christian Tismer59202e52013-10-21 03:59:23 +0200926 self._compress_left <= 0 and
927 not self._decompressor.unconsumed_tail)
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200928 if self._eof:
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000929 data += self._decompressor.flush()
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200930 else:
931 data = self._decompressor.decompress(data)
932 self._eof = self._decompressor.eof or self._compress_left <= 0
Guido van Rossumd8faa362007-04-27 19:54:29 +0000933
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200934 data = data[:self._left]
935 self._left -= len(data)
936 if self._left <= 0:
937 self._eof = True
938 self._update_crc(data)
939 return data
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000940
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200941 def _read2(self, n):
942 if self._compress_left <= 0:
943 return b''
944
945 n = max(n, self.MIN_READ_SIZE)
946 n = min(n, self._compress_left)
947
948 data = self._fileobj.read(n)
949 self._compress_left -= len(data)
Serhiy Storchaka5ce3f102014-01-09 14:50:20 +0200950 if not data:
951 raise EOFError
Martin v. Löwisf6b16a42012-05-01 07:58:44 +0200952
953 if self._decrypter is not None:
Serhiy Storchaka06e52252017-03-30 19:09:08 +0300954 data = self._decrypter(data)
Guido van Rossumd6ca5462007-05-22 01:29:33 +0000955 return data
Guido van Rossumd8faa362007-04-27 19:54:29 +0000956
Łukasz Langae94980a2010-11-22 23:31:26 +0000957 def close(self):
958 try:
959 if self._close_fileobj:
960 self._fileobj.close()
961 finally:
962 super().close()
Guido van Rossumd8faa362007-04-27 19:54:29 +0000963
Antoine Pitroua32f9a22010-01-27 21:18:57 +0000964
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300965class _ZipWriteFile(io.BufferedIOBase):
966 def __init__(self, zf, zinfo, zip64):
967 self._zinfo = zinfo
968 self._zip64 = zip64
969 self._zipfile = zf
970 self._compressor = _get_compressor(zinfo.compress_type)
971 self._file_size = 0
972 self._compress_size = 0
973 self._crc = 0
974
975 @property
976 def _fileobj(self):
977 return self._zipfile.fp
978
979 def writable(self):
980 return True
981
982 def write(self, data):
Serhiy Storchaka4c0d9ea2017-04-12 16:03:23 +0300983 if self.closed:
984 raise ValueError('I/O operation on closed file.')
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300985 nbytes = len(data)
986 self._file_size += nbytes
987 self._crc = crc32(data, self._crc)
988 if self._compressor:
989 data = self._compressor.compress(data)
990 self._compress_size += len(data)
991 self._fileobj.write(data)
992 return nbytes
993
994 def close(self):
Serhiy Storchaka4c0d9ea2017-04-12 16:03:23 +0300995 if self.closed:
996 return
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +0300997 super().close()
998 # Flush any data from the compressor, and update header info
999 if self._compressor:
1000 buf = self._compressor.flush()
1001 self._compress_size += len(buf)
1002 self._fileobj.write(buf)
1003 self._zinfo.compress_size = self._compress_size
1004 else:
1005 self._zinfo.compress_size = self._file_size
1006 self._zinfo.CRC = self._crc
1007 self._zinfo.file_size = self._file_size
1008
1009 # Write updated header info
1010 if self._zinfo.flag_bits & 0x08:
1011 # Write CRC and file sizes after the file data
1012 fmt = '<LQQ' if self._zip64 else '<LLL'
1013 self._fileobj.write(struct.pack(fmt, self._zinfo.CRC,
1014 self._zinfo.compress_size, self._zinfo.file_size))
1015 self._zipfile.start_dir = self._fileobj.tell()
1016 else:
1017 if not self._zip64:
1018 if self._file_size > ZIP64_LIMIT:
1019 raise RuntimeError('File size unexpectedly exceeded ZIP64 '
1020 'limit')
1021 if self._compress_size > ZIP64_LIMIT:
1022 raise RuntimeError('Compressed size unexpectedly exceeded '
1023 'ZIP64 limit')
1024 # Seek backwards and write file header (which will now include
1025 # correct CRC and file sizes)
1026
1027 # Preserve current position in file
1028 self._zipfile.start_dir = self._fileobj.tell()
1029 self._fileobj.seek(self._zinfo.header_offset)
1030 self._fileobj.write(self._zinfo.FileHeader(self._zip64))
1031 self._fileobj.seek(self._zipfile.start_dir)
1032
1033 self._zipfile._writing = False
1034
1035 # Successfully written: Add file to our caches
1036 self._zipfile.filelist.append(self._zinfo)
1037 self._zipfile.NameToInfo[self._zinfo.filename] = self._zinfo
1038
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001039class ZipFile:
Tim Petersa19a1682001-03-29 04:36:09 +00001040 """ Class with methods to open, read, write, close, list zip files.
1041
Serhiy Storchaka235c5e02013-11-23 15:55:38 +02001042 z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=True)
Tim Petersa19a1682001-03-29 04:36:09 +00001043
Fred Drake3d9091e2001-03-26 15:49:24 +00001044 file: Either the path to the file, or a file-like object.
1045 If it is a path, the file will be opened and closed by ZipFile.
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001046 mode: The mode can be either read 'r', write 'w', exclusive create 'x',
1047 or append 'a'.
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001048 compression: ZIP_STORED (no compression), ZIP_DEFLATED (requires zlib),
1049 ZIP_BZIP2 (requires bz2) or ZIP_LZMA (requires lzma).
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001050 allowZip64: if True ZipFile will create files with ZIP64 extensions when
1051 needed, otherwise it will raise an exception when this would
1052 be necessary.
1053
Fred Drake3d9091e2001-03-26 15:49:24 +00001054 """
Fred Drake484d7352000-10-02 21:14:52 +00001055
Fred Drake90eac282001-02-28 05:29:34 +00001056 fp = None # Set here since __del__ checks it
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001057 _windows_illegal_name_trans_table = None
Fred Drake90eac282001-02-28 05:29:34 +00001058
Serhiy Storchaka235c5e02013-11-23 15:55:38 +02001059 def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=True):
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001060 """Open the ZIP file with mode read 'r', write 'w', exclusive create 'x',
1061 or append 'a'."""
1062 if mode not in ('r', 'w', 'x', 'a'):
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001063 raise ValueError("ZipFile requires mode 'r', 'w', 'x', or 'a'")
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001064
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001065 _check_compression(compression)
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001066
1067 self._allowZip64 = allowZip64
1068 self._didModify = False
Tim Peterse1190062001-01-15 03:34:38 +00001069 self.debug = 0 # Level of printing: 0 through 3
1070 self.NameToInfo = {} # Find file info given name
1071 self.filelist = [] # List of ZipInfo instances for archive
1072 self.compression = compression # Method of compression
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001073 self.mode = mode
Thomas Wouterscf297e42007-02-23 15:07:44 +00001074 self.pwd = None
R David Murrayf50b38a2012-04-12 18:44:58 -04001075 self._comment = b''
Tim Petersa19a1682001-03-29 04:36:09 +00001076
Fred Drake3d9091e2001-03-26 15:49:24 +00001077 # Check if we were passed a file-like object
Serhiy Storchaka8606e952017-03-08 14:37:51 +02001078 if isinstance(file, os.PathLike):
1079 file = os.fspath(file)
Guido van Rossum3172c5d2007-10-16 18:12:55 +00001080 if isinstance(file, str):
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001081 # No, it's a filename
Fred Drake3d9091e2001-03-26 15:49:24 +00001082 self._filePassed = 0
1083 self.filename = file
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001084 modeDict = {'r' : 'rb', 'w': 'w+b', 'x': 'x+b', 'a' : 'r+b',
1085 'r+b': 'w+b', 'w+b': 'wb', 'x+b': 'xb'}
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001086 filemode = modeDict[mode]
1087 while True:
1088 try:
1089 self.fp = io.open(file, filemode)
1090 except OSError:
1091 if filemode in modeDict:
1092 filemode = modeDict[filemode]
1093 continue
Thomas Wouterscf297e42007-02-23 15:07:44 +00001094 raise
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001095 break
Fred Drake3d9091e2001-03-26 15:49:24 +00001096 else:
1097 self._filePassed = 1
1098 self.fp = file
1099 self.filename = getattr(file, 'name', None)
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001100 self._fileRefCnt = 1
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001101 self._lock = threading.RLock()
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001102 self._seekable = True
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001103 self._writing = False
Tim Petersa19a1682001-03-29 04:36:09 +00001104
Antoine Pitrou17babc52012-11-17 23:50:08 +01001105 try:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001106 if mode == 'r':
Martin v. Löwis6f6873b2002-10-13 13:54:50 +00001107 self._RealGetContents()
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001108 elif mode in ('w', 'x'):
Georg Brandl268e4d42010-10-14 06:59:45 +00001109 # set the modified flag so central directory gets written
1110 # even if no files are added to the archive
1111 self._didModify = True
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001112 try:
Serhiy Storchaka34cba332017-01-01 19:00:30 +02001113 self.start_dir = self.fp.tell()
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001114 except (AttributeError, OSError):
1115 self.fp = _Tellable(self.fp)
Serhiy Storchaka34cba332017-01-01 19:00:30 +02001116 self.start_dir = 0
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001117 self._seekable = False
1118 else:
1119 # Some file-like objects can provide tell() but not seek()
1120 try:
1121 self.fp.seek(self.start_dir)
1122 except (AttributeError, OSError):
1123 self._seekable = False
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001124 elif mode == 'a':
Antoine Pitrou17babc52012-11-17 23:50:08 +01001125 try:
1126 # See if file is a zip file
1127 self._RealGetContents()
1128 # seek to start of directory and overwrite
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001129 self.fp.seek(self.start_dir)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001130 except BadZipFile:
1131 # file is not a zip file, just append
1132 self.fp.seek(0, 2)
1133
1134 # set the modified flag so central directory gets written
1135 # even if no files are added to the archive
1136 self._didModify = True
Serhiy Storchaka3763ea82017-05-06 14:46:01 +03001137 self.start_dir = self.fp.tell()
Antoine Pitrou17babc52012-11-17 23:50:08 +01001138 else:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001139 raise ValueError("Mode must be 'r', 'w', 'x', or 'a'")
Antoine Pitrou17babc52012-11-17 23:50:08 +01001140 except:
1141 fp = self.fp
1142 self.fp = None
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001143 self._fpclose(fp)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001144 raise
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001145
Ezio Melottifaa6b7f2009-12-30 12:34:59 +00001146 def __enter__(self):
1147 return self
1148
1149 def __exit__(self, type, value, traceback):
1150 self.close()
1151
Serhiy Storchaka51a43702014-10-29 22:42:06 +02001152 def __repr__(self):
1153 result = ['<%s.%s' % (self.__class__.__module__,
1154 self.__class__.__qualname__)]
1155 if self.fp is not None:
1156 if self._filePassed:
1157 result.append(' file=%r' % self.fp)
1158 elif self.filename is not None:
1159 result.append(' filename=%r' % self.filename)
1160 result.append(' mode=%r' % self.mode)
1161 else:
1162 result.append(' [closed]')
1163 result.append('>')
1164 return ''.join(result)
1165
Tim Peters7d3bad62001-04-04 18:56:49 +00001166 def _RealGetContents(self):
Fred Drake484d7352000-10-02 21:14:52 +00001167 """Read in the table of contents for the ZIP file."""
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001168 fp = self.fp
Georg Brandl268e4d42010-10-14 06:59:45 +00001169 try:
1170 endrec = _EndRecData(fp)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001171 except OSError:
Georg Brandl4d540882010-10-28 06:42:33 +00001172 raise BadZipFile("File is not a zip file")
Martin v. Löwis6f6873b2002-10-13 13:54:50 +00001173 if not endrec:
Georg Brandl4d540882010-10-28 06:42:33 +00001174 raise BadZipFile("File is not a zip file")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001175 if self.debug > 1:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001176 print(endrec)
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001177 size_cd = endrec[_ECD_SIZE] # bytes in central directory
1178 offset_cd = endrec[_ECD_OFFSET] # offset of central directory
R David Murrayf50b38a2012-04-12 18:44:58 -04001179 self._comment = endrec[_ECD_COMMENT] # archive comment
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001180
Serhiy Storchaka3763ea82017-05-06 14:46:01 +03001181 # "concat" is zero, unless zip was concatenated to another file
1182 concat = endrec[_ECD_LOCATION] - size_cd - offset_cd
Antoine Pitrou9e4fdf42008-09-05 23:43:02 +00001183 if endrec[_ECD_SIGNATURE] == stringEndArchive64:
1184 # If Zip64 extension structures are present, account for them
Serhiy Storchaka3763ea82017-05-06 14:46:01 +03001185 concat -= (sizeEndCentDir64 + sizeEndCentDir64Locator)
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001186
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001187 if self.debug > 2:
Serhiy Storchaka3763ea82017-05-06 14:46:01 +03001188 inferred = concat + offset_cd
1189 print("given, inferred, offset", offset_cd, inferred, concat)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001190 # self.start_dir: Position of start of central directory
Serhiy Storchaka3763ea82017-05-06 14:46:01 +03001191 self.start_dir = offset_cd + concat
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001192 fp.seek(self.start_dir, 0)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001193 data = fp.read(size_cd)
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001194 fp = io.BytesIO(data)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001195 total = 0
1196 while total < size_cd:
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001197 centdir = fp.read(sizeCentralDir)
Serhiy Storchakad2b15272013-01-31 15:27:07 +02001198 if len(centdir) != sizeCentralDir:
1199 raise BadZipFile("Truncated central directory")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001200 centdir = struct.unpack(structCentralDir, centdir)
Serhiy Storchakad2b15272013-01-31 15:27:07 +02001201 if centdir[_CD_SIGNATURE] != stringCentralDir:
1202 raise BadZipFile("Bad magic number for central directory")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001203 if self.debug > 2:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001204 print(centdir)
Fred Drake3e038e52001-02-28 17:56:26 +00001205 filename = fp.read(centdir[_CD_FILENAME_LENGTH])
Martin v. Löwis8570f6a2008-05-05 17:44:38 +00001206 flags = centdir[5]
1207 if flags & 0x800:
1208 # UTF-8 file names extension
1209 filename = filename.decode('utf-8')
1210 else:
1211 # Historical ZIP filename encoding
1212 filename = filename.decode('cp437')
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001213 # Create ZipInfo instance to store file information
Martin v. Löwis8570f6a2008-05-05 17:44:38 +00001214 x = ZipInfo(filename)
Fred Drake3e038e52001-02-28 17:56:26 +00001215 x.extra = fp.read(centdir[_CD_EXTRA_FIELD_LENGTH])
1216 x.comment = fp.read(centdir[_CD_COMMENT_LENGTH])
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001217 x.header_offset = centdir[_CD_LOCAL_HEADER_OFFSET]
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001218 (x.create_version, x.create_system, x.extract_version, x.reserved,
Christian Tismer59202e52013-10-21 03:59:23 +02001219 x.flag_bits, x.compress_type, t, d,
1220 x.CRC, x.compress_size, x.file_size) = centdir[1:12]
Martin v. Löwisd099b562012-05-01 14:08:22 +02001221 if x.extract_version > MAX_EXTRACT_VERSION:
1222 raise NotImplementedError("zip file version %.1f" %
1223 (x.extract_version / 10))
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001224 x.volume, x.internal_attr, x.external_attr = centdir[15:18]
1225 # Convert date/time code to (year, month, day, hour, min, sec)
Christian Heimesfdab48e2008-01-20 09:06:41 +00001226 x._raw_time = t
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001227 x.date_time = ( (d>>9)+1980, (d>>5)&0xF, d&0x1F,
Christian Tismer59202e52013-10-21 03:59:23 +02001228 t>>11, (t>>5)&0x3F, (t&0x1F) * 2 )
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001229
1230 x._decodeExtra()
Serhiy Storchaka3763ea82017-05-06 14:46:01 +03001231 x.header_offset = x.header_offset + concat
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001232 self.filelist.append(x)
1233 self.NameToInfo[x.filename] = x
Martin v. Löwisb09b8442008-07-03 14:13:42 +00001234
1235 # update total bytes read from central directory
1236 total = (total + sizeCentralDir + centdir[_CD_FILENAME_LENGTH]
1237 + centdir[_CD_EXTRA_FIELD_LENGTH]
1238 + centdir[_CD_COMMENT_LENGTH])
1239
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001240 if self.debug > 2:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001241 print("total", total)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001242
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001243
1244 def namelist(self):
Fred Drake484d7352000-10-02 21:14:52 +00001245 """Return a list of file names in the archive."""
Ezio Melotti006917e2012-04-16 21:34:24 -06001246 return [data.filename for data in self.filelist]
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001247
1248 def infolist(self):
Fred Drake484d7352000-10-02 21:14:52 +00001249 """Return a list of class ZipInfo instances for files in the
1250 archive."""
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001251 return self.filelist
1252
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001253 def printdir(self, file=None):
Fred Drake484d7352000-10-02 21:14:52 +00001254 """Print a table of contents for the zip file."""
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001255 print("%-46s %19s %12s" % ("File Name", "Modified ", "Size"),
1256 file=file)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001257 for zinfo in self.filelist:
Guido van Rossum7736b5b2008-01-15 21:44:53 +00001258 date = "%d-%02d-%02d %02d:%02d:%02d" % zinfo.date_time[:6]
Guido van Rossumd6ca5462007-05-22 01:29:33 +00001259 print("%-46s %s %12d" % (zinfo.filename, date, zinfo.file_size),
1260 file=file)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001261
1262 def testzip(self):
Fred Drake484d7352000-10-02 21:14:52 +00001263 """Read all the files and check the CRC."""
Benjamin Peterson4cd6a952008-08-17 20:23:46 +00001264 chunk_size = 2 ** 20
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001265 for zinfo in self.filelist:
1266 try:
Benjamin Peterson4cd6a952008-08-17 20:23:46 +00001267 # Read by chunks, to avoid an OverflowError or a
1268 # MemoryError with very large embedded files.
Antoine Pitrou17babc52012-11-17 23:50:08 +01001269 with self.open(zinfo.filename, "r") as f:
1270 while f.read(chunk_size): # Check CRC-32
1271 pass
Georg Brandl4d540882010-10-28 06:42:33 +00001272 except BadZipFile:
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001273 return zinfo.filename
1274
1275 def getinfo(self, name):
Fred Drake484d7352000-10-02 21:14:52 +00001276 """Return the instance of ZipInfo given 'name'."""
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001277 info = self.NameToInfo.get(name)
1278 if info is None:
1279 raise KeyError(
1280 'There is no item named %r in the archive' % name)
1281
1282 return info
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001283
Thomas Wouterscf297e42007-02-23 15:07:44 +00001284 def setpassword(self, pwd):
1285 """Set default password for encrypted files."""
R. David Murray8d855d82010-12-21 21:53:37 +00001286 if pwd and not isinstance(pwd, bytes):
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001287 raise TypeError("pwd: expected bytes, got %s" % type(pwd).__name__)
R. David Murray8d855d82010-12-21 21:53:37 +00001288 if pwd:
1289 self.pwd = pwd
1290 else:
1291 self.pwd = None
Thomas Wouterscf297e42007-02-23 15:07:44 +00001292
R David Murrayf50b38a2012-04-12 18:44:58 -04001293 @property
1294 def comment(self):
1295 """The comment text associated with the ZIP file."""
1296 return self._comment
1297
1298 @comment.setter
1299 def comment(self, comment):
1300 if not isinstance(comment, bytes):
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001301 raise TypeError("comment: expected bytes, got %s" % type(comment).__name__)
R David Murrayf50b38a2012-04-12 18:44:58 -04001302 # check for valid comment length
Serhiy Storchaka9b7a1a12014-01-20 21:57:40 +02001303 if len(comment) > ZIP_MAX_COMMENT:
1304 import warnings
1305 warnings.warn('Archive comment is too long; truncating to %d bytes'
1306 % ZIP_MAX_COMMENT, stacklevel=2)
R David Murrayf50b38a2012-04-12 18:44:58 -04001307 comment = comment[:ZIP_MAX_COMMENT]
1308 self._comment = comment
1309 self._didModify = True
1310
Thomas Wouterscf297e42007-02-23 15:07:44 +00001311 def read(self, name, pwd=None):
Fred Drake484d7352000-10-02 21:14:52 +00001312 """Return file bytes (as a string) for name."""
Benjamin Petersond285bdb2010-10-31 17:57:22 +00001313 with self.open(name, "r", pwd) as fp:
1314 return fp.read()
Guido van Rossumd8faa362007-04-27 19:54:29 +00001315
Serhiy Storchakaf47fc552016-05-15 12:27:16 +03001316 def open(self, name, mode="r", pwd=None, *, force_zip64=False):
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001317 """Return file-like object for 'name'.
1318
1319 name is a string for the file name within the ZIP file, or a ZipInfo
1320 object.
1321
1322 mode should be 'r' to read a file already in the ZIP file, or 'w' to
1323 write to a file newly added to the archive.
1324
1325 pwd is the password to decrypt files (only used for reading).
1326
1327 When writing, if the file size is not known in advance but may exceed
1328 2 GiB, pass force_zip64 to use the ZIP64 format, which can handle large
1329 files. If the size is known in advance, it is best to pass a ZipInfo
1330 instance for name, with zinfo.file_size set.
1331 """
Serhiy Storchakae670be22016-06-11 19:32:44 +03001332 if mode not in {"r", "w"}:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001333 raise ValueError('open() requires mode "r" or "w"')
R. David Murray8d855d82010-12-21 21:53:37 +00001334 if pwd and not isinstance(pwd, bytes):
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001335 raise TypeError("pwd: expected bytes, got %s" % type(pwd).__name__)
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001336 if pwd and (mode == "w"):
1337 raise ValueError("pwd is only supported for reading files")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001338 if not self.fp:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001339 raise ValueError(
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001340 "Attempt to use ZIP archive that was already closed")
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001341
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001342 # Make sure we have an info object
1343 if isinstance(name, ZipInfo):
1344 # 'name' is already an info object
1345 zinfo = name
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001346 elif mode == 'w':
1347 zinfo = ZipInfo(name)
1348 zinfo.compress_type = self.compression
Guido van Rossumd8faa362007-04-27 19:54:29 +00001349 else:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001350 # Get info object for name
1351 zinfo = self.getinfo(name)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001352
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001353 if mode == 'w':
1354 return self._open_to_write(zinfo, force_zip64=force_zip64)
1355
1356 if self._writing:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001357 raise ValueError("Can't read from the ZIP file while there "
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001358 "is an open writing handle on it. "
1359 "Close the writing handle before trying to read.")
1360
1361 # Open for reading:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001362 self._fileRefCnt += 1
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001363 zef_file = _SharedFile(self.fp, zinfo.header_offset,
1364 self._fpclose, self._lock, lambda: self._writing)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001365 try:
Antoine Pitrou17babc52012-11-17 23:50:08 +01001366 # Skip the file header:
1367 fheader = zef_file.read(sizeFileHeader)
Serhiy Storchakad2b15272013-01-31 15:27:07 +02001368 if len(fheader) != sizeFileHeader:
1369 raise BadZipFile("Truncated file header")
1370 fheader = struct.unpack(structFileHeader, fheader)
1371 if fheader[_FH_SIGNATURE] != stringFileHeader:
Antoine Pitrou17babc52012-11-17 23:50:08 +01001372 raise BadZipFile("Bad magic number for file header")
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001373
Antoine Pitrou17babc52012-11-17 23:50:08 +01001374 fname = zef_file.read(fheader[_FH_FILENAME_LENGTH])
1375 if fheader[_FH_EXTRA_FIELD_LENGTH]:
1376 zef_file.read(fheader[_FH_EXTRA_FIELD_LENGTH])
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001377
Antoine Pitrou8572da52012-11-17 23:52:05 +01001378 if zinfo.flag_bits & 0x20:
1379 # Zip 2.7: compressed patched data
1380 raise NotImplementedError("compressed patched data (flag bit 5)")
Martin v. Löwis2a2ce322012-05-01 08:44:08 +02001381
Antoine Pitrou8572da52012-11-17 23:52:05 +01001382 if zinfo.flag_bits & 0x40:
1383 # strong encryption
1384 raise NotImplementedError("strong encryption (flag bit 6)")
Martin v. Löwis7fb79fc2012-05-13 10:06:36 +02001385
Antoine Pitrou17babc52012-11-17 23:50:08 +01001386 if zinfo.flag_bits & 0x800:
1387 # UTF-8 filename
1388 fname_str = fname.decode("utf-8")
1389 else:
1390 fname_str = fname.decode("cp437")
Georg Brandl5ba11de2011-01-01 10:09:32 +00001391
Antoine Pitrou17babc52012-11-17 23:50:08 +01001392 if fname_str != zinfo.orig_filename:
1393 raise BadZipFile(
1394 'File name in directory %r and header %r differ.'
1395 % (zinfo.orig_filename, fname))
1396
1397 # check for encrypted flag & handle password
1398 is_encrypted = zinfo.flag_bits & 0x1
1399 zd = None
1400 if is_encrypted:
1401 if not pwd:
1402 pwd = self.pwd
1403 if not pwd:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001404 raise RuntimeError("File %r is encrypted, password "
Antoine Pitrou17babc52012-11-17 23:50:08 +01001405 "required for extraction" % name)
1406
1407 zd = _ZipDecrypter(pwd)
1408 # The first 12 bytes in the cypher stream is an encryption header
1409 # used to strengthen the algorithm. The first 11 bytes are
1410 # completely random, while the 12th contains the MSB of the CRC,
1411 # or the MSB of the file time depending on the header type
1412 # and is used to check the correctness of the password.
1413 header = zef_file.read(12)
Serhiy Storchaka06e52252017-03-30 19:09:08 +03001414 h = zd(header[0:12])
Antoine Pitrou17babc52012-11-17 23:50:08 +01001415 if zinfo.flag_bits & 0x8:
1416 # compare against the file type from extended local headers
1417 check_byte = (zinfo._raw_time >> 8) & 0xff
1418 else:
1419 # compare against the CRC otherwise
1420 check_byte = (zinfo.CRC >> 24) & 0xff
1421 if h[11] != check_byte:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001422 raise RuntimeError("Bad password for file %r" % name)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001423
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001424 return ZipExtFile(zef_file, mode, zinfo, zd, True)
Antoine Pitrou17babc52012-11-17 23:50:08 +01001425 except:
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001426 zef_file.close()
Antoine Pitrou17babc52012-11-17 23:50:08 +01001427 raise
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001428
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001429 def _open_to_write(self, zinfo, force_zip64=False):
1430 if force_zip64 and not self._allowZip64:
1431 raise ValueError(
1432 "force_zip64 is True, but allowZip64 was False when opening "
1433 "the ZIP file."
1434 )
1435 if self._writing:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001436 raise ValueError("Can't write to the ZIP file while there is "
1437 "another write handle open on it. "
1438 "Close the first handle before opening another.")
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001439
1440 # Sizes and CRC are overwritten with correct data after processing the file
1441 if not hasattr(zinfo, 'file_size'):
1442 zinfo.file_size = 0
1443 zinfo.compress_size = 0
1444 zinfo.CRC = 0
1445
1446 zinfo.flag_bits = 0x00
1447 if zinfo.compress_type == ZIP_LZMA:
1448 # Compressed data includes an end-of-stream (EOS) marker
1449 zinfo.flag_bits |= 0x02
1450 if not self._seekable:
1451 zinfo.flag_bits |= 0x08
1452
1453 if not zinfo.external_attr:
1454 zinfo.external_attr = 0o600 << 16 # permissions: ?rw-------
1455
1456 # Compressed size can be larger than uncompressed size
1457 zip64 = self._allowZip64 and \
1458 (force_zip64 or zinfo.file_size * 1.05 > ZIP64_LIMIT)
1459
1460 if self._seekable:
1461 self.fp.seek(self.start_dir)
1462 zinfo.header_offset = self.fp.tell()
1463
1464 self._writecheck(zinfo)
1465 self._didModify = True
1466
1467 self.fp.write(zinfo.FileHeader(zip64))
1468
1469 self._writing = True
1470 return _ZipWriteFile(self, zinfo, zip64)
1471
Christian Heimes790c8232008-01-07 21:14:23 +00001472 def extract(self, member, path=None, pwd=None):
1473 """Extract a member from the archive to the current working directory,
1474 using its full name. Its file information is extracted as accurately
1475 as possible. `member' may be a filename or a ZipInfo object. You can
1476 specify a different directory using `path'.
1477 """
Christian Heimes790c8232008-01-07 21:14:23 +00001478 if path is None:
1479 path = os.getcwd()
Serhiy Storchaka8606e952017-03-08 14:37:51 +02001480 else:
1481 path = os.fspath(path)
Christian Heimes790c8232008-01-07 21:14:23 +00001482
1483 return self._extract_member(member, path, pwd)
1484
1485 def extractall(self, path=None, members=None, pwd=None):
1486 """Extract all members from the archive to the current working
1487 directory. `path' specifies a different directory to extract to.
1488 `members' is optional and must be a subset of the list returned
1489 by namelist().
1490 """
1491 if members is None:
1492 members = self.namelist()
1493
Serhiy Storchaka8606e952017-03-08 14:37:51 +02001494 if path is None:
1495 path = os.getcwd()
1496 else:
1497 path = os.fspath(path)
1498
Christian Heimes790c8232008-01-07 21:14:23 +00001499 for zipinfo in members:
Serhiy Storchaka8606e952017-03-08 14:37:51 +02001500 self._extract_member(zipinfo, path, pwd)
Christian Heimes790c8232008-01-07 21:14:23 +00001501
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001502 @classmethod
1503 def _sanitize_windows_name(cls, arcname, pathsep):
1504 """Replace bad characters and remove trailing dots from parts."""
1505 table = cls._windows_illegal_name_trans_table
1506 if not table:
1507 illegal = ':<>|"?*'
1508 table = str.maketrans(illegal, '_' * len(illegal))
1509 cls._windows_illegal_name_trans_table = table
1510 arcname = arcname.translate(table)
1511 # remove trailing dots
1512 arcname = (x.rstrip('.') for x in arcname.split(pathsep))
1513 # rejoin, removing empty parts.
1514 arcname = pathsep.join(x for x in arcname if x)
1515 return arcname
1516
Christian Heimes790c8232008-01-07 21:14:23 +00001517 def _extract_member(self, member, targetpath, pwd):
1518 """Extract the ZipInfo object 'member' to a physical
1519 file on the path targetpath.
1520 """
Serhiy Storchaka8606e952017-03-08 14:37:51 +02001521 if not isinstance(member, ZipInfo):
1522 member = self.getinfo(member)
1523
Christian Heimes790c8232008-01-07 21:14:23 +00001524 # build the destination pathname, replacing
1525 # forward slashes to platform specific separators.
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001526 arcname = member.filename.replace('/', os.path.sep)
Christian Heimes790c8232008-01-07 21:14:23 +00001527
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001528 if os.path.altsep:
1529 arcname = arcname.replace(os.path.altsep, os.path.sep)
1530 # interpret absolute pathname as relative, remove drive letter or
1531 # UNC path, redundant separators, "." and ".." components.
1532 arcname = os.path.splitdrive(arcname)[1]
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001533 invalid_path_parts = ('', os.path.curdir, os.path.pardir)
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001534 arcname = os.path.sep.join(x for x in arcname.split(os.path.sep)
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001535 if x not in invalid_path_parts)
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001536 if os.path.sep == '\\':
Serhiy Storchakae5e64442013-02-02 19:50:59 +02001537 # filter illegal characters on Windows
Gregory P. Smith09aa7522013-02-03 00:36:32 -08001538 arcname = self._sanitize_windows_name(arcname, os.path.sep)
Christian Heimes790c8232008-01-07 21:14:23 +00001539
Gregory P. Smithb47acbf2013-02-01 11:22:43 -08001540 targetpath = os.path.join(targetpath, arcname)
Christian Heimes790c8232008-01-07 21:14:23 +00001541 targetpath = os.path.normpath(targetpath)
1542
1543 # Create all upper directories if necessary.
1544 upperdirs = os.path.dirname(targetpath)
1545 if upperdirs and not os.path.exists(upperdirs):
1546 os.makedirs(upperdirs)
1547
Serhiy Storchaka503f9082016-02-08 00:02:25 +02001548 if member.is_dir():
Martin v. Löwis70ccd162009-05-24 19:47:22 +00001549 if not os.path.isdir(targetpath):
1550 os.mkdir(targetpath)
Martin v. Löwis59e47792009-01-24 14:10:07 +00001551 return targetpath
1552
Antoine Pitrou17babc52012-11-17 23:50:08 +01001553 with self.open(member, pwd=pwd) as source, \
1554 open(targetpath, "wb") as target:
1555 shutil.copyfileobj(source, target)
Christian Heimes790c8232008-01-07 21:14:23 +00001556
1557 return targetpath
1558
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001559 def _writecheck(self, zinfo):
Fred Drake484d7352000-10-02 21:14:52 +00001560 """Check for errors before writing a file to the archive."""
Raymond Hettinger54f02222002-06-01 14:18:47 +00001561 if zinfo.filename in self.NameToInfo:
Serhiy Storchaka9b7a1a12014-01-20 21:57:40 +02001562 import warnings
1563 warnings.warn('Duplicate name: %r' % zinfo.filename, stacklevel=3)
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001564 if self.mode not in ('w', 'x', 'a'):
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001565 raise ValueError("write() requires mode 'w', 'x', or 'a'")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001566 if not self.fp:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001567 raise ValueError(
Christian Tismer59202e52013-10-21 03:59:23 +02001568 "Attempt to write ZIP archive that was already closed")
Martin v. Löwisf6b16a42012-05-01 07:58:44 +02001569 _check_compression(zinfo.compress_type)
Serhiy Storchakacfbb3942014-09-23 21:34:24 +03001570 if not self._allowZip64:
1571 requires_zip64 = None
1572 if len(self.filelist) >= ZIP_FILECOUNT_LIMIT:
1573 requires_zip64 = "Files count"
1574 elif zinfo.file_size > ZIP64_LIMIT:
1575 requires_zip64 = "Filesize"
1576 elif zinfo.header_offset > ZIP64_LIMIT:
1577 requires_zip64 = "Zipfile size"
1578 if requires_zip64:
1579 raise LargeZipFile(requires_zip64 +
1580 " would require ZIP64 extensions")
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001581
1582 def write(self, filename, arcname=None, compress_type=None):
Fred Drake484d7352000-10-02 21:14:52 +00001583 """Put the bytes from filename into the archive under the name
1584 arcname."""
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001585 if not self.fp:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001586 raise ValueError(
Christian Tismer59202e52013-10-21 03:59:23 +02001587 "Attempt to write to ZIP archive that was already closed")
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001588 if self._writing:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001589 raise ValueError(
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001590 "Can't write to ZIP archive while an open writing handle exists"
1591 )
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001592
Serhiy Storchaka503f9082016-02-08 00:02:25 +02001593 zinfo = ZipInfo.from_file(filename, arcname)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001594
Serhiy Storchaka503f9082016-02-08 00:02:25 +02001595 if zinfo.is_dir():
1596 zinfo.compress_size = 0
1597 zinfo.CRC = 0
1598 else:
1599 if compress_type is not None:
1600 zinfo.compress_type = compress_type
1601 else:
1602 zinfo.compress_type = self.compression
1603
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001604 if zinfo.is_dir():
1605 with self._lock:
1606 if self._seekable:
1607 self.fp.seek(self.start_dir)
1608 zinfo.header_offset = self.fp.tell() # Start of header bytes
1609 if zinfo.compress_type == ZIP_LZMA:
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001610 # Compressed data includes an end-of-stream (EOS) marker
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001611 zinfo.flag_bits |= 0x02
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001612
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001613 self._writecheck(zinfo)
1614 self._didModify = True
Martin v. Löwis59e47792009-01-24 14:10:07 +00001615
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001616 self.filelist.append(zinfo)
1617 self.NameToInfo[zinfo.filename] = zinfo
1618 self.fp.write(zinfo.FileHeader(False))
1619 self.start_dir = self.fp.tell()
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001620 else:
1621 with open(filename, "rb") as src, self.open(zinfo, 'w') as dest:
1622 shutil.copyfileobj(src, dest, 1024*8)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001623
Ronald Oussorenee5c8852010-02-07 20:24:02 +00001624 def writestr(self, zinfo_or_arcname, data, compress_type=None):
Guido van Rossum85825dc2007-08-27 17:03:28 +00001625 """Write a file into the archive. The contents is 'data', which
1626 may be either a 'str' or a 'bytes' instance; if it is a 'str',
1627 it is encoded as UTF-8 first.
1628 'zinfo_or_arcname' is either a ZipInfo instance or
Just van Rossumb083cb32002-12-12 12:23:32 +00001629 the name of the file in the archive."""
Guido van Rossum85825dc2007-08-27 17:03:28 +00001630 if isinstance(data, str):
1631 data = data.encode("utf-8")
Just van Rossumb083cb32002-12-12 12:23:32 +00001632 if not isinstance(zinfo_or_arcname, ZipInfo):
1633 zinfo = ZipInfo(filename=zinfo_or_arcname,
Guido van Rossum7736b5b2008-01-15 21:44:53 +00001634 date_time=time.localtime(time.time())[:6])
Just van Rossumb083cb32002-12-12 12:23:32 +00001635 zinfo.compress_type = self.compression
Serhiy Storchaka46a34922014-09-23 22:40:23 +03001636 if zinfo.filename[-1] == '/':
1637 zinfo.external_attr = 0o40775 << 16 # drwxrwxr-x
1638 zinfo.external_attr |= 0x10 # MS-DOS directory flag
1639 else:
1640 zinfo.external_attr = 0o600 << 16 # ?rw-------
Just van Rossumb083cb32002-12-12 12:23:32 +00001641 else:
1642 zinfo = zinfo_or_arcname
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001643
1644 if not self.fp:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001645 raise ValueError(
Christian Tismer59202e52013-10-21 03:59:23 +02001646 "Attempt to write to ZIP archive that was already closed")
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001647 if self._writing:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001648 raise ValueError(
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001649 "Can't write to ZIP archive while an open writing handle exists."
1650 )
1651
1652 if compress_type is not None:
1653 zinfo.compress_type = compress_type
Guido van Rossumb5a755e2007-07-18 18:15:48 +00001654
Guido van Rossum85825dc2007-08-27 17:03:28 +00001655 zinfo.file_size = len(data) # Uncompressed size
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001656 with self._lock:
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001657 with self.open(zinfo, mode='w') as dest:
1658 dest.write(data)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001659
1660 def __del__(self):
Fred Drake484d7352000-10-02 21:14:52 +00001661 """Call the "close()" method in case the user forgot."""
Tim Petersd15f8bb2001-11-28 23:16:40 +00001662 self.close()
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001663
1664 def close(self):
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001665 """Close the file, and for mode 'w', 'x' and 'a' write the ending
Fred Drake484d7352000-10-02 21:14:52 +00001666 records."""
Tim Petersd15f8bb2001-11-28 23:16:40 +00001667 if self.fp is None:
1668 return
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001669
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001670 if self._writing:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001671 raise ValueError("Can't close the ZIP file while there is "
1672 "an open writing handle on it. "
1673 "Close the writing handle before closing the zip.")
Serhiy Storchaka18ee29d2016-05-13 13:52:49 +03001674
Antoine Pitrou17babc52012-11-17 23:50:08 +01001675 try:
Serhiy Storchaka764fc9b2015-03-25 10:09:41 +02001676 if self.mode in ('w', 'x', 'a') and self._didModify: # write ending records
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001677 with self._lock:
Serhiy Storchaka77d89972015-03-23 01:09:35 +02001678 if self._seekable:
Serhiy Storchakaa14f7d22015-01-26 14:01:27 +02001679 self.fp.seek(self.start_dir)
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001680 self._write_end_record()
Antoine Pitrou17babc52012-11-17 23:50:08 +01001681 finally:
1682 fp = self.fp
1683 self.fp = None
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001684 self._fpclose(fp)
1685
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001686 def _write_end_record(self):
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001687 for zinfo in self.filelist: # write central directory
1688 dt = zinfo.date_time
1689 dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
1690 dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
1691 extra = []
1692 if zinfo.file_size > ZIP64_LIMIT \
1693 or zinfo.compress_size > ZIP64_LIMIT:
1694 extra.append(zinfo.file_size)
1695 extra.append(zinfo.compress_size)
1696 file_size = 0xffffffff
1697 compress_size = 0xffffffff
1698 else:
1699 file_size = zinfo.file_size
1700 compress_size = zinfo.compress_size
1701
Serhiy Storchaka3763ea82017-05-06 14:46:01 +03001702 if zinfo.header_offset > ZIP64_LIMIT:
1703 extra.append(zinfo.header_offset)
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001704 header_offset = 0xffffffff
Serhiy Storchaka3763ea82017-05-06 14:46:01 +03001705 else:
1706 header_offset = zinfo.header_offset
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001707
1708 extra_data = zinfo.extra
1709 min_version = 0
1710 if extra:
1711 # Append a ZIP64 field to the extra's
1712 extra_data = struct.pack(
1713 '<HH' + 'Q'*len(extra),
1714 1, 8*len(extra), *extra) + extra_data
1715
1716 min_version = ZIP64_VERSION
1717
1718 if zinfo.compress_type == ZIP_BZIP2:
1719 min_version = max(BZIP2_VERSION, min_version)
1720 elif zinfo.compress_type == ZIP_LZMA:
1721 min_version = max(LZMA_VERSION, min_version)
1722
1723 extract_version = max(min_version, zinfo.extract_version)
1724 create_version = max(min_version, zinfo.create_version)
1725 try:
1726 filename, flag_bits = zinfo._encodeFilenameFlags()
1727 centdir = struct.pack(structCentralDir,
1728 stringCentralDir, create_version,
1729 zinfo.create_system, extract_version, zinfo.reserved,
1730 flag_bits, zinfo.compress_type, dostime, dosdate,
1731 zinfo.CRC, compress_size, file_size,
1732 len(filename), len(extra_data), len(zinfo.comment),
1733 0, zinfo.internal_attr, zinfo.external_attr,
1734 header_offset)
1735 except DeprecationWarning:
1736 print((structCentralDir, stringCentralDir, create_version,
1737 zinfo.create_system, extract_version, zinfo.reserved,
1738 zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
1739 zinfo.CRC, compress_size, file_size,
1740 len(zinfo.filename), len(extra_data), len(zinfo.comment),
1741 0, zinfo.internal_attr, zinfo.external_attr,
1742 header_offset), file=sys.stderr)
1743 raise
1744 self.fp.write(centdir)
1745 self.fp.write(filename)
1746 self.fp.write(extra_data)
1747 self.fp.write(zinfo.comment)
1748
1749 pos2 = self.fp.tell()
1750 # Write end-of-zip-archive record
1751 centDirCount = len(self.filelist)
1752 centDirSize = pos2 - self.start_dir
Serhiy Storchaka3763ea82017-05-06 14:46:01 +03001753 centDirOffset = self.start_dir
Serhiy Storchakaf15e5242015-01-26 13:53:38 +02001754 requires_zip64 = None
1755 if centDirCount > ZIP_FILECOUNT_LIMIT:
1756 requires_zip64 = "Files count"
1757 elif centDirOffset > ZIP64_LIMIT:
1758 requires_zip64 = "Central directory offset"
1759 elif centDirSize > ZIP64_LIMIT:
1760 requires_zip64 = "Central directory size"
1761 if requires_zip64:
1762 # Need to write the ZIP64 end-of-archive records
1763 if not self._allowZip64:
1764 raise LargeZipFile(requires_zip64 +
1765 " would require ZIP64 extensions")
1766 zip64endrec = struct.pack(
1767 structEndArchive64, stringEndArchive64,
1768 44, 45, 45, 0, 0, centDirCount, centDirCount,
1769 centDirSize, centDirOffset)
1770 self.fp.write(zip64endrec)
1771
1772 zip64locrec = struct.pack(
1773 structEndArchive64Locator,
1774 stringEndArchive64Locator, 0, pos2, 1)
1775 self.fp.write(zip64locrec)
1776 centDirCount = min(centDirCount, 0xFFFF)
1777 centDirSize = min(centDirSize, 0xFFFFFFFF)
1778 centDirOffset = min(centDirOffset, 0xFFFFFFFF)
1779
1780 endrec = struct.pack(structEndArchive, stringEndArchive,
1781 0, 0, centDirCount, centDirCount,
1782 centDirSize, centDirOffset, len(self._comment))
1783 self.fp.write(endrec)
1784 self.fp.write(self._comment)
1785 self.fp.flush()
1786
Serhiy Storchaka1ad088f2014-12-03 09:11:57 +02001787 def _fpclose(self, fp):
1788 assert self._fileRefCnt > 0
1789 self._fileRefCnt -= 1
1790 if not self._fileRefCnt and not self._filePassed:
1791 fp.close()
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001792
1793
1794class PyZipFile(ZipFile):
Fred Drake484d7352000-10-02 21:14:52 +00001795 """Class to create ZIP archives with Python library files and packages."""
1796
Georg Brandl8334fd92010-12-04 10:26:46 +00001797 def __init__(self, file, mode="r", compression=ZIP_STORED,
Serhiy Storchaka235c5e02013-11-23 15:55:38 +02001798 allowZip64=True, optimize=-1):
Georg Brandl8334fd92010-12-04 10:26:46 +00001799 ZipFile.__init__(self, file, mode=mode, compression=compression,
1800 allowZip64=allowZip64)
1801 self._optimize = optimize
1802
Christian Tismer59202e52013-10-21 03:59:23 +02001803 def writepy(self, pathname, basename="", filterfunc=None):
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001804 """Add all files from "pathname" to the ZIP archive.
1805
Fred Drake484d7352000-10-02 21:14:52 +00001806 If pathname is a package directory, search the directory and
1807 all package subdirectories recursively for all *.py and enter
1808 the modules into the archive. If pathname is a plain
1809 directory, listdir *.py and enter all modules. Else, pathname
1810 must be a Python *.py file and the module will be put into the
Brett Cannonf299abd2015-04-13 14:21:02 -04001811 archive. Added modules are always module.pyc.
Fred Drake484d7352000-10-02 21:14:52 +00001812 This method will compile the module.py into module.pyc if
1813 necessary.
Christian Tismer59202e52013-10-21 03:59:23 +02001814 If filterfunc(pathname) is given, it is called with every argument.
1815 When it is False, the file or directory is skipped.
Fred Drake484d7352000-10-02 21:14:52 +00001816 """
Serhiy Storchaka8606e952017-03-08 14:37:51 +02001817 pathname = os.fspath(pathname)
Christian Tismer59202e52013-10-21 03:59:23 +02001818 if filterfunc and not filterfunc(pathname):
1819 if self.debug:
Christian Tismer410d9312013-10-22 04:09:28 +02001820 label = 'path' if os.path.isdir(pathname) else 'file'
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001821 print('%s %r skipped by filterfunc' % (label, pathname))
Christian Tismer59202e52013-10-21 03:59:23 +02001822 return
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001823 dir, name = os.path.split(pathname)
1824 if os.path.isdir(pathname):
1825 initname = os.path.join(pathname, "__init__.py")
1826 if os.path.isfile(initname):
1827 # This is a package directory, add it
1828 if basename:
1829 basename = "%s/%s" % (basename, name)
1830 else:
1831 basename = name
1832 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001833 print("Adding package in", pathname, "as", basename)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001834 fname, arcname = self._get_codename(initname[0:-3], basename)
1835 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001836 print("Adding", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001837 self.write(fname, arcname)
1838 dirlist = os.listdir(pathname)
1839 dirlist.remove("__init__.py")
1840 # Add all *.py files and package subdirectories
1841 for filename in dirlist:
1842 path = os.path.join(pathname, filename)
1843 root, ext = os.path.splitext(filename)
1844 if os.path.isdir(path):
1845 if os.path.isfile(os.path.join(path, "__init__.py")):
1846 # This is a package directory, add it
Christian Tismer59202e52013-10-21 03:59:23 +02001847 self.writepy(path, basename,
1848 filterfunc=filterfunc) # Recursive call
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001849 elif ext == ".py":
Christian Tismer410d9312013-10-22 04:09:28 +02001850 if filterfunc and not filterfunc(path):
1851 if self.debug:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001852 print('file %r skipped by filterfunc' % path)
Christian Tismer410d9312013-10-22 04:09:28 +02001853 continue
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001854 fname, arcname = self._get_codename(path[0:-3],
Christian Tismer59202e52013-10-21 03:59:23 +02001855 basename)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001856 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001857 print("Adding", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001858 self.write(fname, arcname)
1859 else:
1860 # This is NOT a package directory, add its files at top level
1861 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001862 print("Adding files from directory", pathname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001863 for filename in os.listdir(pathname):
1864 path = os.path.join(pathname, filename)
1865 root, ext = os.path.splitext(filename)
1866 if ext == ".py":
Christian Tismer410d9312013-10-22 04:09:28 +02001867 if filterfunc and not filterfunc(path):
1868 if self.debug:
Serhiy Storchakab0d497c2016-09-10 21:28:07 +03001869 print('file %r skipped by filterfunc' % path)
Christian Tismer410d9312013-10-22 04:09:28 +02001870 continue
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001871 fname, arcname = self._get_codename(path[0:-3],
Christian Tismer59202e52013-10-21 03:59:23 +02001872 basename)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001873 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001874 print("Adding", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001875 self.write(fname, arcname)
1876 else:
1877 if pathname[-3:] != ".py":
Collin Winterce36ad82007-08-30 01:19:48 +00001878 raise RuntimeError(
Christian Tismer59202e52013-10-21 03:59:23 +02001879 'Files added with writepy() must end with ".py"')
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001880 fname, arcname = self._get_codename(pathname[0:-3], basename)
1881 if self.debug:
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001882 print("Adding file", arcname)
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001883 self.write(fname, arcname)
1884
1885 def _get_codename(self, pathname, basename):
1886 """Return (filename, archivename) for the path.
1887
Fred Drake484d7352000-10-02 21:14:52 +00001888 Given a module name path, return the correct file path and
1889 archive name, compiling if necessary. For example, given
1890 /python/lib/string, return (/python/lib/string.pyc, string).
1891 """
Georg Brandl8334fd92010-12-04 10:26:46 +00001892 def _compile(file, optimize=-1):
1893 import py_compile
1894 if self.debug:
1895 print("Compiling", file)
1896 try:
1897 py_compile.compile(file, doraise=True, optimize=optimize)
Serhiy Storchaka45c43752013-01-29 20:10:28 +02001898 except py_compile.PyCompileError as err:
Georg Brandl8334fd92010-12-04 10:26:46 +00001899 print(err.msg)
1900 return False
1901 return True
1902
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001903 file_py = pathname + ".py"
1904 file_pyc = pathname + ".pyc"
Brett Cannonf299abd2015-04-13 14:21:02 -04001905 pycache_opt0 = importlib.util.cache_from_source(file_py, optimization='')
1906 pycache_opt1 = importlib.util.cache_from_source(file_py, optimization=1)
1907 pycache_opt2 = importlib.util.cache_from_source(file_py, optimization=2)
Georg Brandl8334fd92010-12-04 10:26:46 +00001908 if self._optimize == -1:
1909 # legacy mode: use whatever file is present
Brett Cannonf299abd2015-04-13 14:21:02 -04001910 if (os.path.isfile(file_pyc) and
Georg Brandl8334fd92010-12-04 10:26:46 +00001911 os.stat(file_pyc).st_mtime >= os.stat(file_py).st_mtime):
1912 # Use .pyc file.
1913 arcname = fname = file_pyc
Brett Cannonf299abd2015-04-13 14:21:02 -04001914 elif (os.path.isfile(pycache_opt0) and
1915 os.stat(pycache_opt0).st_mtime >= os.stat(file_py).st_mtime):
Georg Brandl8334fd92010-12-04 10:26:46 +00001916 # Use the __pycache__/*.pyc file, but write it to the legacy pyc
1917 # file name in the archive.
Brett Cannonf299abd2015-04-13 14:21:02 -04001918 fname = pycache_opt0
Georg Brandl8334fd92010-12-04 10:26:46 +00001919 arcname = file_pyc
Brett Cannonf299abd2015-04-13 14:21:02 -04001920 elif (os.path.isfile(pycache_opt1) and
1921 os.stat(pycache_opt1).st_mtime >= os.stat(file_py).st_mtime):
1922 # Use the __pycache__/*.pyc file, but write it to the legacy pyc
Georg Brandl8334fd92010-12-04 10:26:46 +00001923 # file name in the archive.
Brett Cannonf299abd2015-04-13 14:21:02 -04001924 fname = pycache_opt1
1925 arcname = file_pyc
1926 elif (os.path.isfile(pycache_opt2) and
1927 os.stat(pycache_opt2).st_mtime >= os.stat(file_py).st_mtime):
1928 # Use the __pycache__/*.pyc file, but write it to the legacy pyc
1929 # file name in the archive.
1930 fname = pycache_opt2
1931 arcname = file_pyc
Barry Warsaw28a691b2010-04-17 00:19:56 +00001932 else:
Georg Brandl8334fd92010-12-04 10:26:46 +00001933 # Compile py into PEP 3147 pyc file.
1934 if _compile(file_py):
Brett Cannonf299abd2015-04-13 14:21:02 -04001935 if sys.flags.optimize == 0:
1936 fname = pycache_opt0
1937 elif sys.flags.optimize == 1:
1938 fname = pycache_opt1
1939 else:
1940 fname = pycache_opt2
1941 arcname = file_pyc
Georg Brandl8334fd92010-12-04 10:26:46 +00001942 else:
1943 fname = arcname = file_py
1944 else:
1945 # new mode: use given optimization level
1946 if self._optimize == 0:
Brett Cannonf299abd2015-04-13 14:21:02 -04001947 fname = pycache_opt0
Georg Brandl8334fd92010-12-04 10:26:46 +00001948 arcname = file_pyc
1949 else:
Brett Cannonf299abd2015-04-13 14:21:02 -04001950 arcname = file_pyc
1951 if self._optimize == 1:
1952 fname = pycache_opt1
1953 elif self._optimize == 2:
1954 fname = pycache_opt2
1955 else:
1956 msg = "invalid value for 'optimize': {!r}".format(self._optimize)
1957 raise ValueError(msg)
Georg Brandl8334fd92010-12-04 10:26:46 +00001958 if not (os.path.isfile(fname) and
1959 os.stat(fname).st_mtime >= os.stat(file_py).st_mtime):
1960 if not _compile(file_py, optimize=self._optimize):
1961 fname = arcname = file_py
Barry Warsaw28a691b2010-04-17 00:19:56 +00001962 archivename = os.path.split(arcname)[1]
Guido van Rossum32abe6f2000-03-31 17:30:02 +00001963 if basename:
1964 archivename = "%s/%s" % (basename, archivename)
1965 return (fname, archivename)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001966
1967
Serhiy Storchaka8c933102016-10-23 13:32:12 +03001968def main(args=None):
1969 import argparse
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001970
Serhiy Storchaka150cd192017-04-07 18:56:12 +03001971 description = 'A simple command-line interface for zipfile module.'
Serhiy Storchaka8c933102016-10-23 13:32:12 +03001972 parser = argparse.ArgumentParser(description=description)
Serhiy Storchaka150cd192017-04-07 18:56:12 +03001973 group = parser.add_mutually_exclusive_group(required=True)
Serhiy Storchaka8c933102016-10-23 13:32:12 +03001974 group.add_argument('-l', '--list', metavar='<zipfile>',
1975 help='Show listing of a zipfile')
1976 group.add_argument('-e', '--extract', nargs=2,
1977 metavar=('<zipfile>', '<output_dir>'),
1978 help='Extract zipfile into target dir')
1979 group.add_argument('-c', '--create', nargs='+',
1980 metavar=('<name>', '<file>'),
1981 help='Create zipfile from sources')
1982 group.add_argument('-t', '--test', metavar='<zipfile>',
1983 help='Test if a zipfile is valid')
1984 args = parser.parse_args(args)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001985
Serhiy Storchaka8c933102016-10-23 13:32:12 +03001986 if args.test is not None:
1987 src = args.test
1988 with ZipFile(src, 'r') as zf:
Antoine Pitrou17babc52012-11-17 23:50:08 +01001989 badfile = zf.testzip()
Antoine Pitrou7c8bcb62010-08-12 15:11:50 +00001990 if badfile:
1991 print("The following enclosed file is corrupted: {!r}".format(badfile))
Guido van Rossumbe19ed72007-02-09 05:37:30 +00001992 print("Done testing")
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001993
Serhiy Storchaka8c933102016-10-23 13:32:12 +03001994 elif args.list is not None:
1995 src = args.list
1996 with ZipFile(src, 'r') as zf:
1997 zf.printdir()
Thomas Wouters0e3f5912006-08-11 14:57:12 +00001998
Serhiy Storchaka8c933102016-10-23 13:32:12 +03001999 elif args.extract is not None:
2000 src, curdir = args.extract
2001 with ZipFile(src, 'r') as zf:
2002 zf.extractall(curdir)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002003
Serhiy Storchaka8c933102016-10-23 13:32:12 +03002004 elif args.create is not None:
2005 zip_name = args.create.pop(0)
2006 files = args.create
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002007
2008 def addToZip(zf, path, zippath):
2009 if os.path.isfile(path):
2010 zf.write(path, zippath, ZIP_DEFLATED)
2011 elif os.path.isdir(path):
Serhiy Storchaka518e71b2014-10-04 13:39:34 +03002012 if zippath:
2013 zf.write(path, zippath)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002014 for nm in os.listdir(path):
2015 addToZip(zf,
Christian Tismer59202e52013-10-21 03:59:23 +02002016 os.path.join(path, nm), os.path.join(zippath, nm))
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002017 # else: ignore
2018
Serhiy Storchaka8c933102016-10-23 13:32:12 +03002019 with ZipFile(zip_name, 'w') as zf:
2020 for path in files:
Serhiy Storchaka518e71b2014-10-04 13:39:34 +03002021 zippath = os.path.basename(path)
2022 if not zippath:
2023 zippath = os.path.basename(os.path.dirname(path))
2024 if zippath in ('', os.curdir, os.pardir):
2025 zippath = ''
2026 addToZip(zf, path, zippath)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002027
2028if __name__ == "__main__":
2029 main()