blob: 8e642e16c6d9b330aa0f6d6a48591ca789ff63dc [file] [log] [blame]
Greg Ward2689e3d1999-03-22 14:52:19 +00001"""distutils.util
2
Greg Wardaebf7062000-04-04 02:05:59 +00003Miscellaneous utility functions -- anything that doesn't fit into
4one of the other *util.py modules."""
Greg Ward2689e3d1999-03-22 14:52:19 +00005
6# created 1999/03/08, Greg Ward
7
Greg Ward3ce77fd2000-03-02 01:49:45 +00008__revision__ = "$Id$"
Greg Ward2689e3d1999-03-22 14:52:19 +00009
Greg Warda7540bd2000-03-23 04:39:16 +000010import sys, os, string, re, shutil
Greg Ward2689e3d1999-03-22 14:52:19 +000011from distutils.errors import *
Greg Ward7c1a6d42000-03-29 02:48:40 +000012from distutils.spawn import spawn
Greg Ward2689e3d1999-03-22 14:52:19 +000013
Greg Wardaebf7062000-04-04 02:05:59 +000014# for backwards compatibility:
15from distutils.file_util import *
16from distutils.dir_util import *
17from distutils.dep_util import *
18from distutils.archive_util import *
Greg Ward585df892000-03-01 14:40:15 +000019
20
Greg Wardaa458bc2000-04-22 15:14:58 +000021# Need to define 'abspath()', because it was new with Python 1.5.2
22if hasattr (os.path, 'abspath'):
23 abspath = os.path.abspath
24else:
25 def abspath(path):
26 if not os.path.isabs(path):
27 path = os.path.join(os.getcwd(), path)
28 return os.path.normpath(path)
29
30
31# More backwards compatability hacks
32def extend (list, new_list):
33 """Appends the list 'new_list' to 'list', just like the 'extend()'
34 list method does in Python 1.5.2 -- but this works on earlier
35 versions of Python too."""
36
37 if hasattr (list, 'extend'):
38 list.extend (new_list)
39 else:
40 list[len(list):] = new_list
41
42# extend ()
43
44
Greg Ward585df892000-03-01 14:40:15 +000045def get_platform ():
46 """Return a string (suitable for tacking onto directory names) that
47 identifies the current platform. Under Unix, identifies both the OS
48 and hardware architecture, e.g. "linux-i586", "solaris-sparc",
49 "irix-mips". For Windows and Mac OS, just returns 'sys.platform' --
50 i.e. "???" or "???"."""
51
52 if os.name == 'posix':
Greg Ward6ce00b42000-03-31 04:40:25 +000053 (OS, _, rel, _, arch) = os.uname()
54 return "%s%c-%s" % (string.lower (OS), rel[0], string.lower (arch))
Greg Ward585df892000-03-01 14:40:15 +000055 else:
56 return sys.platform
57
58# get_platform()
Greg Ward50919292000-03-07 03:27:08 +000059
60
61def native_path (pathname):
62 """Return 'pathname' as a name that will work on the native
63 filesystem, i.e. split it on '/' and put it back together again
64 using the current directory separator. Needed because filenames in
65 the setup script are always supplied in Unix style, and have to be
66 converted to the local convention before we can actually use them in
Greg Ward02a1a2b2000-04-15 22:15:07 +000067 the filesystem. Raises ValueError if 'pathname' is
Greg Ward50919292000-03-07 03:27:08 +000068 absolute (starts with '/') or contains local directory separators
69 (unless the local separator is '/', of course)."""
70
71 if pathname[0] == '/':
Greg Ward02a1a2b2000-04-15 22:15:07 +000072 raise ValueError, "path '%s' cannot be absolute" % pathname
Greg Ward50919292000-03-07 03:27:08 +000073 if pathname[-1] == '/':
Greg Ward02a1a2b2000-04-15 22:15:07 +000074 raise ValueError, "path '%s' cannot end with '/'" % pathname
Greg Ward464023f2000-04-25 01:33:11 +000075 if os.sep != '/':
76 if os.sep in pathname:
77 raise ValueError, \
78 "path '%s' cannot contain '%c' character" % (pathname, os.sep)
79 else:
80 paths = string.split (pathname, '/')
81 return apply (os.path.join, paths)
Greg Ward50919292000-03-07 03:27:08 +000082 else:
83 return pathname
84
85# native_path ()
Greg Ward1b4ede52000-03-22 00:22:44 +000086
87
Greg Ward67f75d42000-04-27 01:53:46 +000088def change_root (new_root, pathname):
89
90 """Return 'pathname' with 'new_root' prepended. If 'pathname' is
91 relative, this is equivalent to "os.path.join(new_root,pathname)".
92 Otherwise, it requires making 'pathname' relative and then joining the
93 two, which is tricky on DOS/Windows and Mac OS."""
94
95 if not abspath (pathname):
96 return os.path.join (new_root, pathname)
97
98 elif os.name == 'posix':
99 return os.path.join (new_root, pathname[1:])
100
101 elif os.name == 'nt':
102 (root_drive, root_path) = os.path.splitdrive (new_root)
103 (drive, path) = os.path.splitdrive (pathname)
104 raise RuntimeError, "I give up -- not sure how to do this on Windows"
105
106 elif os.name == 'mac':
107 raise RuntimeError, "no clue how to do this on Mac OS"
108
109 else:
110 raise DistutilsPlatformError, \
111 "nothing known about platform '%s'" % os.name
112
113
Greg Ward1b4ede52000-03-22 00:22:44 +0000114def _check_environ ():
115 """Ensure that 'os.environ' has all the environment variables we
116 guarantee that users can use in config files, command-line
117 options, etc. Currently this includes:
118 HOME - user's home directory (Unix only)
119 PLAT - desription of the current platform, including hardware
120 and OS (see 'get_platform()')
121 """
122
123 if os.name == 'posix' and not os.environ.has_key('HOME'):
124 import pwd
125 os.environ['HOME'] = pwd.getpwuid (os.getuid())[5]
126
127 if not os.environ.has_key('PLAT'):
128 os.environ['PLAT'] = get_platform ()
129
130
131def subst_vars (str, local_vars):
132 """Perform shell/Perl-style variable substitution on 'string'.
133 Every occurence of '$' followed by a name, or a name enclosed in
134 braces, is considered a variable. Every variable is substituted by
135 the value found in the 'local_vars' dictionary, or in 'os.environ'
136 if it's not in 'local_vars'. 'os.environ' is first checked/
137 augmented to guarantee that it contains certain values: see
138 '_check_environ()'. Raise ValueError for any variables not found in
139 either 'local_vars' or 'os.environ'."""
140
141 _check_environ ()
142 def _subst (match, local_vars=local_vars):
143 var_name = match.group(1)
144 if local_vars.has_key (var_name):
145 return str (local_vars[var_name])
146 else:
147 return os.environ[var_name]
148
149 return re.sub (r'\$([a-zA-Z_][a-zA-Z_0-9]*)', _subst, str)
150
151# subst_vars ()
Greg Ward7c1a6d42000-03-29 02:48:40 +0000152
153