blob: 26cd7fb2ec40e416f8b840271554f8094aa5d693 [file] [log] [blame]
Greg Wardaebf7062000-04-04 02:05:59 +00001"""distutils.archive_util
2
3Utility functions for creating archive files (tarballs, zip files,
4that sort of thing)."""
5
6# created 2000/04/03, Greg Ward (extracted from util.py)
7
8__revision__ = "$Id$"
9
10import os
11from distutils.errors import DistutilsExecError
12from distutils.spawn import spawn
Greg Ward04e25a12000-08-22 01:48:54 +000013from distutils.dir_util import mkpath
Greg Wardaebf7062000-04-04 02:05:59 +000014
15def make_tarball (base_name, base_dir, compress="gzip",
16 verbose=0, dry_run=0):
17 """Create a (possibly compressed) tar file from all the files under
Greg Wardf1948782000-04-25 01:38:20 +000018 'base_dir'. 'compress' must be "gzip" (the default), "compress",
19 "bzip2", or None. Both "tar" and the compression utility named by
20 'compress' must be on the default program search path, so this is
21 probably Unix-specific. The output tar file will be named 'base_dir'
22 + ".tar", possibly plus the appropriate compression extension (".gz",
23 ".bz2" or ".Z"). Return the output filename."""
Greg Wardaebf7062000-04-04 02:05:59 +000024
25 # XXX GNU tar 1.13 has a nifty option to add a prefix directory.
26 # It's pretty new, though, so we certainly can't require it --
27 # but it would be nice to take advantage of it to skip the
28 # "create a tree of hardlinks" step! (Would also be nice to
29 # detect GNU tar to use its 'z' option and save a step.)
30
31 compress_ext = { 'gzip': ".gz",
Greg Wardf1948782000-04-25 01:38:20 +000032 'bzip2': '.bz2',
Greg Wardaebf7062000-04-04 02:05:59 +000033 'compress': ".Z" }
Greg Wardf1948782000-04-25 01:38:20 +000034
35 # flags for compression program, each element of list will be an argument
36 compress_flags = {'gzip': ["-f9"],
37 'compress': ["-f"],
38 'bzip2': ['-f9']}
Greg Wardaebf7062000-04-04 02:05:59 +000039
Greg Wardf1948782000-04-25 01:38:20 +000040 if compress is not None and compress not in compress_ext.keys():
Greg Wardaebf7062000-04-04 02:05:59 +000041 raise ValueError, \
42 "bad value for 'compress': must be None, 'gzip', or 'compress'"
43
44 archive_name = base_name + ".tar"
Greg Ward04e25a12000-08-22 01:48:54 +000045 mkpath(os.path.dirname(archive_name), verbose=verbose, dry_run=dry_run)
Greg Wardaebf7062000-04-04 02:05:59 +000046 cmd = ["tar", "-cf", archive_name, base_dir]
47 spawn (cmd, verbose=verbose, dry_run=dry_run)
48
49 if compress:
Greg Wardf1948782000-04-25 01:38:20 +000050 spawn ([compress] + compress_flags[compress] + [archive_name],
51 verbose=verbose, dry_run=dry_run)
Greg Wardaebf7062000-04-04 02:05:59 +000052 return archive_name + compress_ext[compress]
53 else:
54 return archive_name
55
56# make_tarball ()
57
58
59def make_zipfile (base_name, base_dir, verbose=0, dry_run=0):
60 """Create a zip file from all the files under 'base_dir'. The
61 output zip file will be named 'base_dir' + ".zip". Uses either the
62 InfoZIP "zip" utility (if installed and found on the default search
63 path) or the "zipfile" Python module (if available). If neither
64 tool is available, raises DistutilsExecError. Returns the name
65 of the output zip file."""
66
67 # This initially assumed the Unix 'zip' utility -- but
68 # apparently InfoZIP's zip.exe works the same under Windows, so
69 # no changes needed!
70
71 zip_filename = base_name + ".zip"
Greg Ward04e25a12000-08-22 01:48:54 +000072 mkpath(os.path.dirname(zip_filename), verbose=verbose, dry_run=dry_run)
Greg Wardaebf7062000-04-04 02:05:59 +000073 try:
74 spawn (["zip", "-rq", zip_filename, base_dir],
75 verbose=verbose, dry_run=dry_run)
76 except DistutilsExecError:
77
78 # XXX really should distinguish between "couldn't find
79 # external 'zip' command" and "zip failed" -- shouldn't try
80 # again in the latter case. (I think fixing this will
81 # require some cooperation from the spawn module -- perhaps
82 # a utility function to search the path, so we can fallback
83 # on zipfile.py without the failed spawn.)
84 try:
85 import zipfile
86 except ImportError:
87 raise DistutilsExecError, \
88 ("unable to create zip file '%s': " +
89 "could neither find a standalone zip utility nor " +
90 "import the 'zipfile' module") % zip_filename
91
92 if verbose:
93 print "creating '%s' and adding '%s' to it" % \
94 (zip_filename, base_dir)
95
96 def visit (z, dirname, names):
97 for name in names:
Greg Ward65bc20c2000-05-31 02:17:19 +000098 path = os.path.normpath(os.path.join(dirname, name))
Greg Wardaebf7062000-04-04 02:05:59 +000099 if os.path.isfile (path):
100 z.write (path, path)
101
102 if not dry_run:
103 z = zipfile.ZipFile (zip_filename, "wb",
104 compression=zipfile.ZIP_DEFLATED)
105
106 os.path.walk (base_dir, visit, z)
107 z.close()
108
109 return zip_filename
110
111# make_zipfile ()
112
113
Greg Warddb807542000-04-22 03:09:56 +0000114ARCHIVE_FORMATS = {
Greg Ward2ff78872000-06-24 00:23:20 +0000115 'gztar': (make_tarball, [('compress', 'gzip')], "gzip'ed tar-file"),
116 'bztar': (make_tarball, [('compress', 'bzip2')], "bzip2'ed tar-file"),
117 'ztar': (make_tarball, [('compress', 'compress')], "compressed tar file"),
118 'tar': (make_tarball, [('compress', None)], "uncompressed tar file"),
Greg Ward04e25a12000-08-22 01:48:54 +0000119 'zip': (make_zipfile, [],"ZIP file")
Greg Warddb807542000-04-22 03:09:56 +0000120 }
121
122def check_archive_formats (formats):
123 for format in formats:
124 if not ARCHIVE_FORMATS.has_key(format):
125 return format
126 else:
127 return None
128
Greg Wardaebf7062000-04-04 02:05:59 +0000129def make_archive (base_name, format,
130 root_dir=None, base_dir=None,
131 verbose=0, dry_run=0):
Greg Wardaebf7062000-04-04 02:05:59 +0000132 """Create an archive file (eg. zip or tar). 'base_name' is the name
133 of the file to create, minus any format-specific extension; 'format'
134 is the archive format: one of "zip", "tar", "ztar", or "gztar".
135 'root_dir' is a directory that will be the root directory of the
136 archive; ie. we typically chdir into 'root_dir' before creating the
137 archive. 'base_dir' is the directory where we start archiving from;
138 ie. 'base_dir' will be the common prefix of all files and
139 directories in the archive. 'root_dir' and 'base_dir' both default
Greg Ward87909612000-06-01 01:07:55 +0000140 to the current directory. Returns the name of the archive file.
141 """
Greg Wardaebf7062000-04-04 02:05:59 +0000142 save_cwd = os.getcwd()
143 if root_dir is not None:
144 if verbose:
145 print "changing into '%s'" % root_dir
146 base_name = os.path.abspath (base_name)
147 if not dry_run:
148 os.chdir (root_dir)
149
150 if base_dir is None:
151 base_dir = os.curdir
152
153 kwargs = { 'verbose': verbose,
154 'dry_run': dry_run }
155
Greg Warddb807542000-04-22 03:09:56 +0000156 try:
157 format_info = ARCHIVE_FORMATS[format]
158 except KeyError:
159 raise ValueError, "unknown archive format '%s'" % format
Greg Wardaebf7062000-04-04 02:05:59 +0000160
Greg Warddb807542000-04-22 03:09:56 +0000161 func = format_info[0]
162 for (arg,val) in format_info[1]:
163 kwargs[arg] = val
Greg Ward87909612000-06-01 01:07:55 +0000164 filename = apply (func, (base_name, base_dir), kwargs)
Greg Wardaebf7062000-04-04 02:05:59 +0000165
166 if root_dir is not None:
167 if verbose:
168 print "changing back to '%s'" % save_cwd
169 os.chdir (save_cwd)
170
Greg Ward87909612000-06-01 01:07:55 +0000171 return filename
172
Greg Wardaebf7062000-04-04 02:05:59 +0000173# make_archive ()