Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1 | """ |
| 2 | Read and write ZIP files. |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 3 | |
| 4 | XXX references to utf-8 need further investigation. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 5 | """ |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 6 | import binascii |
| 7 | import functools |
| 8 | import importlib.util |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 9 | import io |
Miss Islington (bot) | c410f38 | 2019-08-24 09:03:52 -0700 | [diff] [blame] | 10 | import itertools |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 11 | import os |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 12 | import posixpath |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 13 | import shutil |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 14 | import stat |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 15 | import struct |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 16 | import sys |
Antoine Pitrou | a6a4dc8 | 2017-09-07 18:56:24 +0200 | [diff] [blame] | 17 | import threading |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 18 | import time |
Miss Islington (bot) | ed4d263 | 2020-02-11 19:21:32 -0800 | [diff] [blame] | 19 | import contextlib |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 20 | |
| 21 | try: |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 22 | import zlib # We may need its compression method |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 23 | crc32 = zlib.crc32 |
Brett Cannon | 260fbe8 | 2013-07-04 18:16:15 -0400 | [diff] [blame] | 24 | except ImportError: |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 25 | zlib = None |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 26 | crc32 = binascii.crc32 |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 27 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 28 | try: |
| 29 | import bz2 # We may need its compression method |
Brett Cannon | 260fbe8 | 2013-07-04 18:16:15 -0400 | [diff] [blame] | 30 | except ImportError: |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 31 | bz2 = None |
| 32 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 33 | try: |
| 34 | import lzma # We may need its compression method |
Brett Cannon | 260fbe8 | 2013-07-04 18:16:15 -0400 | [diff] [blame] | 35 | except ImportError: |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 36 | lzma = None |
| 37 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 38 | __all__ = ["BadZipFile", "BadZipfile", "error", |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 39 | "ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2", "ZIP_LZMA", |
Miss Islington (bot) | 5c1d745 | 2020-05-25 23:44:57 -0700 | [diff] [blame] | 40 | "is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile", |
| 41 | "Path"] |
Skip Montanaro | 40fc160 | 2001-03-01 04:27:19 +0000 | [diff] [blame] | 42 | |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 43 | class BadZipFile(Exception): |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 44 | pass |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 45 | |
| 46 | |
| 47 | class LargeZipFile(Exception): |
| 48 | """ |
| 49 | Raised when writing a zipfile, the zipfile requires ZIP64 extensions |
| 50 | and those extensions are disabled. |
| 51 | """ |
| 52 | |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 53 | error = BadZipfile = BadZipFile # Pre-3.2 compatibility names |
| 54 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 55 | |
Amaury Forgeot d'Arc | 0c3f8a4 | 2009-01-17 16:42:26 +0000 | [diff] [blame] | 56 | ZIP64_LIMIT = (1 << 31) - 1 |
Serhiy Storchaka | cfbb394 | 2014-09-23 21:34:24 +0300 | [diff] [blame] | 57 | ZIP_FILECOUNT_LIMIT = (1 << 16) - 1 |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 58 | ZIP_MAX_COMMENT = (1 << 16) - 1 |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 59 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 60 | # constants for Zip file compression methods |
| 61 | ZIP_STORED = 0 |
| 62 | ZIP_DEFLATED = 8 |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 63 | ZIP_BZIP2 = 12 |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 64 | ZIP_LZMA = 14 |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 65 | # Other ZIP compression methods not supported |
| 66 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 67 | DEFAULT_VERSION = 20 |
| 68 | ZIP64_VERSION = 45 |
| 69 | BZIP2_VERSION = 46 |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 70 | LZMA_VERSION = 63 |
Martin v. Löwis | d099b56 | 2012-05-01 14:08:22 +0200 | [diff] [blame] | 71 | # we recognize (but not necessarily support) all features up to that version |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 72 | MAX_EXTRACT_VERSION = 63 |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 73 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 74 | # Below are some formats and associated data for reading/writing headers using |
| 75 | # the struct module. The names and structures of headers/records are those used |
| 76 | # in the PKWARE description of the ZIP file format: |
| 77 | # http://www.pkware.com/documents/casestudies/APPNOTE.TXT |
| 78 | # (URL valid as of January 2008) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 79 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 80 | # The "end of central directory" structure, magic number, size, and indices |
| 81 | # (section V.I in the format document) |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 82 | structEndArchive = b"<4s4H2LH" |
| 83 | stringEndArchive = b"PK\005\006" |
| 84 | sizeEndCentDir = struct.calcsize(structEndArchive) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 85 | |
| 86 | _ECD_SIGNATURE = 0 |
| 87 | _ECD_DISK_NUMBER = 1 |
| 88 | _ECD_DISK_START = 2 |
| 89 | _ECD_ENTRIES_THIS_DISK = 3 |
| 90 | _ECD_ENTRIES_TOTAL = 4 |
| 91 | _ECD_SIZE = 5 |
| 92 | _ECD_OFFSET = 6 |
| 93 | _ECD_COMMENT_SIZE = 7 |
| 94 | # These last two indices are not part of the structure as defined in the |
| 95 | # spec, but they are used internally by this module as a convenience |
| 96 | _ECD_COMMENT = 8 |
| 97 | _ECD_LOCATION = 9 |
| 98 | |
| 99 | # The "central directory" structure, magic number, size, and indices |
| 100 | # of entries in the structure (section V.F in the format document) |
| 101 | structCentralDir = "<4s4B4HL2L5H2L" |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 102 | stringCentralDir = b"PK\001\002" |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 103 | sizeCentralDir = struct.calcsize(structCentralDir) |
| 104 | |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 105 | # indexes of entries in the central directory structure |
| 106 | _CD_SIGNATURE = 0 |
| 107 | _CD_CREATE_VERSION = 1 |
| 108 | _CD_CREATE_SYSTEM = 2 |
| 109 | _CD_EXTRACT_VERSION = 3 |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 110 | _CD_EXTRACT_SYSTEM = 4 |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 111 | _CD_FLAG_BITS = 5 |
| 112 | _CD_COMPRESS_TYPE = 6 |
| 113 | _CD_TIME = 7 |
| 114 | _CD_DATE = 8 |
| 115 | _CD_CRC = 9 |
| 116 | _CD_COMPRESSED_SIZE = 10 |
| 117 | _CD_UNCOMPRESSED_SIZE = 11 |
| 118 | _CD_FILENAME_LENGTH = 12 |
| 119 | _CD_EXTRA_FIELD_LENGTH = 13 |
| 120 | _CD_COMMENT_LENGTH = 14 |
| 121 | _CD_DISK_NUMBER_START = 15 |
| 122 | _CD_INTERNAL_FILE_ATTRIBUTES = 16 |
| 123 | _CD_EXTERNAL_FILE_ATTRIBUTES = 17 |
| 124 | _CD_LOCAL_HEADER_OFFSET = 18 |
| 125 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 126 | # The "local file header" structure, magic number, size, and indices |
| 127 | # (section V.A in the format document) |
| 128 | structFileHeader = "<4s2B4HL2L2H" |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 129 | stringFileHeader = b"PK\003\004" |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 130 | sizeFileHeader = struct.calcsize(structFileHeader) |
| 131 | |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 132 | _FH_SIGNATURE = 0 |
| 133 | _FH_EXTRACT_VERSION = 1 |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 134 | _FH_EXTRACT_SYSTEM = 2 |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 135 | _FH_GENERAL_PURPOSE_FLAG_BITS = 3 |
| 136 | _FH_COMPRESSION_METHOD = 4 |
| 137 | _FH_LAST_MOD_TIME = 5 |
| 138 | _FH_LAST_MOD_DATE = 6 |
| 139 | _FH_CRC = 7 |
| 140 | _FH_COMPRESSED_SIZE = 8 |
| 141 | _FH_UNCOMPRESSED_SIZE = 9 |
| 142 | _FH_FILENAME_LENGTH = 10 |
| 143 | _FH_EXTRA_FIELD_LENGTH = 11 |
| 144 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 145 | # The "Zip64 end of central directory locator" structure, magic number, and size |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 146 | structEndArchive64Locator = "<4sLQL" |
| 147 | stringEndArchive64Locator = b"PK\x06\x07" |
| 148 | sizeEndCentDir64Locator = struct.calcsize(structEndArchive64Locator) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 149 | |
| 150 | # The "Zip64 end of central directory" record, magic number, size, and indices |
| 151 | # (section V.G in the format document) |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 152 | structEndArchive64 = "<4sQ2H2L4Q" |
| 153 | stringEndArchive64 = b"PK\x06\x06" |
| 154 | sizeEndCentDir64 = struct.calcsize(structEndArchive64) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 155 | |
| 156 | _CD64_SIGNATURE = 0 |
| 157 | _CD64_DIRECTORY_RECSIZE = 1 |
| 158 | _CD64_CREATE_VERSION = 2 |
| 159 | _CD64_EXTRACT_VERSION = 3 |
| 160 | _CD64_DISK_NUMBER = 4 |
| 161 | _CD64_DISK_NUMBER_START = 5 |
| 162 | _CD64_NUMBER_ENTRIES_THIS_DISK = 6 |
| 163 | _CD64_NUMBER_ENTRIES_TOTAL = 7 |
| 164 | _CD64_DIRECTORY_SIZE = 8 |
| 165 | _CD64_OFFSET_START_CENTDIR = 9 |
| 166 | |
Silas Sewell | 4ba3b50 | 2018-09-18 13:00:05 -0400 | [diff] [blame] | 167 | _DD_SIGNATURE = 0x08074b50 |
| 168 | |
Serhiy Storchaka | 9bdb7be | 2018-09-17 15:36:40 +0300 | [diff] [blame] | 169 | _EXTRA_FIELD_STRUCT = struct.Struct('<HH') |
| 170 | |
| 171 | def _strip_extra(extra, xids): |
| 172 | # Remove Extra Fields with specified IDs. |
| 173 | unpack = _EXTRA_FIELD_STRUCT.unpack |
| 174 | modified = False |
| 175 | buffer = [] |
| 176 | start = i = 0 |
| 177 | while i + 4 <= len(extra): |
| 178 | xid, xlen = unpack(extra[i : i + 4]) |
| 179 | j = i + 4 + xlen |
| 180 | if xid in xids: |
| 181 | if i != start: |
| 182 | buffer.append(extra[start : i]) |
| 183 | start = j |
| 184 | modified = True |
| 185 | i = j |
| 186 | if not modified: |
| 187 | return extra |
| 188 | return b''.join(buffer) |
| 189 | |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 190 | def _check_zipfile(fp): |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 191 | try: |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 192 | if _EndRecData(fp): |
| 193 | return True # file has correct magic number |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 194 | except OSError: |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 195 | pass |
Guido van Rossum | 8ca162f | 2002-04-07 06:36:23 +0000 | [diff] [blame] | 196 | return False |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 197 | |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 198 | def is_zipfile(filename): |
| 199 | """Quickly see if a file is a ZIP file by checking the magic number. |
| 200 | |
| 201 | The filename argument may be a file or file-like object too. |
| 202 | """ |
| 203 | result = False |
| 204 | try: |
| 205 | if hasattr(filename, "read"): |
| 206 | result = _check_zipfile(fp=filename) |
| 207 | else: |
| 208 | with open(filename, "rb") as fp: |
| 209 | result = _check_zipfile(fp) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 210 | except OSError: |
Antoine Pitrou | db5fe66 | 2008-12-27 15:50:40 +0000 | [diff] [blame] | 211 | pass |
| 212 | return result |
| 213 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 214 | def _EndRecData64(fpin, offset, endrec): |
| 215 | """ |
| 216 | Read the ZIP64 end-of-archive records and use that to update endrec |
| 217 | """ |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 218 | try: |
| 219 | fpin.seek(offset - sizeEndCentDir64Locator, 2) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 220 | except OSError: |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 221 | # If the seek fails, the file is not large enough to contain a ZIP64 |
| 222 | # end-of-archive record, so just return the end record we were given. |
| 223 | return endrec |
| 224 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 225 | data = fpin.read(sizeEndCentDir64Locator) |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 226 | if len(data) != sizeEndCentDir64Locator: |
| 227 | return endrec |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 228 | sig, diskno, reloff, disks = struct.unpack(structEndArchive64Locator, data) |
| 229 | if sig != stringEndArchive64Locator: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 230 | return endrec |
| 231 | |
Francisco Facioni | ab0716e | 2019-05-29 00:15:11 +0100 | [diff] [blame] | 232 | if diskno != 0 or disks > 1: |
Éric Araujo | ae2d832 | 2010-10-28 13:49:17 +0000 | [diff] [blame] | 233 | raise BadZipFile("zipfiles that span multiple disks are not supported") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 234 | |
| 235 | # Assume no 'zip64 extensible data' |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 236 | fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2) |
| 237 | data = fpin.read(sizeEndCentDir64) |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 238 | if len(data) != sizeEndCentDir64: |
| 239 | return endrec |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 240 | sig, sz, create_version, read_version, disk_num, disk_dir, \ |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 241 | dircount, dircount2, dirsize, diroffset = \ |
| 242 | struct.unpack(structEndArchive64, data) |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 243 | if sig != stringEndArchive64: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 244 | return endrec |
| 245 | |
| 246 | # Update the original endrec using data from the ZIP64 record |
Antoine Pitrou | 9e4fdf4 | 2008-09-05 23:43:02 +0000 | [diff] [blame] | 247 | endrec[_ECD_SIGNATURE] = sig |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 248 | endrec[_ECD_DISK_NUMBER] = disk_num |
| 249 | endrec[_ECD_DISK_START] = disk_dir |
| 250 | endrec[_ECD_ENTRIES_THIS_DISK] = dircount |
| 251 | endrec[_ECD_ENTRIES_TOTAL] = dircount2 |
| 252 | endrec[_ECD_SIZE] = dirsize |
| 253 | endrec[_ECD_OFFSET] = diroffset |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 254 | return endrec |
| 255 | |
| 256 | |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 257 | def _EndRecData(fpin): |
| 258 | """Return data from the "End of Central Directory" record, or None. |
| 259 | |
| 260 | The data is a list of the nine items in the ZIP "End of central dir" |
| 261 | record followed by a tenth item, the file seek offset of this record.""" |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 262 | |
| 263 | # Determine file size |
| 264 | fpin.seek(0, 2) |
| 265 | filesize = fpin.tell() |
| 266 | |
| 267 | # Check to see if this is ZIP file with no archive comment (the |
| 268 | # "end of central directory" structure should be the last item in the |
| 269 | # file if this is the case). |
Amaury Forgeot d'Arc | bc34780 | 2009-07-28 22:18:57 +0000 | [diff] [blame] | 270 | try: |
| 271 | fpin.seek(-sizeEndCentDir, 2) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 272 | except OSError: |
Amaury Forgeot d'Arc | bc34780 | 2009-07-28 22:18:57 +0000 | [diff] [blame] | 273 | return None |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 274 | data = fpin.read() |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 275 | if (len(data) == sizeEndCentDir and |
| 276 | data[0:4] == stringEndArchive and |
| 277 | data[-2:] == b"\000\000"): |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 278 | # the signature is correct and there's no comment, unpack structure |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 279 | endrec = struct.unpack(structEndArchive, data) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 280 | endrec=list(endrec) |
| 281 | |
| 282 | # Append a blank comment and record start offset |
| 283 | endrec.append(b"") |
| 284 | endrec.append(filesize - sizeEndCentDir) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 285 | |
Amaury Forgeot d'Arc | d3fb4bb | 2009-01-18 00:29:02 +0000 | [diff] [blame] | 286 | # Try to read the "Zip64 end of central directory" structure |
| 287 | return _EndRecData64(fpin, -sizeEndCentDir, endrec) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 288 | |
| 289 | # Either this is not a ZIP file, or it is a ZIP file with an archive |
| 290 | # comment. Search the end of the file for the "end of central directory" |
| 291 | # record signature. The comment is the last item in the ZIP file and may be |
| 292 | # up to 64K long. It is assumed that the "end of central directory" magic |
| 293 | # number does not appear in the comment. |
| 294 | maxCommentStart = max(filesize - (1 << 16) - sizeEndCentDir, 0) |
| 295 | fpin.seek(maxCommentStart, 0) |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 296 | data = fpin.read() |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 297 | start = data.rfind(stringEndArchive) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 298 | if start >= 0: |
| 299 | # found the magic number; attempt to unpack and interpret |
| 300 | recData = data[start:start+sizeEndCentDir] |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 301 | if len(recData) != sizeEndCentDir: |
| 302 | # Zip file is corrupted. |
| 303 | return None |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 304 | endrec = list(struct.unpack(structEndArchive, recData)) |
R David Murray | 4fbb9db | 2011-06-09 15:50:51 -0400 | [diff] [blame] | 305 | commentSize = endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file |
| 306 | comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize] |
| 307 | endrec.append(comment) |
| 308 | endrec.append(maxCommentStart + start) |
Amaury Forgeot d'Arc | d3fb4bb | 2009-01-18 00:29:02 +0000 | [diff] [blame] | 309 | |
R David Murray | 4fbb9db | 2011-06-09 15:50:51 -0400 | [diff] [blame] | 310 | # Try to read the "Zip64 end of central directory" structure |
| 311 | return _EndRecData64(fpin, maxCommentStart + start - filesize, |
| 312 | endrec) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 313 | |
| 314 | # Unable to find a valid end of central directory structure |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 315 | return None |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 316 | |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 317 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 318 | class ZipInfo (object): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 319 | """Class with attributes describing each file in the ZIP archive.""" |
| 320 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 321 | __slots__ = ( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 322 | 'orig_filename', |
| 323 | 'filename', |
| 324 | 'date_time', |
| 325 | 'compress_type', |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 326 | '_compresslevel', |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 327 | 'comment', |
| 328 | 'extra', |
| 329 | 'create_system', |
| 330 | 'create_version', |
| 331 | 'extract_version', |
| 332 | 'reserved', |
| 333 | 'flag_bits', |
| 334 | 'volume', |
| 335 | 'internal_attr', |
| 336 | 'external_attr', |
| 337 | 'header_offset', |
| 338 | 'CRC', |
| 339 | 'compress_size', |
| 340 | 'file_size', |
| 341 | '_raw_time', |
| 342 | ) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 343 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 344 | def __init__(self, filename="NoName", date_time=(1980,1,1,0,0,0)): |
Greg Ward | 8e36d28 | 2003-06-18 00:53:06 +0000 | [diff] [blame] | 345 | self.orig_filename = filename # Original file name in archive |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 346 | |
| 347 | # Terminate the file name at the first null byte. Null bytes in file |
| 348 | # names are used as tricks by viruses in archives. |
Greg Ward | 8e36d28 | 2003-06-18 00:53:06 +0000 | [diff] [blame] | 349 | null_byte = filename.find(chr(0)) |
| 350 | if null_byte >= 0: |
| 351 | filename = filename[0:null_byte] |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 352 | # This is used to ensure paths in generated ZIP files always use |
| 353 | # forward slashes as the directory separator, as required by the |
| 354 | # ZIP format specification. |
| 355 | if os.sep != "/" and os.sep in filename: |
Greg Ward | 8e36d28 | 2003-06-18 00:53:06 +0000 | [diff] [blame] | 356 | filename = filename.replace(os.sep, "/") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 357 | |
Greg Ward | 8e36d28 | 2003-06-18 00:53:06 +0000 | [diff] [blame] | 358 | self.filename = filename # Normalized file name |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 359 | self.date_time = date_time # year, month, day, hour, min, sec |
Senthil Kumaran | 29fa9d4 | 2011-10-20 01:46:00 +0800 | [diff] [blame] | 360 | |
| 361 | if date_time[0] < 1980: |
| 362 | raise ValueError('ZIP does not support timestamps before 1980') |
| 363 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 364 | # Standard values: |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 365 | self.compress_type = ZIP_STORED # Type of compression for the file |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 366 | self._compresslevel = None # Level for the compressor |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 367 | self.comment = b"" # Comment for each file |
| 368 | self.extra = b"" # ZIP extra data |
Martin v. Löwis | 0075690 | 2006-02-05 17:09:41 +0000 | [diff] [blame] | 369 | if sys.platform == 'win32': |
| 370 | self.create_system = 0 # System which created ZIP archive |
| 371 | else: |
| 372 | # Assume everything else is unix-y |
| 373 | self.create_system = 3 # System which created ZIP archive |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 374 | self.create_version = DEFAULT_VERSION # Version which created ZIP archive |
| 375 | self.extract_version = DEFAULT_VERSION # Version needed to extract archive |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 376 | self.reserved = 0 # Must be zero |
| 377 | self.flag_bits = 0 # ZIP flag bits |
| 378 | self.volume = 0 # Volume number of file header |
| 379 | self.internal_attr = 0 # Internal attributes |
| 380 | self.external_attr = 0 # External file attributes |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 381 | # Other attributes are set by class ZipFile: |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 382 | # header_offset Byte offset to the file header |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 383 | # CRC CRC-32 of the uncompressed file |
| 384 | # compress_size Size of the compressed file |
| 385 | # file_size Size of the uncompressed file |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 386 | |
Serhiy Storchaka | 51a4370 | 2014-10-29 22:42:06 +0200 | [diff] [blame] | 387 | def __repr__(self): |
| 388 | result = ['<%s filename=%r' % (self.__class__.__name__, self.filename)] |
| 389 | if self.compress_type != ZIP_STORED: |
| 390 | result.append(' compress_type=%s' % |
| 391 | compressor_names.get(self.compress_type, |
| 392 | self.compress_type)) |
| 393 | hi = self.external_attr >> 16 |
| 394 | lo = self.external_attr & 0xFFFF |
| 395 | if hi: |
| 396 | result.append(' filemode=%r' % stat.filemode(hi)) |
| 397 | if lo: |
| 398 | result.append(' external_attr=%#x' % lo) |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 399 | isdir = self.is_dir() |
Serhiy Storchaka | 51a4370 | 2014-10-29 22:42:06 +0200 | [diff] [blame] | 400 | if not isdir or self.file_size: |
| 401 | result.append(' file_size=%r' % self.file_size) |
| 402 | if ((not isdir or self.compress_size) and |
| 403 | (self.compress_type != ZIP_STORED or |
| 404 | self.file_size != self.compress_size)): |
| 405 | result.append(' compress_size=%r' % self.compress_size) |
| 406 | result.append('>') |
| 407 | return ''.join(result) |
| 408 | |
Serhiy Storchaka | 182d7cd | 2013-01-15 00:31:39 +0200 | [diff] [blame] | 409 | def FileHeader(self, zip64=None): |
Serhiy Storchaka | 4bb186d | 2018-11-25 09:51:14 +0200 | [diff] [blame] | 410 | """Return the per-file header as a bytes object.""" |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 411 | dt = self.date_time |
| 412 | dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] |
Tim Peters | 3caca23 | 2001-12-06 06:23:26 +0000 | [diff] [blame] | 413 | dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 414 | if self.flag_bits & 0x08: |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 415 | # Set these to zero because we write them after the file data |
| 416 | CRC = compress_size = file_size = 0 |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 417 | else: |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 418 | CRC = self.CRC |
| 419 | compress_size = self.compress_size |
| 420 | file_size = self.file_size |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 421 | |
| 422 | extra = self.extra |
| 423 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 424 | min_version = 0 |
Serhiy Storchaka | 182d7cd | 2013-01-15 00:31:39 +0200 | [diff] [blame] | 425 | if zip64 is None: |
| 426 | zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT |
| 427 | if zip64: |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 428 | fmt = '<HHQQ' |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 429 | extra = extra + struct.pack(fmt, |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 430 | 1, struct.calcsize(fmt)-4, file_size, compress_size) |
Serhiy Storchaka | 182d7cd | 2013-01-15 00:31:39 +0200 | [diff] [blame] | 431 | if file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT: |
| 432 | if not zip64: |
| 433 | raise LargeZipFile("Filesize would require ZIP64 extensions") |
| 434 | # File is larger than what fits into a 4 byte integer, |
| 435 | # fall back to the ZIP64 extension |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 436 | file_size = 0xffffffff |
| 437 | compress_size = 0xffffffff |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 438 | min_version = ZIP64_VERSION |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 439 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 440 | if self.compress_type == ZIP_BZIP2: |
| 441 | min_version = max(BZIP2_VERSION, min_version) |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 442 | elif self.compress_type == ZIP_LZMA: |
| 443 | min_version = max(LZMA_VERSION, min_version) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 444 | |
| 445 | self.extract_version = max(min_version, self.extract_version) |
| 446 | self.create_version = max(min_version, self.create_version) |
Martin v. Löwis | 8570f6a | 2008-05-05 17:44:38 +0000 | [diff] [blame] | 447 | filename, flag_bits = self._encodeFilenameFlags() |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 448 | header = struct.pack(structFileHeader, stringFileHeader, |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 449 | self.extract_version, self.reserved, flag_bits, |
| 450 | self.compress_type, dostime, dosdate, CRC, |
| 451 | compress_size, file_size, |
| 452 | len(filename), len(extra)) |
Martin v. Löwis | 8570f6a | 2008-05-05 17:44:38 +0000 | [diff] [blame] | 453 | return header + filename + extra |
| 454 | |
| 455 | def _encodeFilenameFlags(self): |
| 456 | try: |
| 457 | return self.filename.encode('ascii'), self.flag_bits |
| 458 | except UnicodeEncodeError: |
| 459 | return self.filename.encode('utf-8'), self.flag_bits | 0x800 |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 460 | |
| 461 | def _decodeExtra(self): |
| 462 | # Try to decode the extra field. |
| 463 | extra = self.extra |
| 464 | unpack = struct.unpack |
Gregory P. Smith | 0af8a86 | 2014-05-29 23:42:14 -0700 | [diff] [blame] | 465 | while len(extra) >= 4: |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 466 | tp, ln = unpack('<HH', extra[:4]) |
Serhiy Storchaka | feccdb2 | 2017-03-09 18:34:03 +0200 | [diff] [blame] | 467 | if ln+4 > len(extra): |
| 468 | raise BadZipFile("Corrupt extra field %04x (size=%d)" % (tp, ln)) |
| 469 | if tp == 0x0001: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 470 | if ln >= 24: |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 471 | counts = unpack('<QQQ', extra[4:28]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 472 | elif ln == 16: |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 473 | counts = unpack('<QQ', extra[4:20]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 474 | elif ln == 8: |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 475 | counts = unpack('<Q', extra[4:12]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 476 | elif ln == 0: |
| 477 | counts = () |
| 478 | else: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 479 | raise BadZipFile("Corrupt extra field %04x (size=%d)" % (tp, ln)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 480 | |
| 481 | idx = 0 |
| 482 | |
| 483 | # ZIP64 extension (large files and/or large archives) |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 484 | if self.file_size in (0xffffffffffffffff, 0xffffffff): |
Miss Skeleton (bot) | 3801b26 | 2019-10-29 00:44:07 -0700 | [diff] [blame] | 485 | if len(counts) <= idx: |
| 486 | raise BadZipFile( |
| 487 | "Corrupt zip64 extra field. File size not found." |
| 488 | ) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 489 | self.file_size = counts[idx] |
| 490 | idx += 1 |
| 491 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 492 | if self.compress_size == 0xFFFFFFFF: |
Miss Skeleton (bot) | 3801b26 | 2019-10-29 00:44:07 -0700 | [diff] [blame] | 493 | if len(counts) <= idx: |
| 494 | raise BadZipFile( |
| 495 | "Corrupt zip64 extra field. Compress size not found." |
| 496 | ) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 497 | self.compress_size = counts[idx] |
| 498 | idx += 1 |
| 499 | |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 500 | if self.header_offset == 0xffffffff: |
Miss Skeleton (bot) | 3801b26 | 2019-10-29 00:44:07 -0700 | [diff] [blame] | 501 | if len(counts) <= idx: |
| 502 | raise BadZipFile( |
| 503 | "Corrupt zip64 extra field. Header offset not found." |
| 504 | ) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 505 | old = self.header_offset |
| 506 | self.header_offset = counts[idx] |
| 507 | idx+=1 |
| 508 | |
| 509 | extra = extra[ln+4:] |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 510 | |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 511 | @classmethod |
Marcel Plch | a2fe1e5 | 2018-08-02 15:04:52 +0200 | [diff] [blame] | 512 | def from_file(cls, filename, arcname=None, *, strict_timestamps=True): |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 513 | """Construct an appropriate ZipInfo for a file on the filesystem. |
| 514 | |
| 515 | filename should be the path to a file or directory on the filesystem. |
| 516 | |
| 517 | arcname is the name which it will have within the archive (by default, |
| 518 | this will be the same as filename, but without a drive letter and with |
| 519 | leading path separators removed). |
| 520 | """ |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 521 | if isinstance(filename, os.PathLike): |
| 522 | filename = os.fspath(filename) |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 523 | st = os.stat(filename) |
| 524 | isdir = stat.S_ISDIR(st.st_mode) |
| 525 | mtime = time.localtime(st.st_mtime) |
| 526 | date_time = mtime[0:6] |
Marcel Plch | a2fe1e5 | 2018-08-02 15:04:52 +0200 | [diff] [blame] | 527 | if not strict_timestamps and date_time[0] < 1980: |
| 528 | date_time = (1980, 1, 1, 0, 0, 0) |
| 529 | elif not strict_timestamps and date_time[0] > 2107: |
| 530 | date_time = (2107, 12, 31, 23, 59, 59) |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 531 | # Create ZipInfo instance to store file information |
| 532 | if arcname is None: |
| 533 | arcname = filename |
| 534 | arcname = os.path.normpath(os.path.splitdrive(arcname)[1]) |
| 535 | while arcname[0] in (os.sep, os.altsep): |
| 536 | arcname = arcname[1:] |
| 537 | if isdir: |
| 538 | arcname += '/' |
| 539 | zinfo = cls(arcname, date_time) |
| 540 | zinfo.external_attr = (st.st_mode & 0xFFFF) << 16 # Unix attributes |
| 541 | if isdir: |
| 542 | zinfo.file_size = 0 |
| 543 | zinfo.external_attr |= 0x10 # MS-DOS directory flag |
| 544 | else: |
| 545 | zinfo.file_size = st.st_size |
| 546 | |
| 547 | return zinfo |
| 548 | |
| 549 | def is_dir(self): |
Serhiy Storchaka | f47fc55 | 2016-05-15 12:27:16 +0300 | [diff] [blame] | 550 | """Return True if this archive member is a directory.""" |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 551 | return self.filename[-1] == '/' |
| 552 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 553 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 554 | # ZIP encryption uses the CRC32 one-byte primitive for scrambling some |
| 555 | # internal keys. We noticed that a direct implementation is faster than |
| 556 | # relying on binascii.crc32(). |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 557 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 558 | _crctable = None |
| 559 | def _gen_crc(crc): |
| 560 | for j in range(8): |
| 561 | if crc & 1: |
| 562 | crc = (crc >> 1) ^ 0xEDB88320 |
| 563 | else: |
| 564 | crc >>= 1 |
| 565 | return crc |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 566 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 567 | # ZIP supports a password-based form of encryption. Even though known |
| 568 | # plaintext attacks have been found against it, it is still useful |
| 569 | # to be able to get data out of such a file. |
| 570 | # |
| 571 | # Usage: |
| 572 | # zd = _ZipDecrypter(mypwd) |
| 573 | # plain_bytes = zd(cypher_bytes) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 574 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 575 | def _ZipDecrypter(pwd): |
| 576 | key0 = 305419896 |
| 577 | key1 = 591751049 |
| 578 | key2 = 878082192 |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 579 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 580 | global _crctable |
| 581 | if _crctable is None: |
| 582 | _crctable = list(map(_gen_crc, range(256))) |
| 583 | crctable = _crctable |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 584 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 585 | def crc32(ch, crc): |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 586 | """Compute the CRC32 primitive on one byte.""" |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 587 | return (crc >> 8) ^ crctable[(crc ^ ch) & 0xFF] |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 588 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 589 | def update_keys(c): |
| 590 | nonlocal key0, key1, key2 |
| 591 | key0 = crc32(c, key0) |
| 592 | key1 = (key1 + (key0 & 0xFF)) & 0xFFFFFFFF |
| 593 | key1 = (key1 * 134775813 + 1) & 0xFFFFFFFF |
| 594 | key2 = crc32(key1 >> 24, key2) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 595 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 596 | for p in pwd: |
| 597 | update_keys(p) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 598 | |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 599 | def decrypter(data): |
| 600 | """Decrypt a bytes object.""" |
| 601 | result = bytearray() |
| 602 | append = result.append |
| 603 | for c in data: |
| 604 | k = key2 | 2 |
| 605 | c ^= ((k * (k^1)) >> 8) & 0xFF |
| 606 | update_keys(c) |
| 607 | append(c) |
| 608 | return bytes(result) |
| 609 | |
| 610 | return decrypter |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 611 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 612 | |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 613 | class LZMACompressor: |
| 614 | |
| 615 | def __init__(self): |
| 616 | self._comp = None |
| 617 | |
| 618 | def _init(self): |
Nadeem Vawda | a425c3d | 2012-06-21 23:36:48 +0200 | [diff] [blame] | 619 | props = lzma._encode_filter_properties({'id': lzma.FILTER_LZMA1}) |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 620 | self._comp = lzma.LZMACompressor(lzma.FORMAT_RAW, filters=[ |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 621 | lzma._decode_filter_properties(lzma.FILTER_LZMA1, props) |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 622 | ]) |
| 623 | return struct.pack('<BBH', 9, 4, len(props)) + props |
| 624 | |
| 625 | def compress(self, data): |
| 626 | if self._comp is None: |
| 627 | return self._init() + self._comp.compress(data) |
| 628 | return self._comp.compress(data) |
| 629 | |
| 630 | def flush(self): |
| 631 | if self._comp is None: |
| 632 | return self._init() + self._comp.flush() |
| 633 | return self._comp.flush() |
| 634 | |
| 635 | |
| 636 | class LZMADecompressor: |
| 637 | |
| 638 | def __init__(self): |
| 639 | self._decomp = None |
| 640 | self._unconsumed = b'' |
| 641 | self.eof = False |
| 642 | |
| 643 | def decompress(self, data): |
| 644 | if self._decomp is None: |
| 645 | self._unconsumed += data |
| 646 | if len(self._unconsumed) <= 4: |
| 647 | return b'' |
| 648 | psize, = struct.unpack('<H', self._unconsumed[2:4]) |
| 649 | if len(self._unconsumed) <= 4 + psize: |
| 650 | return b'' |
| 651 | |
| 652 | self._decomp = lzma.LZMADecompressor(lzma.FORMAT_RAW, filters=[ |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 653 | lzma._decode_filter_properties(lzma.FILTER_LZMA1, |
| 654 | self._unconsumed[4:4 + psize]) |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 655 | ]) |
| 656 | data = self._unconsumed[4 + psize:] |
| 657 | del self._unconsumed |
| 658 | |
| 659 | result = self._decomp.decompress(data) |
| 660 | self.eof = self._decomp.eof |
| 661 | return result |
| 662 | |
| 663 | |
| 664 | compressor_names = { |
| 665 | 0: 'store', |
| 666 | 1: 'shrink', |
| 667 | 2: 'reduce', |
| 668 | 3: 'reduce', |
| 669 | 4: 'reduce', |
| 670 | 5: 'reduce', |
| 671 | 6: 'implode', |
| 672 | 7: 'tokenize', |
| 673 | 8: 'deflate', |
| 674 | 9: 'deflate64', |
| 675 | 10: 'implode', |
| 676 | 12: 'bzip2', |
| 677 | 14: 'lzma', |
| 678 | 18: 'terse', |
| 679 | 19: 'lz77', |
| 680 | 97: 'wavpack', |
| 681 | 98: 'ppmd', |
| 682 | } |
| 683 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 684 | def _check_compression(compression): |
| 685 | if compression == ZIP_STORED: |
| 686 | pass |
| 687 | elif compression == ZIP_DEFLATED: |
| 688 | if not zlib: |
| 689 | raise RuntimeError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 690 | "Compression requires the (missing) zlib module") |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 691 | elif compression == ZIP_BZIP2: |
| 692 | if not bz2: |
| 693 | raise RuntimeError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 694 | "Compression requires the (missing) bz2 module") |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 695 | elif compression == ZIP_LZMA: |
| 696 | if not lzma: |
| 697 | raise RuntimeError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 698 | "Compression requires the (missing) lzma module") |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 699 | else: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 700 | raise NotImplementedError("That compression method is not supported") |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 701 | |
| 702 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 703 | def _get_compressor(compress_type, compresslevel=None): |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 704 | if compress_type == ZIP_DEFLATED: |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 705 | if compresslevel is not None: |
| 706 | return zlib.compressobj(compresslevel, zlib.DEFLATED, -15) |
| 707 | return zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -15) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 708 | elif compress_type == ZIP_BZIP2: |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 709 | if compresslevel is not None: |
| 710 | return bz2.BZ2Compressor(compresslevel) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 711 | return bz2.BZ2Compressor() |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 712 | # compresslevel is ignored for ZIP_LZMA |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 713 | elif compress_type == ZIP_LZMA: |
| 714 | return LZMACompressor() |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 715 | else: |
| 716 | return None |
| 717 | |
| 718 | |
| 719 | def _get_decompressor(compress_type): |
Miss Islington (bot) | 717cc61 | 2019-09-12 07:33:53 -0700 | [diff] [blame] | 720 | _check_compression(compress_type) |
Martin v. Löwis | b3260f0 | 2012-05-01 08:38:01 +0200 | [diff] [blame] | 721 | if compress_type == ZIP_STORED: |
| 722 | return None |
| 723 | elif compress_type == ZIP_DEFLATED: |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 724 | return zlib.decompressobj(-15) |
| 725 | elif compress_type == ZIP_BZIP2: |
| 726 | return bz2.BZ2Decompressor() |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 727 | elif compress_type == ZIP_LZMA: |
| 728 | return LZMADecompressor() |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 729 | else: |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 730 | descr = compressor_names.get(compress_type) |
Martin v. Löwis | b3260f0 | 2012-05-01 08:38:01 +0200 | [diff] [blame] | 731 | if descr: |
| 732 | raise NotImplementedError("compression type %d (%s)" % (compress_type, descr)) |
| 733 | else: |
| 734 | raise NotImplementedError("compression type %d" % (compress_type,)) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 735 | |
| 736 | |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 737 | class _SharedFile: |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 738 | def __init__(self, file, pos, close, lock, writing): |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 739 | self._file = file |
| 740 | self._pos = pos |
| 741 | self._close = close |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 742 | self._lock = lock |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 743 | self._writing = writing |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 744 | self.seekable = file.seekable |
| 745 | self.tell = file.tell |
| 746 | |
| 747 | def seek(self, offset, whence=0): |
| 748 | with self._lock: |
Mickaël Schoentgen | 3f8c691 | 2018-07-29 20:26:52 +0200 | [diff] [blame] | 749 | if self._writing(): |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 750 | raise ValueError("Can't reposition in the ZIP file while " |
| 751 | "there is an open writing handle on it. " |
| 752 | "Close the writing handle before trying to read.") |
Mickaël Schoentgen | 3f8c691 | 2018-07-29 20:26:52 +0200 | [diff] [blame] | 753 | self._file.seek(offset, whence) |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 754 | self._pos = self._file.tell() |
| 755 | return self._pos |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 756 | |
| 757 | def read(self, n=-1): |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 758 | with self._lock: |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 759 | if self._writing(): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 760 | raise ValueError("Can't read from the ZIP file while there " |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 761 | "is an open writing handle on it. " |
| 762 | "Close the writing handle before trying to read.") |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 763 | self._file.seek(self._pos) |
| 764 | data = self._file.read(n) |
| 765 | self._pos = self._file.tell() |
| 766 | return data |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 767 | |
| 768 | def close(self): |
| 769 | if self._file is not None: |
| 770 | fileobj = self._file |
| 771 | self._file = None |
| 772 | self._close(fileobj) |
| 773 | |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 774 | # Provide the tell method for unseekable stream |
| 775 | class _Tellable: |
| 776 | def __init__(self, fp): |
| 777 | self.fp = fp |
| 778 | self.offset = 0 |
| 779 | |
| 780 | def write(self, data): |
| 781 | n = self.fp.write(data) |
| 782 | self.offset += n |
| 783 | return n |
| 784 | |
| 785 | def tell(self): |
| 786 | return self.offset |
| 787 | |
| 788 | def flush(self): |
| 789 | self.fp.flush() |
| 790 | |
| 791 | def close(self): |
| 792 | self.fp.close() |
| 793 | |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 794 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 795 | class ZipExtFile(io.BufferedIOBase): |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 796 | """File-like object for reading an archive member. |
| 797 | Is returned by ZipFile.open(). |
| 798 | """ |
| 799 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 800 | # Max size supported by decompressor. |
| 801 | MAX_N = 1 << 31 - 1 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 802 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 803 | # Read from compressed files in 4k blocks. |
| 804 | MIN_READ_SIZE = 4096 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 805 | |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 806 | # Chunk size to read during seek |
| 807 | MAX_SEEK_READ = 1 << 24 |
| 808 | |
Miss Skeleton (bot) | 76fbdaa | 2019-10-27 01:40:44 -0700 | [diff] [blame] | 809 | def __init__(self, fileobj, mode, zipinfo, pwd=None, |
Łukasz Langa | e94980a | 2010-11-22 23:31:26 +0000 | [diff] [blame] | 810 | close_fileobj=False): |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 811 | self._fileobj = fileobj |
Miss Skeleton (bot) | 76fbdaa | 2019-10-27 01:40:44 -0700 | [diff] [blame] | 812 | self._pwd = pwd |
Łukasz Langa | e94980a | 2010-11-22 23:31:26 +0000 | [diff] [blame] | 813 | self._close_fileobj = close_fileobj |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 814 | |
Ezio Melotti | 92b4743 | 2010-01-28 01:44:41 +0000 | [diff] [blame] | 815 | self._compress_type = zipinfo.compress_type |
Ezio Melotti | 92b4743 | 2010-01-28 01:44:41 +0000 | [diff] [blame] | 816 | self._compress_left = zipinfo.compress_size |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 817 | self._left = zipinfo.file_size |
Ezio Melotti | 92b4743 | 2010-01-28 01:44:41 +0000 | [diff] [blame] | 818 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 819 | self._decompressor = _get_decompressor(self._compress_type) |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 820 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 821 | self._eof = False |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 822 | self._readbuffer = b'' |
| 823 | self._offset = 0 |
| 824 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 825 | self.newlines = None |
| 826 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 827 | self.mode = mode |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 828 | self.name = zipinfo.filename |
| 829 | |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 830 | if hasattr(zipinfo, 'CRC'): |
| 831 | self._expected_crc = zipinfo.CRC |
Martin Panter | b82032f | 2015-12-11 05:19:29 +0000 | [diff] [blame] | 832 | self._running_crc = crc32(b'') |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 833 | else: |
| 834 | self._expected_crc = None |
| 835 | |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 836 | self._seekable = False |
| 837 | try: |
| 838 | if fileobj.seekable(): |
| 839 | self._orig_compress_start = fileobj.tell() |
| 840 | self._orig_compress_size = zipinfo.compress_size |
| 841 | self._orig_file_size = zipinfo.file_size |
| 842 | self._orig_start_crc = self._running_crc |
| 843 | self._seekable = True |
| 844 | except AttributeError: |
| 845 | pass |
| 846 | |
Miss Skeleton (bot) | 76fbdaa | 2019-10-27 01:40:44 -0700 | [diff] [blame] | 847 | self._decrypter = None |
| 848 | if pwd: |
| 849 | if zipinfo.flag_bits & 0x8: |
| 850 | # compare against the file type from extended local headers |
| 851 | check_byte = (zipinfo._raw_time >> 8) & 0xff |
| 852 | else: |
| 853 | # compare against the CRC otherwise |
| 854 | check_byte = (zipinfo.CRC >> 24) & 0xff |
| 855 | h = self._init_decrypter() |
| 856 | if h != check_byte: |
| 857 | raise RuntimeError("Bad password for file %r" % zipinfo.orig_filename) |
| 858 | |
| 859 | |
| 860 | def _init_decrypter(self): |
| 861 | self._decrypter = _ZipDecrypter(self._pwd) |
| 862 | # The first 12 bytes in the cypher stream is an encryption header |
| 863 | # used to strengthen the algorithm. The first 11 bytes are |
| 864 | # completely random, while the 12th contains the MSB of the CRC, |
| 865 | # or the MSB of the file time depending on the header type |
| 866 | # and is used to check the correctness of the password. |
| 867 | header = self._fileobj.read(12) |
| 868 | self._compress_left -= 12 |
| 869 | return self._decrypter(header)[11] |
| 870 | |
Serhiy Storchaka | 51a4370 | 2014-10-29 22:42:06 +0200 | [diff] [blame] | 871 | def __repr__(self): |
| 872 | result = ['<%s.%s' % (self.__class__.__module__, |
| 873 | self.__class__.__qualname__)] |
| 874 | if not self.closed: |
| 875 | result.append(' name=%r mode=%r' % (self.name, self.mode)) |
| 876 | if self._compress_type != ZIP_STORED: |
| 877 | result.append(' compress_type=%s' % |
| 878 | compressor_names.get(self._compress_type, |
| 879 | self._compress_type)) |
| 880 | else: |
| 881 | result.append(' [closed]') |
| 882 | result.append('>') |
| 883 | return ''.join(result) |
| 884 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 885 | def readline(self, limit=-1): |
| 886 | """Read and return a line from the stream. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 887 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 888 | If limit is specified, at most limit bytes will be read. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 889 | """ |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 890 | |
Serhiy Storchaka | e670be2 | 2016-06-11 19:32:44 +0300 | [diff] [blame] | 891 | if limit < 0: |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 892 | # Shortcut common case - newline found in buffer. |
| 893 | i = self._readbuffer.find(b'\n', self._offset) + 1 |
| 894 | if i > 0: |
| 895 | line = self._readbuffer[self._offset: i] |
| 896 | self._offset = i |
| 897 | return line |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 898 | |
Serhiy Storchaka | e670be2 | 2016-06-11 19:32:44 +0300 | [diff] [blame] | 899 | return io.BufferedIOBase.readline(self, limit) |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 900 | |
| 901 | def peek(self, n=1): |
| 902 | """Returns buffered bytes without advancing the position.""" |
| 903 | if n > len(self._readbuffer) - self._offset: |
| 904 | chunk = self.read(n) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 905 | if len(chunk) > self._offset: |
| 906 | self._readbuffer = chunk + self._readbuffer[self._offset:] |
| 907 | self._offset = 0 |
| 908 | else: |
| 909 | self._offset -= len(chunk) |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 910 | |
| 911 | # Return up to 512 bytes to reduce allocation overhead for tight loops. |
| 912 | return self._readbuffer[self._offset: self._offset + 512] |
| 913 | |
| 914 | def readable(self): |
| 915 | return True |
| 916 | |
| 917 | def read(self, n=-1): |
| 918 | """Read and return up to n bytes. |
nick sung | 53c2935 | 2019-03-15 03:26:25 +0800 | [diff] [blame] | 919 | If the argument is omitted, None, or negative, data is read and returned until EOF is reached. |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 920 | """ |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 921 | if n is None or n < 0: |
| 922 | buf = self._readbuffer[self._offset:] |
| 923 | self._readbuffer = b'' |
| 924 | self._offset = 0 |
| 925 | while not self._eof: |
| 926 | buf += self._read1(self.MAX_N) |
| 927 | return buf |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 928 | |
Antoine Pitrou | 78157b3 | 2012-06-23 16:44:48 +0200 | [diff] [blame] | 929 | end = n + self._offset |
| 930 | if end < len(self._readbuffer): |
| 931 | buf = self._readbuffer[self._offset:end] |
| 932 | self._offset = end |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 933 | return buf |
| 934 | |
Antoine Pitrou | 78157b3 | 2012-06-23 16:44:48 +0200 | [diff] [blame] | 935 | n = end - len(self._readbuffer) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 936 | buf = self._readbuffer[self._offset:] |
| 937 | self._readbuffer = b'' |
| 938 | self._offset = 0 |
| 939 | while n > 0 and not self._eof: |
| 940 | data = self._read1(n) |
| 941 | if n < len(data): |
| 942 | self._readbuffer = data |
| 943 | self._offset = n |
| 944 | buf += data[:n] |
| 945 | break |
| 946 | buf += data |
| 947 | n -= len(data) |
| 948 | return buf |
| 949 | |
| 950 | def _update_crc(self, newdata): |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 951 | # Update the CRC using the given data. |
| 952 | if self._expected_crc is None: |
| 953 | # No need to compute the CRC if we don't have a reference value |
| 954 | return |
Martin Panter | b82032f | 2015-12-11 05:19:29 +0000 | [diff] [blame] | 955 | self._running_crc = crc32(newdata, self._running_crc) |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 956 | # Check the CRC if we're at the end of the file |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 957 | if self._eof and self._running_crc != self._expected_crc: |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 958 | raise BadZipFile("Bad CRC-32 for file %r" % self.name) |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 959 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 960 | def read1(self, n): |
| 961 | """Read up to n bytes with at most one read() system call.""" |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 962 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 963 | if n is None or n < 0: |
| 964 | buf = self._readbuffer[self._offset:] |
| 965 | self._readbuffer = b'' |
| 966 | self._offset = 0 |
Serhiy Storchaka | d2c07a5 | 2013-09-27 22:11:57 +0300 | [diff] [blame] | 967 | while not self._eof: |
| 968 | data = self._read1(self.MAX_N) |
| 969 | if data: |
| 970 | buf += data |
| 971 | break |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 972 | return buf |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 973 | |
Antoine Pitrou | 78157b3 | 2012-06-23 16:44:48 +0200 | [diff] [blame] | 974 | end = n + self._offset |
| 975 | if end < len(self._readbuffer): |
| 976 | buf = self._readbuffer[self._offset:end] |
| 977 | self._offset = end |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 978 | return buf |
| 979 | |
Antoine Pitrou | 78157b3 | 2012-06-23 16:44:48 +0200 | [diff] [blame] | 980 | n = end - len(self._readbuffer) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 981 | buf = self._readbuffer[self._offset:] |
| 982 | self._readbuffer = b'' |
| 983 | self._offset = 0 |
| 984 | if n > 0: |
Serhiy Storchaka | d2c07a5 | 2013-09-27 22:11:57 +0300 | [diff] [blame] | 985 | while not self._eof: |
| 986 | data = self._read1(n) |
| 987 | if n < len(data): |
| 988 | self._readbuffer = data |
| 989 | self._offset = n |
| 990 | buf += data[:n] |
| 991 | break |
| 992 | if data: |
| 993 | buf += data |
| 994 | break |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 995 | return buf |
| 996 | |
| 997 | def _read1(self, n): |
| 998 | # Read up to n compressed bytes with at most one read() system call, |
| 999 | # decrypt and decompress them. |
| 1000 | if self._eof or n <= 0: |
| 1001 | return b'' |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1002 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1003 | # Read from file. |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1004 | if self._compress_type == ZIP_DEFLATED: |
| 1005 | ## Handle unconsumed data. |
| 1006 | data = self._decompressor.unconsumed_tail |
| 1007 | if n > len(data): |
| 1008 | data += self._read2(n - len(data)) |
| 1009 | else: |
| 1010 | data = self._read2(n) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1011 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1012 | if self._compress_type == ZIP_STORED: |
| 1013 | self._eof = self._compress_left <= 0 |
| 1014 | elif self._compress_type == ZIP_DEFLATED: |
| 1015 | n = max(n, self.MIN_READ_SIZE) |
| 1016 | data = self._decompressor.decompress(data, n) |
| 1017 | self._eof = (self._decompressor.eof or |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1018 | self._compress_left <= 0 and |
| 1019 | not self._decompressor.unconsumed_tail) |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1020 | if self._eof: |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1021 | data += self._decompressor.flush() |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1022 | else: |
| 1023 | data = self._decompressor.decompress(data) |
| 1024 | self._eof = self._decompressor.eof or self._compress_left <= 0 |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1025 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1026 | data = data[:self._left] |
| 1027 | self._left -= len(data) |
| 1028 | if self._left <= 0: |
| 1029 | self._eof = True |
| 1030 | self._update_crc(data) |
| 1031 | return data |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1032 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1033 | def _read2(self, n): |
| 1034 | if self._compress_left <= 0: |
| 1035 | return b'' |
| 1036 | |
| 1037 | n = max(n, self.MIN_READ_SIZE) |
| 1038 | n = min(n, self._compress_left) |
| 1039 | |
| 1040 | data = self._fileobj.read(n) |
| 1041 | self._compress_left -= len(data) |
Serhiy Storchaka | 5ce3f10 | 2014-01-09 14:50:20 +0200 | [diff] [blame] | 1042 | if not data: |
| 1043 | raise EOFError |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1044 | |
| 1045 | if self._decrypter is not None: |
Serhiy Storchaka | 06e5225 | 2017-03-30 19:09:08 +0300 | [diff] [blame] | 1046 | data = self._decrypter(data) |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1047 | return data |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1048 | |
Łukasz Langa | e94980a | 2010-11-22 23:31:26 +0000 | [diff] [blame] | 1049 | def close(self): |
| 1050 | try: |
| 1051 | if self._close_fileobj: |
| 1052 | self._fileobj.close() |
| 1053 | finally: |
| 1054 | super().close() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1055 | |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 1056 | def seekable(self): |
| 1057 | return self._seekable |
| 1058 | |
| 1059 | def seek(self, offset, whence=0): |
| 1060 | if not self._seekable: |
| 1061 | raise io.UnsupportedOperation("underlying stream is not seekable") |
| 1062 | curr_pos = self.tell() |
| 1063 | if whence == 0: # Seek from start of file |
| 1064 | new_pos = offset |
| 1065 | elif whence == 1: # Seek from current position |
| 1066 | new_pos = curr_pos + offset |
| 1067 | elif whence == 2: # Seek from EOF |
| 1068 | new_pos = self._orig_file_size + offset |
| 1069 | else: |
| 1070 | raise ValueError("whence must be os.SEEK_SET (0), " |
| 1071 | "os.SEEK_CUR (1), or os.SEEK_END (2)") |
| 1072 | |
| 1073 | if new_pos > self._orig_file_size: |
| 1074 | new_pos = self._orig_file_size |
| 1075 | |
| 1076 | if new_pos < 0: |
| 1077 | new_pos = 0 |
| 1078 | |
| 1079 | read_offset = new_pos - curr_pos |
| 1080 | buff_offset = read_offset + self._offset |
| 1081 | |
| 1082 | if buff_offset >= 0 and buff_offset < len(self._readbuffer): |
| 1083 | # Just move the _offset index if the new position is in the _readbuffer |
| 1084 | self._offset = buff_offset |
| 1085 | read_offset = 0 |
| 1086 | elif read_offset < 0: |
| 1087 | # Position is before the current position. Reset the ZipExtFile |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 1088 | self._fileobj.seek(self._orig_compress_start) |
| 1089 | self._running_crc = self._orig_start_crc |
| 1090 | self._compress_left = self._orig_compress_size |
| 1091 | self._left = self._orig_file_size |
| 1092 | self._readbuffer = b'' |
| 1093 | self._offset = 0 |
Mickaël Schoentgen | 3f8c691 | 2018-07-29 20:26:52 +0200 | [diff] [blame] | 1094 | self._decompressor = _get_decompressor(self._compress_type) |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 1095 | self._eof = False |
| 1096 | read_offset = new_pos |
Miss Skeleton (bot) | 76fbdaa | 2019-10-27 01:40:44 -0700 | [diff] [blame] | 1097 | if self._decrypter is not None: |
| 1098 | self._init_decrypter() |
John Jolly | 066df4f | 2018-01-30 01:51:35 -0700 | [diff] [blame] | 1099 | |
| 1100 | while read_offset > 0: |
| 1101 | read_len = min(self.MAX_SEEK_READ, read_offset) |
| 1102 | self.read(read_len) |
| 1103 | read_offset -= read_len |
| 1104 | |
| 1105 | return self.tell() |
| 1106 | |
| 1107 | def tell(self): |
| 1108 | if not self._seekable: |
| 1109 | raise io.UnsupportedOperation("underlying stream is not seekable") |
| 1110 | filepos = self._orig_file_size - self._left - len(self._readbuffer) + self._offset |
| 1111 | return filepos |
| 1112 | |
Antoine Pitrou | a32f9a2 | 2010-01-27 21:18:57 +0000 | [diff] [blame] | 1113 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1114 | class _ZipWriteFile(io.BufferedIOBase): |
| 1115 | def __init__(self, zf, zinfo, zip64): |
| 1116 | self._zinfo = zinfo |
| 1117 | self._zip64 = zip64 |
| 1118 | self._zipfile = zf |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1119 | self._compressor = _get_compressor(zinfo.compress_type, |
| 1120 | zinfo._compresslevel) |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1121 | self._file_size = 0 |
| 1122 | self._compress_size = 0 |
| 1123 | self._crc = 0 |
| 1124 | |
| 1125 | @property |
| 1126 | def _fileobj(self): |
| 1127 | return self._zipfile.fp |
| 1128 | |
| 1129 | def writable(self): |
| 1130 | return True |
| 1131 | |
| 1132 | def write(self, data): |
Serhiy Storchaka | 4c0d9ea | 2017-04-12 16:03:23 +0300 | [diff] [blame] | 1133 | if self.closed: |
| 1134 | raise ValueError('I/O operation on closed file.') |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1135 | nbytes = len(data) |
| 1136 | self._file_size += nbytes |
| 1137 | self._crc = crc32(data, self._crc) |
| 1138 | if self._compressor: |
| 1139 | data = self._compressor.compress(data) |
| 1140 | self._compress_size += len(data) |
| 1141 | self._fileobj.write(data) |
| 1142 | return nbytes |
| 1143 | |
| 1144 | def close(self): |
Serhiy Storchaka | 4c0d9ea | 2017-04-12 16:03:23 +0300 | [diff] [blame] | 1145 | if self.closed: |
| 1146 | return |
Serhiy Storchaka | 2524fde | 2019-03-30 08:25:19 +0200 | [diff] [blame] | 1147 | try: |
| 1148 | super().close() |
| 1149 | # Flush any data from the compressor, and update header info |
| 1150 | if self._compressor: |
| 1151 | buf = self._compressor.flush() |
| 1152 | self._compress_size += len(buf) |
| 1153 | self._fileobj.write(buf) |
| 1154 | self._zinfo.compress_size = self._compress_size |
| 1155 | else: |
| 1156 | self._zinfo.compress_size = self._file_size |
| 1157 | self._zinfo.CRC = self._crc |
| 1158 | self._zinfo.file_size = self._file_size |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1159 | |
Serhiy Storchaka | 2524fde | 2019-03-30 08:25:19 +0200 | [diff] [blame] | 1160 | # Write updated header info |
| 1161 | if self._zinfo.flag_bits & 0x08: |
| 1162 | # Write CRC and file sizes after the file data |
| 1163 | fmt = '<LLQQ' if self._zip64 else '<LLLL' |
| 1164 | self._fileobj.write(struct.pack(fmt, _DD_SIGNATURE, self._zinfo.CRC, |
| 1165 | self._zinfo.compress_size, self._zinfo.file_size)) |
| 1166 | self._zipfile.start_dir = self._fileobj.tell() |
| 1167 | else: |
| 1168 | if not self._zip64: |
| 1169 | if self._file_size > ZIP64_LIMIT: |
| 1170 | raise RuntimeError( |
| 1171 | 'File size unexpectedly exceeded ZIP64 limit') |
| 1172 | if self._compress_size > ZIP64_LIMIT: |
| 1173 | raise RuntimeError( |
| 1174 | 'Compressed size unexpectedly exceeded ZIP64 limit') |
| 1175 | # Seek backwards and write file header (which will now include |
| 1176 | # correct CRC and file sizes) |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1177 | |
Serhiy Storchaka | 2524fde | 2019-03-30 08:25:19 +0200 | [diff] [blame] | 1178 | # Preserve current position in file |
| 1179 | self._zipfile.start_dir = self._fileobj.tell() |
| 1180 | self._fileobj.seek(self._zinfo.header_offset) |
| 1181 | self._fileobj.write(self._zinfo.FileHeader(self._zip64)) |
| 1182 | self._fileobj.seek(self._zipfile.start_dir) |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1183 | |
Serhiy Storchaka | 2524fde | 2019-03-30 08:25:19 +0200 | [diff] [blame] | 1184 | # Successfully written: Add file to our caches |
| 1185 | self._zipfile.filelist.append(self._zinfo) |
| 1186 | self._zipfile.NameToInfo[self._zinfo.filename] = self._zinfo |
| 1187 | finally: |
| 1188 | self._zipfile._writing = False |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1189 | |
Serhiy Storchaka | 2524fde | 2019-03-30 08:25:19 +0200 | [diff] [blame] | 1190 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1191 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1192 | class ZipFile: |
Tim Peters | a19a168 | 2001-03-29 04:36:09 +0000 | [diff] [blame] | 1193 | """ Class with methods to open, read, write, close, list zip files. |
| 1194 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1195 | z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=True, |
| 1196 | compresslevel=None) |
Tim Peters | a19a168 | 2001-03-29 04:36:09 +0000 | [diff] [blame] | 1197 | |
Fred Drake | 3d9091e | 2001-03-26 15:49:24 +0000 | [diff] [blame] | 1198 | file: Either the path to the file, or a file-like object. |
| 1199 | If it is a path, the file will be opened and closed by ZipFile. |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1200 | mode: The mode can be either read 'r', write 'w', exclusive create 'x', |
| 1201 | or append 'a'. |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1202 | compression: ZIP_STORED (no compression), ZIP_DEFLATED (requires zlib), |
| 1203 | ZIP_BZIP2 (requires bz2) or ZIP_LZMA (requires lzma). |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1204 | allowZip64: if True ZipFile will create files with ZIP64 extensions when |
| 1205 | needed, otherwise it will raise an exception when this would |
| 1206 | be necessary. |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1207 | compresslevel: None (default for the given compression type) or an integer |
| 1208 | specifying the level to pass to the compressor. |
| 1209 | When using ZIP_STORED or ZIP_LZMA this keyword has no effect. |
| 1210 | When using ZIP_DEFLATED integers 0 through 9 are accepted. |
| 1211 | When using ZIP_BZIP2 integers 1 through 9 are accepted. |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1212 | |
Fred Drake | 3d9091e | 2001-03-26 15:49:24 +0000 | [diff] [blame] | 1213 | """ |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1214 | |
Fred Drake | 90eac28 | 2001-02-28 05:29:34 +0000 | [diff] [blame] | 1215 | fp = None # Set here since __del__ checks it |
Gregory P. Smith | 09aa752 | 2013-02-03 00:36:32 -0800 | [diff] [blame] | 1216 | _windows_illegal_name_trans_table = None |
Fred Drake | 90eac28 | 2001-02-28 05:29:34 +0000 | [diff] [blame] | 1217 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1218 | def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=True, |
Marcel Plch | 77b112c | 2018-08-31 16:43:31 +0200 | [diff] [blame] | 1219 | compresslevel=None, *, strict_timestamps=True): |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1220 | """Open the ZIP file with mode read 'r', write 'w', exclusive create 'x', |
| 1221 | or append 'a'.""" |
| 1222 | if mode not in ('r', 'w', 'x', 'a'): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1223 | raise ValueError("ZipFile requires mode 'r', 'w', 'x', or 'a'") |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1224 | |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1225 | _check_compression(compression) |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1226 | |
| 1227 | self._allowZip64 = allowZip64 |
| 1228 | self._didModify = False |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 1229 | self.debug = 0 # Level of printing: 0 through 3 |
| 1230 | self.NameToInfo = {} # Find file info given name |
| 1231 | self.filelist = [] # List of ZipInfo instances for archive |
| 1232 | self.compression = compression # Method of compression |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1233 | self.compresslevel = compresslevel |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1234 | self.mode = mode |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1235 | self.pwd = None |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1236 | self._comment = b'' |
Marcel Plch | 77b112c | 2018-08-31 16:43:31 +0200 | [diff] [blame] | 1237 | self._strict_timestamps = strict_timestamps |
Tim Peters | a19a168 | 2001-03-29 04:36:09 +0000 | [diff] [blame] | 1238 | |
Fred Drake | 3d9091e | 2001-03-26 15:49:24 +0000 | [diff] [blame] | 1239 | # Check if we were passed a file-like object |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1240 | if isinstance(file, os.PathLike): |
| 1241 | file = os.fspath(file) |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 1242 | if isinstance(file, str): |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1243 | # No, it's a filename |
Fred Drake | 3d9091e | 2001-03-26 15:49:24 +0000 | [diff] [blame] | 1244 | self._filePassed = 0 |
| 1245 | self.filename = file |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1246 | modeDict = {'r' : 'rb', 'w': 'w+b', 'x': 'x+b', 'a' : 'r+b', |
| 1247 | 'r+b': 'w+b', 'w+b': 'wb', 'x+b': 'xb'} |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1248 | filemode = modeDict[mode] |
| 1249 | while True: |
| 1250 | try: |
| 1251 | self.fp = io.open(file, filemode) |
| 1252 | except OSError: |
| 1253 | if filemode in modeDict: |
| 1254 | filemode = modeDict[filemode] |
| 1255 | continue |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1256 | raise |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1257 | break |
Fred Drake | 3d9091e | 2001-03-26 15:49:24 +0000 | [diff] [blame] | 1258 | else: |
| 1259 | self._filePassed = 1 |
| 1260 | self.fp = file |
| 1261 | self.filename = getattr(file, 'name', None) |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1262 | self._fileRefCnt = 1 |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1263 | self._lock = threading.RLock() |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1264 | self._seekable = True |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1265 | self._writing = False |
Tim Peters | a19a168 | 2001-03-29 04:36:09 +0000 | [diff] [blame] | 1266 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1267 | try: |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1268 | if mode == 'r': |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 1269 | self._RealGetContents() |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1270 | elif mode in ('w', 'x'): |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 1271 | # set the modified flag so central directory gets written |
| 1272 | # even if no files are added to the archive |
| 1273 | self._didModify = True |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1274 | try: |
Serhiy Storchaka | 34cba33 | 2017-01-01 19:00:30 +0200 | [diff] [blame] | 1275 | self.start_dir = self.fp.tell() |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1276 | except (AttributeError, OSError): |
| 1277 | self.fp = _Tellable(self.fp) |
Serhiy Storchaka | 34cba33 | 2017-01-01 19:00:30 +0200 | [diff] [blame] | 1278 | self.start_dir = 0 |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1279 | self._seekable = False |
| 1280 | else: |
| 1281 | # Some file-like objects can provide tell() but not seek() |
| 1282 | try: |
| 1283 | self.fp.seek(self.start_dir) |
| 1284 | except (AttributeError, OSError): |
| 1285 | self._seekable = False |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1286 | elif mode == 'a': |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1287 | try: |
| 1288 | # See if file is a zip file |
| 1289 | self._RealGetContents() |
| 1290 | # seek to start of directory and overwrite |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1291 | self.fp.seek(self.start_dir) |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1292 | except BadZipFile: |
| 1293 | # file is not a zip file, just append |
| 1294 | self.fp.seek(0, 2) |
| 1295 | |
| 1296 | # set the modified flag so central directory gets written |
| 1297 | # even if no files are added to the archive |
| 1298 | self._didModify = True |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1299 | self.start_dir = self.fp.tell() |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1300 | else: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1301 | raise ValueError("Mode must be 'r', 'w', 'x', or 'a'") |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1302 | except: |
| 1303 | fp = self.fp |
| 1304 | self.fp = None |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1305 | self._fpclose(fp) |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1306 | raise |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1307 | |
Ezio Melotti | faa6b7f | 2009-12-30 12:34:59 +0000 | [diff] [blame] | 1308 | def __enter__(self): |
| 1309 | return self |
| 1310 | |
| 1311 | def __exit__(self, type, value, traceback): |
| 1312 | self.close() |
| 1313 | |
Serhiy Storchaka | 51a4370 | 2014-10-29 22:42:06 +0200 | [diff] [blame] | 1314 | def __repr__(self): |
| 1315 | result = ['<%s.%s' % (self.__class__.__module__, |
| 1316 | self.__class__.__qualname__)] |
| 1317 | if self.fp is not None: |
| 1318 | if self._filePassed: |
| 1319 | result.append(' file=%r' % self.fp) |
| 1320 | elif self.filename is not None: |
| 1321 | result.append(' filename=%r' % self.filename) |
| 1322 | result.append(' mode=%r' % self.mode) |
| 1323 | else: |
| 1324 | result.append(' [closed]') |
| 1325 | result.append('>') |
| 1326 | return ''.join(result) |
| 1327 | |
Tim Peters | 7d3bad6 | 2001-04-04 18:56:49 +0000 | [diff] [blame] | 1328 | def _RealGetContents(self): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1329 | """Read in the table of contents for the ZIP file.""" |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1330 | fp = self.fp |
Georg Brandl | 268e4d4 | 2010-10-14 06:59:45 +0000 | [diff] [blame] | 1331 | try: |
| 1332 | endrec = _EndRecData(fp) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 1333 | except OSError: |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1334 | raise BadZipFile("File is not a zip file") |
Martin v. Löwis | 6f6873b | 2002-10-13 13:54:50 +0000 | [diff] [blame] | 1335 | if not endrec: |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1336 | raise BadZipFile("File is not a zip file") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1337 | if self.debug > 1: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1338 | print(endrec) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1339 | size_cd = endrec[_ECD_SIZE] # bytes in central directory |
| 1340 | offset_cd = endrec[_ECD_OFFSET] # offset of central directory |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1341 | self._comment = endrec[_ECD_COMMENT] # archive comment |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1342 | |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1343 | # "concat" is zero, unless zip was concatenated to another file |
| 1344 | concat = endrec[_ECD_LOCATION] - size_cd - offset_cd |
Antoine Pitrou | 9e4fdf4 | 2008-09-05 23:43:02 +0000 | [diff] [blame] | 1345 | if endrec[_ECD_SIGNATURE] == stringEndArchive64: |
| 1346 | # If Zip64 extension structures are present, account for them |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1347 | concat -= (sizeEndCentDir64 + sizeEndCentDir64Locator) |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1348 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1349 | if self.debug > 2: |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1350 | inferred = concat + offset_cd |
| 1351 | print("given, inferred, offset", offset_cd, inferred, concat) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1352 | # self.start_dir: Position of start of central directory |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1353 | self.start_dir = offset_cd + concat |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1354 | fp.seek(self.start_dir, 0) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1355 | data = fp.read(size_cd) |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1356 | fp = io.BytesIO(data) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1357 | total = 0 |
| 1358 | while total < size_cd: |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1359 | centdir = fp.read(sizeCentralDir) |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 1360 | if len(centdir) != sizeCentralDir: |
| 1361 | raise BadZipFile("Truncated central directory") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1362 | centdir = struct.unpack(structCentralDir, centdir) |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 1363 | if centdir[_CD_SIGNATURE] != stringCentralDir: |
| 1364 | raise BadZipFile("Bad magic number for central directory") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1365 | if self.debug > 2: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1366 | print(centdir) |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 1367 | filename = fp.read(centdir[_CD_FILENAME_LENGTH]) |
Martin v. Löwis | 8570f6a | 2008-05-05 17:44:38 +0000 | [diff] [blame] | 1368 | flags = centdir[5] |
| 1369 | if flags & 0x800: |
| 1370 | # UTF-8 file names extension |
| 1371 | filename = filename.decode('utf-8') |
| 1372 | else: |
| 1373 | # Historical ZIP filename encoding |
| 1374 | filename = filename.decode('cp437') |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1375 | # Create ZipInfo instance to store file information |
Martin v. Löwis | 8570f6a | 2008-05-05 17:44:38 +0000 | [diff] [blame] | 1376 | x = ZipInfo(filename) |
Fred Drake | 3e038e5 | 2001-02-28 17:56:26 +0000 | [diff] [blame] | 1377 | x.extra = fp.read(centdir[_CD_EXTRA_FIELD_LENGTH]) |
| 1378 | x.comment = fp.read(centdir[_CD_COMMENT_LENGTH]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1379 | x.header_offset = centdir[_CD_LOCAL_HEADER_OFFSET] |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1380 | (x.create_version, x.create_system, x.extract_version, x.reserved, |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1381 | x.flag_bits, x.compress_type, t, d, |
| 1382 | x.CRC, x.compress_size, x.file_size) = centdir[1:12] |
Martin v. Löwis | d099b56 | 2012-05-01 14:08:22 +0200 | [diff] [blame] | 1383 | if x.extract_version > MAX_EXTRACT_VERSION: |
| 1384 | raise NotImplementedError("zip file version %.1f" % |
| 1385 | (x.extract_version / 10)) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1386 | x.volume, x.internal_attr, x.external_attr = centdir[15:18] |
| 1387 | # Convert date/time code to (year, month, day, hour, min, sec) |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 1388 | x._raw_time = t |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1389 | x.date_time = ( (d>>9)+1980, (d>>5)&0xF, d&0x1F, |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1390 | t>>11, (t>>5)&0x3F, (t&0x1F) * 2 ) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1391 | |
| 1392 | x._decodeExtra() |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1393 | x.header_offset = x.header_offset + concat |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1394 | self.filelist.append(x) |
| 1395 | self.NameToInfo[x.filename] = x |
Martin v. Löwis | b09b844 | 2008-07-03 14:13:42 +0000 | [diff] [blame] | 1396 | |
| 1397 | # update total bytes read from central directory |
| 1398 | total = (total + sizeCentralDir + centdir[_CD_FILENAME_LENGTH] |
| 1399 | + centdir[_CD_EXTRA_FIELD_LENGTH] |
| 1400 | + centdir[_CD_COMMENT_LENGTH]) |
| 1401 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1402 | if self.debug > 2: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1403 | print("total", total) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1404 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1405 | |
| 1406 | def namelist(self): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1407 | """Return a list of file names in the archive.""" |
Ezio Melotti | 006917e | 2012-04-16 21:34:24 -0600 | [diff] [blame] | 1408 | return [data.filename for data in self.filelist] |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1409 | |
| 1410 | def infolist(self): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1411 | """Return a list of class ZipInfo instances for files in the |
| 1412 | archive.""" |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1413 | return self.filelist |
| 1414 | |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1415 | def printdir(self, file=None): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1416 | """Print a table of contents for the zip file.""" |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1417 | print("%-46s %19s %12s" % ("File Name", "Modified ", "Size"), |
| 1418 | file=file) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1419 | for zinfo in self.filelist: |
Guido van Rossum | 7736b5b | 2008-01-15 21:44:53 +0000 | [diff] [blame] | 1420 | date = "%d-%02d-%02d %02d:%02d:%02d" % zinfo.date_time[:6] |
Guido van Rossum | d6ca546 | 2007-05-22 01:29:33 +0000 | [diff] [blame] | 1421 | print("%-46s %s %12d" % (zinfo.filename, date, zinfo.file_size), |
| 1422 | file=file) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1423 | |
| 1424 | def testzip(self): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1425 | """Read all the files and check the CRC.""" |
Benjamin Peterson | 4cd6a95 | 2008-08-17 20:23:46 +0000 | [diff] [blame] | 1426 | chunk_size = 2 ** 20 |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1427 | for zinfo in self.filelist: |
| 1428 | try: |
Benjamin Peterson | 4cd6a95 | 2008-08-17 20:23:46 +0000 | [diff] [blame] | 1429 | # Read by chunks, to avoid an OverflowError or a |
| 1430 | # MemoryError with very large embedded files. |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1431 | with self.open(zinfo.filename, "r") as f: |
| 1432 | while f.read(chunk_size): # Check CRC-32 |
| 1433 | pass |
Georg Brandl | 4d54088 | 2010-10-28 06:42:33 +0000 | [diff] [blame] | 1434 | except BadZipFile: |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1435 | return zinfo.filename |
| 1436 | |
| 1437 | def getinfo(self, name): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1438 | """Return the instance of ZipInfo given 'name'.""" |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1439 | info = self.NameToInfo.get(name) |
| 1440 | if info is None: |
| 1441 | raise KeyError( |
| 1442 | 'There is no item named %r in the archive' % name) |
| 1443 | |
| 1444 | return info |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1445 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1446 | def setpassword(self, pwd): |
| 1447 | """Set default password for encrypted files.""" |
R. David Murray | 8d855d8 | 2010-12-21 21:53:37 +0000 | [diff] [blame] | 1448 | if pwd and not isinstance(pwd, bytes): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1449 | raise TypeError("pwd: expected bytes, got %s" % type(pwd).__name__) |
R. David Murray | 8d855d8 | 2010-12-21 21:53:37 +0000 | [diff] [blame] | 1450 | if pwd: |
| 1451 | self.pwd = pwd |
| 1452 | else: |
| 1453 | self.pwd = None |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1454 | |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1455 | @property |
| 1456 | def comment(self): |
| 1457 | """The comment text associated with the ZIP file.""" |
| 1458 | return self._comment |
| 1459 | |
| 1460 | @comment.setter |
| 1461 | def comment(self, comment): |
| 1462 | if not isinstance(comment, bytes): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1463 | raise TypeError("comment: expected bytes, got %s" % type(comment).__name__) |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1464 | # check for valid comment length |
Serhiy Storchaka | 9b7a1a1 | 2014-01-20 21:57:40 +0200 | [diff] [blame] | 1465 | if len(comment) > ZIP_MAX_COMMENT: |
| 1466 | import warnings |
| 1467 | warnings.warn('Archive comment is too long; truncating to %d bytes' |
| 1468 | % ZIP_MAX_COMMENT, stacklevel=2) |
R David Murray | f50b38a | 2012-04-12 18:44:58 -0400 | [diff] [blame] | 1469 | comment = comment[:ZIP_MAX_COMMENT] |
| 1470 | self._comment = comment |
| 1471 | self._didModify = True |
| 1472 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 1473 | def read(self, name, pwd=None): |
Serhiy Storchaka | 4bb186d | 2018-11-25 09:51:14 +0200 | [diff] [blame] | 1474 | """Return file bytes for name.""" |
Benjamin Peterson | d285bdb | 2010-10-31 17:57:22 +0000 | [diff] [blame] | 1475 | with self.open(name, "r", pwd) as fp: |
| 1476 | return fp.read() |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1477 | |
Serhiy Storchaka | f47fc55 | 2016-05-15 12:27:16 +0300 | [diff] [blame] | 1478 | def open(self, name, mode="r", pwd=None, *, force_zip64=False): |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1479 | """Return file-like object for 'name'. |
| 1480 | |
| 1481 | name is a string for the file name within the ZIP file, or a ZipInfo |
| 1482 | object. |
| 1483 | |
| 1484 | mode should be 'r' to read a file already in the ZIP file, or 'w' to |
| 1485 | write to a file newly added to the archive. |
| 1486 | |
| 1487 | pwd is the password to decrypt files (only used for reading). |
| 1488 | |
| 1489 | When writing, if the file size is not known in advance but may exceed |
| 1490 | 2 GiB, pass force_zip64 to use the ZIP64 format, which can handle large |
| 1491 | files. If the size is known in advance, it is best to pass a ZipInfo |
| 1492 | instance for name, with zinfo.file_size set. |
| 1493 | """ |
Serhiy Storchaka | e670be2 | 2016-06-11 19:32:44 +0300 | [diff] [blame] | 1494 | if mode not in {"r", "w"}: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1495 | raise ValueError('open() requires mode "r" or "w"') |
R. David Murray | 8d855d8 | 2010-12-21 21:53:37 +0000 | [diff] [blame] | 1496 | if pwd and not isinstance(pwd, bytes): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1497 | raise TypeError("pwd: expected bytes, got %s" % type(pwd).__name__) |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1498 | if pwd and (mode == "w"): |
| 1499 | raise ValueError("pwd is only supported for reading files") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1500 | if not self.fp: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1501 | raise ValueError( |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1502 | "Attempt to use ZIP archive that was already closed") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1503 | |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1504 | # Make sure we have an info object |
| 1505 | if isinstance(name, ZipInfo): |
| 1506 | # 'name' is already an info object |
| 1507 | zinfo = name |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1508 | elif mode == 'w': |
| 1509 | zinfo = ZipInfo(name) |
| 1510 | zinfo.compress_type = self.compression |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1511 | zinfo._compresslevel = self.compresslevel |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1512 | else: |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1513 | # Get info object for name |
| 1514 | zinfo = self.getinfo(name) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1515 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1516 | if mode == 'w': |
| 1517 | return self._open_to_write(zinfo, force_zip64=force_zip64) |
| 1518 | |
| 1519 | if self._writing: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1520 | raise ValueError("Can't read from the ZIP file while there " |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1521 | "is an open writing handle on it. " |
| 1522 | "Close the writing handle before trying to read.") |
| 1523 | |
| 1524 | # Open for reading: |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1525 | self._fileRefCnt += 1 |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1526 | zef_file = _SharedFile(self.fp, zinfo.header_offset, |
| 1527 | self._fpclose, self._lock, lambda: self._writing) |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1528 | try: |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1529 | # Skip the file header: |
| 1530 | fheader = zef_file.read(sizeFileHeader) |
Serhiy Storchaka | d2b1527 | 2013-01-31 15:27:07 +0200 | [diff] [blame] | 1531 | if len(fheader) != sizeFileHeader: |
| 1532 | raise BadZipFile("Truncated file header") |
| 1533 | fheader = struct.unpack(structFileHeader, fheader) |
| 1534 | if fheader[_FH_SIGNATURE] != stringFileHeader: |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1535 | raise BadZipFile("Bad magic number for file header") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1536 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1537 | fname = zef_file.read(fheader[_FH_FILENAME_LENGTH]) |
| 1538 | if fheader[_FH_EXTRA_FIELD_LENGTH]: |
| 1539 | zef_file.read(fheader[_FH_EXTRA_FIELD_LENGTH]) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1540 | |
Antoine Pitrou | 8572da5 | 2012-11-17 23:52:05 +0100 | [diff] [blame] | 1541 | if zinfo.flag_bits & 0x20: |
| 1542 | # Zip 2.7: compressed patched data |
| 1543 | raise NotImplementedError("compressed patched data (flag bit 5)") |
Martin v. Löwis | 2a2ce32 | 2012-05-01 08:44:08 +0200 | [diff] [blame] | 1544 | |
Antoine Pitrou | 8572da5 | 2012-11-17 23:52:05 +0100 | [diff] [blame] | 1545 | if zinfo.flag_bits & 0x40: |
| 1546 | # strong encryption |
| 1547 | raise NotImplementedError("strong encryption (flag bit 6)") |
Martin v. Löwis | 7fb79fc | 2012-05-13 10:06:36 +0200 | [diff] [blame] | 1548 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1549 | if zinfo.flag_bits & 0x800: |
| 1550 | # UTF-8 filename |
| 1551 | fname_str = fname.decode("utf-8") |
| 1552 | else: |
| 1553 | fname_str = fname.decode("cp437") |
Georg Brandl | 5ba11de | 2011-01-01 10:09:32 +0000 | [diff] [blame] | 1554 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1555 | if fname_str != zinfo.orig_filename: |
| 1556 | raise BadZipFile( |
| 1557 | 'File name in directory %r and header %r differ.' |
| 1558 | % (zinfo.orig_filename, fname)) |
| 1559 | |
| 1560 | # check for encrypted flag & handle password |
| 1561 | is_encrypted = zinfo.flag_bits & 0x1 |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1562 | if is_encrypted: |
| 1563 | if not pwd: |
| 1564 | pwd = self.pwd |
| 1565 | if not pwd: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1566 | raise RuntimeError("File %r is encrypted, password " |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1567 | "required for extraction" % name) |
Miss Skeleton (bot) | 76fbdaa | 2019-10-27 01:40:44 -0700 | [diff] [blame] | 1568 | else: |
| 1569 | pwd = None |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1570 | |
Miss Skeleton (bot) | 76fbdaa | 2019-10-27 01:40:44 -0700 | [diff] [blame] | 1571 | return ZipExtFile(zef_file, mode, zinfo, pwd, True) |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1572 | except: |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1573 | zef_file.close() |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1574 | raise |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1575 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1576 | def _open_to_write(self, zinfo, force_zip64=False): |
| 1577 | if force_zip64 and not self._allowZip64: |
| 1578 | raise ValueError( |
| 1579 | "force_zip64 is True, but allowZip64 was False when opening " |
| 1580 | "the ZIP file." |
| 1581 | ) |
| 1582 | if self._writing: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1583 | raise ValueError("Can't write to the ZIP file while there is " |
| 1584 | "another write handle open on it. " |
| 1585 | "Close the first handle before opening another.") |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1586 | |
| 1587 | # Sizes and CRC are overwritten with correct data after processing the file |
| 1588 | if not hasattr(zinfo, 'file_size'): |
| 1589 | zinfo.file_size = 0 |
| 1590 | zinfo.compress_size = 0 |
| 1591 | zinfo.CRC = 0 |
| 1592 | |
| 1593 | zinfo.flag_bits = 0x00 |
| 1594 | if zinfo.compress_type == ZIP_LZMA: |
| 1595 | # Compressed data includes an end-of-stream (EOS) marker |
| 1596 | zinfo.flag_bits |= 0x02 |
| 1597 | if not self._seekable: |
| 1598 | zinfo.flag_bits |= 0x08 |
| 1599 | |
| 1600 | if not zinfo.external_attr: |
| 1601 | zinfo.external_attr = 0o600 << 16 # permissions: ?rw------- |
| 1602 | |
| 1603 | # Compressed size can be larger than uncompressed size |
| 1604 | zip64 = self._allowZip64 and \ |
| 1605 | (force_zip64 or zinfo.file_size * 1.05 > ZIP64_LIMIT) |
| 1606 | |
| 1607 | if self._seekable: |
| 1608 | self.fp.seek(self.start_dir) |
| 1609 | zinfo.header_offset = self.fp.tell() |
| 1610 | |
| 1611 | self._writecheck(zinfo) |
| 1612 | self._didModify = True |
| 1613 | |
| 1614 | self.fp.write(zinfo.FileHeader(zip64)) |
| 1615 | |
| 1616 | self._writing = True |
| 1617 | return _ZipWriteFile(self, zinfo, zip64) |
| 1618 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1619 | def extract(self, member, path=None, pwd=None): |
| 1620 | """Extract a member from the archive to the current working directory, |
| 1621 | using its full name. Its file information is extracted as accurately |
| 1622 | as possible. `member' may be a filename or a ZipInfo object. You can |
| 1623 | specify a different directory using `path'. |
| 1624 | """ |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1625 | if path is None: |
| 1626 | path = os.getcwd() |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1627 | else: |
| 1628 | path = os.fspath(path) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1629 | |
| 1630 | return self._extract_member(member, path, pwd) |
| 1631 | |
| 1632 | def extractall(self, path=None, members=None, pwd=None): |
| 1633 | """Extract all members from the archive to the current working |
| 1634 | directory. `path' specifies a different directory to extract to. |
| 1635 | `members' is optional and must be a subset of the list returned |
| 1636 | by namelist(). |
| 1637 | """ |
| 1638 | if members is None: |
| 1639 | members = self.namelist() |
| 1640 | |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1641 | if path is None: |
| 1642 | path = os.getcwd() |
| 1643 | else: |
| 1644 | path = os.fspath(path) |
| 1645 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1646 | for zipinfo in members: |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1647 | self._extract_member(zipinfo, path, pwd) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1648 | |
Gregory P. Smith | 09aa752 | 2013-02-03 00:36:32 -0800 | [diff] [blame] | 1649 | @classmethod |
| 1650 | def _sanitize_windows_name(cls, arcname, pathsep): |
| 1651 | """Replace bad characters and remove trailing dots from parts.""" |
| 1652 | table = cls._windows_illegal_name_trans_table |
| 1653 | if not table: |
| 1654 | illegal = ':<>|"?*' |
| 1655 | table = str.maketrans(illegal, '_' * len(illegal)) |
| 1656 | cls._windows_illegal_name_trans_table = table |
| 1657 | arcname = arcname.translate(table) |
| 1658 | # remove trailing dots |
| 1659 | arcname = (x.rstrip('.') for x in arcname.split(pathsep)) |
| 1660 | # rejoin, removing empty parts. |
| 1661 | arcname = pathsep.join(x for x in arcname if x) |
| 1662 | return arcname |
| 1663 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1664 | def _extract_member(self, member, targetpath, pwd): |
| 1665 | """Extract the ZipInfo object 'member' to a physical |
| 1666 | file on the path targetpath. |
| 1667 | """ |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1668 | if not isinstance(member, ZipInfo): |
| 1669 | member = self.getinfo(member) |
| 1670 | |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1671 | # build the destination pathname, replacing |
| 1672 | # forward slashes to platform specific separators. |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 1673 | arcname = member.filename.replace('/', os.path.sep) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1674 | |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 1675 | if os.path.altsep: |
| 1676 | arcname = arcname.replace(os.path.altsep, os.path.sep) |
| 1677 | # interpret absolute pathname as relative, remove drive letter or |
| 1678 | # UNC path, redundant separators, "." and ".." components. |
| 1679 | arcname = os.path.splitdrive(arcname)[1] |
Gregory P. Smith | 09aa752 | 2013-02-03 00:36:32 -0800 | [diff] [blame] | 1680 | invalid_path_parts = ('', os.path.curdir, os.path.pardir) |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 1681 | arcname = os.path.sep.join(x for x in arcname.split(os.path.sep) |
Gregory P. Smith | 09aa752 | 2013-02-03 00:36:32 -0800 | [diff] [blame] | 1682 | if x not in invalid_path_parts) |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 1683 | if os.path.sep == '\\': |
Serhiy Storchaka | e5e6444 | 2013-02-02 19:50:59 +0200 | [diff] [blame] | 1684 | # filter illegal characters on Windows |
Gregory P. Smith | 09aa752 | 2013-02-03 00:36:32 -0800 | [diff] [blame] | 1685 | arcname = self._sanitize_windows_name(arcname, os.path.sep) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1686 | |
Gregory P. Smith | b47acbf | 2013-02-01 11:22:43 -0800 | [diff] [blame] | 1687 | targetpath = os.path.join(targetpath, arcname) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1688 | targetpath = os.path.normpath(targetpath) |
| 1689 | |
| 1690 | # Create all upper directories if necessary. |
| 1691 | upperdirs = os.path.dirname(targetpath) |
| 1692 | if upperdirs and not os.path.exists(upperdirs): |
| 1693 | os.makedirs(upperdirs) |
| 1694 | |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 1695 | if member.is_dir(): |
Martin v. Löwis | 70ccd16 | 2009-05-24 19:47:22 +0000 | [diff] [blame] | 1696 | if not os.path.isdir(targetpath): |
| 1697 | os.mkdir(targetpath) |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1698 | return targetpath |
| 1699 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1700 | with self.open(member, pwd=pwd) as source, \ |
| 1701 | open(targetpath, "wb") as target: |
| 1702 | shutil.copyfileobj(source, target) |
Christian Heimes | 790c823 | 2008-01-07 21:14:23 +0000 | [diff] [blame] | 1703 | |
| 1704 | return targetpath |
| 1705 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1706 | def _writecheck(self, zinfo): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1707 | """Check for errors before writing a file to the archive.""" |
Raymond Hettinger | 54f0222 | 2002-06-01 14:18:47 +0000 | [diff] [blame] | 1708 | if zinfo.filename in self.NameToInfo: |
Serhiy Storchaka | 9b7a1a1 | 2014-01-20 21:57:40 +0200 | [diff] [blame] | 1709 | import warnings |
| 1710 | warnings.warn('Duplicate name: %r' % zinfo.filename, stacklevel=3) |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1711 | if self.mode not in ('w', 'x', 'a'): |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1712 | raise ValueError("write() requires mode 'w', 'x', or 'a'") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1713 | if not self.fp: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1714 | raise ValueError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1715 | "Attempt to write ZIP archive that was already closed") |
Martin v. Löwis | f6b16a4 | 2012-05-01 07:58:44 +0200 | [diff] [blame] | 1716 | _check_compression(zinfo.compress_type) |
Serhiy Storchaka | cfbb394 | 2014-09-23 21:34:24 +0300 | [diff] [blame] | 1717 | if not self._allowZip64: |
| 1718 | requires_zip64 = None |
| 1719 | if len(self.filelist) >= ZIP_FILECOUNT_LIMIT: |
| 1720 | requires_zip64 = "Files count" |
| 1721 | elif zinfo.file_size > ZIP64_LIMIT: |
| 1722 | requires_zip64 = "Filesize" |
| 1723 | elif zinfo.header_offset > ZIP64_LIMIT: |
| 1724 | requires_zip64 = "Zipfile size" |
| 1725 | if requires_zip64: |
| 1726 | raise LargeZipFile(requires_zip64 + |
| 1727 | " would require ZIP64 extensions") |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1728 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1729 | def write(self, filename, arcname=None, |
Marcel Plch | 77b112c | 2018-08-31 16:43:31 +0200 | [diff] [blame] | 1730 | compress_type=None, compresslevel=None): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1731 | """Put the bytes from filename into the archive under the name |
| 1732 | arcname.""" |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1733 | if not self.fp: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1734 | raise ValueError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1735 | "Attempt to write to ZIP archive that was already closed") |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1736 | if self._writing: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1737 | raise ValueError( |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1738 | "Can't write to ZIP archive while an open writing handle exists" |
| 1739 | ) |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1740 | |
Marcel Plch | a2fe1e5 | 2018-08-02 15:04:52 +0200 | [diff] [blame] | 1741 | zinfo = ZipInfo.from_file(filename, arcname, |
Marcel Plch | 77b112c | 2018-08-31 16:43:31 +0200 | [diff] [blame] | 1742 | strict_timestamps=self._strict_timestamps) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1743 | |
Serhiy Storchaka | 503f908 | 2016-02-08 00:02:25 +0200 | [diff] [blame] | 1744 | if zinfo.is_dir(): |
| 1745 | zinfo.compress_size = 0 |
| 1746 | zinfo.CRC = 0 |
| 1747 | else: |
| 1748 | if compress_type is not None: |
| 1749 | zinfo.compress_type = compress_type |
| 1750 | else: |
| 1751 | zinfo.compress_type = self.compression |
| 1752 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1753 | if compresslevel is not None: |
| 1754 | zinfo._compresslevel = compresslevel |
| 1755 | else: |
| 1756 | zinfo._compresslevel = self.compresslevel |
| 1757 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1758 | if zinfo.is_dir(): |
| 1759 | with self._lock: |
| 1760 | if self._seekable: |
| 1761 | self.fp.seek(self.start_dir) |
| 1762 | zinfo.header_offset = self.fp.tell() # Start of header bytes |
| 1763 | if zinfo.compress_type == ZIP_LZMA: |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1764 | # Compressed data includes an end-of-stream (EOS) marker |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1765 | zinfo.flag_bits |= 0x02 |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1766 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1767 | self._writecheck(zinfo) |
| 1768 | self._didModify = True |
Martin v. Löwis | 59e4779 | 2009-01-24 14:10:07 +0000 | [diff] [blame] | 1769 | |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1770 | self.filelist.append(zinfo) |
| 1771 | self.NameToInfo[zinfo.filename] = zinfo |
| 1772 | self.fp.write(zinfo.FileHeader(False)) |
| 1773 | self.start_dir = self.fp.tell() |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1774 | else: |
| 1775 | with open(filename, "rb") as src, self.open(zinfo, 'w') as dest: |
| 1776 | shutil.copyfileobj(src, dest, 1024*8) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1777 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1778 | def writestr(self, zinfo_or_arcname, data, |
| 1779 | compress_type=None, compresslevel=None): |
Guido van Rossum | 85825dc | 2007-08-27 17:03:28 +0000 | [diff] [blame] | 1780 | """Write a file into the archive. The contents is 'data', which |
| 1781 | may be either a 'str' or a 'bytes' instance; if it is a 'str', |
| 1782 | it is encoded as UTF-8 first. |
| 1783 | 'zinfo_or_arcname' is either a ZipInfo instance or |
Just van Rossum | b083cb3 | 2002-12-12 12:23:32 +0000 | [diff] [blame] | 1784 | the name of the file in the archive.""" |
Guido van Rossum | 85825dc | 2007-08-27 17:03:28 +0000 | [diff] [blame] | 1785 | if isinstance(data, str): |
| 1786 | data = data.encode("utf-8") |
Just van Rossum | b083cb3 | 2002-12-12 12:23:32 +0000 | [diff] [blame] | 1787 | if not isinstance(zinfo_or_arcname, ZipInfo): |
| 1788 | zinfo = ZipInfo(filename=zinfo_or_arcname, |
Guido van Rossum | 7736b5b | 2008-01-15 21:44:53 +0000 | [diff] [blame] | 1789 | date_time=time.localtime(time.time())[:6]) |
Just van Rossum | b083cb3 | 2002-12-12 12:23:32 +0000 | [diff] [blame] | 1790 | zinfo.compress_type = self.compression |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1791 | zinfo._compresslevel = self.compresslevel |
Serhiy Storchaka | 46a3492 | 2014-09-23 22:40:23 +0300 | [diff] [blame] | 1792 | if zinfo.filename[-1] == '/': |
| 1793 | zinfo.external_attr = 0o40775 << 16 # drwxrwxr-x |
| 1794 | zinfo.external_attr |= 0x10 # MS-DOS directory flag |
| 1795 | else: |
| 1796 | zinfo.external_attr = 0o600 << 16 # ?rw------- |
Just van Rossum | b083cb3 | 2002-12-12 12:23:32 +0000 | [diff] [blame] | 1797 | else: |
| 1798 | zinfo = zinfo_or_arcname |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1799 | |
| 1800 | if not self.fp: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1801 | raise ValueError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1802 | "Attempt to write to ZIP archive that was already closed") |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1803 | if self._writing: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1804 | raise ValueError( |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1805 | "Can't write to ZIP archive while an open writing handle exists." |
| 1806 | ) |
| 1807 | |
| 1808 | if compress_type is not None: |
| 1809 | zinfo.compress_type = compress_type |
Guido van Rossum | b5a755e | 2007-07-18 18:15:48 +0000 | [diff] [blame] | 1810 | |
Bo Bayles | ce237c7 | 2018-01-29 23:54:07 -0600 | [diff] [blame] | 1811 | if compresslevel is not None: |
| 1812 | zinfo._compresslevel = compresslevel |
| 1813 | |
Guido van Rossum | 85825dc | 2007-08-27 17:03:28 +0000 | [diff] [blame] | 1814 | zinfo.file_size = len(data) # Uncompressed size |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1815 | with self._lock: |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1816 | with self.open(zinfo, mode='w') as dest: |
| 1817 | dest.write(data) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1818 | |
| 1819 | def __del__(self): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1820 | """Call the "close()" method in case the user forgot.""" |
Tim Peters | d15f8bb | 2001-11-28 23:16:40 +0000 | [diff] [blame] | 1821 | self.close() |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1822 | |
| 1823 | def close(self): |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1824 | """Close the file, and for mode 'w', 'x' and 'a' write the ending |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1825 | records.""" |
Tim Peters | d15f8bb | 2001-11-28 23:16:40 +0000 | [diff] [blame] | 1826 | if self.fp is None: |
| 1827 | return |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 1828 | |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1829 | if self._writing: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1830 | raise ValueError("Can't close the ZIP file while there is " |
| 1831 | "an open writing handle on it. " |
| 1832 | "Close the writing handle before closing the zip.") |
Serhiy Storchaka | 18ee29d | 2016-05-13 13:52:49 +0300 | [diff] [blame] | 1833 | |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1834 | try: |
Serhiy Storchaka | 764fc9b | 2015-03-25 10:09:41 +0200 | [diff] [blame] | 1835 | if self.mode in ('w', 'x', 'a') and self._didModify: # write ending records |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1836 | with self._lock: |
Serhiy Storchaka | 77d8997 | 2015-03-23 01:09:35 +0200 | [diff] [blame] | 1837 | if self._seekable: |
Serhiy Storchaka | a14f7d2 | 2015-01-26 14:01:27 +0200 | [diff] [blame] | 1838 | self.fp.seek(self.start_dir) |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1839 | self._write_end_record() |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 1840 | finally: |
| 1841 | fp = self.fp |
| 1842 | self.fp = None |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1843 | self._fpclose(fp) |
| 1844 | |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1845 | def _write_end_record(self): |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1846 | for zinfo in self.filelist: # write central directory |
| 1847 | dt = zinfo.date_time |
| 1848 | dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] |
| 1849 | dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2) |
| 1850 | extra = [] |
| 1851 | if zinfo.file_size > ZIP64_LIMIT \ |
| 1852 | or zinfo.compress_size > ZIP64_LIMIT: |
| 1853 | extra.append(zinfo.file_size) |
| 1854 | extra.append(zinfo.compress_size) |
| 1855 | file_size = 0xffffffff |
| 1856 | compress_size = 0xffffffff |
| 1857 | else: |
| 1858 | file_size = zinfo.file_size |
| 1859 | compress_size = zinfo.compress_size |
| 1860 | |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1861 | if zinfo.header_offset > ZIP64_LIMIT: |
| 1862 | extra.append(zinfo.header_offset) |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1863 | header_offset = 0xffffffff |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1864 | else: |
| 1865 | header_offset = zinfo.header_offset |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1866 | |
| 1867 | extra_data = zinfo.extra |
| 1868 | min_version = 0 |
| 1869 | if extra: |
| 1870 | # Append a ZIP64 field to the extra's |
Serhiy Storchaka | 9bdb7be | 2018-09-17 15:36:40 +0300 | [diff] [blame] | 1871 | extra_data = _strip_extra(extra_data, (1,)) |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1872 | extra_data = struct.pack( |
| 1873 | '<HH' + 'Q'*len(extra), |
| 1874 | 1, 8*len(extra), *extra) + extra_data |
| 1875 | |
| 1876 | min_version = ZIP64_VERSION |
| 1877 | |
| 1878 | if zinfo.compress_type == ZIP_BZIP2: |
| 1879 | min_version = max(BZIP2_VERSION, min_version) |
| 1880 | elif zinfo.compress_type == ZIP_LZMA: |
| 1881 | min_version = max(LZMA_VERSION, min_version) |
| 1882 | |
| 1883 | extract_version = max(min_version, zinfo.extract_version) |
| 1884 | create_version = max(min_version, zinfo.create_version) |
| 1885 | try: |
| 1886 | filename, flag_bits = zinfo._encodeFilenameFlags() |
| 1887 | centdir = struct.pack(structCentralDir, |
| 1888 | stringCentralDir, create_version, |
| 1889 | zinfo.create_system, extract_version, zinfo.reserved, |
| 1890 | flag_bits, zinfo.compress_type, dostime, dosdate, |
| 1891 | zinfo.CRC, compress_size, file_size, |
| 1892 | len(filename), len(extra_data), len(zinfo.comment), |
| 1893 | 0, zinfo.internal_attr, zinfo.external_attr, |
| 1894 | header_offset) |
| 1895 | except DeprecationWarning: |
| 1896 | print((structCentralDir, stringCentralDir, create_version, |
| 1897 | zinfo.create_system, extract_version, zinfo.reserved, |
| 1898 | zinfo.flag_bits, zinfo.compress_type, dostime, dosdate, |
| 1899 | zinfo.CRC, compress_size, file_size, |
| 1900 | len(zinfo.filename), len(extra_data), len(zinfo.comment), |
| 1901 | 0, zinfo.internal_attr, zinfo.external_attr, |
| 1902 | header_offset), file=sys.stderr) |
| 1903 | raise |
| 1904 | self.fp.write(centdir) |
| 1905 | self.fp.write(filename) |
| 1906 | self.fp.write(extra_data) |
| 1907 | self.fp.write(zinfo.comment) |
| 1908 | |
| 1909 | pos2 = self.fp.tell() |
| 1910 | # Write end-of-zip-archive record |
| 1911 | centDirCount = len(self.filelist) |
| 1912 | centDirSize = pos2 - self.start_dir |
Serhiy Storchaka | 3763ea8 | 2017-05-06 14:46:01 +0300 | [diff] [blame] | 1913 | centDirOffset = self.start_dir |
Serhiy Storchaka | f15e524 | 2015-01-26 13:53:38 +0200 | [diff] [blame] | 1914 | requires_zip64 = None |
| 1915 | if centDirCount > ZIP_FILECOUNT_LIMIT: |
| 1916 | requires_zip64 = "Files count" |
| 1917 | elif centDirOffset > ZIP64_LIMIT: |
| 1918 | requires_zip64 = "Central directory offset" |
| 1919 | elif centDirSize > ZIP64_LIMIT: |
| 1920 | requires_zip64 = "Central directory size" |
| 1921 | if requires_zip64: |
| 1922 | # Need to write the ZIP64 end-of-archive records |
| 1923 | if not self._allowZip64: |
| 1924 | raise LargeZipFile(requires_zip64 + |
| 1925 | " would require ZIP64 extensions") |
| 1926 | zip64endrec = struct.pack( |
| 1927 | structEndArchive64, stringEndArchive64, |
| 1928 | 44, 45, 45, 0, 0, centDirCount, centDirCount, |
| 1929 | centDirSize, centDirOffset) |
| 1930 | self.fp.write(zip64endrec) |
| 1931 | |
| 1932 | zip64locrec = struct.pack( |
| 1933 | structEndArchive64Locator, |
| 1934 | stringEndArchive64Locator, 0, pos2, 1) |
| 1935 | self.fp.write(zip64locrec) |
| 1936 | centDirCount = min(centDirCount, 0xFFFF) |
| 1937 | centDirSize = min(centDirSize, 0xFFFFFFFF) |
| 1938 | centDirOffset = min(centDirOffset, 0xFFFFFFFF) |
| 1939 | |
| 1940 | endrec = struct.pack(structEndArchive, stringEndArchive, |
| 1941 | 0, 0, centDirCount, centDirCount, |
| 1942 | centDirSize, centDirOffset, len(self._comment)) |
| 1943 | self.fp.write(endrec) |
| 1944 | self.fp.write(self._comment) |
| 1945 | self.fp.flush() |
| 1946 | |
Serhiy Storchaka | 1ad088f | 2014-12-03 09:11:57 +0200 | [diff] [blame] | 1947 | def _fpclose(self, fp): |
| 1948 | assert self._fileRefCnt > 0 |
| 1949 | self._fileRefCnt -= 1 |
| 1950 | if not self._fileRefCnt and not self._filePassed: |
| 1951 | fp.close() |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1952 | |
| 1953 | |
| 1954 | class PyZipFile(ZipFile): |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1955 | """Class to create ZIP archives with Python library files and packages.""" |
| 1956 | |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 1957 | def __init__(self, file, mode="r", compression=ZIP_STORED, |
Serhiy Storchaka | 235c5e0 | 2013-11-23 15:55:38 +0200 | [diff] [blame] | 1958 | allowZip64=True, optimize=-1): |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 1959 | ZipFile.__init__(self, file, mode=mode, compression=compression, |
| 1960 | allowZip64=allowZip64) |
| 1961 | self._optimize = optimize |
| 1962 | |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1963 | def writepy(self, pathname, basename="", filterfunc=None): |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1964 | """Add all files from "pathname" to the ZIP archive. |
| 1965 | |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1966 | If pathname is a package directory, search the directory and |
| 1967 | all package subdirectories recursively for all *.py and enter |
| 1968 | the modules into the archive. If pathname is a plain |
| 1969 | directory, listdir *.py and enter all modules. Else, pathname |
| 1970 | must be a Python *.py file and the module will be put into the |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 1971 | archive. Added modules are always module.pyc. |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1972 | This method will compile the module.py into module.pyc if |
| 1973 | necessary. |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1974 | If filterfunc(pathname) is given, it is called with every argument. |
| 1975 | When it is False, the file or directory is skipped. |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 1976 | """ |
Serhiy Storchaka | 8606e95 | 2017-03-08 14:37:51 +0200 | [diff] [blame] | 1977 | pathname = os.fspath(pathname) |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1978 | if filterfunc and not filterfunc(pathname): |
| 1979 | if self.debug: |
Christian Tismer | 410d931 | 2013-10-22 04:09:28 +0200 | [diff] [blame] | 1980 | label = 'path' if os.path.isdir(pathname) else 'file' |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 1981 | print('%s %r skipped by filterfunc' % (label, pathname)) |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 1982 | return |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1983 | dir, name = os.path.split(pathname) |
| 1984 | if os.path.isdir(pathname): |
| 1985 | initname = os.path.join(pathname, "__init__.py") |
| 1986 | if os.path.isfile(initname): |
| 1987 | # This is a package directory, add it |
| 1988 | if basename: |
| 1989 | basename = "%s/%s" % (basename, name) |
| 1990 | else: |
| 1991 | basename = name |
| 1992 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1993 | print("Adding package in", pathname, "as", basename) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1994 | fname, arcname = self._get_codename(initname[0:-3], basename) |
| 1995 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 1996 | print("Adding", arcname) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1997 | self.write(fname, arcname) |
Bernhard M. Wiedemann | 8452104 | 2018-01-31 11:17:10 +0100 | [diff] [blame] | 1998 | dirlist = sorted(os.listdir(pathname)) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 1999 | dirlist.remove("__init__.py") |
| 2000 | # Add all *.py files and package subdirectories |
| 2001 | for filename in dirlist: |
| 2002 | path = os.path.join(pathname, filename) |
| 2003 | root, ext = os.path.splitext(filename) |
| 2004 | if os.path.isdir(path): |
| 2005 | if os.path.isfile(os.path.join(path, "__init__.py")): |
| 2006 | # This is a package directory, add it |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 2007 | self.writepy(path, basename, |
| 2008 | filterfunc=filterfunc) # Recursive call |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2009 | elif ext == ".py": |
Christian Tismer | 410d931 | 2013-10-22 04:09:28 +0200 | [diff] [blame] | 2010 | if filterfunc and not filterfunc(path): |
| 2011 | if self.debug: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 2012 | print('file %r skipped by filterfunc' % path) |
Christian Tismer | 410d931 | 2013-10-22 04:09:28 +0200 | [diff] [blame] | 2013 | continue |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2014 | fname, arcname = self._get_codename(path[0:-3], |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 2015 | basename) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2016 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 2017 | print("Adding", arcname) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2018 | self.write(fname, arcname) |
| 2019 | else: |
| 2020 | # This is NOT a package directory, add its files at top level |
| 2021 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 2022 | print("Adding files from directory", pathname) |
Bernhard M. Wiedemann | 8452104 | 2018-01-31 11:17:10 +0100 | [diff] [blame] | 2023 | for filename in sorted(os.listdir(pathname)): |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2024 | path = os.path.join(pathname, filename) |
| 2025 | root, ext = os.path.splitext(filename) |
| 2026 | if ext == ".py": |
Christian Tismer | 410d931 | 2013-10-22 04:09:28 +0200 | [diff] [blame] | 2027 | if filterfunc and not filterfunc(path): |
| 2028 | if self.debug: |
Serhiy Storchaka | b0d497c | 2016-09-10 21:28:07 +0300 | [diff] [blame] | 2029 | print('file %r skipped by filterfunc' % path) |
Christian Tismer | 410d931 | 2013-10-22 04:09:28 +0200 | [diff] [blame] | 2030 | continue |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2031 | fname, arcname = self._get_codename(path[0:-3], |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 2032 | basename) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2033 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 2034 | print("Adding", arcname) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2035 | self.write(fname, arcname) |
| 2036 | else: |
| 2037 | if pathname[-3:] != ".py": |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 2038 | raise RuntimeError( |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 2039 | 'Files added with writepy() must end with ".py"') |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2040 | fname, arcname = self._get_codename(pathname[0:-3], basename) |
| 2041 | if self.debug: |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 2042 | print("Adding file", arcname) |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2043 | self.write(fname, arcname) |
| 2044 | |
| 2045 | def _get_codename(self, pathname, basename): |
| 2046 | """Return (filename, archivename) for the path. |
| 2047 | |
Fred Drake | 484d735 | 2000-10-02 21:14:52 +0000 | [diff] [blame] | 2048 | Given a module name path, return the correct file path and |
| 2049 | archive name, compiling if necessary. For example, given |
| 2050 | /python/lib/string, return (/python/lib/string.pyc, string). |
| 2051 | """ |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2052 | def _compile(file, optimize=-1): |
| 2053 | import py_compile |
| 2054 | if self.debug: |
| 2055 | print("Compiling", file) |
| 2056 | try: |
| 2057 | py_compile.compile(file, doraise=True, optimize=optimize) |
Serhiy Storchaka | 45c4375 | 2013-01-29 20:10:28 +0200 | [diff] [blame] | 2058 | except py_compile.PyCompileError as err: |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2059 | print(err.msg) |
| 2060 | return False |
| 2061 | return True |
| 2062 | |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2063 | file_py = pathname + ".py" |
| 2064 | file_pyc = pathname + ".pyc" |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2065 | pycache_opt0 = importlib.util.cache_from_source(file_py, optimization='') |
| 2066 | pycache_opt1 = importlib.util.cache_from_source(file_py, optimization=1) |
| 2067 | pycache_opt2 = importlib.util.cache_from_source(file_py, optimization=2) |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2068 | if self._optimize == -1: |
| 2069 | # legacy mode: use whatever file is present |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2070 | if (os.path.isfile(file_pyc) and |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2071 | os.stat(file_pyc).st_mtime >= os.stat(file_py).st_mtime): |
| 2072 | # Use .pyc file. |
| 2073 | arcname = fname = file_pyc |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2074 | elif (os.path.isfile(pycache_opt0) and |
| 2075 | os.stat(pycache_opt0).st_mtime >= os.stat(file_py).st_mtime): |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2076 | # Use the __pycache__/*.pyc file, but write it to the legacy pyc |
| 2077 | # file name in the archive. |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2078 | fname = pycache_opt0 |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2079 | arcname = file_pyc |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2080 | elif (os.path.isfile(pycache_opt1) and |
| 2081 | os.stat(pycache_opt1).st_mtime >= os.stat(file_py).st_mtime): |
| 2082 | # Use the __pycache__/*.pyc file, but write it to the legacy pyc |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2083 | # file name in the archive. |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2084 | fname = pycache_opt1 |
| 2085 | arcname = file_pyc |
| 2086 | elif (os.path.isfile(pycache_opt2) and |
| 2087 | os.stat(pycache_opt2).st_mtime >= os.stat(file_py).st_mtime): |
| 2088 | # Use the __pycache__/*.pyc file, but write it to the legacy pyc |
| 2089 | # file name in the archive. |
| 2090 | fname = pycache_opt2 |
| 2091 | arcname = file_pyc |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 2092 | else: |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2093 | # Compile py into PEP 3147 pyc file. |
| 2094 | if _compile(file_py): |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2095 | if sys.flags.optimize == 0: |
| 2096 | fname = pycache_opt0 |
| 2097 | elif sys.flags.optimize == 1: |
| 2098 | fname = pycache_opt1 |
| 2099 | else: |
| 2100 | fname = pycache_opt2 |
| 2101 | arcname = file_pyc |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2102 | else: |
| 2103 | fname = arcname = file_py |
| 2104 | else: |
| 2105 | # new mode: use given optimization level |
| 2106 | if self._optimize == 0: |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2107 | fname = pycache_opt0 |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2108 | arcname = file_pyc |
| 2109 | else: |
Brett Cannon | f299abd | 2015-04-13 14:21:02 -0400 | [diff] [blame] | 2110 | arcname = file_pyc |
| 2111 | if self._optimize == 1: |
| 2112 | fname = pycache_opt1 |
| 2113 | elif self._optimize == 2: |
| 2114 | fname = pycache_opt2 |
| 2115 | else: |
| 2116 | msg = "invalid value for 'optimize': {!r}".format(self._optimize) |
| 2117 | raise ValueError(msg) |
Georg Brandl | 8334fd9 | 2010-12-04 10:26:46 +0000 | [diff] [blame] | 2118 | if not (os.path.isfile(fname) and |
| 2119 | os.stat(fname).st_mtime >= os.stat(file_py).st_mtime): |
| 2120 | if not _compile(file_py, optimize=self._optimize): |
| 2121 | fname = arcname = file_py |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 2122 | archivename = os.path.split(arcname)[1] |
Guido van Rossum | 32abe6f | 2000-03-31 17:30:02 +0000 | [diff] [blame] | 2123 | if basename: |
| 2124 | archivename = "%s/%s" % (basename, archivename) |
| 2125 | return (fname, archivename) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2126 | |
| 2127 | |
Miss Islington (bot) | c410f38 | 2019-08-24 09:03:52 -0700 | [diff] [blame] | 2128 | def _parents(path): |
| 2129 | """ |
| 2130 | Given a path with elements separated by |
| 2131 | posixpath.sep, generate all parents of that path. |
| 2132 | |
| 2133 | >>> list(_parents('b/d')) |
| 2134 | ['b'] |
| 2135 | >>> list(_parents('/b/d/')) |
| 2136 | ['/b'] |
| 2137 | >>> list(_parents('b/d/f/')) |
| 2138 | ['b/d', 'b'] |
| 2139 | >>> list(_parents('b')) |
| 2140 | [] |
| 2141 | >>> list(_parents('')) |
| 2142 | [] |
| 2143 | """ |
| 2144 | return itertools.islice(_ancestry(path), 1, None) |
| 2145 | |
| 2146 | |
| 2147 | def _ancestry(path): |
| 2148 | """ |
| 2149 | Given a path with elements separated by |
| 2150 | posixpath.sep, generate all elements of that path |
| 2151 | |
| 2152 | >>> list(_ancestry('b/d')) |
| 2153 | ['b/d', 'b'] |
| 2154 | >>> list(_ancestry('/b/d/')) |
| 2155 | ['/b/d', '/b'] |
| 2156 | >>> list(_ancestry('b/d/f/')) |
| 2157 | ['b/d/f', 'b/d', 'b'] |
| 2158 | >>> list(_ancestry('b')) |
| 2159 | ['b'] |
| 2160 | >>> list(_ancestry('')) |
| 2161 | [] |
| 2162 | """ |
| 2163 | path = path.rstrip(posixpath.sep) |
| 2164 | while path and path != posixpath.sep: |
| 2165 | yield path |
| 2166 | path, tail = posixpath.split(path) |
| 2167 | |
| 2168 | |
Miss Islington (bot) | 3e72de9 | 2020-04-15 11:45:25 -0700 | [diff] [blame] | 2169 | _dedupe = dict.fromkeys |
| 2170 | """Deduplicate an iterable in original order""" |
| 2171 | |
| 2172 | |
| 2173 | def _difference(minuend, subtrahend): |
| 2174 | """ |
| 2175 | Return items in minuend not in subtrahend, retaining order |
| 2176 | with O(1) lookup. |
| 2177 | """ |
| 2178 | return itertools.filterfalse(set(subtrahend).__contains__, minuend) |
| 2179 | |
| 2180 | |
Miss Islington (bot) | ed4d263 | 2020-02-11 19:21:32 -0800 | [diff] [blame] | 2181 | class CompleteDirs(ZipFile): |
| 2182 | """ |
| 2183 | A ZipFile subclass that ensures that implied directories |
| 2184 | are always included in the namelist. |
| 2185 | """ |
| 2186 | |
| 2187 | @staticmethod |
| 2188 | def _implied_dirs(names): |
| 2189 | parents = itertools.chain.from_iterable(map(_parents, names)) |
Miss Islington (bot) | 3e72de9 | 2020-04-15 11:45:25 -0700 | [diff] [blame] | 2190 | as_dirs = (p + posixpath.sep for p in parents) |
| 2191 | return _dedupe(_difference(as_dirs, names)) |
Miss Islington (bot) | ed4d263 | 2020-02-11 19:21:32 -0800 | [diff] [blame] | 2192 | |
| 2193 | def namelist(self): |
| 2194 | names = super(CompleteDirs, self).namelist() |
| 2195 | return names + list(self._implied_dirs(names)) |
| 2196 | |
| 2197 | def _name_set(self): |
| 2198 | return set(self.namelist()) |
| 2199 | |
| 2200 | def resolve_dir(self, name): |
| 2201 | """ |
| 2202 | If the name represents a directory, return that name |
| 2203 | as a directory (with the trailing slash). |
| 2204 | """ |
| 2205 | names = self._name_set() |
| 2206 | dirname = name + '/' |
| 2207 | dir_match = name not in names and dirname in names |
| 2208 | return dirname if dir_match else name |
| 2209 | |
| 2210 | @classmethod |
| 2211 | def make(cls, source): |
| 2212 | """ |
| 2213 | Given a source (filename or zipfile), return an |
| 2214 | appropriate CompleteDirs subclass. |
| 2215 | """ |
| 2216 | if isinstance(source, CompleteDirs): |
| 2217 | return source |
| 2218 | |
| 2219 | if not isinstance(source, ZipFile): |
| 2220 | return cls(source) |
| 2221 | |
| 2222 | # Only allow for FastPath when supplied zipfile is read-only |
| 2223 | if 'r' not in source.mode: |
| 2224 | cls = CompleteDirs |
| 2225 | |
| 2226 | res = cls.__new__(cls) |
| 2227 | vars(res).update(vars(source)) |
| 2228 | return res |
| 2229 | |
| 2230 | |
| 2231 | class FastLookup(CompleteDirs): |
| 2232 | """ |
| 2233 | ZipFile subclass to ensure implicit |
| 2234 | dirs exist and are resolved rapidly. |
| 2235 | """ |
| 2236 | def namelist(self): |
| 2237 | with contextlib.suppress(AttributeError): |
| 2238 | return self.__names |
| 2239 | self.__names = super(FastLookup, self).namelist() |
| 2240 | return self.__names |
| 2241 | |
| 2242 | def _name_set(self): |
| 2243 | with contextlib.suppress(AttributeError): |
| 2244 | return self.__lookup |
| 2245 | self.__lookup = super(FastLookup, self)._name_set() |
| 2246 | return self.__lookup |
| 2247 | |
| 2248 | |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 2249 | class Path: |
| 2250 | """ |
| 2251 | A pathlib-compatible interface for zip files. |
| 2252 | |
| 2253 | Consider a zip file with this structure:: |
| 2254 | |
| 2255 | . |
| 2256 | ├── a.txt |
| 2257 | └── b |
| 2258 | ├── c.txt |
| 2259 | └── d |
| 2260 | └── e.txt |
| 2261 | |
| 2262 | >>> data = io.BytesIO() |
| 2263 | >>> zf = ZipFile(data, 'w') |
| 2264 | >>> zf.writestr('a.txt', 'content of a') |
| 2265 | >>> zf.writestr('b/c.txt', 'content of c') |
| 2266 | >>> zf.writestr('b/d/e.txt', 'content of e') |
| 2267 | >>> zf.filename = 'abcde.zip' |
| 2268 | |
| 2269 | Path accepts the zipfile object itself or a filename |
| 2270 | |
| 2271 | >>> root = Path(zf) |
| 2272 | |
| 2273 | From there, several path operations are available. |
| 2274 | |
| 2275 | Directory iteration (including the zip file itself): |
| 2276 | |
| 2277 | >>> a, b = root.iterdir() |
| 2278 | >>> a |
| 2279 | Path('abcde.zip', 'a.txt') |
| 2280 | >>> b |
| 2281 | Path('abcde.zip', 'b/') |
| 2282 | |
| 2283 | name property: |
| 2284 | |
| 2285 | >>> b.name |
| 2286 | 'b' |
| 2287 | |
| 2288 | join with divide operator: |
| 2289 | |
| 2290 | >>> c = b / 'c.txt' |
| 2291 | >>> c |
| 2292 | Path('abcde.zip', 'b/c.txt') |
| 2293 | >>> c.name |
| 2294 | 'c.txt' |
| 2295 | |
| 2296 | Read text: |
| 2297 | |
| 2298 | >>> c.read_text() |
| 2299 | 'content of c' |
| 2300 | |
| 2301 | existence: |
| 2302 | |
| 2303 | >>> c.exists() |
| 2304 | True |
| 2305 | >>> (b / 'missing.txt').exists() |
| 2306 | False |
| 2307 | |
Xtreak | 0d70227 | 2019-06-03 04:42:33 +0530 | [diff] [blame] | 2308 | Coercion to string: |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 2309 | |
| 2310 | >>> str(c) |
| 2311 | 'abcde.zip/b/c.txt' |
| 2312 | """ |
| 2313 | |
| 2314 | __repr = "{self.__class__.__name__}({self.root.filename!r}, {self.at!r})" |
| 2315 | |
| 2316 | def __init__(self, root, at=""): |
Miss Islington (bot) | ed4d263 | 2020-02-11 19:21:32 -0800 | [diff] [blame] | 2317 | self.root = FastLookup.make(root) |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 2318 | self.at = at |
| 2319 | |
| 2320 | @property |
| 2321 | def open(self): |
| 2322 | return functools.partial(self.root.open, self.at) |
| 2323 | |
| 2324 | @property |
| 2325 | def name(self): |
| 2326 | return posixpath.basename(self.at.rstrip("/")) |
| 2327 | |
| 2328 | def read_text(self, *args, **kwargs): |
| 2329 | with self.open() as strm: |
| 2330 | return io.TextIOWrapper(strm, *args, **kwargs).read() |
| 2331 | |
| 2332 | def read_bytes(self): |
| 2333 | with self.open() as strm: |
| 2334 | return strm.read() |
| 2335 | |
| 2336 | def _is_child(self, path): |
| 2337 | return posixpath.dirname(path.at.rstrip("/")) == self.at.rstrip("/") |
| 2338 | |
| 2339 | def _next(self, at): |
| 2340 | return Path(self.root, at) |
| 2341 | |
| 2342 | def is_dir(self): |
| 2343 | return not self.at or self.at.endswith("/") |
| 2344 | |
| 2345 | def is_file(self): |
| 2346 | return not self.is_dir() |
| 2347 | |
| 2348 | def exists(self): |
Miss Islington (bot) | ed4d263 | 2020-02-11 19:21:32 -0800 | [diff] [blame] | 2349 | return self.at in self.root._name_set() |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 2350 | |
| 2351 | def iterdir(self): |
| 2352 | if not self.is_dir(): |
| 2353 | raise ValueError("Can't listdir a file") |
Miss Islington (bot) | ed4d263 | 2020-02-11 19:21:32 -0800 | [diff] [blame] | 2354 | subs = map(self._next, self.root.namelist()) |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 2355 | return filter(self._is_child, subs) |
| 2356 | |
| 2357 | def __str__(self): |
| 2358 | return posixpath.join(self.root.filename, self.at) |
| 2359 | |
| 2360 | def __repr__(self): |
| 2361 | return self.__repr.format(self=self) |
| 2362 | |
Jason R. Coombs | 33e067d | 2019-05-09 11:34:36 -0400 | [diff] [blame] | 2363 | def joinpath(self, add): |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 2364 | next = posixpath.join(self.at, add) |
Miss Islington (bot) | ed4d263 | 2020-02-11 19:21:32 -0800 | [diff] [blame] | 2365 | return self._next(self.root.resolve_dir(next)) |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 2366 | |
Jason R. Coombs | 33e067d | 2019-05-09 11:34:36 -0400 | [diff] [blame] | 2367 | __truediv__ = joinpath |
| 2368 | |
Jason R. Coombs | 33e067d | 2019-05-09 11:34:36 -0400 | [diff] [blame] | 2369 | @property |
| 2370 | def parent(self): |
Miss Islington (bot) | 66905d1 | 2019-07-07 15:05:53 -0700 | [diff] [blame] | 2371 | parent_at = posixpath.dirname(self.at.rstrip('/')) |
Jason R. Coombs | 33e067d | 2019-05-09 11:34:36 -0400 | [diff] [blame] | 2372 | if parent_at: |
| 2373 | parent_at += '/' |
| 2374 | return self._next(parent_at) |
| 2375 | |
Jason R. Coombs | b2758ff | 2019-05-08 09:45:06 -0400 | [diff] [blame] | 2376 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2377 | def main(args=None): |
| 2378 | import argparse |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2379 | |
Serhiy Storchaka | 150cd19 | 2017-04-07 18:56:12 +0300 | [diff] [blame] | 2380 | description = 'A simple command-line interface for zipfile module.' |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2381 | parser = argparse.ArgumentParser(description=description) |
Serhiy Storchaka | 150cd19 | 2017-04-07 18:56:12 +0300 | [diff] [blame] | 2382 | group = parser.add_mutually_exclusive_group(required=True) |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2383 | group.add_argument('-l', '--list', metavar='<zipfile>', |
| 2384 | help='Show listing of a zipfile') |
| 2385 | group.add_argument('-e', '--extract', nargs=2, |
| 2386 | metavar=('<zipfile>', '<output_dir>'), |
| 2387 | help='Extract zipfile into target dir') |
| 2388 | group.add_argument('-c', '--create', nargs='+', |
| 2389 | metavar=('<name>', '<file>'), |
| 2390 | help='Create zipfile from sources') |
| 2391 | group.add_argument('-t', '--test', metavar='<zipfile>', |
| 2392 | help='Test if a zipfile is valid') |
| 2393 | args = parser.parse_args(args) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2394 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2395 | if args.test is not None: |
| 2396 | src = args.test |
| 2397 | with ZipFile(src, 'r') as zf: |
Antoine Pitrou | 17babc5 | 2012-11-17 23:50:08 +0100 | [diff] [blame] | 2398 | badfile = zf.testzip() |
Antoine Pitrou | 7c8bcb6 | 2010-08-12 15:11:50 +0000 | [diff] [blame] | 2399 | if badfile: |
| 2400 | print("The following enclosed file is corrupted: {!r}".format(badfile)) |
Guido van Rossum | be19ed7 | 2007-02-09 05:37:30 +0000 | [diff] [blame] | 2401 | print("Done testing") |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2402 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2403 | elif args.list is not None: |
| 2404 | src = args.list |
| 2405 | with ZipFile(src, 'r') as zf: |
| 2406 | zf.printdir() |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2407 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2408 | elif args.extract is not None: |
| 2409 | src, curdir = args.extract |
| 2410 | with ZipFile(src, 'r') as zf: |
| 2411 | zf.extractall(curdir) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2412 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2413 | elif args.create is not None: |
| 2414 | zip_name = args.create.pop(0) |
| 2415 | files = args.create |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2416 | |
| 2417 | def addToZip(zf, path, zippath): |
| 2418 | if os.path.isfile(path): |
| 2419 | zf.write(path, zippath, ZIP_DEFLATED) |
| 2420 | elif os.path.isdir(path): |
Serhiy Storchaka | 518e71b | 2014-10-04 13:39:34 +0300 | [diff] [blame] | 2421 | if zippath: |
| 2422 | zf.write(path, zippath) |
Bernhard M. Wiedemann | 8452104 | 2018-01-31 11:17:10 +0100 | [diff] [blame] | 2423 | for nm in sorted(os.listdir(path)): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2424 | addToZip(zf, |
Christian Tismer | 59202e5 | 2013-10-21 03:59:23 +0200 | [diff] [blame] | 2425 | os.path.join(path, nm), os.path.join(zippath, nm)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2426 | # else: ignore |
| 2427 | |
Serhiy Storchaka | 8c93310 | 2016-10-23 13:32:12 +0300 | [diff] [blame] | 2428 | with ZipFile(zip_name, 'w') as zf: |
| 2429 | for path in files: |
Serhiy Storchaka | 518e71b | 2014-10-04 13:39:34 +0300 | [diff] [blame] | 2430 | zippath = os.path.basename(path) |
| 2431 | if not zippath: |
| 2432 | zippath = os.path.basename(os.path.dirname(path)) |
| 2433 | if zippath in ('', os.curdir, os.pardir): |
| 2434 | zippath = '' |
| 2435 | addToZip(zf, path, zippath) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2436 | |
Miss Islington (bot) | ed4d263 | 2020-02-11 19:21:32 -0800 | [diff] [blame] | 2437 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 2438 | if __name__ == "__main__": |
| 2439 | main() |