dir_util.py 7.62 KB
Newer Older
1 2 3 4
"""distutils.dir_util

Utility functions for manipulating directories and directory trees."""

5
import os
6
import errno
7
from distutils.errors import DistutilsFileError, DistutilsInternalError
8
from distutils import log
9 10 11

# cache for by mkpath() -- in addition to cheapening redundant calls,
# eliminates redundant "creating /foo/bar/baz" messages in dry-run mode
12
_path_created = {}
13 14 15 16

# I don't use os.makedirs because a) it's new to Python 1.5.2, and
# b) it blows up if the directory already exists (I want to silently
# succeed in that case).
17 18 19 20 21 22 23 24 25 26
def mkpath(name, mode=0o777, verbose=1, dry_run=0):
    """Create a directory and any missing ancestor directories.

    If the directory already exists (or if 'name' is the empty string, which
    means the current directory, which of course exists), then do nothing.
    Raise DistutilsFileError if unable to create some directory along the way
    (eg. some sub-path exists, but is a file rather than a directory).
    If 'verbose' is true, print a one-line summary of each mkdir to stdout.
    Return the list of directories actually created.
    """
27

28
    global _path_created
29

30
    # Detect a common bug -- name is None
31
    if not isinstance(name, str):
32 33
        raise DistutilsInternalError(
              "mkpath: 'name' must be a string (got %r)" % (name,))
34

35 36 37 38 39
    # XXX what's the better way to handle verbosity? print as we create
    # each directory in the path (the current behaviour), or only announce
    # the creation of the whole path? (quite easy to do the latter since
    # we're not using a recursive algorithm)

40
    name = os.path.normpath(name)
41
    created_dirs = []
42
    if os.path.isdir(name) or name == '':
43
        return created_dirs
44
    if _path_created.get(os.path.abspath(name)):
45 46
        return created_dirs

47
    (head, tail) = os.path.split(name)
48
    tails = [tail]                      # stack of lone dirs to create
Fred Drake's avatar
Fred Drake committed
49

50 51 52
    while head and tail and not os.path.isdir(head):
        (head, tail) = os.path.split(head)
        tails.insert(0, tail)          # push next higher dir onto stack
53 54 55 56 57 58

    # now 'head' contains the deepest directory that already exists
    # (that is, the child of 'head' in 'name' is the highest directory
    # that does *not* exist)
    for d in tails:
        #print "head = %s, d = %s: " % (head, d),
59
        head = os.path.join(head, d)
60 61 62
        abs_head = os.path.abspath(head)

        if _path_created.get(abs_head):
63 64
            continue

65
        if verbose >= 1:
66
            log.info("creating %s", head)
67 68 69

        if not dry_run:
            try:
70
                os.mkdir(head, mode)
71
            except OSError as exc:
72 73 74 75
                if not (exc.errno == errno.EEXIST and os.path.isdir(head)):
                    raise DistutilsFileError(
                          "could not create '%s': %s" % (head, exc.args[-1]))
            created_dirs.append(head)
76

77
        _path_created[abs_head] = 1
78 79
    return created_dirs

80 81 82
def create_tree(base_dir, files, mode=0o777, verbose=1, dry_run=0):
    """Create all the empty directories under 'base_dir' needed to put 'files'
    there.
83

84 85 86 87 88 89
    'base_dir' is just the a name of a directory which doesn't necessarily
    exist yet; 'files' is a list of filenames to be interpreted relative to
    'base_dir'.  'base_dir' + the directory portion of every file in 'files'
    will be created if it doesn't already exist.  'mode', 'verbose' and
    'dry_run' flags are as for 'mkpath()'.
    """
90
    # First get the list of directories to create
91
    need_dir = set()
92
    for file in files:
93
        need_dir.add(os.path.join(base_dir, os.path.dirname(file)))
94 95

    # Now create them
96
    for dir in sorted(need_dir):
97
        mkpath(dir, mode, verbose=verbose, dry_run=dry_run)
98

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
def copy_tree(src, dst, preserve_mode=1, preserve_times=1,
              preserve_symlinks=0, update=0, verbose=1, dry_run=0):
    """Copy an entire directory tree 'src' to a new location 'dst'.

    Both 'src' and 'dst' must be directory names.  If 'src' is not a
    directory, raise DistutilsFileError.  If 'dst' does not exist, it is
    created with 'mkpath()'.  The end result of the copy is that every
    file in 'src' is copied to 'dst', and directories under 'src' are
    recursively copied to 'dst'.  Return the list of files that were
    copied or might have been copied, using their output name.  The
    return value is unaffected by 'update' or 'dry_run': it is simply
    the list of all files under 'src', with the names changed to be
    under 'dst'.

    'preserve_mode' and 'preserve_times' are the same as for
    'copy_file'; note that they only apply to regular files, not to
    directories.  If 'preserve_symlinks' is true, symlinks will be
    copied as symlinks (on platforms that support them!); otherwise
    (the default), the destination of the symlink will be copied.
    'update' and 'verbose' are the same as for 'copy_file'.
    """
120 121
    from distutils.file_util import copy_file

122
    if not dry_run and not os.path.isdir(src):
123 124
        raise DistutilsFileError(
              "cannot copy tree '%s': not a directory" % src)
125
    try:
126
        names = os.listdir(src)
127
    except OSError as e:
128
        (errno, errstr) = e
129 130 131
        if dry_run:
            names = []
        else:
132 133
            raise DistutilsFileError(
                  "error listing files in '%s': %s" % (src, errstr))
134 135

    if not dry_run:
136
        mkpath(dst, verbose=verbose)
137 138 139 140

    outputs = []

    for n in names:
141 142
        src_name = os.path.join(src, n)
        dst_name = os.path.join(dst, n)
143

144 145 146 147
        if n.startswith('.nfs'):
            # skip NFS rename files
            continue

148 149
        if preserve_symlinks and os.path.islink(src_name):
            link_dest = os.readlink(src_name)
150
            if verbose >= 1:
151
                log.info("linking %s -> %s", dst_name, link_dest)
152
            if not dry_run:
153 154
                os.symlink(link_dest, dst_name)
            outputs.append(dst_name)
Fred Drake's avatar
Fred Drake committed
155

156 157
        elif os.path.isdir(src_name):
            outputs.extend(
158 159
                copy_tree(src_name, dst_name, preserve_mode,
                          preserve_times, preserve_symlinks, update,
160
                          verbose=verbose, dry_run=dry_run))
161
        else:
162
            copy_file(src_name, dst_name, preserve_mode,
163 164
                      preserve_times, update, verbose=verbose,
                      dry_run=dry_run)
165
            outputs.append(dst_name)
166 167 168

    return outputs

169
def _build_cmdtuple(path, cmdtuples):
170
    """Helper for remove_tree()."""
171 172 173 174 175 176 177 178
    for f in os.listdir(path):
        real_f = os.path.join(path,f)
        if os.path.isdir(real_f) and not os.path.islink(real_f):
            _build_cmdtuple(real_f, cmdtuples)
        else:
            cmdtuples.append((os.remove, real_f))
    cmdtuples.append((os.rmdir, path))

179 180
def remove_tree(directory, verbose=1, dry_run=0):
    """Recursively remove an entire directory tree.
181

182 183
    Any errors are ignored (apart from being reported to stdout if 'verbose'
    is true).
184
    """
185
    global _path_created
186

187
    if verbose >= 1:
188
        log.info("removing '%s' (and everything under it)", directory)
189 190
    if dry_run:
        return
191 192 193 194
    cmdtuples = []
    _build_cmdtuple(directory, cmdtuples)
    for cmd in cmdtuples:
        try:
Neal Norwitz's avatar
Neal Norwitz committed
195
            cmd[0](cmd[1])
196
            # remove dir from cache if it's already there
197
            abspath = os.path.abspath(cmd[1])
198
            if abspath in _path_created:
199
                del _path_created[abspath]
200
        except OSError as exc:
201
            log.warn("error removing %s: %s", directory, exc)
202

203
def ensure_relative(path):
204 205 206
    """Take the full path 'path', and make it a relative path.

    This is useful to make 'path' the second argument to os.path.join().
207 208
    """
    drive, path = os.path.splitdrive(path)
209 210 211
    if path[0:1] == os.sep:
        path = drive + path[1:]
    return path