blob: 9c436b94749b43d7367c43b6a09dc0f771c2b049 [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 Ward1b4ede52000-03-22 00:22:44 +000075 if os.sep != '/' and os.sep in pathname:
Greg Ward02a1a2b2000-04-15 22:15:07 +000076 raise ValueError, \
Greg Ward1b4ede52000-03-22 00:22:44 +000077 "path '%s' cannot contain '%c' character" % \
78 (pathname, os.sep)
Greg Ward50919292000-03-07 03:27:08 +000079
80 paths = string.split (pathname, '/')
81 return apply (os.path.join, paths)
82 else:
83 return pathname
84
85# native_path ()
Greg Ward1b4ede52000-03-22 00:22:44 +000086
87
88def _check_environ ():
89 """Ensure that 'os.environ' has all the environment variables we
90 guarantee that users can use in config files, command-line
91 options, etc. Currently this includes:
92 HOME - user's home directory (Unix only)
93 PLAT - desription of the current platform, including hardware
94 and OS (see 'get_platform()')
95 """
96
97 if os.name == 'posix' and not os.environ.has_key('HOME'):
98 import pwd
99 os.environ['HOME'] = pwd.getpwuid (os.getuid())[5]
100
101 if not os.environ.has_key('PLAT'):
102 os.environ['PLAT'] = get_platform ()
103
104
105def subst_vars (str, local_vars):
106 """Perform shell/Perl-style variable substitution on 'string'.
107 Every occurence of '$' followed by a name, or a name enclosed in
108 braces, is considered a variable. Every variable is substituted by
109 the value found in the 'local_vars' dictionary, or in 'os.environ'
110 if it's not in 'local_vars'. 'os.environ' is first checked/
111 augmented to guarantee that it contains certain values: see
112 '_check_environ()'. Raise ValueError for any variables not found in
113 either 'local_vars' or 'os.environ'."""
114
115 _check_environ ()
116 def _subst (match, local_vars=local_vars):
117 var_name = match.group(1)
118 if local_vars.has_key (var_name):
119 return str (local_vars[var_name])
120 else:
121 return os.environ[var_name]
122
123 return re.sub (r'\$([a-zA-Z_][a-zA-Z_0-9]*)', _subst, str)
124
125# subst_vars ()
Greg Ward7c1a6d42000-03-29 02:48:40 +0000126
127