Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 1 | """distutils.file_util |
| 2 | |
Greg Ward | 449f556 | 2000-09-26 02:03:34 +0000 | [diff] [blame] | 3 | Utility functions for operating on single files. |
| 4 | """ |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 5 | |
| 6 | # created 2000/04/03, Greg Ward (extracted from util.py) |
| 7 | |
| 8 | __revision__ = "$Id$" |
| 9 | |
| 10 | import os |
| 11 | from distutils.errors import DistutilsFileError |
| 12 | |
| 13 | |
| 14 | # for generating verbose output in 'copy_file()' |
| 15 | _copy_action = { None: 'copying', |
| 16 | 'hard': 'hard linking', |
| 17 | 'sym': 'symbolically linking' } |
| 18 | |
| 19 | |
| 20 | def _copy_file_contents (src, dst, buffer_size=16*1024): |
| 21 | """Copy the file 'src' to 'dst'; both must be filenames. Any error |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 22 | opening either file, reading from 'src', or writing to 'dst', raises |
| 23 | DistutilsFileError. Data is read/written in chunks of 'buffer_size' |
| 24 | bytes (default 16k). No attempt is made to handle anything apart from |
| 25 | regular files. |
| 26 | """ |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 27 | # Stolen from shutil module in the standard library, but with |
| 28 | # custom error-handling added. |
| 29 | |
| 30 | fsrc = None |
| 31 | fdst = None |
| 32 | try: |
| 33 | try: |
| 34 | fsrc = open(src, 'rb') |
| 35 | except os.error, (errno, errstr): |
| 36 | raise DistutilsFileError, \ |
| 37 | "could not open '%s': %s" % (src, errstr) |
| 38 | |
| 39 | try: |
| 40 | fdst = open(dst, 'wb') |
| 41 | except os.error, (errno, errstr): |
| 42 | raise DistutilsFileError, \ |
| 43 | "could not create '%s': %s" % (dst, errstr) |
| 44 | |
| 45 | while 1: |
| 46 | try: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 47 | buf = fsrc.read(buffer_size) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 48 | except os.error, (errno, errstr): |
| 49 | raise DistutilsFileError, \ |
| 50 | "could not read from '%s': %s" % (src, errstr) |
| 51 | |
| 52 | if not buf: |
| 53 | break |
| 54 | |
| 55 | try: |
| 56 | fdst.write(buf) |
| 57 | except os.error, (errno, errstr): |
| 58 | raise DistutilsFileError, \ |
| 59 | "could not write to '%s': %s" % (dst, errstr) |
| 60 | |
| 61 | finally: |
| 62 | if fdst: |
| 63 | fdst.close() |
| 64 | if fsrc: |
| 65 | fsrc.close() |
| 66 | |
| 67 | # _copy_file_contents() |
| 68 | |
| 69 | |
| 70 | def copy_file (src, dst, |
| 71 | preserve_mode=1, |
| 72 | preserve_times=1, |
| 73 | update=0, |
| 74 | link=None, |
| 75 | verbose=0, |
| 76 | dry_run=0): |
| 77 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 78 | """Copy a file 'src' to 'dst'. If 'dst' is a directory, then 'src' is |
| 79 | copied there with the same name; otherwise, it must be a filename. (If |
| 80 | the file exists, it will be ruthlessly clobbered.) If 'preserve_mode' |
| 81 | is true (the default), the file's mode (type and permission bits, or |
| 82 | whatever is analogous on the current platform) is copied. If |
| 83 | 'preserve_times' is true (the default), the last-modified and |
| 84 | last-access times are copied as well. If 'update' is true, 'src' will |
| 85 | only be copied if 'dst' does not exist, or if 'dst' does exist but is |
| 86 | older than 'src'. If 'verbose' is true, then a one-line summary of the |
| 87 | copy will be printed to stdout. |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 88 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 89 | 'link' allows you to make hard links (os.link) or symbolic links |
| 90 | (os.symlink) instead of copying: set it to "hard" or "sym"; if it is |
| 91 | None (the default), files are copied. Don't set 'link' on systems that |
| 92 | don't support it: 'copy_file()' doesn't check if hard or symbolic |
| 93 | linking is available. |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 94 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 95 | Under Mac OS, uses the native file copy function in macostools; on |
| 96 | other systems, uses '_copy_file_contents()' to copy file contents. |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 97 | |
Greg Ward | 0d4a853 | 2000-09-30 17:29:35 +0000 | [diff] [blame] | 98 | Return a tuple (dest_name, copied): 'dest_name' is the actual name of |
| 99 | the output file, and 'copied' is true if the file was copied (or would |
| 100 | have been copied, if 'dry_run' true). |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 101 | """ |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 102 | # XXX if the destination file already exists, we clobber it if |
| 103 | # copying, but blow up if linking. Hmmm. And I don't know what |
| 104 | # macostools.copyfile() does. Should definitely be consistent, and |
| 105 | # should probably blow up if destination exists and we would be |
| 106 | # changing it (ie. it's not already a hard/soft link to src OR |
| 107 | # (not update) and (src newer than dst). |
| 108 | |
| 109 | from stat import * |
| 110 | from distutils.dep_util import newer |
| 111 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 112 | if not os.path.isfile(src): |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 113 | raise DistutilsFileError, \ |
| 114 | "can't copy '%s': doesn't exist or not a regular file" % src |
| 115 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 116 | if os.path.isdir(dst): |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 117 | dir = dst |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 118 | dst = os.path.join(dst, os.path.basename(src)) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 119 | else: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 120 | dir = os.path.dirname(dst) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 121 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 122 | if update and not newer(src, dst): |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 123 | if verbose: |
| 124 | print "not copying %s (output up-to-date)" % src |
Greg Ward | 0d4a853 | 2000-09-30 17:29:35 +0000 | [diff] [blame] | 125 | return (dst, 0) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 126 | |
| 127 | try: |
| 128 | action = _copy_action[link] |
| 129 | except KeyError: |
| 130 | raise ValueError, \ |
| 131 | "invalid value '%s' for 'link' argument" % link |
| 132 | if verbose: |
Greg Ward | 4355093 | 2000-05-20 16:05:34 +0000 | [diff] [blame] | 133 | if os.path.basename(dst) == os.path.basename(src): |
| 134 | print "%s %s -> %s" % (action, src, dir) |
| 135 | else: |
| 136 | print "%s %s -> %s" % (action, src, dst) |
| 137 | |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 138 | if dry_run: |
Greg Ward | 0d4a853 | 2000-09-30 17:29:35 +0000 | [diff] [blame] | 139 | return (dst, 1) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 140 | |
Greg Ward | 0d4a853 | 2000-09-30 17:29:35 +0000 | [diff] [blame] | 141 | # On Mac OS, use the native file copy routine |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 142 | if os.name == 'mac': |
| 143 | import macostools |
| 144 | try: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 145 | macostools.copy(src, dst, 0, preserve_times) |
Greg Ward | 3af07e9 | 2000-04-22 15:17:14 +0000 | [diff] [blame] | 146 | except os.error, exc: |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 147 | raise DistutilsFileError, \ |
| 148 | "could not copy '%s' to '%s': %s" % (src, dst, exc[-1]) |
| 149 | |
| 150 | # If linking (hard or symbolic), use the appropriate system call |
| 151 | # (Unix only, of course, but that's the caller's responsibility) |
| 152 | elif link == 'hard': |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 153 | if not (os.path.exists(dst) and os.path.samefile(src, dst)): |
| 154 | os.link(src, dst) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 155 | elif link == 'sym': |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 156 | if not (os.path.exists(dst) and os.path.samefile(src, dst)): |
| 157 | os.symlink(src, dst) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 158 | |
| 159 | # Otherwise (non-Mac, not linking), copy the file contents and |
| 160 | # (optionally) copy the times and mode. |
| 161 | else: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 162 | _copy_file_contents(src, dst) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 163 | if preserve_mode or preserve_times: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 164 | st = os.stat(src) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 165 | |
| 166 | # According to David Ascher <da@ski.org>, utime() should be done |
| 167 | # before chmod() (at least under NT). |
| 168 | if preserve_times: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 169 | os.utime(dst, (st[ST_ATIME], st[ST_MTIME])) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 170 | if preserve_mode: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 171 | os.chmod(dst, S_IMODE(st[ST_MODE])) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 172 | |
Greg Ward | 0d4a853 | 2000-09-30 17:29:35 +0000 | [diff] [blame] | 173 | return (dst, 1) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 174 | |
| 175 | # copy_file () |
| 176 | |
| 177 | |
| 178 | # XXX I suspect this is Unix-specific -- need porting help! |
| 179 | def move_file (src, dst, |
| 180 | verbose=0, |
| 181 | dry_run=0): |
| 182 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 183 | """Move a file 'src' to 'dst'. If 'dst' is a directory, the file will |
| 184 | be moved into it with the same name; otherwise, 'src' is just renamed |
| 185 | to 'dst'. Return the new full name of the file. |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 186 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 187 | Handles cross-device moves on Unix using 'copy_file()'. What about |
| 188 | other systems??? |
| 189 | """ |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 190 | from os.path import exists, isfile, isdir, basename, dirname |
| 191 | |
| 192 | if verbose: |
| 193 | print "moving %s -> %s" % (src, dst) |
| 194 | |
| 195 | if dry_run: |
| 196 | return dst |
| 197 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 198 | if not isfile(src): |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 199 | raise DistutilsFileError, \ |
| 200 | "can't move '%s': not a regular file" % src |
| 201 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 202 | if isdir(dst): |
| 203 | dst = os.path.join(dst, basename(src)) |
| 204 | elif exists(dst): |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 205 | raise DistutilsFileError, \ |
| 206 | "can't move '%s': destination '%s' already exists" % \ |
| 207 | (src, dst) |
| 208 | |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 209 | if not isdir(dirname(dst)): |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 210 | raise DistutilsFileError, \ |
| 211 | "can't move '%s': destination '%s' not a valid path" % \ |
| 212 | (src, dst) |
| 213 | |
| 214 | copy_it = 0 |
| 215 | try: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 216 | os.rename(src, dst) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 217 | except os.error, (num, msg): |
| 218 | if num == errno.EXDEV: |
| 219 | copy_it = 1 |
| 220 | else: |
| 221 | raise DistutilsFileError, \ |
| 222 | "couldn't move '%s' to '%s': %s" % (src, dst, msg) |
| 223 | |
| 224 | if copy_it: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 225 | copy_file(src, dst) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 226 | try: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 227 | os.unlink(src) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 228 | except os.error, (num, msg): |
| 229 | try: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 230 | os.unlink(dst) |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 231 | except os.error: |
| 232 | pass |
| 233 | raise DistutilsFileError, \ |
| 234 | ("couldn't move '%s' to '%s' by copy/delete: " + |
| 235 | "delete '%s' failed: %s") % \ |
| 236 | (src, dst, src, msg) |
| 237 | |
| 238 | return dst |
| 239 | |
| 240 | # move_file () |
| 241 | |
| 242 | |
| 243 | def write_file (filename, contents): |
| 244 | """Create a file with the specified name and write 'contents' (a |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 245 | sequence of strings without line terminators) to it. |
| 246 | """ |
| 247 | f = open(filename, "w") |
Greg Ward | aebf706 | 2000-04-04 02:05:59 +0000 | [diff] [blame] | 248 | for line in contents: |
Greg Ward | 9e3dc4e | 2000-09-23 00:59:34 +0000 | [diff] [blame] | 249 | f.write(line + "\n") |
| 250 | f.close() |