Tarek Ziadé | c339978 | 2010-02-23 05:39:18 +0000 | [diff] [blame] | 1 | """Utility functions for copying and archiving files and directory trees. |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | 959fa01 | 1999-08-18 20:03:17 +0000 | [diff] [blame] | 3 | XXX The functions here don't copy the resource fork or other metadata on Mac. |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 4 | |
| 5 | """ |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 6 | |
Guido van Rossum | c96207a | 1992-03-31 18:55:40 +0000 | [diff] [blame] | 7 | import os |
Guido van Rossum | 83c03e2 | 1999-02-23 23:07:51 +0000 | [diff] [blame] | 8 | import sys |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 9 | import stat |
Brett Cannon | 1c3fa18 | 2004-06-19 21:11:35 +0000 | [diff] [blame] | 10 | from os.path import abspath |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 11 | import fnmatch |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 12 | import collections |
Antoine Pitrou | 910bd51 | 2010-03-22 20:11:09 +0000 | [diff] [blame] | 13 | import errno |
Tarek Ziadé | 6ac9172 | 2010-04-28 17:51:36 +0000 | [diff] [blame] | 14 | import tarfile |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 15 | |
| 16 | try: |
Tarek Ziadé | ffa155a | 2010-04-29 13:34:35 +0000 | [diff] [blame] | 17 | import bz2 |
| 18 | _BZ2_SUPPORTED = True |
| 19 | except ImportError: |
| 20 | _BZ2_SUPPORTED = False |
| 21 | |
| 22 | try: |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 23 | from pwd import getpwnam |
| 24 | except ImportError: |
| 25 | getpwnam = None |
| 26 | |
| 27 | try: |
| 28 | from grp import getgrnam |
| 29 | except ImportError: |
| 30 | getgrnam = None |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 31 | |
Tarek Ziadé | c339978 | 2010-02-23 05:39:18 +0000 | [diff] [blame] | 32 | __all__ = ["copyfileobj", "copyfile", "copymode", "copystat", "copy", "copy2", |
| 33 | "copytree", "move", "rmtree", "Error", "SpecialFileError", |
| 34 | "ExecError", "make_archive", "get_archive_formats", |
Tarek Ziadé | 6ac9172 | 2010-04-28 17:51:36 +0000 | [diff] [blame] | 35 | "register_archive_format", "unregister_archive_format", |
| 36 | "get_unpack_formats", "register_unpack_format", |
Éric Araujo | 5fa8e7a | 2011-08-21 14:29:18 +0200 | [diff] [blame] | 37 | "unregister_unpack_format", "unpack_archive", "ignore_patterns"] |
Martin v. Löwis | e9ce0b0 | 2002-10-07 13:23:24 +0000 | [diff] [blame] | 38 | |
Neal Norwitz | 4ce69a5 | 2005-09-01 00:45:28 +0000 | [diff] [blame] | 39 | class Error(EnvironmentError): |
Martin v. Löwis | e9ce0b0 | 2002-10-07 13:23:24 +0000 | [diff] [blame] | 40 | pass |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 41 | |
Antoine Pitrou | 7fff096 | 2009-05-01 21:09:44 +0000 | [diff] [blame] | 42 | class SpecialFileError(EnvironmentError): |
| 43 | """Raised when trying to do a kind of operation (e.g. copying) which is |
| 44 | not supported on a special file (e.g. a named pipe)""" |
| 45 | |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 46 | class ExecError(EnvironmentError): |
| 47 | """Raised when a command could not be executed""" |
| 48 | |
Tarek Ziadé | 6ac9172 | 2010-04-28 17:51:36 +0000 | [diff] [blame] | 49 | class ReadError(EnvironmentError): |
| 50 | """Raised when an archive cannot be read""" |
| 51 | |
| 52 | class RegistryError(Exception): |
| 53 | """Raised when a registery operation with the archiving |
| 54 | and unpacking registeries fails""" |
| 55 | |
| 56 | |
Georg Brandl | 6aa2d1f | 2008-08-12 08:35:52 +0000 | [diff] [blame] | 57 | try: |
| 58 | WindowsError |
| 59 | except NameError: |
| 60 | WindowsError = None |
| 61 | |
Greg Stein | 42bb8b3 | 2000-07-12 09:55:30 +0000 | [diff] [blame] | 62 | def copyfileobj(fsrc, fdst, length=16*1024): |
| 63 | """copy data from file-like object fsrc to file-like object fdst""" |
| 64 | while 1: |
| 65 | buf = fsrc.read(length) |
| 66 | if not buf: |
| 67 | break |
| 68 | fdst.write(buf) |
| 69 | |
Johannes Gijsbers | 46f1459 | 2004-08-14 13:30:02 +0000 | [diff] [blame] | 70 | def _samefile(src, dst): |
| 71 | # Macintosh, Unix. |
Tarek Ziadé | 1eab9cc | 2010-04-19 21:19:57 +0000 | [diff] [blame] | 72 | if hasattr(os.path, 'samefile'): |
Johannes Gijsbers | f9a098e | 2004-08-14 14:51:01 +0000 | [diff] [blame] | 73 | try: |
| 74 | return os.path.samefile(src, dst) |
| 75 | except OSError: |
| 76 | return False |
Johannes Gijsbers | 46f1459 | 2004-08-14 13:30:02 +0000 | [diff] [blame] | 77 | |
| 78 | # All other platforms: check for same pathname. |
| 79 | return (os.path.normcase(os.path.abspath(src)) == |
| 80 | os.path.normcase(os.path.abspath(dst))) |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 81 | |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 82 | def copyfile(src, dst): |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 83 | """Copy data from src to dst""" |
Johannes Gijsbers | 46f1459 | 2004-08-14 13:30:02 +0000 | [diff] [blame] | 84 | if _samefile(src, dst): |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 85 | raise Error("`%s` and `%s` are the same file" % (src, dst)) |
Johannes Gijsbers | 46f1459 | 2004-08-14 13:30:02 +0000 | [diff] [blame] | 86 | |
Antoine Pitrou | 7fff096 | 2009-05-01 21:09:44 +0000 | [diff] [blame] | 87 | for fn in [src, dst]: |
| 88 | try: |
| 89 | st = os.stat(fn) |
| 90 | except OSError: |
| 91 | # File most likely does not exist |
| 92 | pass |
Benjamin Peterson | c0d98aa | 2009-06-05 19:13:27 +0000 | [diff] [blame] | 93 | else: |
| 94 | # XXX What about other special files? (sockets, devices...) |
| 95 | if stat.S_ISFIFO(st.st_mode): |
| 96 | raise SpecialFileError("`%s` is a named pipe" % fn) |
Tarek Ziadé | b01142b | 2010-05-05 22:43:04 +0000 | [diff] [blame] | 97 | |
Tarek Ziadé | ae4d5c6 | 2010-05-05 22:27:31 +0000 | [diff] [blame] | 98 | with open(src, 'rb') as fsrc: |
| 99 | with open(dst, 'wb') as fdst: |
| 100 | copyfileobj(fsrc, fdst) |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 101 | |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 102 | def copymode(src, dst): |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 103 | """Copy mode bits from src to dst""" |
Tim Peters | 0c94724 | 2001-01-21 20:00:00 +0000 | [diff] [blame] | 104 | if hasattr(os, 'chmod'): |
| 105 | st = os.stat(src) |
Walter Dörwald | 294bbf3 | 2002-06-06 09:48:13 +0000 | [diff] [blame] | 106 | mode = stat.S_IMODE(st.st_mode) |
Tim Peters | 0c94724 | 2001-01-21 20:00:00 +0000 | [diff] [blame] | 107 | os.chmod(dst, mode) |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 108 | |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 109 | def copystat(src, dst): |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 110 | """Copy all stat info (mode bits, atime, mtime, flags) from src to dst""" |
Guido van Rossum | a2baf46 | 1997-04-29 14:06:46 +0000 | [diff] [blame] | 111 | st = os.stat(src) |
Walter Dörwald | 294bbf3 | 2002-06-06 09:48:13 +0000 | [diff] [blame] | 112 | mode = stat.S_IMODE(st.st_mode) |
Tim Peters | 0c94724 | 2001-01-21 20:00:00 +0000 | [diff] [blame] | 113 | if hasattr(os, 'utime'): |
Walter Dörwald | 294bbf3 | 2002-06-06 09:48:13 +0000 | [diff] [blame] | 114 | os.utime(dst, (st.st_atime, st.st_mtime)) |
Tim Peters | 0c94724 | 2001-01-21 20:00:00 +0000 | [diff] [blame] | 115 | if hasattr(os, 'chmod'): |
| 116 | os.chmod(dst, mode) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 117 | if hasattr(os, 'chflags') and hasattr(st, 'st_flags'): |
Antoine Pitrou | 910bd51 | 2010-03-22 20:11:09 +0000 | [diff] [blame] | 118 | try: |
| 119 | os.chflags(dst, st.st_flags) |
| 120 | except OSError as why: |
Tarek Ziadé | 1eab9cc | 2010-04-19 21:19:57 +0000 | [diff] [blame] | 121 | if (not hasattr(errno, 'EOPNOTSUPP') or |
| 122 | why.errno != errno.EOPNOTSUPP): |
Antoine Pitrou | 910bd51 | 2010-03-22 20:11:09 +0000 | [diff] [blame] | 123 | raise |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 124 | |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 125 | def copy(src, dst): |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 126 | """Copy data and mode bits ("cp src dst"). |
Tim Peters | 495ad3c | 2001-01-15 01:36:40 +0000 | [diff] [blame] | 127 | |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 128 | The destination may be a directory. |
| 129 | |
| 130 | """ |
Guido van Rossum | a2baf46 | 1997-04-29 14:06:46 +0000 | [diff] [blame] | 131 | if os.path.isdir(dst): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 132 | dst = os.path.join(dst, os.path.basename(src)) |
Guido van Rossum | a2baf46 | 1997-04-29 14:06:46 +0000 | [diff] [blame] | 133 | copyfile(src, dst) |
| 134 | copymode(src, dst) |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 135 | |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 136 | def copy2(src, dst): |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 137 | """Copy data and all stat info ("cp -p src dst"). |
| 138 | |
| 139 | The destination may be a directory. |
| 140 | |
| 141 | """ |
Guido van Rossum | a2baf46 | 1997-04-29 14:06:46 +0000 | [diff] [blame] | 142 | if os.path.isdir(dst): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 143 | dst = os.path.join(dst, os.path.basename(src)) |
Guido van Rossum | a2baf46 | 1997-04-29 14:06:46 +0000 | [diff] [blame] | 144 | copyfile(src, dst) |
| 145 | copystat(src, dst) |
Guido van Rossum | c636014 | 1990-10-13 19:23:40 +0000 | [diff] [blame] | 146 | |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 147 | def ignore_patterns(*patterns): |
| 148 | """Function that can be used as copytree() ignore parameter. |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 149 | |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 150 | Patterns is a sequence of glob-style patterns |
| 151 | that are used to exclude files""" |
| 152 | def _ignore_patterns(path, names): |
| 153 | ignored_names = [] |
| 154 | for pattern in patterns: |
| 155 | ignored_names.extend(fnmatch.filter(names, pattern)) |
| 156 | return set(ignored_names) |
| 157 | return _ignore_patterns |
| 158 | |
Tarek Ziadé | fb43751 | 2010-04-20 08:57:33 +0000 | [diff] [blame] | 159 | def copytree(src, dst, symlinks=False, ignore=None, copy_function=copy2, |
| 160 | ignore_dangling_symlinks=False): |
Tarek Ziadé | 5340db3 | 2010-04-19 22:30:51 +0000 | [diff] [blame] | 161 | """Recursively copy a directory tree. |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 162 | |
| 163 | The destination directory must not already exist. |
Neal Norwitz | a4c93b6 | 2003-02-23 21:36:32 +0000 | [diff] [blame] | 164 | If exception(s) occur, an Error is raised with a list of reasons. |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 165 | |
| 166 | If the optional symlinks flag is true, symbolic links in the |
| 167 | source tree result in symbolic links in the destination tree; if |
| 168 | it is false, the contents of the files pointed to by symbolic |
Tarek Ziadé | fb43751 | 2010-04-20 08:57:33 +0000 | [diff] [blame] | 169 | links are copied. If the file pointed by the symlink doesn't |
| 170 | exist, an exception will be added in the list of errors raised in |
| 171 | an Error exception at the end of the copy process. |
| 172 | |
| 173 | You can set the optional ignore_dangling_symlinks flag to true if you |
Tarek Ziadé | 8c26c7d | 2010-04-23 13:03:50 +0000 | [diff] [blame] | 174 | want to silence this exception. Notice that this has no effect on |
| 175 | platforms that don't support os.symlink. |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 176 | |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 177 | The optional ignore argument is a callable. If given, it |
| 178 | is called with the `src` parameter, which is the directory |
| 179 | being visited by copytree(), and `names` which is the list of |
| 180 | `src` contents, as returned by os.listdir(): |
| 181 | |
| 182 | callable(src, names) -> ignored_names |
| 183 | |
| 184 | Since copytree() is called recursively, the callable will be |
| 185 | called once for each directory that is copied. It returns a |
| 186 | list of names relative to the `src` directory that should |
| 187 | not be copied. |
| 188 | |
Tarek Ziadé | 5340db3 | 2010-04-19 22:30:51 +0000 | [diff] [blame] | 189 | The optional copy_function argument is a callable that will be used |
| 190 | to copy each file. It will be called with the source path and the |
| 191 | destination path as arguments. By default, copy2() is used, but any |
| 192 | function that supports the same signature (like copy()) can be used. |
Guido van Rossum | 9d0a3df | 1997-04-29 14:45:19 +0000 | [diff] [blame] | 193 | |
| 194 | """ |
Guido van Rossum | a2baf46 | 1997-04-29 14:06:46 +0000 | [diff] [blame] | 195 | names = os.listdir(src) |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 196 | if ignore is not None: |
| 197 | ignored_names = ignore(src, names) |
| 198 | else: |
| 199 | ignored_names = set() |
| 200 | |
Johannes Gijsbers | e4172ea | 2005-01-08 12:31:29 +0000 | [diff] [blame] | 201 | os.makedirs(dst) |
Martin v. Löwis | e9ce0b0 | 2002-10-07 13:23:24 +0000 | [diff] [blame] | 202 | errors = [] |
Guido van Rossum | a2baf46 | 1997-04-29 14:06:46 +0000 | [diff] [blame] | 203 | for name in names: |
Georg Brandl | 2ee470f | 2008-07-16 12:55:28 +0000 | [diff] [blame] | 204 | if name in ignored_names: |
| 205 | continue |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 206 | srcname = os.path.join(src, name) |
| 207 | dstname = os.path.join(dst, name) |
| 208 | try: |
Tarek Ziadé | fb43751 | 2010-04-20 08:57:33 +0000 | [diff] [blame] | 209 | if os.path.islink(srcname): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 210 | linkto = os.readlink(srcname) |
Tarek Ziadé | fb43751 | 2010-04-20 08:57:33 +0000 | [diff] [blame] | 211 | if symlinks: |
| 212 | os.symlink(linkto, dstname) |
| 213 | else: |
| 214 | # ignore dangling symlink if the flag is on |
| 215 | if not os.path.exists(linkto) and ignore_dangling_symlinks: |
| 216 | continue |
| 217 | # otherwise let the copy occurs. copy2 will raise an error |
| 218 | copy_function(srcname, dstname) |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 219 | elif os.path.isdir(srcname): |
Tarek Ziadé | 5340db3 | 2010-04-19 22:30:51 +0000 | [diff] [blame] | 220 | copytree(srcname, dstname, symlinks, ignore, copy_function) |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 221 | else: |
Antoine Pitrou | 7fff096 | 2009-05-01 21:09:44 +0000 | [diff] [blame] | 222 | # Will raise a SpecialFileError for unsupported file types |
Tarek Ziadé | 5340db3 | 2010-04-19 22:30:51 +0000 | [diff] [blame] | 223 | copy_function(srcname, dstname) |
Georg Brandl | a1be88e | 2005-08-31 22:48:45 +0000 | [diff] [blame] | 224 | # catch the Error from the recursive copytree so that we can |
| 225 | # continue with other files |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 226 | except Error as err: |
Georg Brandl | a1be88e | 2005-08-31 22:48:45 +0000 | [diff] [blame] | 227 | errors.extend(err.args[0]) |
Antoine Pitrou | 7fff096 | 2009-05-01 21:09:44 +0000 | [diff] [blame] | 228 | except EnvironmentError as why: |
| 229 | errors.append((srcname, dstname, str(why))) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 230 | try: |
| 231 | copystat(src, dst) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 232 | except OSError as why: |
Georg Brandl | 6aa2d1f | 2008-08-12 08:35:52 +0000 | [diff] [blame] | 233 | if WindowsError is not None and isinstance(why, WindowsError): |
| 234 | # Copying file access times may fail on Windows |
| 235 | pass |
| 236 | else: |
| 237 | errors.extend((src, dst, str(why))) |
Martin v. Löwis | e9ce0b0 | 2002-10-07 13:23:24 +0000 | [diff] [blame] | 238 | if errors: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 239 | raise Error(errors) |
Guido van Rossum | d767329 | 1998-02-06 21:38:09 +0000 | [diff] [blame] | 240 | |
Barry Warsaw | 234d9a9 | 2003-01-24 17:36:15 +0000 | [diff] [blame] | 241 | def rmtree(path, ignore_errors=False, onerror=None): |
Guido van Rossum | d767329 | 1998-02-06 21:38:09 +0000 | [diff] [blame] | 242 | """Recursively delete a directory tree. |
| 243 | |
Johannes Gijsbers | ef5ffc4 | 2004-10-31 12:05:31 +0000 | [diff] [blame] | 244 | If ignore_errors is set, errors are ignored; otherwise, if onerror |
| 245 | is set, it is called to handle the error with arguments (func, |
| 246 | path, exc_info) where func is os.listdir, os.remove, or os.rmdir; |
| 247 | path is the argument to that function that caused it to fail; and |
| 248 | exc_info is a tuple returned by sys.exc_info(). If ignore_errors |
| 249 | is false and onerror is None, an exception is raised. |
| 250 | |
Guido van Rossum | d767329 | 1998-02-06 21:38:09 +0000 | [diff] [blame] | 251 | """ |
Johannes Gijsbers | ef5ffc4 | 2004-10-31 12:05:31 +0000 | [diff] [blame] | 252 | if ignore_errors: |
| 253 | def onerror(*args): |
Barry Warsaw | 234d9a9 | 2003-01-24 17:36:15 +0000 | [diff] [blame] | 254 | pass |
Johannes Gijsbers | ef5ffc4 | 2004-10-31 12:05:31 +0000 | [diff] [blame] | 255 | elif onerror is None: |
| 256 | def onerror(*args): |
| 257 | raise |
Christian Heimes | 9bd667a | 2008-01-20 15:14:11 +0000 | [diff] [blame] | 258 | try: |
| 259 | if os.path.islink(path): |
| 260 | # symlinks to directories are forbidden, see bug #1669 |
| 261 | raise OSError("Cannot call rmtree on a symbolic link") |
| 262 | except OSError: |
| 263 | onerror(os.path.islink, path, sys.exc_info()) |
| 264 | # can't continue even if onerror hook returns |
| 265 | return |
Johannes Gijsbers | ef5ffc4 | 2004-10-31 12:05:31 +0000 | [diff] [blame] | 266 | names = [] |
| 267 | try: |
| 268 | names = os.listdir(path) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 269 | except os.error as err: |
Johannes Gijsbers | ef5ffc4 | 2004-10-31 12:05:31 +0000 | [diff] [blame] | 270 | onerror(os.listdir, path, sys.exc_info()) |
| 271 | for name in names: |
| 272 | fullname = os.path.join(path, name) |
| 273 | try: |
| 274 | mode = os.lstat(fullname).st_mode |
| 275 | except os.error: |
| 276 | mode = 0 |
| 277 | if stat.S_ISDIR(mode): |
| 278 | rmtree(fullname, ignore_errors, onerror) |
Barry Warsaw | 234d9a9 | 2003-01-24 17:36:15 +0000 | [diff] [blame] | 279 | else: |
Johannes Gijsbers | ef5ffc4 | 2004-10-31 12:05:31 +0000 | [diff] [blame] | 280 | try: |
| 281 | os.remove(fullname) |
Guido van Rossum | b940e11 | 2007-01-10 16:19:56 +0000 | [diff] [blame] | 282 | except os.error as err: |
Johannes Gijsbers | ef5ffc4 | 2004-10-31 12:05:31 +0000 | [diff] [blame] | 283 | onerror(os.remove, fullname, sys.exc_info()) |
| 284 | try: |
| 285 | os.rmdir(path) |
| 286 | except os.error: |
| 287 | onerror(os.rmdir, path, sys.exc_info()) |
Guido van Rossum | d767329 | 1998-02-06 21:38:09 +0000 | [diff] [blame] | 288 | |
Martin v. Löwis | e9ce0b0 | 2002-10-07 13:23:24 +0000 | [diff] [blame] | 289 | |
Christian Heimes | ada8c3b | 2008-03-18 18:26:33 +0000 | [diff] [blame] | 290 | def _basename(path): |
| 291 | # A basename() variant which first strips the trailing slash, if present. |
| 292 | # Thus we always get the last component of the path, even for directories. |
| 293 | return os.path.basename(path.rstrip(os.path.sep)) |
| 294 | |
| 295 | def move(src, dst): |
| 296 | """Recursively move a file or directory to another location. This is |
| 297 | similar to the Unix "mv" command. |
| 298 | |
| 299 | If the destination is a directory or a symlink to a directory, the source |
| 300 | is moved inside the directory. The destination path must not already |
| 301 | exist. |
| 302 | |
| 303 | If the destination already exists but is not a directory, it may be |
| 304 | overwritten depending on os.rename() semantics. |
| 305 | |
| 306 | If the destination is on our current filesystem, then rename() is used. |
| 307 | Otherwise, src is copied to the destination and then removed. |
Martin v. Löwis | e9ce0b0 | 2002-10-07 13:23:24 +0000 | [diff] [blame] | 308 | A lot more could be done here... A look at a mv.c shows a lot of |
| 309 | the issues this implementation glosses over. |
| 310 | |
| 311 | """ |
Christian Heimes | ada8c3b | 2008-03-18 18:26:33 +0000 | [diff] [blame] | 312 | real_dst = dst |
| 313 | if os.path.isdir(dst): |
Ronald Oussoren | f51738b | 2011-05-06 10:23:04 +0200 | [diff] [blame] | 314 | if _samefile(src, dst): |
| 315 | # We might be on a case insensitive filesystem, |
| 316 | # perform the rename anyway. |
| 317 | os.rename(src, dst) |
| 318 | return |
| 319 | |
Christian Heimes | ada8c3b | 2008-03-18 18:26:33 +0000 | [diff] [blame] | 320 | real_dst = os.path.join(dst, _basename(src)) |
| 321 | if os.path.exists(real_dst): |
| 322 | raise Error("Destination path '%s' already exists" % real_dst) |
Martin v. Löwis | e9ce0b0 | 2002-10-07 13:23:24 +0000 | [diff] [blame] | 323 | try: |
Christian Heimes | ada8c3b | 2008-03-18 18:26:33 +0000 | [diff] [blame] | 324 | os.rename(src, real_dst) |
Ronald Oussoren | f51738b | 2011-05-06 10:23:04 +0200 | [diff] [blame] | 325 | except OSError as exc: |
Martin v. Löwis | e9ce0b0 | 2002-10-07 13:23:24 +0000 | [diff] [blame] | 326 | if os.path.isdir(src): |
Benjamin Peterson | 247a9b8 | 2009-02-20 04:09:19 +0000 | [diff] [blame] | 327 | if _destinsrc(src, dst): |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 328 | raise Error("Cannot move a directory '%s' into itself '%s'." % (src, dst)) |
Christian Heimes | ada8c3b | 2008-03-18 18:26:33 +0000 | [diff] [blame] | 329 | copytree(src, real_dst, symlinks=True) |
Martin v. Löwis | e9ce0b0 | 2002-10-07 13:23:24 +0000 | [diff] [blame] | 330 | rmtree(src) |
| 331 | else: |
Christian Heimes | ada8c3b | 2008-03-18 18:26:33 +0000 | [diff] [blame] | 332 | copy2(src, real_dst) |
Martin v. Löwis | e9ce0b0 | 2002-10-07 13:23:24 +0000 | [diff] [blame] | 333 | os.unlink(src) |
Brett Cannon | 1c3fa18 | 2004-06-19 21:11:35 +0000 | [diff] [blame] | 334 | |
Benjamin Peterson | 247a9b8 | 2009-02-20 04:09:19 +0000 | [diff] [blame] | 335 | def _destinsrc(src, dst): |
Antoine Pitrou | 0dcc3cd | 2009-01-29 20:26:59 +0000 | [diff] [blame] | 336 | src = abspath(src) |
| 337 | dst = abspath(dst) |
| 338 | if not src.endswith(os.path.sep): |
| 339 | src += os.path.sep |
| 340 | if not dst.endswith(os.path.sep): |
| 341 | dst += os.path.sep |
| 342 | return dst.startswith(src) |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 343 | |
| 344 | def _get_gid(name): |
| 345 | """Returns a gid, given a group name.""" |
| 346 | if getgrnam is None or name is None: |
| 347 | return None |
| 348 | try: |
| 349 | result = getgrnam(name) |
| 350 | except KeyError: |
| 351 | result = None |
| 352 | if result is not None: |
| 353 | return result[2] |
| 354 | return None |
| 355 | |
| 356 | def _get_uid(name): |
| 357 | """Returns an uid, given a user name.""" |
| 358 | if getpwnam is None or name is None: |
| 359 | return None |
| 360 | try: |
| 361 | result = getpwnam(name) |
| 362 | except KeyError: |
| 363 | result = None |
| 364 | if result is not None: |
| 365 | return result[2] |
| 366 | return None |
| 367 | |
| 368 | def _make_tarball(base_name, base_dir, compress="gzip", verbose=0, dry_run=0, |
| 369 | owner=None, group=None, logger=None): |
| 370 | """Create a (possibly compressed) tar file from all the files under |
| 371 | 'base_dir'. |
| 372 | |
Tarek Ziadé | 5e2be87 | 2010-04-20 21:40:47 +0000 | [diff] [blame] | 373 | 'compress' must be "gzip" (the default), "bzip2", or None. |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 374 | |
| 375 | 'owner' and 'group' can be used to define an owner and a group for the |
| 376 | archive that is being built. If not provided, the current owner and group |
| 377 | will be used. |
| 378 | |
Éric Araujo | 4433a5f | 2010-12-15 20:26:30 +0000 | [diff] [blame] | 379 | The output tar file will be named 'base_name' + ".tar", possibly plus |
Tarek Ziadé | 5e2be87 | 2010-04-20 21:40:47 +0000 | [diff] [blame] | 380 | the appropriate compression extension (".gz", or ".bz2"). |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 381 | |
| 382 | Returns the output filename. |
| 383 | """ |
Tarek Ziadé | ffa155a | 2010-04-29 13:34:35 +0000 | [diff] [blame] | 384 | tar_compression = {'gzip': 'gz', None: ''} |
| 385 | compress_ext = {'gzip': '.gz'} |
| 386 | |
| 387 | if _BZ2_SUPPORTED: |
| 388 | tar_compression['bzip2'] = 'bz2' |
| 389 | compress_ext['bzip2'] = '.bz2' |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 390 | |
| 391 | # flags for compression program, each element of list will be an argument |
| 392 | if compress is not None and compress not in compress_ext.keys(): |
Tarek Ziadé | ffa155a | 2010-04-29 13:34:35 +0000 | [diff] [blame] | 393 | raise ValueError("bad value for 'compress', or compression format not " |
| 394 | "supported : {0}".format(compress)) |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 395 | |
Tarek Ziadé | 5e2be87 | 2010-04-20 21:40:47 +0000 | [diff] [blame] | 396 | archive_name = base_name + '.tar' + compress_ext.get(compress, '') |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 397 | archive_dir = os.path.dirname(archive_name) |
Tarek Ziadé | 5e2be87 | 2010-04-20 21:40:47 +0000 | [diff] [blame] | 398 | |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 399 | if not os.path.exists(archive_dir): |
Éric Araujo | ac4e58e | 2011-01-29 20:32:11 +0000 | [diff] [blame] | 400 | if logger is not None: |
Éric Araujo | 43a7ee1 | 2011-08-19 02:55:11 +0200 | [diff] [blame] | 401 | logger.info("creating %s", archive_dir) |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 402 | if not dry_run: |
| 403 | os.makedirs(archive_dir) |
| 404 | |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 405 | # creating the tarball |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 406 | if logger is not None: |
| 407 | logger.info('Creating tar archive') |
| 408 | |
| 409 | uid = _get_uid(owner) |
| 410 | gid = _get_gid(group) |
| 411 | |
| 412 | def _set_uid_gid(tarinfo): |
| 413 | if gid is not None: |
| 414 | tarinfo.gid = gid |
| 415 | tarinfo.gname = group |
| 416 | if uid is not None: |
| 417 | tarinfo.uid = uid |
| 418 | tarinfo.uname = owner |
| 419 | return tarinfo |
| 420 | |
| 421 | if not dry_run: |
| 422 | tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress]) |
| 423 | try: |
| 424 | tar.add(base_dir, filter=_set_uid_gid) |
| 425 | finally: |
| 426 | tar.close() |
| 427 | |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 428 | return archive_name |
| 429 | |
Tarek Ziadé | e212416 | 2010-04-21 13:35:21 +0000 | [diff] [blame] | 430 | def _call_external_zip(base_dir, zip_filename, verbose=False, dry_run=False): |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 431 | # XXX see if we want to keep an external call here |
| 432 | if verbose: |
| 433 | zipoptions = "-r" |
| 434 | else: |
| 435 | zipoptions = "-rq" |
| 436 | from distutils.errors import DistutilsExecError |
| 437 | from distutils.spawn import spawn |
| 438 | try: |
| 439 | spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run) |
| 440 | except DistutilsExecError: |
| 441 | # XXX really should distinguish between "couldn't find |
| 442 | # external 'zip' command" and "zip failed". |
| 443 | raise ExecError("unable to create zip file '%s': " |
| 444 | "could neither import the 'zipfile' module nor " |
| 445 | "find a standalone zip utility") % zip_filename |
| 446 | |
| 447 | def _make_zipfile(base_name, base_dir, verbose=0, dry_run=0, logger=None): |
| 448 | """Create a zip file from all the files under 'base_dir'. |
| 449 | |
Éric Araujo | 4433a5f | 2010-12-15 20:26:30 +0000 | [diff] [blame] | 450 | The output zip file will be named 'base_name' + ".zip". Uses either the |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 451 | "zipfile" Python module (if available) or the InfoZIP "zip" utility |
| 452 | (if installed and found on the default search path). If neither tool is |
| 453 | available, raises ExecError. Returns the name of the output zip |
| 454 | file. |
| 455 | """ |
| 456 | zip_filename = base_name + ".zip" |
| 457 | archive_dir = os.path.dirname(base_name) |
| 458 | |
| 459 | if not os.path.exists(archive_dir): |
| 460 | if logger is not None: |
| 461 | logger.info("creating %s", archive_dir) |
| 462 | if not dry_run: |
| 463 | os.makedirs(archive_dir) |
| 464 | |
| 465 | # If zipfile module is not available, try spawning an external 'zip' |
| 466 | # command. |
| 467 | try: |
| 468 | import zipfile |
| 469 | except ImportError: |
| 470 | zipfile = None |
| 471 | |
| 472 | if zipfile is None: |
Tarek Ziadé | e212416 | 2010-04-21 13:35:21 +0000 | [diff] [blame] | 473 | _call_external_zip(base_dir, zip_filename, verbose, dry_run) |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 474 | else: |
| 475 | if logger is not None: |
| 476 | logger.info("creating '%s' and adding '%s' to it", |
| 477 | zip_filename, base_dir) |
| 478 | |
| 479 | if not dry_run: |
| 480 | zip = zipfile.ZipFile(zip_filename, "w", |
| 481 | compression=zipfile.ZIP_DEFLATED) |
| 482 | |
| 483 | for dirpath, dirnames, filenames in os.walk(base_dir): |
| 484 | for name in filenames: |
| 485 | path = os.path.normpath(os.path.join(dirpath, name)) |
| 486 | if os.path.isfile(path): |
| 487 | zip.write(path, path) |
| 488 | if logger is not None: |
| 489 | logger.info("adding '%s'", path) |
| 490 | zip.close() |
| 491 | |
| 492 | return zip_filename |
| 493 | |
| 494 | _ARCHIVE_FORMATS = { |
| 495 | 'gztar': (_make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"), |
| 496 | 'bztar': (_make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"), |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 497 | 'tar': (_make_tarball, [('compress', None)], "uncompressed tar file"), |
| 498 | 'zip': (_make_zipfile, [],"ZIP file") |
| 499 | } |
| 500 | |
Tarek Ziadé | ffa155a | 2010-04-29 13:34:35 +0000 | [diff] [blame] | 501 | if _BZ2_SUPPORTED: |
| 502 | _ARCHIVE_FORMATS['bztar'] = (_make_tarball, [('compress', 'bzip2')], |
| 503 | "bzip2'ed tar-file") |
| 504 | |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 505 | def get_archive_formats(): |
| 506 | """Returns a list of supported formats for archiving and unarchiving. |
| 507 | |
| 508 | Each element of the returned sequence is a tuple (name, description) |
| 509 | """ |
| 510 | formats = [(name, registry[2]) for name, registry in |
| 511 | _ARCHIVE_FORMATS.items()] |
| 512 | formats.sort() |
| 513 | return formats |
| 514 | |
| 515 | def register_archive_format(name, function, extra_args=None, description=''): |
| 516 | """Registers an archive format. |
| 517 | |
| 518 | name is the name of the format. function is the callable that will be |
| 519 | used to create archives. If provided, extra_args is a sequence of |
| 520 | (name, value) tuples that will be passed as arguments to the callable. |
| 521 | description can be provided to describe the format, and will be returned |
| 522 | by the get_archive_formats() function. |
| 523 | """ |
| 524 | if extra_args is None: |
| 525 | extra_args = [] |
Florent Xicluna | 5d1155c | 2011-10-28 14:45:05 +0200 | [diff] [blame] | 526 | if not callable(function): |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 527 | raise TypeError('The %s object is not callable' % function) |
| 528 | if not isinstance(extra_args, (tuple, list)): |
| 529 | raise TypeError('extra_args needs to be a sequence') |
| 530 | for element in extra_args: |
| 531 | if not isinstance(element, (tuple, list)) or len(element) !=2 : |
| 532 | raise TypeError('extra_args elements are : (arg_name, value)') |
| 533 | |
| 534 | _ARCHIVE_FORMATS[name] = (function, extra_args, description) |
| 535 | |
| 536 | def unregister_archive_format(name): |
| 537 | del _ARCHIVE_FORMATS[name] |
| 538 | |
| 539 | def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, |
| 540 | dry_run=0, owner=None, group=None, logger=None): |
| 541 | """Create an archive file (eg. zip or tar). |
| 542 | |
| 543 | 'base_name' is the name of the file to create, minus any format-specific |
Tarek Ziadé | 5e2be87 | 2010-04-20 21:40:47 +0000 | [diff] [blame] | 544 | extension; 'format' is the archive format: one of "zip", "tar", "bztar" |
| 545 | or "gztar". |
Tarek Ziadé | 396fad7 | 2010-02-23 05:30:31 +0000 | [diff] [blame] | 546 | |
| 547 | 'root_dir' is a directory that will be the root directory of the |
| 548 | archive; ie. we typically chdir into 'root_dir' before creating the |
| 549 | archive. 'base_dir' is the directory where we start archiving from; |
| 550 | ie. 'base_dir' will be the common prefix of all files and |
| 551 | directories in the archive. 'root_dir' and 'base_dir' both default |
| 552 | to the current directory. Returns the name of the archive file. |
| 553 | |
| 554 | 'owner' and 'group' are used when creating a tar archive. By default, |
| 555 | uses the current owner and group. |
| 556 | """ |
| 557 | save_cwd = os.getcwd() |
| 558 | if root_dir is not None: |
| 559 | if logger is not None: |
| 560 | logger.debug("changing into '%s'", root_dir) |
| 561 | base_name = os.path.abspath(base_name) |
| 562 | if not dry_run: |
| 563 | os.chdir(root_dir) |
| 564 | |
| 565 | if base_dir is None: |
| 566 | base_dir = os.curdir |
| 567 | |
| 568 | kwargs = {'dry_run': dry_run, 'logger': logger} |
| 569 | |
| 570 | try: |
| 571 | format_info = _ARCHIVE_FORMATS[format] |
| 572 | except KeyError: |
| 573 | raise ValueError("unknown archive format '%s'" % format) |
| 574 | |
| 575 | func = format_info[0] |
| 576 | for arg, val in format_info[1]: |
| 577 | kwargs[arg] = val |
| 578 | |
| 579 | if format != 'zip': |
| 580 | kwargs['owner'] = owner |
| 581 | kwargs['group'] = group |
| 582 | |
| 583 | try: |
| 584 | filename = func(base_name, base_dir, **kwargs) |
| 585 | finally: |
| 586 | if root_dir is not None: |
| 587 | if logger is not None: |
| 588 | logger.debug("changing back to '%s'", save_cwd) |
| 589 | os.chdir(save_cwd) |
| 590 | |
| 591 | return filename |
Tarek Ziadé | 6ac9172 | 2010-04-28 17:51:36 +0000 | [diff] [blame] | 592 | |
| 593 | |
| 594 | def get_unpack_formats(): |
| 595 | """Returns a list of supported formats for unpacking. |
| 596 | |
| 597 | Each element of the returned sequence is a tuple |
| 598 | (name, extensions, description) |
| 599 | """ |
| 600 | formats = [(name, info[0], info[3]) for name, info in |
| 601 | _UNPACK_FORMATS.items()] |
| 602 | formats.sort() |
| 603 | return formats |
| 604 | |
| 605 | def _check_unpack_options(extensions, function, extra_args): |
| 606 | """Checks what gets registered as an unpacker.""" |
| 607 | # first make sure no other unpacker is registered for this extension |
| 608 | existing_extensions = {} |
| 609 | for name, info in _UNPACK_FORMATS.items(): |
| 610 | for ext in info[0]: |
| 611 | existing_extensions[ext] = name |
| 612 | |
| 613 | for extension in extensions: |
| 614 | if extension in existing_extensions: |
| 615 | msg = '%s is already registered for "%s"' |
| 616 | raise RegistryError(msg % (extension, |
| 617 | existing_extensions[extension])) |
| 618 | |
Florent Xicluna | 5d1155c | 2011-10-28 14:45:05 +0200 | [diff] [blame] | 619 | if not callable(function): |
Tarek Ziadé | 6ac9172 | 2010-04-28 17:51:36 +0000 | [diff] [blame] | 620 | raise TypeError('The registered function must be a callable') |
| 621 | |
| 622 | |
| 623 | def register_unpack_format(name, extensions, function, extra_args=None, |
| 624 | description=''): |
| 625 | """Registers an unpack format. |
| 626 | |
| 627 | `name` is the name of the format. `extensions` is a list of extensions |
| 628 | corresponding to the format. |
| 629 | |
| 630 | `function` is the callable that will be |
| 631 | used to unpack archives. The callable will receive archives to unpack. |
| 632 | If it's unable to handle an archive, it needs to raise a ReadError |
| 633 | exception. |
| 634 | |
| 635 | If provided, `extra_args` is a sequence of |
| 636 | (name, value) tuples that will be passed as arguments to the callable. |
| 637 | description can be provided to describe the format, and will be returned |
| 638 | by the get_unpack_formats() function. |
| 639 | """ |
| 640 | if extra_args is None: |
| 641 | extra_args = [] |
| 642 | _check_unpack_options(extensions, function, extra_args) |
| 643 | _UNPACK_FORMATS[name] = extensions, function, extra_args, description |
| 644 | |
| 645 | def unregister_unpack_format(name): |
| 646 | """Removes the pack format from the registery.""" |
| 647 | del _UNPACK_FORMATS[name] |
| 648 | |
| 649 | def _ensure_directory(path): |
| 650 | """Ensure that the parent directory of `path` exists""" |
| 651 | dirname = os.path.dirname(path) |
| 652 | if not os.path.isdir(dirname): |
| 653 | os.makedirs(dirname) |
| 654 | |
| 655 | def _unpack_zipfile(filename, extract_dir): |
| 656 | """Unpack zip `filename` to `extract_dir` |
| 657 | """ |
| 658 | try: |
| 659 | import zipfile |
| 660 | except ImportError: |
| 661 | raise ReadError('zlib not supported, cannot unpack this archive.') |
| 662 | |
| 663 | if not zipfile.is_zipfile(filename): |
| 664 | raise ReadError("%s is not a zip file" % filename) |
| 665 | |
| 666 | zip = zipfile.ZipFile(filename) |
| 667 | try: |
| 668 | for info in zip.infolist(): |
| 669 | name = info.filename |
| 670 | |
| 671 | # don't extract absolute paths or ones with .. in them |
| 672 | if name.startswith('/') or '..' in name: |
| 673 | continue |
| 674 | |
| 675 | target = os.path.join(extract_dir, *name.split('/')) |
| 676 | if not target: |
| 677 | continue |
| 678 | |
| 679 | _ensure_directory(target) |
| 680 | if not name.endswith('/'): |
| 681 | # file |
| 682 | data = zip.read(info.filename) |
| 683 | f = open(target,'wb') |
| 684 | try: |
| 685 | f.write(data) |
| 686 | finally: |
| 687 | f.close() |
| 688 | del data |
| 689 | finally: |
| 690 | zip.close() |
| 691 | |
| 692 | def _unpack_tarfile(filename, extract_dir): |
| 693 | """Unpack tar/tar.gz/tar.bz2 `filename` to `extract_dir` |
| 694 | """ |
| 695 | try: |
| 696 | tarobj = tarfile.open(filename) |
| 697 | except tarfile.TarError: |
| 698 | raise ReadError( |
| 699 | "%s is not a compressed or uncompressed tar file" % filename) |
| 700 | try: |
| 701 | tarobj.extractall(extract_dir) |
| 702 | finally: |
| 703 | tarobj.close() |
| 704 | |
| 705 | _UNPACK_FORMATS = { |
| 706 | 'gztar': (['.tar.gz', '.tgz'], _unpack_tarfile, [], "gzip'ed tar-file"), |
Tarek Ziadé | 6ac9172 | 2010-04-28 17:51:36 +0000 | [diff] [blame] | 707 | 'tar': (['.tar'], _unpack_tarfile, [], "uncompressed tar file"), |
| 708 | 'zip': (['.zip'], _unpack_zipfile, [], "ZIP file") |
| 709 | } |
| 710 | |
Tarek Ziadé | ffa155a | 2010-04-29 13:34:35 +0000 | [diff] [blame] | 711 | if _BZ2_SUPPORTED: |
| 712 | _UNPACK_FORMATS['bztar'] = (['.bz2'], _unpack_tarfile, [], |
| 713 | "bzip2'ed tar-file") |
| 714 | |
Tarek Ziadé | 6ac9172 | 2010-04-28 17:51:36 +0000 | [diff] [blame] | 715 | def _find_unpack_format(filename): |
| 716 | for name, info in _UNPACK_FORMATS.items(): |
| 717 | for extension in info[0]: |
| 718 | if filename.endswith(extension): |
| 719 | return name |
| 720 | return None |
| 721 | |
| 722 | def unpack_archive(filename, extract_dir=None, format=None): |
| 723 | """Unpack an archive. |
| 724 | |
| 725 | `filename` is the name of the archive. |
| 726 | |
| 727 | `extract_dir` is the name of the target directory, where the archive |
| 728 | is unpacked. If not provided, the current working directory is used. |
| 729 | |
| 730 | `format` is the archive format: one of "zip", "tar", or "gztar". Or any |
| 731 | other registered format. If not provided, unpack_archive will use the |
| 732 | filename extension and see if an unpacker was registered for that |
| 733 | extension. |
| 734 | |
| 735 | In case none is found, a ValueError is raised. |
| 736 | """ |
| 737 | if extract_dir is None: |
| 738 | extract_dir = os.getcwd() |
| 739 | |
| 740 | if format is not None: |
| 741 | try: |
| 742 | format_info = _UNPACK_FORMATS[format] |
| 743 | except KeyError: |
| 744 | raise ValueError("Unknown unpack format '{0}'".format(format)) |
| 745 | |
Nick Coghlan | abf202d | 2011-03-16 13:52:20 -0400 | [diff] [blame] | 746 | func = format_info[1] |
| 747 | func(filename, extract_dir, **dict(format_info[2])) |
Tarek Ziadé | 6ac9172 | 2010-04-28 17:51:36 +0000 | [diff] [blame] | 748 | else: |
| 749 | # we need to look at the registered unpackers supported extensions |
| 750 | format = _find_unpack_format(filename) |
| 751 | if format is None: |
| 752 | raise ReadError("Unknown archive format '{0}'".format(filename)) |
| 753 | |
| 754 | func = _UNPACK_FORMATS[format][1] |
| 755 | kwargs = dict(_UNPACK_FORMATS[format][2]) |
| 756 | func(filename, extract_dir, **kwargs) |