Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # -*- coding: iso-8859-1 -*- |
| 3 | #------------------------------------------------------------------- |
| 4 | # tarfile.py |
| 5 | #------------------------------------------------------------------- |
| 6 | # Copyright (C) 2002 Lars Gustäbel <lars@gustaebel.de> |
| 7 | # All rights reserved. |
| 8 | # |
| 9 | # Permission is hereby granted, free of charge, to any person |
| 10 | # obtaining a copy of this software and associated documentation |
| 11 | # files (the "Software"), to deal in the Software without |
| 12 | # restriction, including without limitation the rights to use, |
| 13 | # copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 14 | # copies of the Software, and to permit persons to whom the |
| 15 | # Software is furnished to do so, subject to the following |
| 16 | # conditions: |
| 17 | # |
| 18 | # The above copyright notice and this permission notice shall be |
| 19 | # included in all copies or substantial portions of the Software. |
| 20 | # |
| 21 | # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 22 | # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES |
| 23 | # OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 24 | # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT |
| 25 | # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, |
| 26 | # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 27 | # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
| 28 | # OTHER DEALINGS IN THE SOFTWARE. |
| 29 | # |
| 30 | """Read from and write to tar format archives. |
| 31 | """ |
| 32 | |
| 33 | __version__ = "$Revision$" |
| 34 | # $Source$ |
| 35 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 36 | version = "0.8.0" |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 37 | __author__ = "Lars Gustäbel (lars@gustaebel.de)" |
| 38 | __date__ = "$Date$" |
| 39 | __cvsid__ = "$Id$" |
| 40 | __credits__ = "Gustavo Niemeyer, Niels Gustäbel, Richard Townsend." |
| 41 | |
| 42 | #--------- |
| 43 | # Imports |
| 44 | #--------- |
| 45 | import sys |
| 46 | import os |
| 47 | import shutil |
| 48 | import stat |
| 49 | import errno |
| 50 | import time |
| 51 | import struct |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 52 | import copy |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 53 | |
Jack Jansen | cfc4902 | 2003-03-07 13:37:32 +0000 | [diff] [blame] | 54 | if sys.platform == 'mac': |
| 55 | # This module needs work for MacOS9, especially in the area of pathname |
| 56 | # handling. In many places it is assumed a simple substitution of / by the |
| 57 | # local os.path.sep is good enough to convert pathnames, but this does not |
| 58 | # work with the mac rooted:path:name versus :nonrooted:path:name syntax |
| 59 | raise ImportError, "tarfile does not work for platform==mac" |
| 60 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 61 | try: |
| 62 | import grp, pwd |
| 63 | except ImportError: |
| 64 | grp = pwd = None |
| 65 | |
| 66 | # from tarfile import * |
| 67 | __all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError"] |
| 68 | |
| 69 | #--------------------------------------------------------- |
| 70 | # tar constants |
| 71 | #--------------------------------------------------------- |
| 72 | NUL = "\0" # the null character |
| 73 | BLOCKSIZE = 512 # length of processing blocks |
| 74 | RECORDSIZE = BLOCKSIZE * 20 # length of records |
| 75 | MAGIC = "ustar" # magic tar string |
| 76 | VERSION = "00" # version number |
| 77 | |
| 78 | LENGTH_NAME = 100 # maximum length of a filename |
| 79 | LENGTH_LINK = 100 # maximum length of a linkname |
| 80 | LENGTH_PREFIX = 155 # maximum length of the prefix field |
| 81 | MAXSIZE_MEMBER = 077777777777L # maximum size of a file (11 octal digits) |
| 82 | |
| 83 | REGTYPE = "0" # regular file |
| 84 | AREGTYPE = "\0" # regular file |
| 85 | LNKTYPE = "1" # link (inside tarfile) |
| 86 | SYMTYPE = "2" # symbolic link |
| 87 | CHRTYPE = "3" # character special device |
| 88 | BLKTYPE = "4" # block special device |
| 89 | DIRTYPE = "5" # directory |
| 90 | FIFOTYPE = "6" # fifo special device |
| 91 | CONTTYPE = "7" # contiguous file |
| 92 | |
| 93 | GNUTYPE_LONGNAME = "L" # GNU tar extension for longnames |
| 94 | GNUTYPE_LONGLINK = "K" # GNU tar extension for longlink |
| 95 | GNUTYPE_SPARSE = "S" # GNU tar extension for sparse file |
| 96 | |
| 97 | #--------------------------------------------------------- |
| 98 | # tarfile constants |
| 99 | #--------------------------------------------------------- |
| 100 | SUPPORTED_TYPES = (REGTYPE, AREGTYPE, LNKTYPE, # file types that tarfile |
| 101 | SYMTYPE, DIRTYPE, FIFOTYPE, # can cope with. |
| 102 | CONTTYPE, CHRTYPE, BLKTYPE, |
| 103 | GNUTYPE_LONGNAME, GNUTYPE_LONGLINK, |
| 104 | GNUTYPE_SPARSE) |
| 105 | |
| 106 | REGULAR_TYPES = (REGTYPE, AREGTYPE, # file types that somehow |
| 107 | CONTTYPE, GNUTYPE_SPARSE) # represent regular files |
| 108 | |
| 109 | #--------------------------------------------------------- |
| 110 | # Bits used in the mode field, values in octal. |
| 111 | #--------------------------------------------------------- |
| 112 | S_IFLNK = 0120000 # symbolic link |
| 113 | S_IFREG = 0100000 # regular file |
| 114 | S_IFBLK = 0060000 # block device |
| 115 | S_IFDIR = 0040000 # directory |
| 116 | S_IFCHR = 0020000 # character device |
| 117 | S_IFIFO = 0010000 # fifo |
| 118 | |
| 119 | TSUID = 04000 # set UID on execution |
| 120 | TSGID = 02000 # set GID on execution |
| 121 | TSVTX = 01000 # reserved |
| 122 | |
| 123 | TUREAD = 0400 # read by owner |
| 124 | TUWRITE = 0200 # write by owner |
| 125 | TUEXEC = 0100 # execute/search by owner |
| 126 | TGREAD = 0040 # read by group |
| 127 | TGWRITE = 0020 # write by group |
| 128 | TGEXEC = 0010 # execute/search by group |
| 129 | TOREAD = 0004 # read by other |
| 130 | TOWRITE = 0002 # write by other |
| 131 | TOEXEC = 0001 # execute/search by other |
| 132 | |
| 133 | #--------------------------------------------------------- |
| 134 | # Some useful functions |
| 135 | #--------------------------------------------------------- |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 136 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 137 | def stn(s, length): |
| 138 | """Convert a python string to a null-terminated string buffer. |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 139 | """ |
Georg Brandl | ee23f4b | 2006-10-24 16:54:23 +0000 | [diff] [blame] | 140 | return s[:length] + (length - len(s)) * NUL |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 141 | |
| 142 | def nti(s): |
| 143 | """Convert a number field to a python number. |
| 144 | """ |
| 145 | # There are two possible encodings for a number field, see |
| 146 | # itn() below. |
| 147 | if s[0] != chr(0200): |
Georg Brandl | 58bf57f | 2006-10-12 12:03:11 +0000 | [diff] [blame] | 148 | n = int(s.rstrip(NUL + " ") or "0", 8) |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 149 | else: |
| 150 | n = 0L |
| 151 | for i in xrange(len(s) - 1): |
| 152 | n <<= 8 |
| 153 | n += ord(s[i + 1]) |
| 154 | return n |
| 155 | |
| 156 | def itn(n, digits=8, posix=False): |
| 157 | """Convert a python number to a number field. |
| 158 | """ |
| 159 | # POSIX 1003.1-1988 requires numbers to be encoded as a string of |
| 160 | # octal digits followed by a null-byte, this allows values up to |
| 161 | # (8**(digits-1))-1. GNU tar allows storing numbers greater than |
| 162 | # that if necessary. A leading 0200 byte indicates this particular |
| 163 | # encoding, the following digits-1 bytes are a big-endian |
| 164 | # representation. This allows values up to (256**(digits-1))-1. |
| 165 | if 0 <= n < 8 ** (digits - 1): |
| 166 | s = "%0*o" % (digits - 1, n) + NUL |
| 167 | else: |
| 168 | if posix: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 169 | raise ValueError("overflow in number field") |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 170 | |
| 171 | if n < 0: |
| 172 | # XXX We mimic GNU tar's behaviour with negative numbers, |
| 173 | # this could raise OverflowError. |
| 174 | n = struct.unpack("L", struct.pack("l", n))[0] |
| 175 | |
| 176 | s = "" |
| 177 | for i in xrange(digits - 1): |
| 178 | s = chr(n & 0377) + s |
| 179 | n >>= 8 |
| 180 | s = chr(0200) + s |
| 181 | return s |
| 182 | |
| 183 | def calc_chksums(buf): |
| 184 | """Calculate the checksum for a member's header by summing up all |
| 185 | characters except for the chksum field which is treated as if |
| 186 | it was filled with spaces. According to the GNU tar sources, |
| 187 | some tars (Sun and NeXT) calculate chksum with signed char, |
| 188 | which will be different if there are chars in the buffer with |
| 189 | the high bit set. So we calculate two checksums, unsigned and |
| 190 | signed. |
| 191 | """ |
| 192 | unsigned_chksum = 256 + sum(struct.unpack("148B", buf[:148]) + struct.unpack("356B", buf[156:512])) |
| 193 | signed_chksum = 256 + sum(struct.unpack("148b", buf[:148]) + struct.unpack("356b", buf[156:512])) |
| 194 | return unsigned_chksum, signed_chksum |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 195 | |
| 196 | def copyfileobj(src, dst, length=None): |
| 197 | """Copy length bytes from fileobj src to fileobj dst. |
| 198 | If length is None, copy the entire content. |
| 199 | """ |
| 200 | if length == 0: |
| 201 | return |
| 202 | if length is None: |
| 203 | shutil.copyfileobj(src, dst) |
| 204 | return |
| 205 | |
| 206 | BUFSIZE = 16 * 1024 |
| 207 | blocks, remainder = divmod(length, BUFSIZE) |
| 208 | for b in xrange(blocks): |
| 209 | buf = src.read(BUFSIZE) |
| 210 | if len(buf) < BUFSIZE: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 211 | raise IOError("end of file reached") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 212 | dst.write(buf) |
| 213 | |
| 214 | if remainder != 0: |
| 215 | buf = src.read(remainder) |
| 216 | if len(buf) < remainder: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 217 | raise IOError("end of file reached") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 218 | dst.write(buf) |
| 219 | return |
| 220 | |
| 221 | filemode_table = ( |
Andrew M. Kuchling | 8bc462f | 2004-10-20 11:48:42 +0000 | [diff] [blame] | 222 | ((S_IFLNK, "l"), |
| 223 | (S_IFREG, "-"), |
| 224 | (S_IFBLK, "b"), |
| 225 | (S_IFDIR, "d"), |
| 226 | (S_IFCHR, "c"), |
| 227 | (S_IFIFO, "p")), |
| 228 | |
| 229 | ((TUREAD, "r"),), |
| 230 | ((TUWRITE, "w"),), |
| 231 | ((TUEXEC|TSUID, "s"), |
| 232 | (TSUID, "S"), |
| 233 | (TUEXEC, "x")), |
| 234 | |
| 235 | ((TGREAD, "r"),), |
| 236 | ((TGWRITE, "w"),), |
| 237 | ((TGEXEC|TSGID, "s"), |
| 238 | (TSGID, "S"), |
| 239 | (TGEXEC, "x")), |
| 240 | |
| 241 | ((TOREAD, "r"),), |
| 242 | ((TOWRITE, "w"),), |
| 243 | ((TOEXEC|TSVTX, "t"), |
| 244 | (TSVTX, "T"), |
| 245 | (TOEXEC, "x")) |
| 246 | ) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 247 | |
| 248 | def filemode(mode): |
| 249 | """Convert a file's mode to a string of the form |
| 250 | -rwxrwxrwx. |
| 251 | Used by TarFile.list() |
| 252 | """ |
Andrew M. Kuchling | 8bc462f | 2004-10-20 11:48:42 +0000 | [diff] [blame] | 253 | perm = [] |
| 254 | for table in filemode_table: |
| 255 | for bit, char in table: |
| 256 | if mode & bit == bit: |
| 257 | perm.append(char) |
| 258 | break |
| 259 | else: |
| 260 | perm.append("-") |
| 261 | return "".join(perm) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 262 | |
| 263 | if os.sep != "/": |
| 264 | normpath = lambda path: os.path.normpath(path).replace(os.sep, "/") |
| 265 | else: |
| 266 | normpath = os.path.normpath |
| 267 | |
| 268 | class TarError(Exception): |
| 269 | """Base exception.""" |
| 270 | pass |
| 271 | class ExtractError(TarError): |
| 272 | """General exception for extract errors.""" |
| 273 | pass |
| 274 | class ReadError(TarError): |
| 275 | """Exception for unreadble tar archives.""" |
| 276 | pass |
| 277 | class CompressionError(TarError): |
| 278 | """Exception for unavailable compression methods.""" |
| 279 | pass |
| 280 | class StreamError(TarError): |
| 281 | """Exception for unsupported operations on stream-like TarFiles.""" |
| 282 | pass |
| 283 | |
| 284 | #--------------------------- |
| 285 | # internal stream interface |
| 286 | #--------------------------- |
| 287 | class _LowLevelFile: |
| 288 | """Low-level file object. Supports reading and writing. |
| 289 | It is used instead of a regular file object for streaming |
| 290 | access. |
| 291 | """ |
| 292 | |
| 293 | def __init__(self, name, mode): |
| 294 | mode = { |
| 295 | "r": os.O_RDONLY, |
| 296 | "w": os.O_WRONLY | os.O_CREAT | os.O_TRUNC, |
| 297 | }[mode] |
| 298 | if hasattr(os, "O_BINARY"): |
| 299 | mode |= os.O_BINARY |
| 300 | self.fd = os.open(name, mode) |
| 301 | |
| 302 | def close(self): |
| 303 | os.close(self.fd) |
| 304 | |
| 305 | def read(self, size): |
| 306 | return os.read(self.fd, size) |
| 307 | |
| 308 | def write(self, s): |
| 309 | os.write(self.fd, s) |
| 310 | |
| 311 | class _Stream: |
| 312 | """Class that serves as an adapter between TarFile and |
| 313 | a stream-like object. The stream-like object only |
| 314 | needs to have a read() or write() method and is accessed |
| 315 | blockwise. Use of gzip or bzip2 compression is possible. |
| 316 | A stream-like object could be for example: sys.stdin, |
| 317 | sys.stdout, a socket, a tape device etc. |
| 318 | |
| 319 | _Stream is intended to be used only internally. |
| 320 | """ |
| 321 | |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 322 | def __init__(self, name, mode, comptype, fileobj, bufsize): |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 323 | """Construct a _Stream object. |
| 324 | """ |
| 325 | self._extfileobj = True |
| 326 | if fileobj is None: |
| 327 | fileobj = _LowLevelFile(name, mode) |
| 328 | self._extfileobj = False |
| 329 | |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 330 | if comptype == '*': |
| 331 | # Enable transparent compression detection for the |
| 332 | # stream interface |
| 333 | fileobj = _StreamProxy(fileobj) |
| 334 | comptype = fileobj.getcomptype() |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 335 | |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 336 | self.name = name or "" |
| 337 | self.mode = mode |
| 338 | self.comptype = comptype |
| 339 | self.fileobj = fileobj |
| 340 | self.bufsize = bufsize |
| 341 | self.buf = "" |
| 342 | self.pos = 0L |
| 343 | self.closed = False |
| 344 | |
| 345 | if comptype == "gz": |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 346 | try: |
| 347 | import zlib |
| 348 | except ImportError: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 349 | raise CompressionError("zlib module is not available") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 350 | self.zlib = zlib |
| 351 | self.crc = zlib.crc32("") |
| 352 | if mode == "r": |
| 353 | self._init_read_gz() |
| 354 | else: |
| 355 | self._init_write_gz() |
| 356 | |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 357 | if comptype == "bz2": |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 358 | try: |
| 359 | import bz2 |
| 360 | except ImportError: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 361 | raise CompressionError("bz2 module is not available") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 362 | if mode == "r": |
| 363 | self.dbuf = "" |
| 364 | self.cmp = bz2.BZ2Decompressor() |
| 365 | else: |
| 366 | self.cmp = bz2.BZ2Compressor() |
| 367 | |
| 368 | def __del__(self): |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 369 | if hasattr(self, "closed") and not self.closed: |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 370 | self.close() |
| 371 | |
| 372 | def _init_write_gz(self): |
| 373 | """Initialize for writing with gzip compression. |
| 374 | """ |
| 375 | self.cmp = self.zlib.compressobj(9, self.zlib.DEFLATED, |
| 376 | -self.zlib.MAX_WBITS, |
| 377 | self.zlib.DEF_MEM_LEVEL, |
| 378 | 0) |
| 379 | timestamp = struct.pack("<L", long(time.time())) |
| 380 | self.__write("\037\213\010\010%s\002\377" % timestamp) |
| 381 | if self.name.endswith(".gz"): |
| 382 | self.name = self.name[:-3] |
| 383 | self.__write(self.name + NUL) |
| 384 | |
| 385 | def write(self, s): |
| 386 | """Write string s to the stream. |
| 387 | """ |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 388 | if self.comptype == "gz": |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 389 | self.crc = self.zlib.crc32(s, self.crc) |
| 390 | self.pos += len(s) |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 391 | if self.comptype != "tar": |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 392 | s = self.cmp.compress(s) |
| 393 | self.__write(s) |
| 394 | |
| 395 | def __write(self, s): |
| 396 | """Write string s to the stream if a whole new block |
| 397 | is ready to be written. |
| 398 | """ |
| 399 | self.buf += s |
| 400 | while len(self.buf) > self.bufsize: |
| 401 | self.fileobj.write(self.buf[:self.bufsize]) |
| 402 | self.buf = self.buf[self.bufsize:] |
| 403 | |
| 404 | def close(self): |
| 405 | """Close the _Stream object. No operation should be |
| 406 | done on it afterwards. |
| 407 | """ |
| 408 | if self.closed: |
| 409 | return |
| 410 | |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 411 | if self.mode == "w" and self.comptype != "tar": |
Martin v. Löwis | c234a52 | 2004-08-22 21:28:33 +0000 | [diff] [blame] | 412 | self.buf += self.cmp.flush() |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 413 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 414 | if self.mode == "w" and self.buf: |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 415 | self.fileobj.write(self.buf) |
| 416 | self.buf = "" |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 417 | if self.comptype == "gz": |
Tim Peters | a05f6e2 | 2006-08-02 05:20:08 +0000 | [diff] [blame] | 418 | # The native zlib crc is an unsigned 32-bit integer, but |
| 419 | # the Python wrapper implicitly casts that to a signed C |
| 420 | # long. So, on a 32-bit box self.crc may "look negative", |
| 421 | # while the same crc on a 64-bit box may "look positive". |
| 422 | # To avoid irksome warnings from the `struct` module, force |
| 423 | # it to look positive on all boxes. |
| 424 | self.fileobj.write(struct.pack("<L", self.crc & 0xffffffffL)) |
Andrew M. Kuchling | 10a4449 | 2003-10-24 17:38:34 +0000 | [diff] [blame] | 425 | self.fileobj.write(struct.pack("<L", self.pos & 0xffffFFFFL)) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 426 | |
| 427 | if not self._extfileobj: |
| 428 | self.fileobj.close() |
| 429 | |
| 430 | self.closed = True |
| 431 | |
| 432 | def _init_read_gz(self): |
| 433 | """Initialize for reading a gzip compressed fileobj. |
| 434 | """ |
| 435 | self.cmp = self.zlib.decompressobj(-self.zlib.MAX_WBITS) |
| 436 | self.dbuf = "" |
| 437 | |
| 438 | # taken from gzip.GzipFile with some alterations |
| 439 | if self.__read(2) != "\037\213": |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 440 | raise ReadError("not a gzip file") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 441 | if self.__read(1) != "\010": |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 442 | raise CompressionError("unsupported compression method") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 443 | |
| 444 | flag = ord(self.__read(1)) |
| 445 | self.__read(6) |
| 446 | |
| 447 | if flag & 4: |
| 448 | xlen = ord(self.__read(1)) + 256 * ord(self.__read(1)) |
| 449 | self.read(xlen) |
| 450 | if flag & 8: |
| 451 | while True: |
| 452 | s = self.__read(1) |
| 453 | if not s or s == NUL: |
| 454 | break |
| 455 | if flag & 16: |
| 456 | while True: |
| 457 | s = self.__read(1) |
| 458 | if not s or s == NUL: |
| 459 | break |
| 460 | if flag & 2: |
| 461 | self.__read(2) |
| 462 | |
| 463 | def tell(self): |
| 464 | """Return the stream's file pointer position. |
| 465 | """ |
| 466 | return self.pos |
| 467 | |
| 468 | def seek(self, pos=0): |
| 469 | """Set the stream's file pointer to pos. Negative seeking |
| 470 | is forbidden. |
| 471 | """ |
| 472 | if pos - self.pos >= 0: |
| 473 | blocks, remainder = divmod(pos - self.pos, self.bufsize) |
| 474 | for i in xrange(blocks): |
| 475 | self.read(self.bufsize) |
| 476 | self.read(remainder) |
| 477 | else: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 478 | raise StreamError("seeking backwards is not allowed") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 479 | return self.pos |
| 480 | |
| 481 | def read(self, size=None): |
| 482 | """Return the next size number of bytes from the stream. |
| 483 | If size is not defined, return all bytes of the stream |
| 484 | up to EOF. |
| 485 | """ |
| 486 | if size is None: |
| 487 | t = [] |
| 488 | while True: |
| 489 | buf = self._read(self.bufsize) |
| 490 | if not buf: |
| 491 | break |
| 492 | t.append(buf) |
| 493 | buf = "".join(t) |
| 494 | else: |
| 495 | buf = self._read(size) |
| 496 | self.pos += len(buf) |
| 497 | return buf |
| 498 | |
| 499 | def _read(self, size): |
| 500 | """Return size bytes from the stream. |
| 501 | """ |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 502 | if self.comptype == "tar": |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 503 | return self.__read(size) |
| 504 | |
| 505 | c = len(self.dbuf) |
| 506 | t = [self.dbuf] |
| 507 | while c < size: |
| 508 | buf = self.__read(self.bufsize) |
| 509 | if not buf: |
| 510 | break |
| 511 | buf = self.cmp.decompress(buf) |
| 512 | t.append(buf) |
| 513 | c += len(buf) |
| 514 | t = "".join(t) |
| 515 | self.dbuf = t[size:] |
| 516 | return t[:size] |
| 517 | |
| 518 | def __read(self, size): |
| 519 | """Return size bytes from stream. If internal buffer is empty, |
| 520 | read another block from the stream. |
| 521 | """ |
| 522 | c = len(self.buf) |
| 523 | t = [self.buf] |
| 524 | while c < size: |
| 525 | buf = self.fileobj.read(self.bufsize) |
| 526 | if not buf: |
| 527 | break |
| 528 | t.append(buf) |
| 529 | c += len(buf) |
| 530 | t = "".join(t) |
| 531 | self.buf = t[size:] |
| 532 | return t[:size] |
| 533 | # class _Stream |
| 534 | |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 535 | class _StreamProxy(object): |
| 536 | """Small proxy class that enables transparent compression |
| 537 | detection for the Stream interface (mode 'r|*'). |
| 538 | """ |
| 539 | |
| 540 | def __init__(self, fileobj): |
| 541 | self.fileobj = fileobj |
| 542 | self.buf = self.fileobj.read(BLOCKSIZE) |
| 543 | |
| 544 | def read(self, size): |
| 545 | self.read = self.fileobj.read |
| 546 | return self.buf |
| 547 | |
| 548 | def getcomptype(self): |
| 549 | if self.buf.startswith("\037\213\010"): |
| 550 | return "gz" |
| 551 | if self.buf.startswith("BZh91"): |
| 552 | return "bz2" |
| 553 | return "tar" |
| 554 | |
| 555 | def close(self): |
| 556 | self.fileobj.close() |
| 557 | # class StreamProxy |
| 558 | |
Georg Brandl | 49c8f4c | 2006-05-15 19:30:35 +0000 | [diff] [blame] | 559 | class _BZ2Proxy(object): |
| 560 | """Small proxy class that enables external file object |
| 561 | support for "r:bz2" and "w:bz2" modes. This is actually |
| 562 | a workaround for a limitation in bz2 module's BZ2File |
| 563 | class which (unlike gzip.GzipFile) has no support for |
| 564 | a file object argument. |
| 565 | """ |
| 566 | |
| 567 | blocksize = 16 * 1024 |
| 568 | |
| 569 | def __init__(self, fileobj, mode): |
| 570 | self.fileobj = fileobj |
| 571 | self.mode = mode |
| 572 | self.init() |
| 573 | |
| 574 | def init(self): |
| 575 | import bz2 |
| 576 | self.pos = 0 |
| 577 | if self.mode == "r": |
| 578 | self.bz2obj = bz2.BZ2Decompressor() |
| 579 | self.fileobj.seek(0) |
| 580 | self.buf = "" |
| 581 | else: |
| 582 | self.bz2obj = bz2.BZ2Compressor() |
| 583 | |
| 584 | def read(self, size): |
| 585 | b = [self.buf] |
| 586 | x = len(self.buf) |
| 587 | while x < size: |
| 588 | try: |
| 589 | raw = self.fileobj.read(self.blocksize) |
| 590 | data = self.bz2obj.decompress(raw) |
| 591 | b.append(data) |
| 592 | except EOFError: |
| 593 | break |
| 594 | x += len(data) |
| 595 | self.buf = "".join(b) |
| 596 | |
| 597 | buf = self.buf[:size] |
| 598 | self.buf = self.buf[size:] |
| 599 | self.pos += len(buf) |
| 600 | return buf |
| 601 | |
| 602 | def seek(self, pos): |
| 603 | if pos < self.pos: |
| 604 | self.init() |
| 605 | self.read(pos - self.pos) |
| 606 | |
| 607 | def tell(self): |
| 608 | return self.pos |
| 609 | |
| 610 | def write(self, data): |
| 611 | self.pos += len(data) |
| 612 | raw = self.bz2obj.compress(data) |
| 613 | self.fileobj.write(raw) |
| 614 | |
| 615 | def close(self): |
| 616 | if self.mode == "w": |
| 617 | raw = self.bz2obj.flush() |
| 618 | self.fileobj.write(raw) |
Georg Brandl | e895318 | 2006-05-27 14:02:03 +0000 | [diff] [blame] | 619 | self.fileobj.close() |
Georg Brandl | 49c8f4c | 2006-05-15 19:30:35 +0000 | [diff] [blame] | 620 | # class _BZ2Proxy |
| 621 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 622 | #------------------------ |
| 623 | # Extraction file object |
| 624 | #------------------------ |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 625 | class _FileInFile(object): |
| 626 | """A thin wrapper around an existing file object that |
| 627 | provides a part of its data as an individual file |
| 628 | object. |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 629 | """ |
| 630 | |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 631 | def __init__(self, fileobj, offset, size, sparse=None): |
| 632 | self.fileobj = fileobj |
| 633 | self.offset = offset |
| 634 | self.size = size |
| 635 | self.sparse = sparse |
| 636 | self.position = 0 |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 637 | |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 638 | def tell(self): |
| 639 | """Return the current file position. |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 640 | """ |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 641 | return self.position |
| 642 | |
| 643 | def seek(self, position): |
| 644 | """Seek to a position in the file. |
| 645 | """ |
| 646 | self.position = position |
| 647 | |
| 648 | def read(self, size=None): |
| 649 | """Read data from the file. |
| 650 | """ |
| 651 | if size is None: |
| 652 | size = self.size - self.position |
| 653 | else: |
| 654 | size = min(size, self.size - self.position) |
| 655 | |
| 656 | if self.sparse is None: |
| 657 | return self.readnormal(size) |
| 658 | else: |
| 659 | return self.readsparse(size) |
| 660 | |
| 661 | def readnormal(self, size): |
| 662 | """Read operation for regular files. |
| 663 | """ |
| 664 | self.fileobj.seek(self.offset + self.position) |
| 665 | self.position += size |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 666 | return self.fileobj.read(size) |
| 667 | |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 668 | def readsparse(self, size): |
| 669 | """Read operation for sparse files. |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 670 | """ |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 671 | data = [] |
| 672 | while size > 0: |
| 673 | buf = self.readsparsesection(size) |
| 674 | if not buf: |
| 675 | break |
| 676 | size -= len(buf) |
| 677 | data.append(buf) |
| 678 | return "".join(data) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 679 | |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 680 | def readsparsesection(self, size): |
| 681 | """Read a single section of a sparse file. |
| 682 | """ |
| 683 | section = self.sparse.find(self.position) |
| 684 | |
| 685 | if section is None: |
| 686 | return "" |
| 687 | |
| 688 | size = min(size, section.offset + section.size - self.position) |
| 689 | |
| 690 | if isinstance(section, _data): |
| 691 | realpos = section.realpos + self.position - section.offset |
| 692 | self.fileobj.seek(self.offset + realpos) |
| 693 | self.position += size |
| 694 | return self.fileobj.read(size) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 695 | else: |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 696 | self.position += size |
| 697 | return NUL * size |
| 698 | #class _FileInFile |
| 699 | |
| 700 | |
| 701 | class ExFileObject(object): |
| 702 | """File-like object for reading an archive member. |
| 703 | Is returned by TarFile.extractfile(). |
| 704 | """ |
| 705 | blocksize = 1024 |
| 706 | |
| 707 | def __init__(self, tarfile, tarinfo): |
| 708 | self.fileobj = _FileInFile(tarfile.fileobj, |
| 709 | tarinfo.offset_data, |
| 710 | tarinfo.size, |
| 711 | getattr(tarinfo, "sparse", None)) |
| 712 | self.name = tarinfo.name |
| 713 | self.mode = "r" |
| 714 | self.closed = False |
| 715 | self.size = tarinfo.size |
| 716 | |
| 717 | self.position = 0 |
| 718 | self.buffer = "" |
| 719 | |
| 720 | def read(self, size=None): |
| 721 | """Read at most size bytes from the file. If size is not |
| 722 | present or None, read all data until EOF is reached. |
| 723 | """ |
| 724 | if self.closed: |
| 725 | raise ValueError("I/O operation on closed file") |
| 726 | |
| 727 | buf = "" |
| 728 | if self.buffer: |
| 729 | if size is None: |
| 730 | buf = self.buffer |
| 731 | self.buffer = "" |
| 732 | else: |
| 733 | buf = self.buffer[:size] |
| 734 | self.buffer = self.buffer[size:] |
| 735 | |
| 736 | if size is None: |
| 737 | buf += self.fileobj.read() |
| 738 | else: |
| 739 | buf += self.fileobj.read(size - len(buf)) |
| 740 | |
| 741 | self.position += len(buf) |
| 742 | return buf |
| 743 | |
| 744 | def readline(self, size=-1): |
| 745 | """Read one entire line from the file. If size is present |
| 746 | and non-negative, return a string with at most that |
| 747 | size, which may be an incomplete line. |
| 748 | """ |
| 749 | if self.closed: |
| 750 | raise ValueError("I/O operation on closed file") |
| 751 | |
| 752 | if "\n" in self.buffer: |
| 753 | pos = self.buffer.find("\n") + 1 |
| 754 | else: |
| 755 | buffers = [self.buffer] |
| 756 | while True: |
| 757 | buf = self.fileobj.read(self.blocksize) |
| 758 | buffers.append(buf) |
| 759 | if not buf or "\n" in buf: |
| 760 | self.buffer = "".join(buffers) |
| 761 | pos = self.buffer.find("\n") + 1 |
| 762 | if pos == 0: |
| 763 | # no newline found. |
| 764 | pos = len(self.buffer) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 765 | break |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 766 | |
| 767 | if size != -1: |
| 768 | pos = min(size, pos) |
| 769 | |
| 770 | buf = self.buffer[:pos] |
| 771 | self.buffer = self.buffer[pos:] |
| 772 | self.position += len(buf) |
| 773 | return buf |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 774 | |
| 775 | def readlines(self): |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 776 | """Return a list with all remaining lines. |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 777 | """ |
| 778 | result = [] |
| 779 | while True: |
| 780 | line = self.readline() |
| 781 | if not line: break |
| 782 | result.append(line) |
| 783 | return result |
| 784 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 785 | def tell(self): |
| 786 | """Return the current file position. |
| 787 | """ |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 788 | if self.closed: |
| 789 | raise ValueError("I/O operation on closed file") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 790 | |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 791 | return self.position |
| 792 | |
| 793 | def seek(self, pos, whence=os.SEEK_SET): |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 794 | """Seek to a position in the file. |
| 795 | """ |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 796 | if self.closed: |
| 797 | raise ValueError("I/O operation on closed file") |
| 798 | |
| 799 | if whence == os.SEEK_SET: |
| 800 | self.position = min(max(pos, 0), self.size) |
| 801 | elif whence == os.SEEK_CUR: |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 802 | if pos < 0: |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 803 | self.position = max(self.position + pos, 0) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 804 | else: |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 805 | self.position = min(self.position + pos, self.size) |
| 806 | elif whence == os.SEEK_END: |
| 807 | self.position = max(min(self.size + pos, self.size), 0) |
| 808 | else: |
| 809 | raise ValueError("Invalid argument") |
| 810 | |
| 811 | self.buffer = "" |
| 812 | self.fileobj.seek(self.position) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 813 | |
| 814 | def close(self): |
| 815 | """Close the file object. |
| 816 | """ |
| 817 | self.closed = True |
Martin v. Löwis | df24153 | 2005-03-03 08:17:42 +0000 | [diff] [blame] | 818 | |
| 819 | def __iter__(self): |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 820 | """Get an iterator over the file's lines. |
Martin v. Löwis | df24153 | 2005-03-03 08:17:42 +0000 | [diff] [blame] | 821 | """ |
Lars Gustäbel | aedb92e | 2006-12-23 16:51:47 +0000 | [diff] [blame] | 822 | while True: |
| 823 | line = self.readline() |
| 824 | if not line: |
| 825 | break |
| 826 | yield line |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 827 | #class ExFileObject |
| 828 | |
| 829 | #------------------ |
| 830 | # Exported Classes |
| 831 | #------------------ |
| 832 | class TarInfo(object): |
| 833 | """Informational class which holds the details about an |
| 834 | archive member given by a tar header block. |
| 835 | TarInfo objects are returned by TarFile.getmember(), |
| 836 | TarFile.getmembers() and TarFile.gettarinfo() and are |
| 837 | usually created internally. |
| 838 | """ |
| 839 | |
| 840 | def __init__(self, name=""): |
| 841 | """Construct a TarInfo object. name is the optional name |
| 842 | of the member. |
| 843 | """ |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 844 | self.name = name # member name (dirnames must end with '/') |
| 845 | self.mode = 0666 # file permissions |
| 846 | self.uid = 0 # user id |
| 847 | self.gid = 0 # group id |
| 848 | self.size = 0 # file size |
| 849 | self.mtime = 0 # modification time |
| 850 | self.chksum = 0 # header checksum |
| 851 | self.type = REGTYPE # member type |
| 852 | self.linkname = "" # link name |
| 853 | self.uname = "user" # user name |
| 854 | self.gname = "group" # group name |
| 855 | self.devmajor = 0 # device major number |
| 856 | self.devminor = 0 # device minor number |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 857 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 858 | self.offset = 0 # the tar header starts here |
| 859 | self.offset_data = 0 # the file's data starts here |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 860 | |
| 861 | def __repr__(self): |
| 862 | return "<%s %r at %#x>" % (self.__class__.__name__,self.name,id(self)) |
| 863 | |
Guido van Rossum | 75b64e6 | 2005-01-16 00:16:11 +0000 | [diff] [blame] | 864 | @classmethod |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 865 | def frombuf(cls, buf): |
| 866 | """Construct a TarInfo object from a 512 byte string buffer. |
| 867 | """ |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 868 | if len(buf) != BLOCKSIZE: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 869 | raise ValueError("truncated header") |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 870 | if buf.count(NUL) == BLOCKSIZE: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 871 | raise ValueError("empty header") |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 872 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 873 | tarinfo = cls() |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 874 | tarinfo.buf = buf |
Georg Brandl | e895318 | 2006-05-27 14:02:03 +0000 | [diff] [blame] | 875 | tarinfo.name = buf[0:100].rstrip(NUL) |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 876 | tarinfo.mode = nti(buf[100:108]) |
| 877 | tarinfo.uid = nti(buf[108:116]) |
| 878 | tarinfo.gid = nti(buf[116:124]) |
| 879 | tarinfo.size = nti(buf[124:136]) |
| 880 | tarinfo.mtime = nti(buf[136:148]) |
| 881 | tarinfo.chksum = nti(buf[148:156]) |
| 882 | tarinfo.type = buf[156:157] |
Georg Brandl | e895318 | 2006-05-27 14:02:03 +0000 | [diff] [blame] | 883 | tarinfo.linkname = buf[157:257].rstrip(NUL) |
| 884 | tarinfo.uname = buf[265:297].rstrip(NUL) |
| 885 | tarinfo.gname = buf[297:329].rstrip(NUL) |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 886 | tarinfo.devmajor = nti(buf[329:337]) |
| 887 | tarinfo.devminor = nti(buf[337:345]) |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 888 | prefix = buf[345:500].rstrip(NUL) |
| 889 | |
| 890 | if prefix and not tarinfo.issparse(): |
| 891 | tarinfo.name = prefix + "/" + tarinfo.name |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 892 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 893 | if tarinfo.chksum not in calc_chksums(buf): |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 894 | raise ValueError("invalid header") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 895 | return tarinfo |
| 896 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 897 | def tobuf(self, posix=False): |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 898 | """Return a tar header as a string of 512 byte blocks. |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 899 | """ |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 900 | buf = "" |
| 901 | type = self.type |
| 902 | prefix = "" |
| 903 | |
| 904 | if self.name.endswith("/"): |
| 905 | type = DIRTYPE |
| 906 | |
Georg Brandl | 25f58f6 | 2006-12-06 22:21:23 +0000 | [diff] [blame] | 907 | if type in (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK): |
| 908 | # Prevent "././@LongLink" from being normalized. |
| 909 | name = self.name |
| 910 | else: |
| 911 | name = normpath(self.name) |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 912 | |
| 913 | if type == DIRTYPE: |
| 914 | # directories should end with '/' |
| 915 | name += "/" |
| 916 | |
| 917 | linkname = self.linkname |
| 918 | if linkname: |
| 919 | # if linkname is empty we end up with a '.' |
| 920 | linkname = normpath(linkname) |
| 921 | |
| 922 | if posix: |
| 923 | if self.size > MAXSIZE_MEMBER: |
| 924 | raise ValueError("file is too large (>= 8 GB)") |
| 925 | |
| 926 | if len(self.linkname) > LENGTH_LINK: |
| 927 | raise ValueError("linkname is too long (>%d)" % (LENGTH_LINK)) |
| 928 | |
| 929 | if len(name) > LENGTH_NAME: |
| 930 | prefix = name[:LENGTH_PREFIX + 1] |
| 931 | while prefix and prefix[-1] != "/": |
| 932 | prefix = prefix[:-1] |
| 933 | |
| 934 | name = name[len(prefix):] |
| 935 | prefix = prefix[:-1] |
| 936 | |
| 937 | if not prefix or len(name) > LENGTH_NAME: |
| 938 | raise ValueError("name is too long") |
| 939 | |
| 940 | else: |
| 941 | if len(self.linkname) > LENGTH_LINK: |
| 942 | buf += self._create_gnulong(self.linkname, GNUTYPE_LONGLINK) |
| 943 | |
| 944 | if len(name) > LENGTH_NAME: |
| 945 | buf += self._create_gnulong(name, GNUTYPE_LONGNAME) |
| 946 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 947 | parts = [ |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 948 | stn(name, 100), |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 949 | itn(self.mode & 07777, 8, posix), |
| 950 | itn(self.uid, 8, posix), |
| 951 | itn(self.gid, 8, posix), |
| 952 | itn(self.size, 12, posix), |
| 953 | itn(self.mtime, 12, posix), |
| 954 | " ", # checksum field |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 955 | type, |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 956 | stn(self.linkname, 100), |
| 957 | stn(MAGIC, 6), |
| 958 | stn(VERSION, 2), |
| 959 | stn(self.uname, 32), |
| 960 | stn(self.gname, 32), |
| 961 | itn(self.devmajor, 8, posix), |
| 962 | itn(self.devminor, 8, posix), |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 963 | stn(prefix, 155) |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 964 | ] |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 965 | |
Lars Gustäbel | 8ff1f6a | 2007-04-21 12:20:09 +0000 | [diff] [blame] | 966 | buf += "".join(parts).ljust(BLOCKSIZE, NUL) |
Georg Brandl | 25f58f6 | 2006-12-06 22:21:23 +0000 | [diff] [blame] | 967 | chksum = calc_chksums(buf[-BLOCKSIZE:])[0] |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 968 | buf = buf[:-364] + "%06o\0" % chksum + buf[-357:] |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 969 | self.buf = buf |
| 970 | return buf |
| 971 | |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 972 | def _create_gnulong(self, name, type): |
| 973 | """Create a GNU longname/longlink header from name. |
| 974 | It consists of an extended tar header, with the length |
| 975 | of the longname as size, followed by data blocks, |
| 976 | which contain the longname as a null terminated string. |
| 977 | """ |
| 978 | name += NUL |
| 979 | |
| 980 | tarinfo = self.__class__() |
| 981 | tarinfo.name = "././@LongLink" |
| 982 | tarinfo.type = type |
| 983 | tarinfo.mode = 0 |
| 984 | tarinfo.size = len(name) |
| 985 | |
| 986 | # create extended header |
| 987 | buf = tarinfo.tobuf() |
| 988 | # create name blocks |
| 989 | buf += name |
| 990 | blocks, remainder = divmod(len(name), BLOCKSIZE) |
| 991 | if remainder > 0: |
| 992 | buf += (BLOCKSIZE - remainder) * NUL |
| 993 | return buf |
| 994 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 995 | def isreg(self): |
| 996 | return self.type in REGULAR_TYPES |
| 997 | def isfile(self): |
| 998 | return self.isreg() |
| 999 | def isdir(self): |
| 1000 | return self.type == DIRTYPE |
| 1001 | def issym(self): |
| 1002 | return self.type == SYMTYPE |
| 1003 | def islnk(self): |
| 1004 | return self.type == LNKTYPE |
| 1005 | def ischr(self): |
| 1006 | return self.type == CHRTYPE |
| 1007 | def isblk(self): |
| 1008 | return self.type == BLKTYPE |
| 1009 | def isfifo(self): |
| 1010 | return self.type == FIFOTYPE |
| 1011 | def issparse(self): |
| 1012 | return self.type == GNUTYPE_SPARSE |
| 1013 | def isdev(self): |
| 1014 | return self.type in (CHRTYPE, BLKTYPE, FIFOTYPE) |
| 1015 | # class TarInfo |
| 1016 | |
| 1017 | class TarFile(object): |
| 1018 | """The TarFile Class provides an interface to tar archives. |
| 1019 | """ |
| 1020 | |
| 1021 | debug = 0 # May be set from 0 (no msgs) to 3 (all msgs) |
| 1022 | |
| 1023 | dereference = False # If true, add content of linked file to the |
| 1024 | # tar file, else the link. |
| 1025 | |
| 1026 | ignore_zeros = False # If true, skips empty or invalid blocks and |
| 1027 | # continues processing. |
| 1028 | |
| 1029 | errorlevel = 0 # If 0, fatal errors only appear in debug |
| 1030 | # messages (if debug >= 0). If > 0, errors |
| 1031 | # are passed to the caller as exceptions. |
| 1032 | |
Martin v. Löwis | 75b9da4 | 2004-08-18 13:57:44 +0000 | [diff] [blame] | 1033 | posix = False # If True, generates POSIX.1-1990-compliant |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1034 | # archives (no GNU extensions!) |
| 1035 | |
| 1036 | fileobject = ExFileObject |
| 1037 | |
| 1038 | def __init__(self, name=None, mode="r", fileobj=None): |
| 1039 | """Open an (uncompressed) tar archive `name'. `mode' is either 'r' to |
| 1040 | read from an existing archive, 'a' to append data to an existing |
| 1041 | file or 'w' to create a new file overwriting an existing one. `mode' |
| 1042 | defaults to 'r'. |
| 1043 | If `fileobj' is given, it is used for reading or writing data. If it |
| 1044 | can be determined, `mode' is overridden by `fileobj's mode. |
| 1045 | `fileobj' is not closed, when TarFile is closed. |
| 1046 | """ |
Lars Gustäbel | 9319e43 | 2007-04-20 20:10:59 +0000 | [diff] [blame] | 1047 | self.name = name |
| 1048 | if self.name is not None: |
| 1049 | self.name = os.path.abspath(name) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1050 | |
| 1051 | if len(mode) > 1 or mode not in "raw": |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1052 | raise ValueError("mode must be 'r', 'a' or 'w'") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1053 | self._mode = mode |
| 1054 | self.mode = {"r": "rb", "a": "r+b", "w": "wb"}[mode] |
| 1055 | |
| 1056 | if not fileobj: |
| 1057 | fileobj = file(self.name, self.mode) |
| 1058 | self._extfileobj = False |
| 1059 | else: |
| 1060 | if self.name is None and hasattr(fileobj, "name"): |
Lars Gustäbel | 12e087a | 2006-12-23 18:13:57 +0000 | [diff] [blame] | 1061 | self.name = os.path.abspath(fileobj.name) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1062 | if hasattr(fileobj, "mode"): |
| 1063 | self.mode = fileobj.mode |
| 1064 | self._extfileobj = True |
| 1065 | self.fileobj = fileobj |
| 1066 | |
| 1067 | # Init datastructures |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1068 | self.closed = False |
| 1069 | self.members = [] # list of members as TarInfo objects |
| 1070 | self._loaded = False # flag if all members have been read |
| 1071 | self.offset = 0L # current position in the archive file |
| 1072 | self.inodes = {} # dictionary caching the inodes of |
| 1073 | # archive members already added |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1074 | |
| 1075 | if self._mode == "r": |
| 1076 | self.firstmember = None |
| 1077 | self.firstmember = self.next() |
| 1078 | |
| 1079 | if self._mode == "a": |
| 1080 | # Move to the end of the archive, |
| 1081 | # before the first empty block. |
| 1082 | self.firstmember = None |
| 1083 | while True: |
| 1084 | try: |
| 1085 | tarinfo = self.next() |
| 1086 | except ReadError: |
| 1087 | self.fileobj.seek(0) |
| 1088 | break |
| 1089 | if tarinfo is None: |
| 1090 | self.fileobj.seek(- BLOCKSIZE, 1) |
| 1091 | break |
| 1092 | |
| 1093 | if self._mode in "aw": |
| 1094 | self._loaded = True |
| 1095 | |
| 1096 | #-------------------------------------------------------------------------- |
| 1097 | # Below are the classmethods which act as alternate constructors to the |
| 1098 | # TarFile class. The open() method is the only one that is needed for |
| 1099 | # public use; it is the "super"-constructor and is able to select an |
| 1100 | # adequate "sub"-constructor for a particular compression using the mapping |
| 1101 | # from OPEN_METH. |
| 1102 | # |
| 1103 | # This concept allows one to subclass TarFile without losing the comfort of |
| 1104 | # the super-constructor. A sub-constructor is registered and made available |
| 1105 | # by adding it to the mapping in OPEN_METH. |
| 1106 | |
Guido van Rossum | 75b64e6 | 2005-01-16 00:16:11 +0000 | [diff] [blame] | 1107 | @classmethod |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1108 | def open(cls, name=None, mode="r", fileobj=None, bufsize=20*512): |
| 1109 | """Open a tar archive for reading, writing or appending. Return |
| 1110 | an appropriate TarFile class. |
| 1111 | |
| 1112 | mode: |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 1113 | 'r' or 'r:*' open for reading with transparent compression |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1114 | 'r:' open for reading exclusively uncompressed |
| 1115 | 'r:gz' open for reading with gzip compression |
| 1116 | 'r:bz2' open for reading with bzip2 compression |
| 1117 | 'a' or 'a:' open for appending |
| 1118 | 'w' or 'w:' open for writing without compression |
| 1119 | 'w:gz' open for writing with gzip compression |
| 1120 | 'w:bz2' open for writing with bzip2 compression |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 1121 | |
| 1122 | 'r|*' open a stream of tar blocks with transparent compression |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1123 | 'r|' open an uncompressed stream of tar blocks for reading |
| 1124 | 'r|gz' open a gzip compressed stream of tar blocks |
| 1125 | 'r|bz2' open a bzip2 compressed stream of tar blocks |
| 1126 | 'w|' open an uncompressed stream for writing |
| 1127 | 'w|gz' open a gzip compressed stream for writing |
| 1128 | 'w|bz2' open a bzip2 compressed stream for writing |
| 1129 | """ |
| 1130 | |
| 1131 | if not name and not fileobj: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1132 | raise ValueError("nothing to open") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1133 | |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 1134 | if mode in ("r", "r:*"): |
| 1135 | # Find out which *open() is appropriate for opening the file. |
| 1136 | for comptype in cls.OPEN_METH: |
| 1137 | func = getattr(cls, cls.OPEN_METH[comptype]) |
Lars Gustäbel | f9a2c63 | 2006-12-27 10:36:58 +0000 | [diff] [blame] | 1138 | if fileobj is not None: |
| 1139 | saved_pos = fileobj.tell() |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 1140 | try: |
| 1141 | return func(name, "r", fileobj) |
| 1142 | except (ReadError, CompressionError): |
Lars Gustäbel | f9a2c63 | 2006-12-27 10:36:58 +0000 | [diff] [blame] | 1143 | if fileobj is not None: |
| 1144 | fileobj.seek(saved_pos) |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 1145 | continue |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1146 | raise ReadError("file could not be opened successfully") |
Martin v. Löwis | 78be7df | 2005-03-05 12:47:42 +0000 | [diff] [blame] | 1147 | |
| 1148 | elif ":" in mode: |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1149 | filemode, comptype = mode.split(":", 1) |
| 1150 | filemode = filemode or "r" |
| 1151 | comptype = comptype or "tar" |
| 1152 | |
| 1153 | # Select the *open() function according to |
| 1154 | # given compression. |
| 1155 | if comptype in cls.OPEN_METH: |
| 1156 | func = getattr(cls, cls.OPEN_METH[comptype]) |
| 1157 | else: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1158 | raise CompressionError("unknown compression type %r" % comptype) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1159 | return func(name, filemode, fileobj) |
| 1160 | |
| 1161 | elif "|" in mode: |
| 1162 | filemode, comptype = mode.split("|", 1) |
| 1163 | filemode = filemode or "r" |
| 1164 | comptype = comptype or "tar" |
| 1165 | |
| 1166 | if filemode not in "rw": |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1167 | raise ValueError("mode must be 'r' or 'w'") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1168 | |
| 1169 | t = cls(name, filemode, |
| 1170 | _Stream(name, filemode, comptype, fileobj, bufsize)) |
| 1171 | t._extfileobj = False |
| 1172 | return t |
| 1173 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1174 | elif mode in "aw": |
| 1175 | return cls.taropen(name, mode, fileobj) |
| 1176 | |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1177 | raise ValueError("undiscernible mode") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1178 | |
Guido van Rossum | 75b64e6 | 2005-01-16 00:16:11 +0000 | [diff] [blame] | 1179 | @classmethod |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1180 | def taropen(cls, name, mode="r", fileobj=None): |
| 1181 | """Open uncompressed tar archive name for reading or writing. |
| 1182 | """ |
| 1183 | if len(mode) > 1 or mode not in "raw": |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1184 | raise ValueError("mode must be 'r', 'a' or 'w'") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1185 | return cls(name, mode, fileobj) |
| 1186 | |
Guido van Rossum | 75b64e6 | 2005-01-16 00:16:11 +0000 | [diff] [blame] | 1187 | @classmethod |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1188 | def gzopen(cls, name, mode="r", fileobj=None, compresslevel=9): |
| 1189 | """Open gzip compressed tar archive name for reading or writing. |
| 1190 | Appending is not allowed. |
| 1191 | """ |
| 1192 | if len(mode) > 1 or mode not in "rw": |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1193 | raise ValueError("mode must be 'r' or 'w'") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1194 | |
| 1195 | try: |
| 1196 | import gzip |
Neal Norwitz | 4ec6824 | 2003-04-11 03:05:56 +0000 | [diff] [blame] | 1197 | gzip.GzipFile |
| 1198 | except (ImportError, AttributeError): |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1199 | raise CompressionError("gzip module is not available") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1200 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1201 | if fileobj is None: |
| 1202 | fileobj = file(name, mode + "b") |
| 1203 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1204 | try: |
Lars Gustäbel | 12e087a | 2006-12-23 18:13:57 +0000 | [diff] [blame] | 1205 | t = cls.taropen(name, mode, |
| 1206 | gzip.GzipFile(name, mode, compresslevel, fileobj)) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1207 | except IOError: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1208 | raise ReadError("not a gzip file") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1209 | t._extfileobj = False |
| 1210 | return t |
| 1211 | |
Guido van Rossum | 75b64e6 | 2005-01-16 00:16:11 +0000 | [diff] [blame] | 1212 | @classmethod |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1213 | def bz2open(cls, name, mode="r", fileobj=None, compresslevel=9): |
| 1214 | """Open bzip2 compressed tar archive name for reading or writing. |
| 1215 | Appending is not allowed. |
| 1216 | """ |
| 1217 | if len(mode) > 1 or mode not in "rw": |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1218 | raise ValueError("mode must be 'r' or 'w'.") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1219 | |
| 1220 | try: |
| 1221 | import bz2 |
| 1222 | except ImportError: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1223 | raise CompressionError("bz2 module is not available") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1224 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1225 | if fileobj is not None: |
Georg Brandl | 49c8f4c | 2006-05-15 19:30:35 +0000 | [diff] [blame] | 1226 | fileobj = _BZ2Proxy(fileobj, mode) |
| 1227 | else: |
| 1228 | fileobj = bz2.BZ2File(name, mode, compresslevel=compresslevel) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1229 | |
| 1230 | try: |
Lars Gustäbel | 12e087a | 2006-12-23 18:13:57 +0000 | [diff] [blame] | 1231 | t = cls.taropen(name, mode, fileobj) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1232 | except IOError: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1233 | raise ReadError("not a bzip2 file") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1234 | t._extfileobj = False |
| 1235 | return t |
| 1236 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1237 | # All *open() methods are registered here. |
| 1238 | OPEN_METH = { |
| 1239 | "tar": "taropen", # uncompressed tar |
| 1240 | "gz": "gzopen", # gzip compressed tar |
| 1241 | "bz2": "bz2open" # bzip2 compressed tar |
| 1242 | } |
| 1243 | |
| 1244 | #-------------------------------------------------------------------------- |
| 1245 | # The public methods which TarFile provides: |
| 1246 | |
| 1247 | def close(self): |
| 1248 | """Close the TarFile. In write-mode, two finishing zero blocks are |
| 1249 | appended to the archive. |
| 1250 | """ |
| 1251 | if self.closed: |
| 1252 | return |
| 1253 | |
| 1254 | if self._mode in "aw": |
| 1255 | self.fileobj.write(NUL * (BLOCKSIZE * 2)) |
| 1256 | self.offset += (BLOCKSIZE * 2) |
| 1257 | # fill up the end with zero-blocks |
| 1258 | # (like option -b20 for tar does) |
| 1259 | blocks, remainder = divmod(self.offset, RECORDSIZE) |
| 1260 | if remainder > 0: |
| 1261 | self.fileobj.write(NUL * (RECORDSIZE - remainder)) |
| 1262 | |
| 1263 | if not self._extfileobj: |
| 1264 | self.fileobj.close() |
| 1265 | self.closed = True |
| 1266 | |
| 1267 | def getmember(self, name): |
| 1268 | """Return a TarInfo object for member `name'. If `name' can not be |
| 1269 | found in the archive, KeyError is raised. If a member occurs more |
| 1270 | than once in the archive, its last occurence is assumed to be the |
| 1271 | most up-to-date version. |
| 1272 | """ |
Martin v. Löwis | f3c5611 | 2004-09-18 09:08:52 +0000 | [diff] [blame] | 1273 | tarinfo = self._getmember(name) |
| 1274 | if tarinfo is None: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1275 | raise KeyError("filename %r not found" % name) |
Martin v. Löwis | f3c5611 | 2004-09-18 09:08:52 +0000 | [diff] [blame] | 1276 | return tarinfo |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1277 | |
| 1278 | def getmembers(self): |
| 1279 | """Return the members of the archive as a list of TarInfo objects. The |
| 1280 | list has the same order as the members in the archive. |
| 1281 | """ |
| 1282 | self._check() |
| 1283 | if not self._loaded: # if we want to obtain a list of |
| 1284 | self._load() # all members, we first have to |
| 1285 | # scan the whole archive. |
| 1286 | return self.members |
| 1287 | |
| 1288 | def getnames(self): |
| 1289 | """Return the members of the archive as a list of their names. It has |
| 1290 | the same order as the list returned by getmembers(). |
| 1291 | """ |
Martin v. Löwis | f3c5611 | 2004-09-18 09:08:52 +0000 | [diff] [blame] | 1292 | return [tarinfo.name for tarinfo in self.getmembers()] |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1293 | |
| 1294 | def gettarinfo(self, name=None, arcname=None, fileobj=None): |
| 1295 | """Create a TarInfo object for either the file `name' or the file |
| 1296 | object `fileobj' (using os.fstat on its file descriptor). You can |
| 1297 | modify some of the TarInfo's attributes before you add it using |
| 1298 | addfile(). If given, `arcname' specifies an alternative name for the |
| 1299 | file in the archive. |
| 1300 | """ |
| 1301 | self._check("aw") |
| 1302 | |
| 1303 | # When fileobj is given, replace name by |
| 1304 | # fileobj's real name. |
| 1305 | if fileobj is not None: |
| 1306 | name = fileobj.name |
| 1307 | |
| 1308 | # Building the name of the member in the archive. |
| 1309 | # Backward slashes are converted to forward slashes, |
| 1310 | # Absolute paths are turned to relative paths. |
| 1311 | if arcname is None: |
| 1312 | arcname = name |
| 1313 | arcname = normpath(arcname) |
| 1314 | drv, arcname = os.path.splitdrive(arcname) |
| 1315 | while arcname[0:1] == "/": |
| 1316 | arcname = arcname[1:] |
| 1317 | |
| 1318 | # Now, fill the TarInfo object with |
| 1319 | # information specific for the file. |
| 1320 | tarinfo = TarInfo() |
| 1321 | |
| 1322 | # Use os.stat or os.lstat, depending on platform |
| 1323 | # and if symlinks shall be resolved. |
| 1324 | if fileobj is None: |
| 1325 | if hasattr(os, "lstat") and not self.dereference: |
| 1326 | statres = os.lstat(name) |
| 1327 | else: |
| 1328 | statres = os.stat(name) |
| 1329 | else: |
| 1330 | statres = os.fstat(fileobj.fileno()) |
| 1331 | linkname = "" |
| 1332 | |
| 1333 | stmd = statres.st_mode |
| 1334 | if stat.S_ISREG(stmd): |
| 1335 | inode = (statres.st_ino, statres.st_dev) |
Neal Norwitz | b0e32e2 | 2005-10-20 04:50:13 +0000 | [diff] [blame] | 1336 | if not self.dereference and \ |
| 1337 | statres.st_nlink > 1 and inode in self.inodes: |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1338 | # Is it a hardlink to an already |
| 1339 | # archived file? |
| 1340 | type = LNKTYPE |
| 1341 | linkname = self.inodes[inode] |
| 1342 | else: |
| 1343 | # The inode is added only if its valid. |
| 1344 | # For win32 it is always 0. |
| 1345 | type = REGTYPE |
| 1346 | if inode[0]: |
| 1347 | self.inodes[inode] = arcname |
| 1348 | elif stat.S_ISDIR(stmd): |
| 1349 | type = DIRTYPE |
| 1350 | if arcname[-1:] != "/": |
| 1351 | arcname += "/" |
| 1352 | elif stat.S_ISFIFO(stmd): |
| 1353 | type = FIFOTYPE |
| 1354 | elif stat.S_ISLNK(stmd): |
| 1355 | type = SYMTYPE |
| 1356 | linkname = os.readlink(name) |
| 1357 | elif stat.S_ISCHR(stmd): |
| 1358 | type = CHRTYPE |
| 1359 | elif stat.S_ISBLK(stmd): |
| 1360 | type = BLKTYPE |
| 1361 | else: |
| 1362 | return None |
| 1363 | |
| 1364 | # Fill the TarInfo object with all |
| 1365 | # information we can get. |
Martin v. Löwis | 5dbdc59 | 2005-08-27 10:07:56 +0000 | [diff] [blame] | 1366 | tarinfo.name = arcname |
| 1367 | tarinfo.mode = stmd |
| 1368 | tarinfo.uid = statres.st_uid |
| 1369 | tarinfo.gid = statres.st_gid |
| 1370 | if stat.S_ISREG(stmd): |
Martin v. Löwis | 61d77e0 | 2004-08-20 06:35:46 +0000 | [diff] [blame] | 1371 | tarinfo.size = statres.st_size |
Martin v. Löwis | 5dbdc59 | 2005-08-27 10:07:56 +0000 | [diff] [blame] | 1372 | else: |
| 1373 | tarinfo.size = 0L |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1374 | tarinfo.mtime = statres.st_mtime |
Martin v. Löwis | 5dbdc59 | 2005-08-27 10:07:56 +0000 | [diff] [blame] | 1375 | tarinfo.type = type |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1376 | tarinfo.linkname = linkname |
| 1377 | if pwd: |
| 1378 | try: |
| 1379 | tarinfo.uname = pwd.getpwuid(tarinfo.uid)[0] |
| 1380 | except KeyError: |
| 1381 | pass |
| 1382 | if grp: |
| 1383 | try: |
| 1384 | tarinfo.gname = grp.getgrgid(tarinfo.gid)[0] |
| 1385 | except KeyError: |
| 1386 | pass |
| 1387 | |
| 1388 | if type in (CHRTYPE, BLKTYPE): |
| 1389 | if hasattr(os, "major") and hasattr(os, "minor"): |
| 1390 | tarinfo.devmajor = os.major(statres.st_rdev) |
| 1391 | tarinfo.devminor = os.minor(statres.st_rdev) |
| 1392 | return tarinfo |
| 1393 | |
| 1394 | def list(self, verbose=True): |
| 1395 | """Print a table of contents to sys.stdout. If `verbose' is False, only |
| 1396 | the names of the members are printed. If it is True, an `ls -l'-like |
| 1397 | output is produced. |
| 1398 | """ |
| 1399 | self._check() |
| 1400 | |
| 1401 | for tarinfo in self: |
| 1402 | if verbose: |
| 1403 | print filemode(tarinfo.mode), |
| 1404 | print "%s/%s" % (tarinfo.uname or tarinfo.uid, |
| 1405 | tarinfo.gname or tarinfo.gid), |
| 1406 | if tarinfo.ischr() or tarinfo.isblk(): |
| 1407 | print "%10s" % ("%d,%d" \ |
| 1408 | % (tarinfo.devmajor, tarinfo.devminor)), |
| 1409 | else: |
| 1410 | print "%10d" % tarinfo.size, |
| 1411 | print "%d-%02d-%02d %02d:%02d:%02d" \ |
| 1412 | % time.localtime(tarinfo.mtime)[:6], |
| 1413 | |
| 1414 | print tarinfo.name, |
| 1415 | |
| 1416 | if verbose: |
| 1417 | if tarinfo.issym(): |
| 1418 | print "->", tarinfo.linkname, |
| 1419 | if tarinfo.islnk(): |
| 1420 | print "link to", tarinfo.linkname, |
| 1421 | print |
| 1422 | |
| 1423 | def add(self, name, arcname=None, recursive=True): |
| 1424 | """Add the file `name' to the archive. `name' may be any type of file |
| 1425 | (directory, fifo, symbolic link, etc.). If given, `arcname' |
| 1426 | specifies an alternative name for the file in the archive. |
| 1427 | Directories are added recursively by default. This can be avoided by |
| 1428 | setting `recursive' to False. |
| 1429 | """ |
| 1430 | self._check("aw") |
| 1431 | |
| 1432 | if arcname is None: |
| 1433 | arcname = name |
| 1434 | |
| 1435 | # Skip if somebody tries to archive the archive... |
Lars Gustäbel | 12e087a | 2006-12-23 18:13:57 +0000 | [diff] [blame] | 1436 | if self.name is not None and os.path.abspath(name) == self.name: |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1437 | self._dbg(2, "tarfile: Skipped %r" % name) |
| 1438 | return |
| 1439 | |
| 1440 | # Special case: The user wants to add the current |
| 1441 | # working directory. |
| 1442 | if name == ".": |
| 1443 | if recursive: |
| 1444 | if arcname == ".": |
| 1445 | arcname = "" |
| 1446 | for f in os.listdir("."): |
| 1447 | self.add(f, os.path.join(arcname, f)) |
| 1448 | return |
| 1449 | |
| 1450 | self._dbg(1, name) |
| 1451 | |
| 1452 | # Create a TarInfo object from the file. |
| 1453 | tarinfo = self.gettarinfo(name, arcname) |
| 1454 | |
| 1455 | if tarinfo is None: |
| 1456 | self._dbg(1, "tarfile: Unsupported type %r" % name) |
| 1457 | return |
| 1458 | |
| 1459 | # Append the tar header and data to the archive. |
| 1460 | if tarinfo.isreg(): |
| 1461 | f = file(name, "rb") |
| 1462 | self.addfile(tarinfo, f) |
| 1463 | f.close() |
| 1464 | |
Martin v. Löwis | 5dbdc59 | 2005-08-27 10:07:56 +0000 | [diff] [blame] | 1465 | elif tarinfo.isdir(): |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1466 | self.addfile(tarinfo) |
| 1467 | if recursive: |
| 1468 | for f in os.listdir(name): |
| 1469 | self.add(os.path.join(name, f), os.path.join(arcname, f)) |
| 1470 | |
Martin v. Löwis | 5dbdc59 | 2005-08-27 10:07:56 +0000 | [diff] [blame] | 1471 | else: |
| 1472 | self.addfile(tarinfo) |
| 1473 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1474 | def addfile(self, tarinfo, fileobj=None): |
| 1475 | """Add the TarInfo object `tarinfo' to the archive. If `fileobj' is |
| 1476 | given, tarinfo.size bytes are read from it and added to the archive. |
| 1477 | You can create TarInfo objects using gettarinfo(). |
| 1478 | On Windows platforms, `fileobj' should always be opened with mode |
| 1479 | 'rb' to avoid irritation about the file size. |
| 1480 | """ |
| 1481 | self._check("aw") |
| 1482 | |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 1483 | tarinfo = copy.copy(tarinfo) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1484 | |
Georg Brandl | 2527f7f | 2006-10-29 09:16:15 +0000 | [diff] [blame] | 1485 | buf = tarinfo.tobuf(self.posix) |
| 1486 | self.fileobj.write(buf) |
| 1487 | self.offset += len(buf) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1488 | |
| 1489 | # If there's data to follow, append it. |
| 1490 | if fileobj is not None: |
| 1491 | copyfileobj(fileobj, self.fileobj, tarinfo.size) |
| 1492 | blocks, remainder = divmod(tarinfo.size, BLOCKSIZE) |
| 1493 | if remainder > 0: |
| 1494 | self.fileobj.write(NUL * (BLOCKSIZE - remainder)) |
| 1495 | blocks += 1 |
| 1496 | self.offset += blocks * BLOCKSIZE |
| 1497 | |
Martin v. Löwis | f3c5611 | 2004-09-18 09:08:52 +0000 | [diff] [blame] | 1498 | self.members.append(tarinfo) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1499 | |
Martin v. Löwis | 00a73e7 | 2005-03-04 19:40:34 +0000 | [diff] [blame] | 1500 | def extractall(self, path=".", members=None): |
| 1501 | """Extract all members from the archive to the current working |
| 1502 | directory and set owner, modification time and permissions on |
| 1503 | directories afterwards. `path' specifies a different directory |
| 1504 | to extract to. `members' is optional and must be a subset of the |
| 1505 | list returned by getmembers(). |
| 1506 | """ |
| 1507 | directories = [] |
| 1508 | |
| 1509 | if members is None: |
| 1510 | members = self |
| 1511 | |
| 1512 | for tarinfo in members: |
| 1513 | if tarinfo.isdir(): |
| 1514 | # Extract directory with a safe mode, so that |
| 1515 | # all files below can be extracted as well. |
| 1516 | try: |
| 1517 | os.makedirs(os.path.join(path, tarinfo.name), 0777) |
| 1518 | except EnvironmentError: |
| 1519 | pass |
| 1520 | directories.append(tarinfo) |
| 1521 | else: |
| 1522 | self.extract(tarinfo, path) |
| 1523 | |
| 1524 | # Reverse sort directories. |
| 1525 | directories.sort(lambda a, b: cmp(a.name, b.name)) |
| 1526 | directories.reverse() |
| 1527 | |
| 1528 | # Set correct owner, mtime and filemode on directories. |
| 1529 | for tarinfo in directories: |
| 1530 | path = os.path.join(path, tarinfo.name) |
| 1531 | try: |
| 1532 | self.chown(tarinfo, path) |
| 1533 | self.utime(tarinfo, path) |
| 1534 | self.chmod(tarinfo, path) |
| 1535 | except ExtractError, e: |
| 1536 | if self.errorlevel > 1: |
| 1537 | raise |
| 1538 | else: |
| 1539 | self._dbg(1, "tarfile: %s" % e) |
| 1540 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1541 | def extract(self, member, path=""): |
| 1542 | """Extract a member from the archive to the current working directory, |
| 1543 | using its full name. Its file information is extracted as accurately |
| 1544 | as possible. `member' may be a filename or a TarInfo object. You can |
| 1545 | specify a different directory using `path'. |
| 1546 | """ |
| 1547 | self._check("r") |
| 1548 | |
| 1549 | if isinstance(member, TarInfo): |
| 1550 | tarinfo = member |
| 1551 | else: |
| 1552 | tarinfo = self.getmember(member) |
| 1553 | |
Neal Norwitz | a4f651a | 2004-07-20 22:07:44 +0000 | [diff] [blame] | 1554 | # Prepare the link target for makelink(). |
| 1555 | if tarinfo.islnk(): |
| 1556 | tarinfo._link_target = os.path.join(path, tarinfo.linkname) |
| 1557 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1558 | try: |
| 1559 | self._extract_member(tarinfo, os.path.join(path, tarinfo.name)) |
| 1560 | except EnvironmentError, e: |
| 1561 | if self.errorlevel > 0: |
| 1562 | raise |
| 1563 | else: |
| 1564 | if e.filename is None: |
| 1565 | self._dbg(1, "tarfile: %s" % e.strerror) |
| 1566 | else: |
| 1567 | self._dbg(1, "tarfile: %s %r" % (e.strerror, e.filename)) |
| 1568 | except ExtractError, e: |
| 1569 | if self.errorlevel > 1: |
| 1570 | raise |
| 1571 | else: |
| 1572 | self._dbg(1, "tarfile: %s" % e) |
| 1573 | |
| 1574 | def extractfile(self, member): |
| 1575 | """Extract a member from the archive as a file object. `member' may be |
| 1576 | a filename or a TarInfo object. If `member' is a regular file, a |
| 1577 | file-like object is returned. If `member' is a link, a file-like |
| 1578 | object is constructed from the link's target. If `member' is none of |
| 1579 | the above, None is returned. |
| 1580 | The file-like object is read-only and provides the following |
| 1581 | methods: read(), readline(), readlines(), seek() and tell() |
| 1582 | """ |
| 1583 | self._check("r") |
| 1584 | |
| 1585 | if isinstance(member, TarInfo): |
| 1586 | tarinfo = member |
| 1587 | else: |
| 1588 | tarinfo = self.getmember(member) |
| 1589 | |
| 1590 | if tarinfo.isreg(): |
| 1591 | return self.fileobject(self, tarinfo) |
| 1592 | |
| 1593 | elif tarinfo.type not in SUPPORTED_TYPES: |
| 1594 | # If a member's type is unknown, it is treated as a |
| 1595 | # regular file. |
| 1596 | return self.fileobject(self, tarinfo) |
| 1597 | |
| 1598 | elif tarinfo.islnk() or tarinfo.issym(): |
| 1599 | if isinstance(self.fileobj, _Stream): |
| 1600 | # A small but ugly workaround for the case that someone tries |
| 1601 | # to extract a (sym)link as a file-object from a non-seekable |
| 1602 | # stream of tar blocks. |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1603 | raise StreamError("cannot extract (sym)link as file object") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1604 | else: |
Georg Brandl | 7eb4b7d | 2005-07-22 21:49:32 +0000 | [diff] [blame] | 1605 | # A (sym)link's file object is its target's file object. |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1606 | return self.extractfile(self._getmember(tarinfo.linkname, |
| 1607 | tarinfo)) |
| 1608 | else: |
| 1609 | # If there's no data associated with the member (directory, chrdev, |
| 1610 | # blkdev, etc.), return None instead of a file object. |
| 1611 | return None |
| 1612 | |
| 1613 | def _extract_member(self, tarinfo, targetpath): |
| 1614 | """Extract the TarInfo object tarinfo to a physical |
| 1615 | file called targetpath. |
| 1616 | """ |
| 1617 | # Fetch the TarInfo object for the given name |
| 1618 | # and build the destination pathname, replacing |
| 1619 | # forward slashes to platform specific separators. |
| 1620 | if targetpath[-1:] == "/": |
| 1621 | targetpath = targetpath[:-1] |
| 1622 | targetpath = os.path.normpath(targetpath) |
| 1623 | |
| 1624 | # Create all upper directories. |
| 1625 | upperdirs = os.path.dirname(targetpath) |
| 1626 | if upperdirs and not os.path.exists(upperdirs): |
| 1627 | ti = TarInfo() |
| 1628 | ti.name = upperdirs |
| 1629 | ti.type = DIRTYPE |
| 1630 | ti.mode = 0777 |
| 1631 | ti.mtime = tarinfo.mtime |
| 1632 | ti.uid = tarinfo.uid |
| 1633 | ti.gid = tarinfo.gid |
| 1634 | ti.uname = tarinfo.uname |
| 1635 | ti.gname = tarinfo.gname |
| 1636 | try: |
| 1637 | self._extract_member(ti, ti.name) |
| 1638 | except: |
| 1639 | pass |
| 1640 | |
| 1641 | if tarinfo.islnk() or tarinfo.issym(): |
| 1642 | self._dbg(1, "%s -> %s" % (tarinfo.name, tarinfo.linkname)) |
| 1643 | else: |
| 1644 | self._dbg(1, tarinfo.name) |
| 1645 | |
| 1646 | if tarinfo.isreg(): |
| 1647 | self.makefile(tarinfo, targetpath) |
| 1648 | elif tarinfo.isdir(): |
| 1649 | self.makedir(tarinfo, targetpath) |
| 1650 | elif tarinfo.isfifo(): |
| 1651 | self.makefifo(tarinfo, targetpath) |
| 1652 | elif tarinfo.ischr() or tarinfo.isblk(): |
| 1653 | self.makedev(tarinfo, targetpath) |
| 1654 | elif tarinfo.islnk() or tarinfo.issym(): |
| 1655 | self.makelink(tarinfo, targetpath) |
| 1656 | elif tarinfo.type not in SUPPORTED_TYPES: |
| 1657 | self.makeunknown(tarinfo, targetpath) |
| 1658 | else: |
| 1659 | self.makefile(tarinfo, targetpath) |
| 1660 | |
| 1661 | self.chown(tarinfo, targetpath) |
| 1662 | if not tarinfo.issym(): |
| 1663 | self.chmod(tarinfo, targetpath) |
| 1664 | self.utime(tarinfo, targetpath) |
| 1665 | |
| 1666 | #-------------------------------------------------------------------------- |
| 1667 | # Below are the different file methods. They are called via |
| 1668 | # _extract_member() when extract() is called. They can be replaced in a |
| 1669 | # subclass to implement other functionality. |
| 1670 | |
| 1671 | def makedir(self, tarinfo, targetpath): |
| 1672 | """Make a directory called targetpath. |
| 1673 | """ |
| 1674 | try: |
| 1675 | os.mkdir(targetpath) |
| 1676 | except EnvironmentError, e: |
| 1677 | if e.errno != errno.EEXIST: |
| 1678 | raise |
| 1679 | |
| 1680 | def makefile(self, tarinfo, targetpath): |
| 1681 | """Make a file called targetpath. |
| 1682 | """ |
| 1683 | source = self.extractfile(tarinfo) |
| 1684 | target = file(targetpath, "wb") |
| 1685 | copyfileobj(source, target) |
| 1686 | source.close() |
| 1687 | target.close() |
| 1688 | |
| 1689 | def makeunknown(self, tarinfo, targetpath): |
| 1690 | """Make a file from a TarInfo object with an unknown type |
| 1691 | at targetpath. |
| 1692 | """ |
| 1693 | self.makefile(tarinfo, targetpath) |
| 1694 | self._dbg(1, "tarfile: Unknown file type %r, " \ |
| 1695 | "extracted as regular file." % tarinfo.type) |
| 1696 | |
| 1697 | def makefifo(self, tarinfo, targetpath): |
| 1698 | """Make a fifo called targetpath. |
| 1699 | """ |
| 1700 | if hasattr(os, "mkfifo"): |
| 1701 | os.mkfifo(targetpath) |
| 1702 | else: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1703 | raise ExtractError("fifo not supported by system") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1704 | |
| 1705 | def makedev(self, tarinfo, targetpath): |
| 1706 | """Make a character or block device called targetpath. |
| 1707 | """ |
| 1708 | if not hasattr(os, "mknod") or not hasattr(os, "makedev"): |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1709 | raise ExtractError("special devices not supported by system") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1710 | |
| 1711 | mode = tarinfo.mode |
| 1712 | if tarinfo.isblk(): |
| 1713 | mode |= stat.S_IFBLK |
| 1714 | else: |
| 1715 | mode |= stat.S_IFCHR |
| 1716 | |
| 1717 | os.mknod(targetpath, mode, |
| 1718 | os.makedev(tarinfo.devmajor, tarinfo.devminor)) |
| 1719 | |
| 1720 | def makelink(self, tarinfo, targetpath): |
| 1721 | """Make a (symbolic) link called targetpath. If it cannot be created |
| 1722 | (platform limitation), we try to make a copy of the referenced file |
| 1723 | instead of a link. |
| 1724 | """ |
| 1725 | linkpath = tarinfo.linkname |
| 1726 | try: |
| 1727 | if tarinfo.issym(): |
| 1728 | os.symlink(linkpath, targetpath) |
| 1729 | else: |
Neal Norwitz | a4f651a | 2004-07-20 22:07:44 +0000 | [diff] [blame] | 1730 | # See extract(). |
| 1731 | os.link(tarinfo._link_target, targetpath) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1732 | except AttributeError: |
| 1733 | if tarinfo.issym(): |
| 1734 | linkpath = os.path.join(os.path.dirname(tarinfo.name), |
| 1735 | linkpath) |
| 1736 | linkpath = normpath(linkpath) |
| 1737 | |
| 1738 | try: |
| 1739 | self._extract_member(self.getmember(linkpath), targetpath) |
| 1740 | except (EnvironmentError, KeyError), e: |
| 1741 | linkpath = os.path.normpath(linkpath) |
| 1742 | try: |
| 1743 | shutil.copy2(linkpath, targetpath) |
| 1744 | except EnvironmentError, e: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1745 | raise IOError("link could not be created") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1746 | |
| 1747 | def chown(self, tarinfo, targetpath): |
| 1748 | """Set owner of targetpath according to tarinfo. |
| 1749 | """ |
| 1750 | if pwd and hasattr(os, "geteuid") and os.geteuid() == 0: |
| 1751 | # We have to be root to do so. |
| 1752 | try: |
| 1753 | g = grp.getgrnam(tarinfo.gname)[2] |
| 1754 | except KeyError: |
| 1755 | try: |
| 1756 | g = grp.getgrgid(tarinfo.gid)[2] |
| 1757 | except KeyError: |
| 1758 | g = os.getgid() |
| 1759 | try: |
| 1760 | u = pwd.getpwnam(tarinfo.uname)[2] |
| 1761 | except KeyError: |
| 1762 | try: |
| 1763 | u = pwd.getpwuid(tarinfo.uid)[2] |
| 1764 | except KeyError: |
| 1765 | u = os.getuid() |
| 1766 | try: |
| 1767 | if tarinfo.issym() and hasattr(os, "lchown"): |
| 1768 | os.lchown(targetpath, u, g) |
| 1769 | else: |
Andrew MacIntyre | 7970d20 | 2003-02-19 12:51:34 +0000 | [diff] [blame] | 1770 | if sys.platform != "os2emx": |
| 1771 | os.chown(targetpath, u, g) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1772 | except EnvironmentError, e: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1773 | raise ExtractError("could not change owner") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1774 | |
| 1775 | def chmod(self, tarinfo, targetpath): |
| 1776 | """Set file permissions of targetpath according to tarinfo. |
| 1777 | """ |
Jack Jansen | 834eff6 | 2003-03-07 12:47:06 +0000 | [diff] [blame] | 1778 | if hasattr(os, 'chmod'): |
| 1779 | try: |
| 1780 | os.chmod(targetpath, tarinfo.mode) |
| 1781 | except EnvironmentError, e: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1782 | raise ExtractError("could not change mode") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1783 | |
| 1784 | def utime(self, tarinfo, targetpath): |
| 1785 | """Set modification time of targetpath according to tarinfo. |
| 1786 | """ |
Jack Jansen | 834eff6 | 2003-03-07 12:47:06 +0000 | [diff] [blame] | 1787 | if not hasattr(os, 'utime'): |
Tim Peters | f934778 | 2003-03-07 15:36:41 +0000 | [diff] [blame] | 1788 | return |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1789 | if sys.platform == "win32" and tarinfo.isdir(): |
| 1790 | # According to msdn.microsoft.com, it is an error (EACCES) |
| 1791 | # to use utime() on directories. |
| 1792 | return |
| 1793 | try: |
| 1794 | os.utime(targetpath, (tarinfo.mtime, tarinfo.mtime)) |
| 1795 | except EnvironmentError, e: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1796 | raise ExtractError("could not change modification time") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1797 | |
| 1798 | #-------------------------------------------------------------------------- |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1799 | def next(self): |
| 1800 | """Return the next member of the archive as a TarInfo object, when |
| 1801 | TarFile is opened for reading. Return None if there is no more |
| 1802 | available. |
| 1803 | """ |
| 1804 | self._check("ra") |
| 1805 | if self.firstmember is not None: |
| 1806 | m = self.firstmember |
| 1807 | self.firstmember = None |
| 1808 | return m |
| 1809 | |
| 1810 | # Read the next block. |
Andrew M. Kuchling | 864bba1 | 2004-07-10 22:02:11 +0000 | [diff] [blame] | 1811 | self.fileobj.seek(self.offset) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1812 | while True: |
| 1813 | buf = self.fileobj.read(BLOCKSIZE) |
| 1814 | if not buf: |
| 1815 | return None |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1816 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1817 | try: |
| 1818 | tarinfo = TarInfo.frombuf(buf) |
Tim Peters | 8a299d2 | 2006-05-19 19:16:34 +0000 | [diff] [blame] | 1819 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1820 | # Set the TarInfo object's offset to the current position of the |
| 1821 | # TarFile and set self.offset to the position where the data blocks |
| 1822 | # should begin. |
| 1823 | tarinfo.offset = self.offset |
| 1824 | self.offset += BLOCKSIZE |
| 1825 | |
| 1826 | tarinfo = self.proc_member(tarinfo) |
| 1827 | |
| 1828 | except ValueError, e: |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1829 | if self.ignore_zeros: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1830 | self._dbg(2, "0x%X: empty or invalid block: %s" % |
| 1831 | (self.offset, e)) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1832 | self.offset += BLOCKSIZE |
| 1833 | continue |
| 1834 | else: |
Andrew M. Kuchling | 864bba1 | 2004-07-10 22:02:11 +0000 | [diff] [blame] | 1835 | if self.offset == 0: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 1836 | raise ReadError("empty, unreadable or compressed " |
| 1837 | "file: %s" % e) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1838 | return None |
| 1839 | break |
| 1840 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1841 | # Some old tar programs represent a directory as a regular |
| 1842 | # file with a trailing slash. |
| 1843 | if tarinfo.isreg() and tarinfo.name.endswith("/"): |
| 1844 | tarinfo.type = DIRTYPE |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1845 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1846 | # Directory names should have a '/' at the end. |
Lars Gustäbel | d220144 | 2007-04-20 14:49:02 +0000 | [diff] [blame] | 1847 | if tarinfo.isdir() and not tarinfo.name.endswith("/"): |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1848 | tarinfo.name += "/" |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1849 | |
Martin v. Löwis | f3c5611 | 2004-09-18 09:08:52 +0000 | [diff] [blame] | 1850 | self.members.append(tarinfo) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1851 | return tarinfo |
| 1852 | |
| 1853 | #-------------------------------------------------------------------------- |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1854 | # The following are methods that are called depending on the type of a |
| 1855 | # member. The entry point is proc_member() which is called with a TarInfo |
| 1856 | # object created from the header block from the current offset. The |
| 1857 | # proc_member() method can be overridden in a subclass to add custom |
| 1858 | # proc_*() methods. A proc_*() method MUST implement the following |
| 1859 | # operations: |
| 1860 | # 1. Set tarinfo.offset_data to the position where the data blocks begin, |
| 1861 | # if there is data that follows. |
| 1862 | # 2. Set self.offset to the position where the next member's header will |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1863 | # begin. |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1864 | # 3. Return tarinfo or another valid TarInfo object. |
| 1865 | def proc_member(self, tarinfo): |
| 1866 | """Choose the right processing method for tarinfo depending |
| 1867 | on its type and call it. |
| 1868 | """ |
| 1869 | if tarinfo.type in (GNUTYPE_LONGNAME, GNUTYPE_LONGLINK): |
| 1870 | return self.proc_gnulong(tarinfo) |
| 1871 | elif tarinfo.type == GNUTYPE_SPARSE: |
| 1872 | return self.proc_sparse(tarinfo) |
| 1873 | else: |
| 1874 | return self.proc_builtin(tarinfo) |
| 1875 | |
| 1876 | def proc_builtin(self, tarinfo): |
| 1877 | """Process a builtin type member or an unknown member |
| 1878 | which will be treated as a regular file. |
| 1879 | """ |
| 1880 | tarinfo.offset_data = self.offset |
| 1881 | if tarinfo.isreg() or tarinfo.type not in SUPPORTED_TYPES: |
| 1882 | # Skip the following data blocks. |
| 1883 | self.offset += self._block(tarinfo.size) |
| 1884 | return tarinfo |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1885 | |
| 1886 | def proc_gnulong(self, tarinfo): |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1887 | """Process the blocks that hold a GNU longname |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1888 | or longlink member. |
| 1889 | """ |
| 1890 | buf = "" |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1891 | count = tarinfo.size |
| 1892 | while count > 0: |
| 1893 | block = self.fileobj.read(BLOCKSIZE) |
| 1894 | buf += block |
| 1895 | self.offset += BLOCKSIZE |
| 1896 | count -= BLOCKSIZE |
| 1897 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1898 | # Fetch the next header and process it. |
| 1899 | b = self.fileobj.read(BLOCKSIZE) |
| 1900 | t = TarInfo.frombuf(b) |
| 1901 | t.offset = self.offset |
| 1902 | self.offset += BLOCKSIZE |
| 1903 | next = self.proc_member(t) |
Andrew M. Kuchling | 864bba1 | 2004-07-10 22:02:11 +0000 | [diff] [blame] | 1904 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1905 | # Patch the TarInfo object from the next header with |
| 1906 | # the longname information. |
Andrew M. Kuchling | 864bba1 | 2004-07-10 22:02:11 +0000 | [diff] [blame] | 1907 | next.offset = tarinfo.offset |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1908 | if tarinfo.type == GNUTYPE_LONGNAME: |
Georg Brandl | e895318 | 2006-05-27 14:02:03 +0000 | [diff] [blame] | 1909 | next.name = buf.rstrip(NUL) |
Andrew M. Kuchling | 864bba1 | 2004-07-10 22:02:11 +0000 | [diff] [blame] | 1910 | elif tarinfo.type == GNUTYPE_LONGLINK: |
Georg Brandl | e895318 | 2006-05-27 14:02:03 +0000 | [diff] [blame] | 1911 | next.linkname = buf.rstrip(NUL) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1912 | |
Andrew M. Kuchling | 864bba1 | 2004-07-10 22:02:11 +0000 | [diff] [blame] | 1913 | return next |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1914 | |
| 1915 | def proc_sparse(self, tarinfo): |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1916 | """Process a GNU sparse header plus extra headers. |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1917 | """ |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1918 | buf = tarinfo.buf |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1919 | sp = _ringbuffer() |
| 1920 | pos = 386 |
| 1921 | lastpos = 0L |
| 1922 | realpos = 0L |
| 1923 | # There are 4 possible sparse structs in the |
| 1924 | # first header. |
| 1925 | for i in xrange(4): |
| 1926 | try: |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1927 | offset = nti(buf[pos:pos + 12]) |
| 1928 | numbytes = nti(buf[pos + 12:pos + 24]) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1929 | except ValueError: |
| 1930 | break |
| 1931 | if offset > lastpos: |
| 1932 | sp.append(_hole(lastpos, offset - lastpos)) |
| 1933 | sp.append(_data(offset, numbytes, realpos)) |
| 1934 | realpos += numbytes |
| 1935 | lastpos = offset + numbytes |
| 1936 | pos += 24 |
| 1937 | |
| 1938 | isextended = ord(buf[482]) |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1939 | origsize = nti(buf[483:495]) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1940 | |
| 1941 | # If the isextended flag is given, |
| 1942 | # there are extra headers to process. |
| 1943 | while isextended == 1: |
| 1944 | buf = self.fileobj.read(BLOCKSIZE) |
| 1945 | self.offset += BLOCKSIZE |
| 1946 | pos = 0 |
| 1947 | for i in xrange(21): |
| 1948 | try: |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1949 | offset = nti(buf[pos:pos + 12]) |
| 1950 | numbytes = nti(buf[pos + 12:pos + 24]) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1951 | except ValueError: |
| 1952 | break |
| 1953 | if offset > lastpos: |
| 1954 | sp.append(_hole(lastpos, offset - lastpos)) |
| 1955 | sp.append(_data(offset, numbytes, realpos)) |
| 1956 | realpos += numbytes |
| 1957 | lastpos = offset + numbytes |
| 1958 | pos += 24 |
| 1959 | isextended = ord(buf[504]) |
| 1960 | |
| 1961 | if lastpos < origsize: |
| 1962 | sp.append(_hole(lastpos, origsize - lastpos)) |
| 1963 | |
| 1964 | tarinfo.sparse = sp |
| 1965 | |
| 1966 | tarinfo.offset_data = self.offset |
| 1967 | self.offset += self._block(tarinfo.size) |
| 1968 | tarinfo.size = origsize |
Andrew M. Kuchling | 864bba1 | 2004-07-10 22:02:11 +0000 | [diff] [blame] | 1969 | |
Georg Brandl | 38c6a22 | 2006-05-10 16:26:03 +0000 | [diff] [blame] | 1970 | return tarinfo |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1971 | |
| 1972 | #-------------------------------------------------------------------------- |
| 1973 | # Little helper methods: |
| 1974 | |
| 1975 | def _block(self, count): |
| 1976 | """Round up a byte count by BLOCKSIZE and return it, |
| 1977 | e.g. _block(834) => 1024. |
| 1978 | """ |
| 1979 | blocks, remainder = divmod(count, BLOCKSIZE) |
| 1980 | if remainder: |
| 1981 | blocks += 1 |
| 1982 | return blocks * BLOCKSIZE |
| 1983 | |
| 1984 | def _getmember(self, name, tarinfo=None): |
| 1985 | """Find an archive member by name from bottom to top. |
| 1986 | If tarinfo is given, it is used as the starting point. |
| 1987 | """ |
Martin v. Löwis | f3c5611 | 2004-09-18 09:08:52 +0000 | [diff] [blame] | 1988 | # Ensure that all members have been loaded. |
| 1989 | members = self.getmembers() |
| 1990 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1991 | if tarinfo is None: |
Martin v. Löwis | f3c5611 | 2004-09-18 09:08:52 +0000 | [diff] [blame] | 1992 | end = len(members) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1993 | else: |
Martin v. Löwis | f3c5611 | 2004-09-18 09:08:52 +0000 | [diff] [blame] | 1994 | end = members.index(tarinfo) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 1995 | |
| 1996 | for i in xrange(end - 1, -1, -1): |
Martin v. Löwis | f3c5611 | 2004-09-18 09:08:52 +0000 | [diff] [blame] | 1997 | if name == members[i].name: |
| 1998 | return members[i] |
Andrew M. Kuchling | 864bba1 | 2004-07-10 22:02:11 +0000 | [diff] [blame] | 1999 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 2000 | def _load(self): |
| 2001 | """Read through the entire archive file and look for readable |
| 2002 | members. |
| 2003 | """ |
| 2004 | while True: |
| 2005 | tarinfo = self.next() |
| 2006 | if tarinfo is None: |
| 2007 | break |
| 2008 | self._loaded = True |
| 2009 | |
| 2010 | def _check(self, mode=None): |
| 2011 | """Check if TarFile is still open, and if the operation's mode |
| 2012 | corresponds to TarFile's mode. |
| 2013 | """ |
| 2014 | if self.closed: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 2015 | raise IOError("%s is closed" % self.__class__.__name__) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 2016 | if mode is not None and self._mode not in mode: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 2017 | raise IOError("bad operation for mode %r" % self._mode) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 2018 | |
| 2019 | def __iter__(self): |
| 2020 | """Provide an iterator object. |
| 2021 | """ |
| 2022 | if self._loaded: |
| 2023 | return iter(self.members) |
| 2024 | else: |
| 2025 | return TarIter(self) |
| 2026 | |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 2027 | def _dbg(self, level, msg): |
| 2028 | """Write debugging output to sys.stderr. |
| 2029 | """ |
| 2030 | if level <= self.debug: |
| 2031 | print >> sys.stderr, msg |
| 2032 | # class TarFile |
| 2033 | |
| 2034 | class TarIter: |
| 2035 | """Iterator Class. |
| 2036 | |
| 2037 | for tarinfo in TarFile(...): |
| 2038 | suite... |
| 2039 | """ |
| 2040 | |
| 2041 | def __init__(self, tarfile): |
| 2042 | """Construct a TarIter object. |
| 2043 | """ |
| 2044 | self.tarfile = tarfile |
Martin v. Löwis | 637431b | 2005-03-03 23:12:42 +0000 | [diff] [blame] | 2045 | self.index = 0 |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 2046 | def __iter__(self): |
| 2047 | """Return iterator object. |
| 2048 | """ |
| 2049 | return self |
| 2050 | def next(self): |
| 2051 | """Return the next item using TarFile's next() method. |
| 2052 | When all members have been read, set TarFile as _loaded. |
| 2053 | """ |
Martin v. Löwis | 637431b | 2005-03-03 23:12:42 +0000 | [diff] [blame] | 2054 | # Fix for SF #1100429: Under rare circumstances it can |
| 2055 | # happen that getmembers() is called during iteration, |
| 2056 | # which will cause TarIter to stop prematurely. |
| 2057 | if not self.tarfile._loaded: |
| 2058 | tarinfo = self.tarfile.next() |
| 2059 | if not tarinfo: |
| 2060 | self.tarfile._loaded = True |
| 2061 | raise StopIteration |
| 2062 | else: |
| 2063 | try: |
| 2064 | tarinfo = self.tarfile.members[self.index] |
| 2065 | except IndexError: |
| 2066 | raise StopIteration |
| 2067 | self.index += 1 |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 2068 | return tarinfo |
| 2069 | |
| 2070 | # Helper classes for sparse file support |
| 2071 | class _section: |
| 2072 | """Base class for _data and _hole. |
| 2073 | """ |
| 2074 | def __init__(self, offset, size): |
| 2075 | self.offset = offset |
| 2076 | self.size = size |
| 2077 | def __contains__(self, offset): |
| 2078 | return self.offset <= offset < self.offset + self.size |
| 2079 | |
| 2080 | class _data(_section): |
| 2081 | """Represent a data section in a sparse file. |
| 2082 | """ |
| 2083 | def __init__(self, offset, size, realpos): |
| 2084 | _section.__init__(self, offset, size) |
| 2085 | self.realpos = realpos |
| 2086 | |
| 2087 | class _hole(_section): |
| 2088 | """Represent a hole section in a sparse file. |
| 2089 | """ |
| 2090 | pass |
| 2091 | |
| 2092 | class _ringbuffer(list): |
| 2093 | """Ringbuffer class which increases performance |
| 2094 | over a regular list. |
| 2095 | """ |
| 2096 | def __init__(self): |
| 2097 | self.idx = 0 |
| 2098 | def find(self, offset): |
| 2099 | idx = self.idx |
| 2100 | while True: |
| 2101 | item = self[idx] |
| 2102 | if offset in item: |
| 2103 | break |
| 2104 | idx += 1 |
| 2105 | if idx == len(self): |
| 2106 | idx = 0 |
| 2107 | if idx == self.idx: |
| 2108 | # End of File |
| 2109 | return None |
| 2110 | self.idx = idx |
| 2111 | return item |
| 2112 | |
| 2113 | #--------------------------------------------- |
| 2114 | # zipfile compatible TarFile class |
| 2115 | #--------------------------------------------- |
| 2116 | TAR_PLAIN = 0 # zipfile.ZIP_STORED |
| 2117 | TAR_GZIPPED = 8 # zipfile.ZIP_DEFLATED |
| 2118 | class TarFileCompat: |
| 2119 | """TarFile class compatible with standard module zipfile's |
| 2120 | ZipFile class. |
| 2121 | """ |
| 2122 | def __init__(self, file, mode="r", compression=TAR_PLAIN): |
| 2123 | if compression == TAR_PLAIN: |
| 2124 | self.tarfile = TarFile.taropen(file, mode) |
| 2125 | elif compression == TAR_GZIPPED: |
| 2126 | self.tarfile = TarFile.gzopen(file, mode) |
| 2127 | else: |
Georg Brandl | e4751e3 | 2006-05-18 06:11:19 +0000 | [diff] [blame] | 2128 | raise ValueError("unknown compression constant") |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 2129 | if mode[0:1] == "r": |
| 2130 | members = self.tarfile.getmembers() |
Raymond Hettinger | a1d09e2 | 2005-09-11 16:34:05 +0000 | [diff] [blame] | 2131 | for m in members: |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 2132 | m.filename = m.name |
| 2133 | m.file_size = m.size |
| 2134 | m.date_time = time.gmtime(m.mtime)[:6] |
| 2135 | def namelist(self): |
| 2136 | return map(lambda m: m.name, self.infolist()) |
| 2137 | def infolist(self): |
| 2138 | return filter(lambda m: m.type in REGULAR_TYPES, |
| 2139 | self.tarfile.getmembers()) |
| 2140 | def printdir(self): |
| 2141 | self.tarfile.list() |
| 2142 | def testzip(self): |
| 2143 | return |
| 2144 | def getinfo(self, name): |
| 2145 | return self.tarfile.getmember(name) |
| 2146 | def read(self, name): |
| 2147 | return self.tarfile.extractfile(self.tarfile.getmember(name)).read() |
| 2148 | def write(self, filename, arcname=None, compress_type=None): |
| 2149 | self.tarfile.add(filename, arcname) |
| 2150 | def writestr(self, zinfo, bytes): |
Raymond Hettinger | a617271 | 2004-12-31 19:15:26 +0000 | [diff] [blame] | 2151 | try: |
| 2152 | from cStringIO import StringIO |
| 2153 | except ImportError: |
| 2154 | from StringIO import StringIO |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 2155 | import calendar |
| 2156 | zinfo.name = zinfo.filename |
| 2157 | zinfo.size = zinfo.file_size |
| 2158 | zinfo.mtime = calendar.timegm(zinfo.date_time) |
Raymond Hettinger | a617271 | 2004-12-31 19:15:26 +0000 | [diff] [blame] | 2159 | self.tarfile.addfile(zinfo, StringIO(bytes)) |
Neal Norwitz | b9ef4ae | 2003-01-05 23:19:43 +0000 | [diff] [blame] | 2160 | def close(self): |
| 2161 | self.tarfile.close() |
| 2162 | #class TarFileCompat |
| 2163 | |
| 2164 | #-------------------- |
| 2165 | # exported functions |
| 2166 | #-------------------- |
| 2167 | def is_tarfile(name): |
| 2168 | """Return True if name points to a tar archive that we |
| 2169 | are able to handle, else return False. |
| 2170 | """ |
| 2171 | try: |
| 2172 | t = open(name) |
| 2173 | t.close() |
| 2174 | return True |
| 2175 | except TarError: |
| 2176 | return False |
| 2177 | |
| 2178 | open = TarFile.open |