zipfile.py 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962
  1. """
  2. Read and write ZIP files.
  3. XXX references to utf-8 need further investigation.
  4. """
  5. import io
  6. import os
  7. import re
  8. import importlib.util
  9. import sys
  10. import time
  11. import stat
  12. import shutil
  13. import struct
  14. import binascii
  15. try:
  16. import threading
  17. except ImportError:
  18. import dummy_threading as threading
  19. try:
  20. import zlib # We may need its compression method
  21. crc32 = zlib.crc32
  22. except ImportError:
  23. zlib = None
  24. crc32 = binascii.crc32
  25. try:
  26. import bz2 # We may need its compression method
  27. except ImportError:
  28. bz2 = None
  29. try:
  30. import lzma # We may need its compression method
  31. except ImportError:
  32. lzma = None
  33. __all__ = ["BadZipFile", "BadZipfile", "error",
  34. "ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2", "ZIP_LZMA",
  35. "is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile"]
  36. class BadZipFile(Exception):
  37. pass
  38. class LargeZipFile(Exception):
  39. """
  40. Raised when writing a zipfile, the zipfile requires ZIP64 extensions
  41. and those extensions are disabled.
  42. """
  43. error = BadZipfile = BadZipFile # Pre-3.2 compatibility names
  44. ZIP64_LIMIT = (1 << 31) - 1
  45. ZIP_FILECOUNT_LIMIT = (1 << 16) - 1
  46. ZIP_MAX_COMMENT = (1 << 16) - 1
  47. # constants for Zip file compression methods
  48. ZIP_STORED = 0
  49. ZIP_DEFLATED = 8
  50. ZIP_BZIP2 = 12
  51. ZIP_LZMA = 14
  52. # Other ZIP compression methods not supported
  53. DEFAULT_VERSION = 20
  54. ZIP64_VERSION = 45
  55. BZIP2_VERSION = 46
  56. LZMA_VERSION = 63
  57. # we recognize (but not necessarily support) all features up to that version
  58. MAX_EXTRACT_VERSION = 63
  59. # Below are some formats and associated data for reading/writing headers using
  60. # the struct module. The names and structures of headers/records are those used
  61. # in the PKWARE description of the ZIP file format:
  62. # http://www.pkware.com/documents/casestudies/APPNOTE.TXT
  63. # (URL valid as of January 2008)
  64. # The "end of central directory" structure, magic number, size, and indices
  65. # (section V.I in the format document)
  66. structEndArchive = b"<4s4H2LH"
  67. stringEndArchive = b"PK\005\006"
  68. sizeEndCentDir = struct.calcsize(structEndArchive)
  69. _ECD_SIGNATURE = 0
  70. _ECD_DISK_NUMBER = 1
  71. _ECD_DISK_START = 2
  72. _ECD_ENTRIES_THIS_DISK = 3
  73. _ECD_ENTRIES_TOTAL = 4
  74. _ECD_SIZE = 5
  75. _ECD_OFFSET = 6
  76. _ECD_COMMENT_SIZE = 7
  77. # These last two indices are not part of the structure as defined in the
  78. # spec, but they are used internally by this module as a convenience
  79. _ECD_COMMENT = 8
  80. _ECD_LOCATION = 9
  81. # The "central directory" structure, magic number, size, and indices
  82. # of entries in the structure (section V.F in the format document)
  83. structCentralDir = "<4s4B4HL2L5H2L"
  84. stringCentralDir = b"PK\001\002"
  85. sizeCentralDir = struct.calcsize(structCentralDir)
  86. # indexes of entries in the central directory structure
  87. _CD_SIGNATURE = 0
  88. _CD_CREATE_VERSION = 1
  89. _CD_CREATE_SYSTEM = 2
  90. _CD_EXTRACT_VERSION = 3
  91. _CD_EXTRACT_SYSTEM = 4
  92. _CD_FLAG_BITS = 5
  93. _CD_COMPRESS_TYPE = 6
  94. _CD_TIME = 7
  95. _CD_DATE = 8
  96. _CD_CRC = 9
  97. _CD_COMPRESSED_SIZE = 10
  98. _CD_UNCOMPRESSED_SIZE = 11
  99. _CD_FILENAME_LENGTH = 12
  100. _CD_EXTRA_FIELD_LENGTH = 13
  101. _CD_COMMENT_LENGTH = 14
  102. _CD_DISK_NUMBER_START = 15
  103. _CD_INTERNAL_FILE_ATTRIBUTES = 16
  104. _CD_EXTERNAL_FILE_ATTRIBUTES = 17
  105. _CD_LOCAL_HEADER_OFFSET = 18
  106. # The "local file header" structure, magic number, size, and indices
  107. # (section V.A in the format document)
  108. structFileHeader = "<4s2B4HL2L2H"
  109. stringFileHeader = b"PK\003\004"
  110. sizeFileHeader = struct.calcsize(structFileHeader)
  111. _FH_SIGNATURE = 0
  112. _FH_EXTRACT_VERSION = 1
  113. _FH_EXTRACT_SYSTEM = 2
  114. _FH_GENERAL_PURPOSE_FLAG_BITS = 3
  115. _FH_COMPRESSION_METHOD = 4
  116. _FH_LAST_MOD_TIME = 5
  117. _FH_LAST_MOD_DATE = 6
  118. _FH_CRC = 7
  119. _FH_COMPRESSED_SIZE = 8
  120. _FH_UNCOMPRESSED_SIZE = 9
  121. _FH_FILENAME_LENGTH = 10
  122. _FH_EXTRA_FIELD_LENGTH = 11
  123. # The "Zip64 end of central directory locator" structure, magic number, and size
  124. structEndArchive64Locator = "<4sLQL"
  125. stringEndArchive64Locator = b"PK\x06\x07"
  126. sizeEndCentDir64Locator = struct.calcsize(structEndArchive64Locator)
  127. # The "Zip64 end of central directory" record, magic number, size, and indices
  128. # (section V.G in the format document)
  129. structEndArchive64 = "<4sQ2H2L4Q"
  130. stringEndArchive64 = b"PK\x06\x06"
  131. sizeEndCentDir64 = struct.calcsize(structEndArchive64)
  132. _CD64_SIGNATURE = 0
  133. _CD64_DIRECTORY_RECSIZE = 1
  134. _CD64_CREATE_VERSION = 2
  135. _CD64_EXTRACT_VERSION = 3
  136. _CD64_DISK_NUMBER = 4
  137. _CD64_DISK_NUMBER_START = 5
  138. _CD64_NUMBER_ENTRIES_THIS_DISK = 6
  139. _CD64_NUMBER_ENTRIES_TOTAL = 7
  140. _CD64_DIRECTORY_SIZE = 8
  141. _CD64_OFFSET_START_CENTDIR = 9
  142. def _check_zipfile(fp):
  143. try:
  144. if _EndRecData(fp):
  145. return True # file has correct magic number
  146. except OSError:
  147. pass
  148. return False
  149. def is_zipfile(filename):
  150. """Quickly see if a file is a ZIP file by checking the magic number.
  151. The filename argument may be a file or file-like object too.
  152. """
  153. result = False
  154. try:
  155. if hasattr(filename, "read"):
  156. result = _check_zipfile(fp=filename)
  157. else:
  158. with open(filename, "rb") as fp:
  159. result = _check_zipfile(fp)
  160. except OSError:
  161. pass
  162. return result
  163. def _EndRecData64(fpin, offset, endrec):
  164. """
  165. Read the ZIP64 end-of-archive records and use that to update endrec
  166. """
  167. try:
  168. fpin.seek(offset - sizeEndCentDir64Locator, 2)
  169. except OSError:
  170. # If the seek fails, the file is not large enough to contain a ZIP64
  171. # end-of-archive record, so just return the end record we were given.
  172. return endrec
  173. data = fpin.read(sizeEndCentDir64Locator)
  174. if len(data) != sizeEndCentDir64Locator:
  175. return endrec
  176. sig, diskno, reloff, disks = struct.unpack(structEndArchive64Locator, data)
  177. if sig != stringEndArchive64Locator:
  178. return endrec
  179. if diskno != 0 or disks != 1:
  180. raise BadZipFile("zipfiles that span multiple disks are not supported")
  181. # Assume no 'zip64 extensible data'
  182. fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2)
  183. data = fpin.read(sizeEndCentDir64)
  184. if len(data) != sizeEndCentDir64:
  185. return endrec
  186. sig, sz, create_version, read_version, disk_num, disk_dir, \
  187. dircount, dircount2, dirsize, diroffset = \
  188. struct.unpack(structEndArchive64, data)
  189. if sig != stringEndArchive64:
  190. return endrec
  191. # Update the original endrec using data from the ZIP64 record
  192. endrec[_ECD_SIGNATURE] = sig
  193. endrec[_ECD_DISK_NUMBER] = disk_num
  194. endrec[_ECD_DISK_START] = disk_dir
  195. endrec[_ECD_ENTRIES_THIS_DISK] = dircount
  196. endrec[_ECD_ENTRIES_TOTAL] = dircount2
  197. endrec[_ECD_SIZE] = dirsize
  198. endrec[_ECD_OFFSET] = diroffset
  199. return endrec
  200. def _EndRecData(fpin):
  201. """Return data from the "End of Central Directory" record, or None.
  202. The data is a list of the nine items in the ZIP "End of central dir"
  203. record followed by a tenth item, the file seek offset of this record."""
  204. # Determine file size
  205. fpin.seek(0, 2)
  206. filesize = fpin.tell()
  207. # Check to see if this is ZIP file with no archive comment (the
  208. # "end of central directory" structure should be the last item in the
  209. # file if this is the case).
  210. try:
  211. fpin.seek(-sizeEndCentDir, 2)
  212. except OSError:
  213. return None
  214. data = fpin.read()
  215. if (len(data) == sizeEndCentDir and
  216. data[0:4] == stringEndArchive and
  217. data[-2:] == b"\000\000"):
  218. # the signature is correct and there's no comment, unpack structure
  219. endrec = struct.unpack(structEndArchive, data)
  220. endrec=list(endrec)
  221. # Append a blank comment and record start offset
  222. endrec.append(b"")
  223. endrec.append(filesize - sizeEndCentDir)
  224. # Try to read the "Zip64 end of central directory" structure
  225. return _EndRecData64(fpin, -sizeEndCentDir, endrec)
  226. # Either this is not a ZIP file, or it is a ZIP file with an archive
  227. # comment. Search the end of the file for the "end of central directory"
  228. # record signature. The comment is the last item in the ZIP file and may be
  229. # up to 64K long. It is assumed that the "end of central directory" magic
  230. # number does not appear in the comment.
  231. maxCommentStart = max(filesize - (1 << 16) - sizeEndCentDir, 0)
  232. fpin.seek(maxCommentStart, 0)
  233. data = fpin.read()
  234. start = data.rfind(stringEndArchive)
  235. if start >= 0:
  236. # found the magic number; attempt to unpack and interpret
  237. recData = data[start:start+sizeEndCentDir]
  238. if len(recData) != sizeEndCentDir:
  239. # Zip file is corrupted.
  240. return None
  241. endrec = list(struct.unpack(structEndArchive, recData))
  242. commentSize = endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file
  243. comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize]
  244. endrec.append(comment)
  245. endrec.append(maxCommentStart + start)
  246. # Try to read the "Zip64 end of central directory" structure
  247. return _EndRecData64(fpin, maxCommentStart + start - filesize,
  248. endrec)
  249. # Unable to find a valid end of central directory structure
  250. return None
  251. class ZipInfo (object):
  252. """Class with attributes describing each file in the ZIP archive."""
  253. __slots__ = (
  254. 'orig_filename',
  255. 'filename',
  256. 'date_time',
  257. 'compress_type',
  258. 'comment',
  259. 'extra',
  260. 'create_system',
  261. 'create_version',
  262. 'extract_version',
  263. 'reserved',
  264. 'flag_bits',
  265. 'volume',
  266. 'internal_attr',
  267. 'external_attr',
  268. 'header_offset',
  269. 'CRC',
  270. 'compress_size',
  271. 'file_size',
  272. '_raw_time',
  273. )
  274. def __init__(self, filename="NoName", date_time=(1980,1,1,0,0,0)):
  275. self.orig_filename = filename # Original file name in archive
  276. # Terminate the file name at the first null byte. Null bytes in file
  277. # names are used as tricks by viruses in archives.
  278. null_byte = filename.find(chr(0))
  279. if null_byte >= 0:
  280. filename = filename[0:null_byte]
  281. # This is used to ensure paths in generated ZIP files always use
  282. # forward slashes as the directory separator, as required by the
  283. # ZIP format specification.
  284. if os.sep != "/" and os.sep in filename:
  285. filename = filename.replace(os.sep, "/")
  286. self.filename = filename # Normalized file name
  287. self.date_time = date_time # year, month, day, hour, min, sec
  288. if date_time[0] < 1980:
  289. raise ValueError('ZIP does not support timestamps before 1980')
  290. # Standard values:
  291. self.compress_type = ZIP_STORED # Type of compression for the file
  292. self.comment = b"" # Comment for each file
  293. self.extra = b"" # ZIP extra data
  294. if sys.platform == 'win32':
  295. self.create_system = 0 # System which created ZIP archive
  296. else:
  297. # Assume everything else is unix-y
  298. self.create_system = 3 # System which created ZIP archive
  299. self.create_version = DEFAULT_VERSION # Version which created ZIP archive
  300. self.extract_version = DEFAULT_VERSION # Version needed to extract archive
  301. self.reserved = 0 # Must be zero
  302. self.flag_bits = 0 # ZIP flag bits
  303. self.volume = 0 # Volume number of file header
  304. self.internal_attr = 0 # Internal attributes
  305. self.external_attr = 0 # External file attributes
  306. # Other attributes are set by class ZipFile:
  307. # header_offset Byte offset to the file header
  308. # CRC CRC-32 of the uncompressed file
  309. # compress_size Size of the compressed file
  310. # file_size Size of the uncompressed file
  311. def __repr__(self):
  312. result = ['<%s filename=%r' % (self.__class__.__name__, self.filename)]
  313. if self.compress_type != ZIP_STORED:
  314. result.append(' compress_type=%s' %
  315. compressor_names.get(self.compress_type,
  316. self.compress_type))
  317. hi = self.external_attr >> 16
  318. lo = self.external_attr & 0xFFFF
  319. if hi:
  320. result.append(' filemode=%r' % stat.filemode(hi))
  321. if lo:
  322. result.append(' external_attr=%#x' % lo)
  323. isdir = self.filename[-1:] == '/'
  324. if not isdir or self.file_size:
  325. result.append(' file_size=%r' % self.file_size)
  326. if ((not isdir or self.compress_size) and
  327. (self.compress_type != ZIP_STORED or
  328. self.file_size != self.compress_size)):
  329. result.append(' compress_size=%r' % self.compress_size)
  330. result.append('>')
  331. return ''.join(result)
  332. def FileHeader(self, zip64=None):
  333. """Return the per-file header as a string."""
  334. dt = self.date_time
  335. dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
  336. dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
  337. if self.flag_bits & 0x08:
  338. # Set these to zero because we write them after the file data
  339. CRC = compress_size = file_size = 0
  340. else:
  341. CRC = self.CRC
  342. compress_size = self.compress_size
  343. file_size = self.file_size
  344. extra = self.extra
  345. min_version = 0
  346. if zip64 is None:
  347. zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT
  348. if zip64:
  349. fmt = '<HHQQ'
  350. extra = extra + struct.pack(fmt,
  351. 1, struct.calcsize(fmt)-4, file_size, compress_size)
  352. if file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT:
  353. if not zip64:
  354. raise LargeZipFile("Filesize would require ZIP64 extensions")
  355. # File is larger than what fits into a 4 byte integer,
  356. # fall back to the ZIP64 extension
  357. file_size = 0xffffffff
  358. compress_size = 0xffffffff
  359. min_version = ZIP64_VERSION
  360. if self.compress_type == ZIP_BZIP2:
  361. min_version = max(BZIP2_VERSION, min_version)
  362. elif self.compress_type == ZIP_LZMA:
  363. min_version = max(LZMA_VERSION, min_version)
  364. self.extract_version = max(min_version, self.extract_version)
  365. self.create_version = max(min_version, self.create_version)
  366. filename, flag_bits = self._encodeFilenameFlags()
  367. header = struct.pack(structFileHeader, stringFileHeader,
  368. self.extract_version, self.reserved, flag_bits,
  369. self.compress_type, dostime, dosdate, CRC,
  370. compress_size, file_size,
  371. len(filename), len(extra))
  372. return header + filename + extra
  373. def _encodeFilenameFlags(self):
  374. try:
  375. return self.filename.encode('ascii'), self.flag_bits
  376. except UnicodeEncodeError:
  377. return self.filename.encode('utf-8'), self.flag_bits | 0x800
  378. def _decodeExtra(self):
  379. # Try to decode the extra field.
  380. extra = self.extra
  381. unpack = struct.unpack
  382. while len(extra) >= 4:
  383. tp, ln = unpack('<HH', extra[:4])
  384. if tp == 1:
  385. if ln >= 24:
  386. counts = unpack('<QQQ', extra[4:28])
  387. elif ln == 16:
  388. counts = unpack('<QQ', extra[4:20])
  389. elif ln == 8:
  390. counts = unpack('<Q', extra[4:12])
  391. elif ln == 0:
  392. counts = ()
  393. else:
  394. raise RuntimeError("Corrupt extra field %s"%(ln,))
  395. idx = 0
  396. # ZIP64 extension (large files and/or large archives)
  397. if self.file_size in (0xffffffffffffffff, 0xffffffff):
  398. self.file_size = counts[idx]
  399. idx += 1
  400. if self.compress_size == 0xFFFFFFFF:
  401. self.compress_size = counts[idx]
  402. idx += 1
  403. if self.header_offset == 0xffffffff:
  404. old = self.header_offset
  405. self.header_offset = counts[idx]
  406. idx+=1
  407. extra = extra[ln+4:]
  408. class _ZipDecrypter:
  409. """Class to handle decryption of files stored within a ZIP archive.
  410. ZIP supports a password-based form of encryption. Even though known
  411. plaintext attacks have been found against it, it is still useful
  412. to be able to get data out of such a file.
  413. Usage:
  414. zd = _ZipDecrypter(mypwd)
  415. plain_char = zd(cypher_char)
  416. plain_text = map(zd, cypher_text)
  417. """
  418. def _GenerateCRCTable():
  419. """Generate a CRC-32 table.
  420. ZIP encryption uses the CRC32 one-byte primitive for scrambling some
  421. internal keys. We noticed that a direct implementation is faster than
  422. relying on binascii.crc32().
  423. """
  424. poly = 0xedb88320
  425. table = [0] * 256
  426. for i in range(256):
  427. crc = i
  428. for j in range(8):
  429. if crc & 1:
  430. crc = ((crc >> 1) & 0x7FFFFFFF) ^ poly
  431. else:
  432. crc = ((crc >> 1) & 0x7FFFFFFF)
  433. table[i] = crc
  434. return table
  435. crctable = None
  436. def _crc32(self, ch, crc):
  437. """Compute the CRC32 primitive on one byte."""
  438. return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ch) & 0xff]
  439. def __init__(self, pwd):
  440. if _ZipDecrypter.crctable is None:
  441. _ZipDecrypter.crctable = _ZipDecrypter._GenerateCRCTable()
  442. self.key0 = 305419896
  443. self.key1 = 591751049
  444. self.key2 = 878082192
  445. for p in pwd:
  446. self._UpdateKeys(p)
  447. def _UpdateKeys(self, c):
  448. self.key0 = self._crc32(c, self.key0)
  449. self.key1 = (self.key1 + (self.key0 & 255)) & 4294967295
  450. self.key1 = (self.key1 * 134775813 + 1) & 4294967295
  451. self.key2 = self._crc32((self.key1 >> 24) & 255, self.key2)
  452. def __call__(self, c):
  453. """Decrypt a single character."""
  454. assert isinstance(c, int)
  455. k = self.key2 | 2
  456. c = c ^ (((k * (k^1)) >> 8) & 255)
  457. self._UpdateKeys(c)
  458. return c
  459. class LZMACompressor:
  460. def __init__(self):
  461. self._comp = None
  462. def _init(self):
  463. props = lzma._encode_filter_properties({'id': lzma.FILTER_LZMA1})
  464. self._comp = lzma.LZMACompressor(lzma.FORMAT_RAW, filters=[
  465. lzma._decode_filter_properties(lzma.FILTER_LZMA1, props)
  466. ])
  467. return struct.pack('<BBH', 9, 4, len(props)) + props
  468. def compress(self, data):
  469. if self._comp is None:
  470. return self._init() + self._comp.compress(data)
  471. return self._comp.compress(data)
  472. def flush(self):
  473. if self._comp is None:
  474. return self._init() + self._comp.flush()
  475. return self._comp.flush()
  476. class LZMADecompressor:
  477. def __init__(self):
  478. self._decomp = None
  479. self._unconsumed = b''
  480. self.eof = False
  481. def decompress(self, data):
  482. if self._decomp is None:
  483. self._unconsumed += data
  484. if len(self._unconsumed) <= 4:
  485. return b''
  486. psize, = struct.unpack('<H', self._unconsumed[2:4])
  487. if len(self._unconsumed) <= 4 + psize:
  488. return b''
  489. self._decomp = lzma.LZMADecompressor(lzma.FORMAT_RAW, filters=[
  490. lzma._decode_filter_properties(lzma.FILTER_LZMA1,
  491. self._unconsumed[4:4 + psize])
  492. ])
  493. data = self._unconsumed[4 + psize:]
  494. del self._unconsumed
  495. result = self._decomp.decompress(data)
  496. self.eof = self._decomp.eof
  497. return result
  498. compressor_names = {
  499. 0: 'store',
  500. 1: 'shrink',
  501. 2: 'reduce',
  502. 3: 'reduce',
  503. 4: 'reduce',
  504. 5: 'reduce',
  505. 6: 'implode',
  506. 7: 'tokenize',
  507. 8: 'deflate',
  508. 9: 'deflate64',
  509. 10: 'implode',
  510. 12: 'bzip2',
  511. 14: 'lzma',
  512. 18: 'terse',
  513. 19: 'lz77',
  514. 97: 'wavpack',
  515. 98: 'ppmd',
  516. }
  517. def _check_compression(compression):
  518. if compression == ZIP_STORED:
  519. pass
  520. elif compression == ZIP_DEFLATED:
  521. if not zlib:
  522. raise RuntimeError(
  523. "Compression requires the (missing) zlib module")
  524. elif compression == ZIP_BZIP2:
  525. if not bz2:
  526. raise RuntimeError(
  527. "Compression requires the (missing) bz2 module")
  528. elif compression == ZIP_LZMA:
  529. if not lzma:
  530. raise RuntimeError(
  531. "Compression requires the (missing) lzma module")
  532. else:
  533. raise RuntimeError("That compression method is not supported")
  534. def _get_compressor(compress_type):
  535. if compress_type == ZIP_DEFLATED:
  536. return zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION,
  537. zlib.DEFLATED, -15)
  538. elif compress_type == ZIP_BZIP2:
  539. return bz2.BZ2Compressor()
  540. elif compress_type == ZIP_LZMA:
  541. return LZMACompressor()
  542. else:
  543. return None
  544. def _get_decompressor(compress_type):
  545. if compress_type == ZIP_STORED:
  546. return None
  547. elif compress_type == ZIP_DEFLATED:
  548. return zlib.decompressobj(-15)
  549. elif compress_type == ZIP_BZIP2:
  550. return bz2.BZ2Decompressor()
  551. elif compress_type == ZIP_LZMA:
  552. return LZMADecompressor()
  553. else:
  554. descr = compressor_names.get(compress_type)
  555. if descr:
  556. raise NotImplementedError("compression type %d (%s)" % (compress_type, descr))
  557. else:
  558. raise NotImplementedError("compression type %d" % (compress_type,))
  559. class _SharedFile:
  560. def __init__(self, file, pos, close, lock):
  561. self._file = file
  562. self._pos = pos
  563. self._close = close
  564. self._lock = lock
  565. def read(self, n=-1):
  566. with self._lock:
  567. self._file.seek(self._pos)
  568. data = self._file.read(n)
  569. self._pos = self._file.tell()
  570. return data
  571. def close(self):
  572. if self._file is not None:
  573. fileobj = self._file
  574. self._file = None
  575. self._close(fileobj)
  576. # Provide the tell method for unseekable stream
  577. class _Tellable:
  578. def __init__(self, fp):
  579. self.fp = fp
  580. self.offset = 0
  581. def write(self, data):
  582. n = self.fp.write(data)
  583. self.offset += n
  584. return n
  585. def tell(self):
  586. return self.offset
  587. def flush(self):
  588. self.fp.flush()
  589. def close(self):
  590. self.fp.close()
  591. class ZipExtFile(io.BufferedIOBase):
  592. """File-like object for reading an archive member.
  593. Is returned by ZipFile.open().
  594. """
  595. # Max size supported by decompressor.
  596. MAX_N = 1 << 31 - 1
  597. # Read from compressed files in 4k blocks.
  598. MIN_READ_SIZE = 4096
  599. # Search for universal newlines or line chunks.
  600. PATTERN = re.compile(br'^(?P<chunk>[^\r\n]+)|(?P<newline>\n|\r\n?)')
  601. def __init__(self, fileobj, mode, zipinfo, decrypter=None,
  602. close_fileobj=False):
  603. self._fileobj = fileobj
  604. self._decrypter = decrypter
  605. self._close_fileobj = close_fileobj
  606. self._compress_type = zipinfo.compress_type
  607. self._compress_left = zipinfo.compress_size
  608. self._left = zipinfo.file_size
  609. self._decompressor = _get_decompressor(self._compress_type)
  610. self._eof = False
  611. self._readbuffer = b''
  612. self._offset = 0
  613. self._universal = 'U' in mode
  614. self.newlines = None
  615. # Adjust read size for encrypted files since the first 12 bytes
  616. # are for the encryption/password information.
  617. if self._decrypter is not None:
  618. self._compress_left -= 12
  619. self.mode = mode
  620. self.name = zipinfo.filename
  621. if hasattr(zipinfo, 'CRC'):
  622. self._expected_crc = zipinfo.CRC
  623. self._running_crc = crc32(b'')
  624. else:
  625. self._expected_crc = None
  626. def __repr__(self):
  627. result = ['<%s.%s' % (self.__class__.__module__,
  628. self.__class__.__qualname__)]
  629. if not self.closed:
  630. result.append(' name=%r mode=%r' % (self.name, self.mode))
  631. if self._compress_type != ZIP_STORED:
  632. result.append(' compress_type=%s' %
  633. compressor_names.get(self._compress_type,
  634. self._compress_type))
  635. else:
  636. result.append(' [closed]')
  637. result.append('>')
  638. return ''.join(result)
  639. def readline(self, limit=-1):
  640. """Read and return a line from the stream.
  641. If limit is specified, at most limit bytes will be read.
  642. """
  643. if not self._universal and limit < 0:
  644. # Shortcut common case - newline found in buffer.
  645. i = self._readbuffer.find(b'\n', self._offset) + 1
  646. if i > 0:
  647. line = self._readbuffer[self._offset: i]
  648. self._offset = i
  649. return line
  650. if not self._universal:
  651. return io.BufferedIOBase.readline(self, limit)
  652. line = b''
  653. while limit < 0 or len(line) < limit:
  654. readahead = self.peek(2)
  655. if readahead == b'':
  656. return line
  657. #
  658. # Search for universal newlines or line chunks.
  659. #
  660. # The pattern returns either a line chunk or a newline, but not
  661. # both. Combined with peek(2), we are assured that the sequence
  662. # '\r\n' is always retrieved completely and never split into
  663. # separate newlines - '\r', '\n' due to coincidental readaheads.
  664. #
  665. match = self.PATTERN.search(readahead)
  666. newline = match.group('newline')
  667. if newline is not None:
  668. if self.newlines is None:
  669. self.newlines = []
  670. if newline not in self.newlines:
  671. self.newlines.append(newline)
  672. self._offset += len(newline)
  673. return line + b'\n'
  674. chunk = match.group('chunk')
  675. if limit >= 0:
  676. chunk = chunk[: limit - len(line)]
  677. self._offset += len(chunk)
  678. line += chunk
  679. return line
  680. def peek(self, n=1):
  681. """Returns buffered bytes without advancing the position."""
  682. if n > len(self._readbuffer) - self._offset:
  683. chunk = self.read(n)
  684. if len(chunk) > self._offset:
  685. self._readbuffer = chunk + self._readbuffer[self._offset:]
  686. self._offset = 0
  687. else:
  688. self._offset -= len(chunk)
  689. # Return up to 512 bytes to reduce allocation overhead for tight loops.
  690. return self._readbuffer[self._offset: self._offset + 512]
  691. def readable(self):
  692. return True
  693. def read(self, n=-1):
  694. """Read and return up to n bytes.
  695. If the argument is omitted, None, or negative, data is read and returned until EOF is reached..
  696. """
  697. if n is None or n < 0:
  698. buf = self._readbuffer[self._offset:]
  699. self._readbuffer = b''
  700. self._offset = 0
  701. while not self._eof:
  702. buf += self._read1(self.MAX_N)
  703. return buf
  704. end = n + self._offset
  705. if end < len(self._readbuffer):
  706. buf = self._readbuffer[self._offset:end]
  707. self._offset = end
  708. return buf
  709. n = end - len(self._readbuffer)
  710. buf = self._readbuffer[self._offset:]
  711. self._readbuffer = b''
  712. self._offset = 0
  713. while n > 0 and not self._eof:
  714. data = self._read1(n)
  715. if n < len(data):
  716. self._readbuffer = data
  717. self._offset = n
  718. buf += data[:n]
  719. break
  720. buf += data
  721. n -= len(data)
  722. return buf
  723. def _update_crc(self, newdata):
  724. # Update the CRC using the given data.
  725. if self._expected_crc is None:
  726. # No need to compute the CRC if we don't have a reference value
  727. return
  728. self._running_crc = crc32(newdata, self._running_crc)
  729. # Check the CRC if we're at the end of the file
  730. if self._eof and self._running_crc != self._expected_crc:
  731. raise BadZipFile("Bad CRC-32 for file %r" % self.name)
  732. def read1(self, n):
  733. """Read up to n bytes with at most one read() system call."""
  734. if n is None or n < 0:
  735. buf = self._readbuffer[self._offset:]
  736. self._readbuffer = b''
  737. self._offset = 0
  738. while not self._eof:
  739. data = self._read1(self.MAX_N)
  740. if data:
  741. buf += data
  742. break
  743. return buf
  744. end = n + self._offset
  745. if end < len(self._readbuffer):
  746. buf = self._readbuffer[self._offset:end]
  747. self._offset = end
  748. return buf
  749. n = end - len(self._readbuffer)
  750. buf = self._readbuffer[self._offset:]
  751. self._readbuffer = b''
  752. self._offset = 0
  753. if n > 0:
  754. while not self._eof:
  755. data = self._read1(n)
  756. if n < len(data):
  757. self._readbuffer = data
  758. self._offset = n
  759. buf += data[:n]
  760. break
  761. if data:
  762. buf += data
  763. break
  764. return buf
  765. def _read1(self, n):
  766. # Read up to n compressed bytes with at most one read() system call,
  767. # decrypt and decompress them.
  768. if self._eof or n <= 0:
  769. return b''
  770. # Read from file.
  771. if self._compress_type == ZIP_DEFLATED:
  772. ## Handle unconsumed data.
  773. data = self._decompressor.unconsumed_tail
  774. if n > len(data):
  775. data += self._read2(n - len(data))
  776. else:
  777. data = self._read2(n)
  778. if self._compress_type == ZIP_STORED:
  779. self._eof = self._compress_left <= 0
  780. elif self._compress_type == ZIP_DEFLATED:
  781. n = max(n, self.MIN_READ_SIZE)
  782. data = self._decompressor.decompress(data, n)
  783. self._eof = (self._decompressor.eof or
  784. self._compress_left <= 0 and
  785. not self._decompressor.unconsumed_tail)
  786. if self._eof:
  787. data += self._decompressor.flush()
  788. else:
  789. data = self._decompressor.decompress(data)
  790. self._eof = self._decompressor.eof or self._compress_left <= 0
  791. data = data[:self._left]
  792. self._left -= len(data)
  793. if self._left <= 0:
  794. self._eof = True
  795. self._update_crc(data)
  796. return data
  797. def _read2(self, n):
  798. if self._compress_left <= 0:
  799. return b''
  800. n = max(n, self.MIN_READ_SIZE)
  801. n = min(n, self._compress_left)
  802. data = self._fileobj.read(n)
  803. self._compress_left -= len(data)
  804. if not data:
  805. raise EOFError
  806. if self._decrypter is not None:
  807. data = bytes(map(self._decrypter, data))
  808. return data
  809. def close(self):
  810. try:
  811. if self._close_fileobj:
  812. self._fileobj.close()
  813. finally:
  814. super().close()
  815. class ZipFile:
  816. """ Class with methods to open, read, write, close, list zip files.
  817. z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=True)
  818. file: Either the path to the file, or a file-like object.
  819. If it is a path, the file will be opened and closed by ZipFile.
  820. mode: The mode can be either read 'r', write 'w', exclusive create 'x',
  821. or append 'a'.
  822. compression: ZIP_STORED (no compression), ZIP_DEFLATED (requires zlib),
  823. ZIP_BZIP2 (requires bz2) or ZIP_LZMA (requires lzma).
  824. allowZip64: if True ZipFile will create files with ZIP64 extensions when
  825. needed, otherwise it will raise an exception when this would
  826. be necessary.
  827. """
  828. fp = None # Set here since __del__ checks it
  829. _windows_illegal_name_trans_table = None
  830. def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=True):
  831. """Open the ZIP file with mode read 'r', write 'w', exclusive create 'x',
  832. or append 'a'."""
  833. if mode not in ('r', 'w', 'x', 'a'):
  834. raise RuntimeError("ZipFile requires mode 'r', 'w', 'x', or 'a'")
  835. _check_compression(compression)
  836. self._allowZip64 = allowZip64
  837. self._didModify = False
  838. self.debug = 0 # Level of printing: 0 through 3
  839. self.NameToInfo = {} # Find file info given name
  840. self.filelist = [] # List of ZipInfo instances for archive
  841. self.compression = compression # Method of compression
  842. self.mode = mode
  843. self.pwd = None
  844. self._comment = b''
  845. # Check if we were passed a file-like object
  846. if isinstance(file, str):
  847. # No, it's a filename
  848. self._filePassed = 0
  849. self.filename = file
  850. modeDict = {'r' : 'rb', 'w': 'w+b', 'x': 'x+b', 'a' : 'r+b',
  851. 'r+b': 'w+b', 'w+b': 'wb', 'x+b': 'xb'}
  852. filemode = modeDict[mode]
  853. while True:
  854. try:
  855. self.fp = io.open(file, filemode)
  856. except OSError:
  857. if filemode in modeDict:
  858. filemode = modeDict[filemode]
  859. continue
  860. raise
  861. break
  862. else:
  863. self._filePassed = 1
  864. self.fp = file
  865. self.filename = getattr(file, 'name', None)
  866. self._fileRefCnt = 1
  867. self._lock = threading.RLock()
  868. self._seekable = True
  869. try:
  870. if mode == 'r':
  871. self._RealGetContents()
  872. elif mode in ('w', 'x'):
  873. # set the modified flag so central directory gets written
  874. # even if no files are added to the archive
  875. self._didModify = True
  876. try:
  877. self.start_dir = self.fp.tell()
  878. except (AttributeError, OSError):
  879. self.fp = _Tellable(self.fp)
  880. self.start_dir = 0
  881. self._seekable = False
  882. else:
  883. # Some file-like objects can provide tell() but not seek()
  884. try:
  885. self.fp.seek(self.start_dir)
  886. except (AttributeError, OSError):
  887. self._seekable = False
  888. elif mode == 'a':
  889. try:
  890. # See if file is a zip file
  891. self._RealGetContents()
  892. # seek to start of directory and overwrite
  893. self.fp.seek(self.start_dir)
  894. except BadZipFile:
  895. # file is not a zip file, just append
  896. self.fp.seek(0, 2)
  897. # set the modified flag so central directory gets written
  898. # even if no files are added to the archive
  899. self._didModify = True
  900. self.start_dir = self.fp.tell()
  901. else:
  902. raise RuntimeError("Mode must be 'r', 'w', 'x', or 'a'")
  903. except:
  904. fp = self.fp
  905. self.fp = None
  906. self._fpclose(fp)
  907. raise
  908. def __enter__(self):
  909. return self
  910. def __exit__(self, type, value, traceback):
  911. self.close()
  912. def __repr__(self):
  913. result = ['<%s.%s' % (self.__class__.__module__,
  914. self.__class__.__qualname__)]
  915. if self.fp is not None:
  916. if self._filePassed:
  917. result.append(' file=%r' % self.fp)
  918. elif self.filename is not None:
  919. result.append(' filename=%r' % self.filename)
  920. result.append(' mode=%r' % self.mode)
  921. else:
  922. result.append(' [closed]')
  923. result.append('>')
  924. return ''.join(result)
  925. def _RealGetContents(self):
  926. """Read in the table of contents for the ZIP file."""
  927. fp = self.fp
  928. try:
  929. endrec = _EndRecData(fp)
  930. except OSError:
  931. raise BadZipFile("File is not a zip file")
  932. if not endrec:
  933. raise BadZipFile("File is not a zip file")
  934. if self.debug > 1:
  935. print(endrec)
  936. size_cd = endrec[_ECD_SIZE] # bytes in central directory
  937. offset_cd = endrec[_ECD_OFFSET] # offset of central directory
  938. self._comment = endrec[_ECD_COMMENT] # archive comment
  939. # "concat" is zero, unless zip was concatenated to another file
  940. concat = endrec[_ECD_LOCATION] - size_cd - offset_cd
  941. if endrec[_ECD_SIGNATURE] == stringEndArchive64:
  942. # If Zip64 extension structures are present, account for them
  943. concat -= (sizeEndCentDir64 + sizeEndCentDir64Locator)
  944. if self.debug > 2:
  945. inferred = concat + offset_cd
  946. print("given, inferred, offset", offset_cd, inferred, concat)
  947. # self.start_dir: Position of start of central directory
  948. self.start_dir = offset_cd + concat
  949. fp.seek(self.start_dir, 0)
  950. data = fp.read(size_cd)
  951. fp = io.BytesIO(data)
  952. total = 0
  953. while total < size_cd:
  954. centdir = fp.read(sizeCentralDir)
  955. if len(centdir) != sizeCentralDir:
  956. raise BadZipFile("Truncated central directory")
  957. centdir = struct.unpack(structCentralDir, centdir)
  958. if centdir[_CD_SIGNATURE] != stringCentralDir:
  959. raise BadZipFile("Bad magic number for central directory")
  960. if self.debug > 2:
  961. print(centdir)
  962. filename = fp.read(centdir[_CD_FILENAME_LENGTH])
  963. flags = centdir[5]
  964. if flags & 0x800:
  965. # UTF-8 file names extension
  966. filename = filename.decode('utf-8')
  967. else:
  968. # Historical ZIP filename encoding
  969. filename = filename.decode('cp437')
  970. # Create ZipInfo instance to store file information
  971. x = ZipInfo(filename)
  972. x.extra = fp.read(centdir[_CD_EXTRA_FIELD_LENGTH])
  973. x.comment = fp.read(centdir[_CD_COMMENT_LENGTH])
  974. x.header_offset = centdir[_CD_LOCAL_HEADER_OFFSET]
  975. (x.create_version, x.create_system, x.extract_version, x.reserved,
  976. x.flag_bits, x.compress_type, t, d,
  977. x.CRC, x.compress_size, x.file_size) = centdir[1:12]
  978. if x.extract_version > MAX_EXTRACT_VERSION:
  979. raise NotImplementedError("zip file version %.1f" %
  980. (x.extract_version / 10))
  981. x.volume, x.internal_attr, x.external_attr = centdir[15:18]
  982. # Convert date/time code to (year, month, day, hour, min, sec)
  983. x._raw_time = t
  984. x.date_time = ( (d>>9)+1980, (d>>5)&0xF, d&0x1F,
  985. t>>11, (t>>5)&0x3F, (t&0x1F) * 2 )
  986. x._decodeExtra()
  987. x.header_offset = x.header_offset + concat
  988. self.filelist.append(x)
  989. self.NameToInfo[x.filename] = x
  990. # update total bytes read from central directory
  991. total = (total + sizeCentralDir + centdir[_CD_FILENAME_LENGTH]
  992. + centdir[_CD_EXTRA_FIELD_LENGTH]
  993. + centdir[_CD_COMMENT_LENGTH])
  994. if self.debug > 2:
  995. print("total", total)
  996. def namelist(self):
  997. """Return a list of file names in the archive."""
  998. return [data.filename for data in self.filelist]
  999. def infolist(self):
  1000. """Return a list of class ZipInfo instances for files in the
  1001. archive."""
  1002. return self.filelist
  1003. def printdir(self, file=None):
  1004. """Print a table of contents for the zip file."""
  1005. print("%-46s %19s %12s" % ("File Name", "Modified ", "Size"),
  1006. file=file)
  1007. for zinfo in self.filelist:
  1008. date = "%d-%02d-%02d %02d:%02d:%02d" % zinfo.date_time[:6]
  1009. print("%-46s %s %12d" % (zinfo.filename, date, zinfo.file_size),
  1010. file=file)
  1011. def testzip(self):
  1012. """Read all the files and check the CRC."""
  1013. chunk_size = 2 ** 20
  1014. for zinfo in self.filelist:
  1015. try:
  1016. # Read by chunks, to avoid an OverflowError or a
  1017. # MemoryError with very large embedded files.
  1018. with self.open(zinfo.filename, "r") as f:
  1019. while f.read(chunk_size): # Check CRC-32
  1020. pass
  1021. except BadZipFile:
  1022. return zinfo.filename
  1023. def getinfo(self, name):
  1024. """Return the instance of ZipInfo given 'name'."""
  1025. info = self.NameToInfo.get(name)
  1026. if info is None:
  1027. raise KeyError(
  1028. 'There is no item named %r in the archive' % name)
  1029. return info
  1030. def setpassword(self, pwd):
  1031. """Set default password for encrypted files."""
  1032. if pwd and not isinstance(pwd, bytes):
  1033. raise TypeError("pwd: expected bytes, got %s" % type(pwd))
  1034. if pwd:
  1035. self.pwd = pwd
  1036. else:
  1037. self.pwd = None
  1038. @property
  1039. def comment(self):
  1040. """The comment text associated with the ZIP file."""
  1041. return self._comment
  1042. @comment.setter
  1043. def comment(self, comment):
  1044. if not isinstance(comment, bytes):
  1045. raise TypeError("comment: expected bytes, got %s" % type(comment))
  1046. # check for valid comment length
  1047. if len(comment) > ZIP_MAX_COMMENT:
  1048. import warnings
  1049. warnings.warn('Archive comment is too long; truncating to %d bytes'
  1050. % ZIP_MAX_COMMENT, stacklevel=2)
  1051. comment = comment[:ZIP_MAX_COMMENT]
  1052. self._comment = comment
  1053. self._didModify = True
  1054. def read(self, name, pwd=None):
  1055. """Return file bytes (as a string) for name."""
  1056. with self.open(name, "r", pwd) as fp:
  1057. return fp.read()
  1058. def open(self, name, mode="r", pwd=None):
  1059. """Return file-like object for 'name'."""
  1060. if mode not in ("r", "U", "rU"):
  1061. raise RuntimeError('open() requires mode "r", "U", or "rU"')
  1062. if 'U' in mode:
  1063. import warnings
  1064. warnings.warn("'U' mode is deprecated",
  1065. DeprecationWarning, 2)
  1066. if pwd and not isinstance(pwd, bytes):
  1067. raise TypeError("pwd: expected bytes, got %s" % type(pwd))
  1068. if not self.fp:
  1069. raise RuntimeError(
  1070. "Attempt to read ZIP archive that was already closed")
  1071. # Make sure we have an info object
  1072. if isinstance(name, ZipInfo):
  1073. # 'name' is already an info object
  1074. zinfo = name
  1075. else:
  1076. # Get info object for name
  1077. zinfo = self.getinfo(name)
  1078. self._fileRefCnt += 1
  1079. zef_file = _SharedFile(self.fp, zinfo.header_offset, self._fpclose, self._lock)
  1080. try:
  1081. # Skip the file header:
  1082. fheader = zef_file.read(sizeFileHeader)
  1083. if len(fheader) != sizeFileHeader:
  1084. raise BadZipFile("Truncated file header")
  1085. fheader = struct.unpack(structFileHeader, fheader)
  1086. if fheader[_FH_SIGNATURE] != stringFileHeader:
  1087. raise BadZipFile("Bad magic number for file header")
  1088. fname = zef_file.read(fheader[_FH_FILENAME_LENGTH])
  1089. if fheader[_FH_EXTRA_FIELD_LENGTH]:
  1090. zef_file.read(fheader[_FH_EXTRA_FIELD_LENGTH])
  1091. if zinfo.flag_bits & 0x20:
  1092. # Zip 2.7: compressed patched data
  1093. raise NotImplementedError("compressed patched data (flag bit 5)")
  1094. if zinfo.flag_bits & 0x40:
  1095. # strong encryption
  1096. raise NotImplementedError("strong encryption (flag bit 6)")
  1097. if zinfo.flag_bits & 0x800:
  1098. # UTF-8 filename
  1099. fname_str = fname.decode("utf-8")
  1100. else:
  1101. fname_str = fname.decode("cp437")
  1102. if fname_str != zinfo.orig_filename:
  1103. raise BadZipFile(
  1104. 'File name in directory %r and header %r differ.'
  1105. % (zinfo.orig_filename, fname))
  1106. # check for encrypted flag & handle password
  1107. is_encrypted = zinfo.flag_bits & 0x1
  1108. zd = None
  1109. if is_encrypted:
  1110. if not pwd:
  1111. pwd = self.pwd
  1112. if not pwd:
  1113. raise RuntimeError("File %s is encrypted, password "
  1114. "required for extraction" % name)
  1115. zd = _ZipDecrypter(pwd)
  1116. # The first 12 bytes in the cypher stream is an encryption header
  1117. # used to strengthen the algorithm. The first 11 bytes are
  1118. # completely random, while the 12th contains the MSB of the CRC,
  1119. # or the MSB of the file time depending on the header type
  1120. # and is used to check the correctness of the password.
  1121. header = zef_file.read(12)
  1122. h = list(map(zd, header[0:12]))
  1123. if zinfo.flag_bits & 0x8:
  1124. # compare against the file type from extended local headers
  1125. check_byte = (zinfo._raw_time >> 8) & 0xff
  1126. else:
  1127. # compare against the CRC otherwise
  1128. check_byte = (zinfo.CRC >> 24) & 0xff
  1129. if h[11] != check_byte:
  1130. raise RuntimeError("Bad password for file", name)
  1131. return ZipExtFile(zef_file, mode, zinfo, zd, True)
  1132. except:
  1133. zef_file.close()
  1134. raise
  1135. def extract(self, member, path=None, pwd=None):
  1136. """Extract a member from the archive to the current working directory,
  1137. using its full name. Its file information is extracted as accurately
  1138. as possible. `member' may be a filename or a ZipInfo object. You can
  1139. specify a different directory using `path'.
  1140. """
  1141. if not isinstance(member, ZipInfo):
  1142. member = self.getinfo(member)
  1143. if path is None:
  1144. path = os.getcwd()
  1145. return self._extract_member(member, path, pwd)
  1146. def extractall(self, path=None, members=None, pwd=None):
  1147. """Extract all members from the archive to the current working
  1148. directory. `path' specifies a different directory to extract to.
  1149. `members' is optional and must be a subset of the list returned
  1150. by namelist().
  1151. """
  1152. if members is None:
  1153. members = self.namelist()
  1154. for zipinfo in members:
  1155. self.extract(zipinfo, path, pwd)
  1156. @classmethod
  1157. def _sanitize_windows_name(cls, arcname, pathsep):
  1158. """Replace bad characters and remove trailing dots from parts."""
  1159. table = cls._windows_illegal_name_trans_table
  1160. if not table:
  1161. illegal = ':<>|"?*'
  1162. table = str.maketrans(illegal, '_' * len(illegal))
  1163. cls._windows_illegal_name_trans_table = table
  1164. arcname = arcname.translate(table)
  1165. # remove trailing dots
  1166. arcname = (x.rstrip('.') for x in arcname.split(pathsep))
  1167. # rejoin, removing empty parts.
  1168. arcname = pathsep.join(x for x in arcname if x)
  1169. return arcname
  1170. def _extract_member(self, member, targetpath, pwd):
  1171. """Extract the ZipInfo object 'member' to a physical
  1172. file on the path targetpath.
  1173. """
  1174. # build the destination pathname, replacing
  1175. # forward slashes to platform specific separators.
  1176. arcname = member.filename.replace('/', os.path.sep)
  1177. if os.path.altsep:
  1178. arcname = arcname.replace(os.path.altsep, os.path.sep)
  1179. # interpret absolute pathname as relative, remove drive letter or
  1180. # UNC path, redundant separators, "." and ".." components.
  1181. arcname = os.path.splitdrive(arcname)[1]
  1182. invalid_path_parts = ('', os.path.curdir, os.path.pardir)
  1183. arcname = os.path.sep.join(x for x in arcname.split(os.path.sep)
  1184. if x not in invalid_path_parts)
  1185. if os.path.sep == '\\':
  1186. # filter illegal characters on Windows
  1187. arcname = self._sanitize_windows_name(arcname, os.path.sep)
  1188. targetpath = os.path.join(targetpath, arcname)
  1189. targetpath = os.path.normpath(targetpath)
  1190. # Create all upper directories if necessary.
  1191. upperdirs = os.path.dirname(targetpath)
  1192. if upperdirs and not os.path.exists(upperdirs):
  1193. os.makedirs(upperdirs)
  1194. if member.filename[-1] == '/':
  1195. if not os.path.isdir(targetpath):
  1196. os.mkdir(targetpath)
  1197. return targetpath
  1198. with self.open(member, pwd=pwd) as source, \
  1199. open(targetpath, "wb") as target:
  1200. shutil.copyfileobj(source, target)
  1201. return targetpath
  1202. def _writecheck(self, zinfo):
  1203. """Check for errors before writing a file to the archive."""
  1204. if zinfo.filename in self.NameToInfo:
  1205. import warnings
  1206. warnings.warn('Duplicate name: %r' % zinfo.filename, stacklevel=3)
  1207. if self.mode not in ('w', 'x', 'a'):
  1208. raise RuntimeError("write() requires mode 'w', 'x', or 'a'")
  1209. if not self.fp:
  1210. raise RuntimeError(
  1211. "Attempt to write ZIP archive that was already closed")
  1212. _check_compression(zinfo.compress_type)
  1213. if not self._allowZip64:
  1214. requires_zip64 = None
  1215. if len(self.filelist) >= ZIP_FILECOUNT_LIMIT:
  1216. requires_zip64 = "Files count"
  1217. elif zinfo.file_size > ZIP64_LIMIT:
  1218. requires_zip64 = "Filesize"
  1219. elif zinfo.header_offset > ZIP64_LIMIT:
  1220. requires_zip64 = "Zipfile size"
  1221. if requires_zip64:
  1222. raise LargeZipFile(requires_zip64 +
  1223. " would require ZIP64 extensions")
  1224. def write(self, filename, arcname=None, compress_type=None):
  1225. """Put the bytes from filename into the archive under the name
  1226. arcname."""
  1227. if not self.fp:
  1228. raise RuntimeError(
  1229. "Attempt to write to ZIP archive that was already closed")
  1230. st = os.stat(filename)
  1231. isdir = stat.S_ISDIR(st.st_mode)
  1232. mtime = time.localtime(st.st_mtime)
  1233. date_time = mtime[0:6]
  1234. # Create ZipInfo instance to store file information
  1235. if arcname is None:
  1236. arcname = filename
  1237. arcname = os.path.normpath(os.path.splitdrive(arcname)[1])
  1238. while arcname[0] in (os.sep, os.altsep):
  1239. arcname = arcname[1:]
  1240. if isdir:
  1241. arcname += '/'
  1242. zinfo = ZipInfo(arcname, date_time)
  1243. zinfo.external_attr = (st[0] & 0xFFFF) << 16 # Unix attributes
  1244. if isdir:
  1245. zinfo.compress_type = ZIP_STORED
  1246. elif compress_type is None:
  1247. zinfo.compress_type = self.compression
  1248. else:
  1249. zinfo.compress_type = compress_type
  1250. zinfo.file_size = st.st_size
  1251. zinfo.flag_bits = 0x00
  1252. with self._lock:
  1253. if self._seekable:
  1254. self.fp.seek(self.start_dir)
  1255. zinfo.header_offset = self.fp.tell() # Start of header bytes
  1256. if zinfo.compress_type == ZIP_LZMA:
  1257. # Compressed data includes an end-of-stream (EOS) marker
  1258. zinfo.flag_bits |= 0x02
  1259. self._writecheck(zinfo)
  1260. self._didModify = True
  1261. if isdir:
  1262. zinfo.file_size = 0
  1263. zinfo.compress_size = 0
  1264. zinfo.CRC = 0
  1265. zinfo.external_attr |= 0x10 # MS-DOS directory flag
  1266. self.filelist.append(zinfo)
  1267. self.NameToInfo[zinfo.filename] = zinfo
  1268. self.fp.write(zinfo.FileHeader(False))
  1269. self.start_dir = self.fp.tell()
  1270. return
  1271. cmpr = _get_compressor(zinfo.compress_type)
  1272. if not self._seekable:
  1273. zinfo.flag_bits |= 0x08
  1274. with open(filename, "rb") as fp:
  1275. # Must overwrite CRC and sizes with correct data later
  1276. zinfo.CRC = CRC = 0
  1277. zinfo.compress_size = compress_size = 0
  1278. # Compressed size can be larger than uncompressed size
  1279. zip64 = self._allowZip64 and \
  1280. zinfo.file_size * 1.05 > ZIP64_LIMIT
  1281. self.fp.write(zinfo.FileHeader(zip64))
  1282. file_size = 0
  1283. while 1:
  1284. buf = fp.read(1024 * 8)
  1285. if not buf:
  1286. break
  1287. file_size = file_size + len(buf)
  1288. CRC = crc32(buf, CRC)
  1289. if cmpr:
  1290. buf = cmpr.compress(buf)
  1291. compress_size = compress_size + len(buf)
  1292. self.fp.write(buf)
  1293. if cmpr:
  1294. buf = cmpr.flush()
  1295. compress_size = compress_size + len(buf)
  1296. self.fp.write(buf)
  1297. zinfo.compress_size = compress_size
  1298. else:
  1299. zinfo.compress_size = file_size
  1300. zinfo.CRC = CRC
  1301. zinfo.file_size = file_size
  1302. if zinfo.flag_bits & 0x08:
  1303. # Write CRC and file sizes after the file data
  1304. fmt = '<LQQ' if zip64 else '<LLL'
  1305. self.fp.write(struct.pack(fmt, zinfo.CRC, zinfo.compress_size,
  1306. zinfo.file_size))
  1307. self.start_dir = self.fp.tell()
  1308. else:
  1309. if not zip64 and self._allowZip64:
  1310. if file_size > ZIP64_LIMIT:
  1311. raise RuntimeError('File size has increased during compressing')
  1312. if compress_size > ZIP64_LIMIT:
  1313. raise RuntimeError('Compressed size larger than uncompressed size')
  1314. # Seek backwards and write file header (which will now include
  1315. # correct CRC and file sizes)
  1316. self.start_dir = self.fp.tell() # Preserve current position in file
  1317. self.fp.seek(zinfo.header_offset)
  1318. self.fp.write(zinfo.FileHeader(zip64))
  1319. self.fp.seek(self.start_dir)
  1320. self.filelist.append(zinfo)
  1321. self.NameToInfo[zinfo.filename] = zinfo
  1322. def writestr(self, zinfo_or_arcname, data, compress_type=None):
  1323. """Write a file into the archive. The contents is 'data', which
  1324. may be either a 'str' or a 'bytes' instance; if it is a 'str',
  1325. it is encoded as UTF-8 first.
  1326. 'zinfo_or_arcname' is either a ZipInfo instance or
  1327. the name of the file in the archive."""
  1328. if isinstance(data, str):
  1329. data = data.encode("utf-8")
  1330. if not isinstance(zinfo_or_arcname, ZipInfo):
  1331. zinfo = ZipInfo(filename=zinfo_or_arcname,
  1332. date_time=time.localtime(time.time())[:6])
  1333. zinfo.compress_type = self.compression
  1334. if zinfo.filename[-1] == '/':
  1335. zinfo.external_attr = 0o40775 << 16 # drwxrwxr-x
  1336. zinfo.external_attr |= 0x10 # MS-DOS directory flag
  1337. else:
  1338. zinfo.external_attr = 0o600 << 16 # ?rw-------
  1339. else:
  1340. zinfo = zinfo_or_arcname
  1341. if not self.fp:
  1342. raise RuntimeError(
  1343. "Attempt to write to ZIP archive that was already closed")
  1344. zinfo.file_size = len(data) # Uncompressed size
  1345. with self._lock:
  1346. if self._seekable:
  1347. self.fp.seek(self.start_dir)
  1348. zinfo.header_offset = self.fp.tell() # Start of header data
  1349. if compress_type is not None:
  1350. zinfo.compress_type = compress_type
  1351. zinfo.header_offset = self.fp.tell() # Start of header data
  1352. if compress_type is not None:
  1353. zinfo.compress_type = compress_type
  1354. if zinfo.compress_type == ZIP_LZMA:
  1355. # Compressed data includes an end-of-stream (EOS) marker
  1356. zinfo.flag_bits |= 0x02
  1357. self._writecheck(zinfo)
  1358. self._didModify = True
  1359. zinfo.CRC = crc32(data) # CRC-32 checksum
  1360. co = _get_compressor(zinfo.compress_type)
  1361. if co:
  1362. data = co.compress(data) + co.flush()
  1363. zinfo.compress_size = len(data) # Compressed size
  1364. else:
  1365. zinfo.compress_size = zinfo.file_size
  1366. zip64 = zinfo.file_size > ZIP64_LIMIT or \
  1367. zinfo.compress_size > ZIP64_LIMIT
  1368. if zip64 and not self._allowZip64:
  1369. raise LargeZipFile("Filesize would require ZIP64 extensions")
  1370. self.fp.write(zinfo.FileHeader(zip64))
  1371. self.fp.write(data)
  1372. if zinfo.flag_bits & 0x08:
  1373. # Write CRC and file sizes after the file data
  1374. fmt = '<LQQ' if zip64 else '<LLL'
  1375. self.fp.write(struct.pack(fmt, zinfo.CRC, zinfo.compress_size,
  1376. zinfo.file_size))
  1377. self.fp.flush()
  1378. self.start_dir = self.fp.tell()
  1379. self.filelist.append(zinfo)
  1380. self.NameToInfo[zinfo.filename] = zinfo
  1381. def __del__(self):
  1382. """Call the "close()" method in case the user forgot."""
  1383. self.close()
  1384. def close(self):
  1385. """Close the file, and for mode 'w', 'x' and 'a' write the ending
  1386. records."""
  1387. if self.fp is None:
  1388. return
  1389. try:
  1390. if self.mode in ('w', 'x', 'a') and self._didModify: # write ending records
  1391. with self._lock:
  1392. if self._seekable:
  1393. self.fp.seek(self.start_dir)
  1394. self._write_end_record()
  1395. finally:
  1396. fp = self.fp
  1397. self.fp = None
  1398. self._fpclose(fp)
  1399. def _write_end_record(self):
  1400. for zinfo in self.filelist: # write central directory
  1401. dt = zinfo.date_time
  1402. dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2]
  1403. dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2)
  1404. extra = []
  1405. if zinfo.file_size > ZIP64_LIMIT \
  1406. or zinfo.compress_size > ZIP64_LIMIT:
  1407. extra.append(zinfo.file_size)
  1408. extra.append(zinfo.compress_size)
  1409. file_size = 0xffffffff
  1410. compress_size = 0xffffffff
  1411. else:
  1412. file_size = zinfo.file_size
  1413. compress_size = zinfo.compress_size
  1414. if zinfo.header_offset > ZIP64_LIMIT:
  1415. extra.append(zinfo.header_offset)
  1416. header_offset = 0xffffffff
  1417. else:
  1418. header_offset = zinfo.header_offset
  1419. extra_data = zinfo.extra
  1420. min_version = 0
  1421. if extra:
  1422. # Append a ZIP64 field to the extra's
  1423. extra_data = struct.pack(
  1424. '<HH' + 'Q'*len(extra),
  1425. 1, 8*len(extra), *extra) + extra_data
  1426. min_version = ZIP64_VERSION
  1427. if zinfo.compress_type == ZIP_BZIP2:
  1428. min_version = max(BZIP2_VERSION, min_version)
  1429. elif zinfo.compress_type == ZIP_LZMA:
  1430. min_version = max(LZMA_VERSION, min_version)
  1431. extract_version = max(min_version, zinfo.extract_version)
  1432. create_version = max(min_version, zinfo.create_version)
  1433. try:
  1434. filename, flag_bits = zinfo._encodeFilenameFlags()
  1435. centdir = struct.pack(structCentralDir,
  1436. stringCentralDir, create_version,
  1437. zinfo.create_system, extract_version, zinfo.reserved,
  1438. flag_bits, zinfo.compress_type, dostime, dosdate,
  1439. zinfo.CRC, compress_size, file_size,
  1440. len(filename), len(extra_data), len(zinfo.comment),
  1441. 0, zinfo.internal_attr, zinfo.external_attr,
  1442. header_offset)
  1443. except DeprecationWarning:
  1444. print((structCentralDir, stringCentralDir, create_version,
  1445. zinfo.create_system, extract_version, zinfo.reserved,
  1446. zinfo.flag_bits, zinfo.compress_type, dostime, dosdate,
  1447. zinfo.CRC, compress_size, file_size,
  1448. len(zinfo.filename), len(extra_data), len(zinfo.comment),
  1449. 0, zinfo.internal_attr, zinfo.external_attr,
  1450. header_offset), file=sys.stderr)
  1451. raise
  1452. self.fp.write(centdir)
  1453. self.fp.write(filename)
  1454. self.fp.write(extra_data)
  1455. self.fp.write(zinfo.comment)
  1456. pos2 = self.fp.tell()
  1457. # Write end-of-zip-archive record
  1458. centDirCount = len(self.filelist)
  1459. centDirSize = pos2 - self.start_dir
  1460. centDirOffset = self.start_dir
  1461. requires_zip64 = None
  1462. if centDirCount > ZIP_FILECOUNT_LIMIT:
  1463. requires_zip64 = "Files count"
  1464. elif centDirOffset > ZIP64_LIMIT:
  1465. requires_zip64 = "Central directory offset"
  1466. elif centDirSize > ZIP64_LIMIT:
  1467. requires_zip64 = "Central directory size"
  1468. if requires_zip64:
  1469. # Need to write the ZIP64 end-of-archive records
  1470. if not self._allowZip64:
  1471. raise LargeZipFile(requires_zip64 +
  1472. " would require ZIP64 extensions")
  1473. zip64endrec = struct.pack(
  1474. structEndArchive64, stringEndArchive64,
  1475. 44, 45, 45, 0, 0, centDirCount, centDirCount,
  1476. centDirSize, centDirOffset)
  1477. self.fp.write(zip64endrec)
  1478. zip64locrec = struct.pack(
  1479. structEndArchive64Locator,
  1480. stringEndArchive64Locator, 0, pos2, 1)
  1481. self.fp.write(zip64locrec)
  1482. centDirCount = min(centDirCount, 0xFFFF)
  1483. centDirSize = min(centDirSize, 0xFFFFFFFF)
  1484. centDirOffset = min(centDirOffset, 0xFFFFFFFF)
  1485. endrec = struct.pack(structEndArchive, stringEndArchive,
  1486. 0, 0, centDirCount, centDirCount,
  1487. centDirSize, centDirOffset, len(self._comment))
  1488. self.fp.write(endrec)
  1489. self.fp.write(self._comment)
  1490. self.fp.flush()
  1491. def _fpclose(self, fp):
  1492. assert self._fileRefCnt > 0
  1493. self._fileRefCnt -= 1
  1494. if not self._fileRefCnt and not self._filePassed:
  1495. fp.close()
  1496. class PyZipFile(ZipFile):
  1497. """Class to create ZIP archives with Python library files and packages."""
  1498. def __init__(self, file, mode="r", compression=ZIP_STORED,
  1499. allowZip64=True, optimize=-1):
  1500. ZipFile.__init__(self, file, mode=mode, compression=compression,
  1501. allowZip64=allowZip64)
  1502. self._optimize = optimize
  1503. def writepy(self, pathname, basename="", filterfunc=None):
  1504. """Add all files from "pathname" to the ZIP archive.
  1505. If pathname is a package directory, search the directory and
  1506. all package subdirectories recursively for all *.py and enter
  1507. the modules into the archive. If pathname is a plain
  1508. directory, listdir *.py and enter all modules. Else, pathname
  1509. must be a Python *.py file and the module will be put into the
  1510. archive. Added modules are always module.pyc.
  1511. This method will compile the module.py into module.pyc if
  1512. necessary.
  1513. If filterfunc(pathname) is given, it is called with every argument.
  1514. When it is False, the file or directory is skipped.
  1515. """
  1516. if filterfunc and not filterfunc(pathname):
  1517. if self.debug:
  1518. label = 'path' if os.path.isdir(pathname) else 'file'
  1519. print('%s "%s" skipped by filterfunc' % (label, pathname))
  1520. return
  1521. dir, name = os.path.split(pathname)
  1522. if os.path.isdir(pathname):
  1523. initname = os.path.join(pathname, "__init__.py")
  1524. if os.path.isfile(initname):
  1525. # This is a package directory, add it
  1526. if basename:
  1527. basename = "%s/%s" % (basename, name)
  1528. else:
  1529. basename = name
  1530. if self.debug:
  1531. print("Adding package in", pathname, "as", basename)
  1532. fname, arcname = self._get_codename(initname[0:-3], basename)
  1533. if self.debug:
  1534. print("Adding", arcname)
  1535. self.write(fname, arcname)
  1536. dirlist = os.listdir(pathname)
  1537. dirlist.remove("__init__.py")
  1538. # Add all *.py files and package subdirectories
  1539. for filename in dirlist:
  1540. path = os.path.join(pathname, filename)
  1541. root, ext = os.path.splitext(filename)
  1542. if os.path.isdir(path):
  1543. if os.path.isfile(os.path.join(path, "__init__.py")):
  1544. # This is a package directory, add it
  1545. self.writepy(path, basename,
  1546. filterfunc=filterfunc) # Recursive call
  1547. elif ext == ".py":
  1548. if filterfunc and not filterfunc(path):
  1549. if self.debug:
  1550. print('file "%s" skipped by filterfunc' % path)
  1551. continue
  1552. fname, arcname = self._get_codename(path[0:-3],
  1553. basename)
  1554. if self.debug:
  1555. print("Adding", arcname)
  1556. self.write(fname, arcname)
  1557. else:
  1558. # This is NOT a package directory, add its files at top level
  1559. if self.debug:
  1560. print("Adding files from directory", pathname)
  1561. for filename in os.listdir(pathname):
  1562. path = os.path.join(pathname, filename)
  1563. root, ext = os.path.splitext(filename)
  1564. if ext == ".py":
  1565. if filterfunc and not filterfunc(path):
  1566. if self.debug:
  1567. print('file "%s" skipped by filterfunc' % path)
  1568. continue
  1569. fname, arcname = self._get_codename(path[0:-3],
  1570. basename)
  1571. if self.debug:
  1572. print("Adding", arcname)
  1573. self.write(fname, arcname)
  1574. else:
  1575. if pathname[-3:] != ".py":
  1576. raise RuntimeError(
  1577. 'Files added with writepy() must end with ".py"')
  1578. fname, arcname = self._get_codename(pathname[0:-3], basename)
  1579. if self.debug:
  1580. print("Adding file", arcname)
  1581. self.write(fname, arcname)
  1582. def _get_codename(self, pathname, basename):
  1583. """Return (filename, archivename) for the path.
  1584. Given a module name path, return the correct file path and
  1585. archive name, compiling if necessary. For example, given
  1586. /python/lib/string, return (/python/lib/string.pyc, string).
  1587. """
  1588. def _compile(file, optimize=-1):
  1589. import py_compile
  1590. if self.debug:
  1591. print("Compiling", file)
  1592. try:
  1593. py_compile.compile(file, doraise=True, optimize=optimize)
  1594. except py_compile.PyCompileError as err:
  1595. print(err.msg)
  1596. return False
  1597. return True
  1598. file_py = pathname + ".py"
  1599. file_pyc = pathname + ".pyc"
  1600. pycache_opt0 = importlib.util.cache_from_source(file_py, optimization='')
  1601. pycache_opt1 = importlib.util.cache_from_source(file_py, optimization=1)
  1602. pycache_opt2 = importlib.util.cache_from_source(file_py, optimization=2)
  1603. if self._optimize == -1:
  1604. # legacy mode: use whatever file is present
  1605. if (os.path.isfile(file_pyc) and
  1606. os.stat(file_pyc).st_mtime >= os.stat(file_py).st_mtime):
  1607. # Use .pyc file.
  1608. arcname = fname = file_pyc
  1609. elif (os.path.isfile(pycache_opt0) and
  1610. os.stat(pycache_opt0).st_mtime >= os.stat(file_py).st_mtime):
  1611. # Use the __pycache__/*.pyc file, but write it to the legacy pyc
  1612. # file name in the archive.
  1613. fname = pycache_opt0
  1614. arcname = file_pyc
  1615. elif (os.path.isfile(pycache_opt1) and
  1616. os.stat(pycache_opt1).st_mtime >= os.stat(file_py).st_mtime):
  1617. # Use the __pycache__/*.pyc file, but write it to the legacy pyc
  1618. # file name in the archive.
  1619. fname = pycache_opt1
  1620. arcname = file_pyc
  1621. elif (os.path.isfile(pycache_opt2) and
  1622. os.stat(pycache_opt2).st_mtime >= os.stat(file_py).st_mtime):
  1623. # Use the __pycache__/*.pyc file, but write it to the legacy pyc
  1624. # file name in the archive.
  1625. fname = pycache_opt2
  1626. arcname = file_pyc
  1627. else:
  1628. # Compile py into PEP 3147 pyc file.
  1629. if _compile(file_py):
  1630. if sys.flags.optimize == 0:
  1631. fname = pycache_opt0
  1632. elif sys.flags.optimize == 1:
  1633. fname = pycache_opt1
  1634. else:
  1635. fname = pycache_opt2
  1636. arcname = file_pyc
  1637. else:
  1638. fname = arcname = file_py
  1639. else:
  1640. # new mode: use given optimization level
  1641. if self._optimize == 0:
  1642. fname = pycache_opt0
  1643. arcname = file_pyc
  1644. else:
  1645. arcname = file_pyc
  1646. if self._optimize == 1:
  1647. fname = pycache_opt1
  1648. elif self._optimize == 2:
  1649. fname = pycache_opt2
  1650. else:
  1651. msg = "invalid value for 'optimize': {!r}".format(self._optimize)
  1652. raise ValueError(msg)
  1653. if not (os.path.isfile(fname) and
  1654. os.stat(fname).st_mtime >= os.stat(file_py).st_mtime):
  1655. if not _compile(file_py, optimize=self._optimize):
  1656. fname = arcname = file_py
  1657. archivename = os.path.split(arcname)[1]
  1658. if basename:
  1659. archivename = "%s/%s" % (basename, archivename)
  1660. return (fname, archivename)
  1661. def main(args = None):
  1662. import textwrap
  1663. USAGE=textwrap.dedent("""\
  1664. Usage:
  1665. zipfile.py -l zipfile.zip # Show listing of a zipfile
  1666. zipfile.py -t zipfile.zip # Test if a zipfile is valid
  1667. zipfile.py -e zipfile.zip target # Extract zipfile into target dir
  1668. zipfile.py -c zipfile.zip src ... # Create zipfile from sources
  1669. """)
  1670. if args is None:
  1671. args = sys.argv[1:]
  1672. if not args or args[0] not in ('-l', '-c', '-e', '-t'):
  1673. print(USAGE)
  1674. sys.exit(1)
  1675. if args[0] == '-l':
  1676. if len(args) != 2:
  1677. print(USAGE)
  1678. sys.exit(1)
  1679. with ZipFile(args[1], 'r') as zf:
  1680. zf.printdir()
  1681. elif args[0] == '-t':
  1682. if len(args) != 2:
  1683. print(USAGE)
  1684. sys.exit(1)
  1685. with ZipFile(args[1], 'r') as zf:
  1686. badfile = zf.testzip()
  1687. if badfile:
  1688. print("The following enclosed file is corrupted: {!r}".format(badfile))
  1689. print("Done testing")
  1690. elif args[0] == '-e':
  1691. if len(args) != 3:
  1692. print(USAGE)
  1693. sys.exit(1)
  1694. with ZipFile(args[1], 'r') as zf:
  1695. zf.extractall(args[2])
  1696. elif args[0] == '-c':
  1697. if len(args) < 3:
  1698. print(USAGE)
  1699. sys.exit(1)
  1700. def addToZip(zf, path, zippath):
  1701. if os.path.isfile(path):
  1702. zf.write(path, zippath, ZIP_DEFLATED)
  1703. elif os.path.isdir(path):
  1704. if zippath:
  1705. zf.write(path, zippath)
  1706. for nm in os.listdir(path):
  1707. addToZip(zf,
  1708. os.path.join(path, nm), os.path.join(zippath, nm))
  1709. # else: ignore
  1710. with ZipFile(args[1], 'w') as zf:
  1711. for path in args[2:]:
  1712. zippath = os.path.basename(path)
  1713. if not zippath:
  1714. zippath = os.path.basename(os.path.dirname(path))
  1715. if zippath in ('', os.curdir, os.pardir):
  1716. zippath = ''
  1717. addToZip(zf, path, zippath)
  1718. if __name__ == "__main__":
  1719. main()