util.py 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554
  1. """distutils.util
  2. Miscellaneous utility functions -- anything that doesn't fit into
  3. one of the other *util.py modules.
  4. """
  5. import os
  6. import re
  7. import importlib.util
  8. import sys
  9. import string
  10. from distutils.errors import DistutilsPlatformError
  11. from distutils.dep_util import newer
  12. from distutils.spawn import spawn
  13. from distutils import log
  14. from distutils.errors import DistutilsByteCompileError
  15. def get_platform ():
  16. """Return a string that identifies the current platform. This is used
  17. mainly to distinguish platform-specific build directories and
  18. platform-specific built distributions. Typically includes the OS name
  19. and version and the architecture (as supplied by 'os.uname()'),
  20. although the exact information included depends on the OS; eg. for IRIX
  21. the architecture isn't particularly important (IRIX only runs on SGI
  22. hardware), but for Linux the kernel version isn't particularly
  23. important.
  24. Examples of returned values:
  25. linux-i586
  26. linux-alpha (?)
  27. solaris-2.6-sun4u
  28. irix-5.3
  29. irix64-6.2
  30. Windows will return one of:
  31. win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc)
  32. win-ia64 (64bit Windows on Itanium)
  33. win32 (all others - specifically, sys.platform is returned)
  34. For other non-POSIX platforms, currently just returns 'sys.platform'.
  35. """
  36. if os.name == 'nt':
  37. # sniff sys.version for architecture.
  38. prefix = " bit ("
  39. i = sys.version.find(prefix)
  40. if i == -1:
  41. return sys.platform
  42. j = sys.version.find(")", i)
  43. look = sys.version[i+len(prefix):j].lower()
  44. if look == 'amd64':
  45. return 'win-amd64'
  46. if look == 'itanium':
  47. return 'win-ia64'
  48. return sys.platform
  49. # Set for cross builds explicitly
  50. if "_PYTHON_HOST_PLATFORM" in os.environ:
  51. return os.environ["_PYTHON_HOST_PLATFORM"]
  52. if os.name != "posix" or not hasattr(os, 'uname'):
  53. # XXX what about the architecture? NT is Intel or Alpha,
  54. # Mac OS is M68k or PPC, etc.
  55. return sys.platform
  56. # Try to distinguish various flavours of Unix
  57. (osname, host, release, version, machine) = os.uname()
  58. # Convert the OS name to lowercase, remove '/' characters
  59. # (to accommodate BSD/OS), and translate spaces (for "Power Macintosh")
  60. osname = osname.lower().replace('/', '')
  61. machine = machine.replace(' ', '_')
  62. machine = machine.replace('/', '-')
  63. if osname[:5] == "linux":
  64. # At least on Linux/Intel, 'machine' is the processor --
  65. # i386, etc.
  66. # XXX what about Alpha, SPARC, etc?
  67. return "%s-%s" % (osname, machine)
  68. elif osname[:5] == "sunos":
  69. if release[0] >= "5": # SunOS 5 == Solaris 2
  70. osname = "solaris"
  71. release = "%d.%s" % (int(release[0]) - 3, release[2:])
  72. # We can't use "platform.architecture()[0]" because a
  73. # bootstrap problem. We use a dict to get an error
  74. # if some suspicious happens.
  75. bitness = {2147483647:"32bit", 9223372036854775807:"64bit"}
  76. machine += ".%s" % bitness[sys.maxsize]
  77. # fall through to standard osname-release-machine representation
  78. elif osname[:4] == "irix": # could be "irix64"!
  79. return "%s-%s" % (osname, release)
  80. elif osname[:3] == "aix":
  81. return "%s-%s.%s" % (osname, version, release)
  82. elif osname[:6] == "cygwin":
  83. osname = "cygwin"
  84. rel_re = re.compile (r'[\d.]+', re.ASCII)
  85. m = rel_re.match(release)
  86. if m:
  87. release = m.group()
  88. elif osname[:6] == "darwin":
  89. import _osx_support, distutils.sysconfig
  90. osname, release, machine = _osx_support.get_platform_osx(
  91. distutils.sysconfig.get_config_vars(),
  92. osname, release, machine)
  93. return "%s-%s-%s" % (osname, release, machine)
  94. # get_platform ()
  95. def convert_path (pathname):
  96. """Return 'pathname' as a name that will work on the native filesystem,
  97. i.e. split it on '/' and put it back together again using the current
  98. directory separator. Needed because filenames in the setup script are
  99. always supplied in Unix style, and have to be converted to the local
  100. convention before we can actually use them in the filesystem. Raises
  101. ValueError on non-Unix-ish systems if 'pathname' either starts or
  102. ends with a slash.
  103. """
  104. if os.sep == '/':
  105. return pathname
  106. if not pathname:
  107. return pathname
  108. if pathname[0] == '/':
  109. raise ValueError("path '%s' cannot be absolute" % pathname)
  110. if pathname[-1] == '/':
  111. raise ValueError("path '%s' cannot end with '/'" % pathname)
  112. paths = pathname.split('/')
  113. while '.' in paths:
  114. paths.remove('.')
  115. if not paths:
  116. return os.curdir
  117. return os.path.join(*paths)
  118. # convert_path ()
  119. def change_root (new_root, pathname):
  120. """Return 'pathname' with 'new_root' prepended. If 'pathname' is
  121. relative, this is equivalent to "os.path.join(new_root,pathname)".
  122. Otherwise, it requires making 'pathname' relative and then joining the
  123. two, which is tricky on DOS/Windows and Mac OS.
  124. """
  125. if os.name == 'posix':
  126. if not os.path.isabs(pathname):
  127. return os.path.join(new_root, pathname)
  128. else:
  129. return os.path.join(new_root, pathname[1:])
  130. elif os.name == 'nt':
  131. (drive, path) = os.path.splitdrive(pathname)
  132. if path[0] == '\\':
  133. path = path[1:]
  134. return os.path.join(new_root, path)
  135. else:
  136. raise DistutilsPlatformError("nothing known about platform '%s'" % os.name)
  137. _environ_checked = 0
  138. def check_environ ():
  139. """Ensure that 'os.environ' has all the environment variables we
  140. guarantee that users can use in config files, command-line options,
  141. etc. Currently this includes:
  142. HOME - user's home directory (Unix only)
  143. PLAT - description of the current platform, including hardware
  144. and OS (see 'get_platform()')
  145. """
  146. global _environ_checked
  147. if _environ_checked:
  148. return
  149. if os.name == 'posix' and 'HOME' not in os.environ:
  150. import pwd
  151. os.environ['HOME'] = pwd.getpwuid(os.getuid())[5]
  152. if 'PLAT' not in os.environ:
  153. os.environ['PLAT'] = get_platform()
  154. _environ_checked = 1
  155. def subst_vars (s, local_vars):
  156. """Perform shell/Perl-style variable substitution on 'string'. Every
  157. occurrence of '$' followed by a name is considered a variable, and
  158. variable is substituted by the value found in the 'local_vars'
  159. dictionary, or in 'os.environ' if it's not in 'local_vars'.
  160. 'os.environ' is first checked/augmented to guarantee that it contains
  161. certain values: see 'check_environ()'. Raise ValueError for any
  162. variables not found in either 'local_vars' or 'os.environ'.
  163. """
  164. check_environ()
  165. def _subst (match, local_vars=local_vars):
  166. var_name = match.group(1)
  167. if var_name in local_vars:
  168. return str(local_vars[var_name])
  169. else:
  170. return os.environ[var_name]
  171. try:
  172. return re.sub(r'\$([a-zA-Z_][a-zA-Z_0-9]*)', _subst, s)
  173. except KeyError as var:
  174. raise ValueError("invalid variable '$%s'" % var)
  175. # subst_vars ()
  176. def grok_environment_error (exc, prefix="error: "):
  177. # Function kept for backward compatibility.
  178. # Used to try clever things with EnvironmentErrors,
  179. # but nowadays str(exception) produces good messages.
  180. return prefix + str(exc)
  181. # Needed by 'split_quoted()'
  182. _wordchars_re = _squote_re = _dquote_re = None
  183. def _init_regex():
  184. global _wordchars_re, _squote_re, _dquote_re
  185. _wordchars_re = re.compile(r'[^\\\'\"%s ]*' % string.whitespace)
  186. _squote_re = re.compile(r"'(?:[^'\\]|\\.)*'")
  187. _dquote_re = re.compile(r'"(?:[^"\\]|\\.)*"')
  188. def split_quoted (s):
  189. """Split a string up according to Unix shell-like rules for quotes and
  190. backslashes. In short: words are delimited by spaces, as long as those
  191. spaces are not escaped by a backslash, or inside a quoted string.
  192. Single and double quotes are equivalent, and the quote characters can
  193. be backslash-escaped. The backslash is stripped from any two-character
  194. escape sequence, leaving only the escaped character. The quote
  195. characters are stripped from any quoted string. Returns a list of
  196. words.
  197. """
  198. # This is a nice algorithm for splitting up a single string, since it
  199. # doesn't require character-by-character examination. It was a little
  200. # bit of a brain-bender to get it working right, though...
  201. if _wordchars_re is None: _init_regex()
  202. s = s.strip()
  203. words = []
  204. pos = 0
  205. while s:
  206. m = _wordchars_re.match(s, pos)
  207. end = m.end()
  208. if end == len(s):
  209. words.append(s[:end])
  210. break
  211. if s[end] in string.whitespace: # unescaped, unquoted whitespace: now
  212. words.append(s[:end]) # we definitely have a word delimiter
  213. s = s[end:].lstrip()
  214. pos = 0
  215. elif s[end] == '\\': # preserve whatever is being escaped;
  216. # will become part of the current word
  217. s = s[:end] + s[end+1:]
  218. pos = end+1
  219. else:
  220. if s[end] == "'": # slurp singly-quoted string
  221. m = _squote_re.match(s, end)
  222. elif s[end] == '"': # slurp doubly-quoted string
  223. m = _dquote_re.match(s, end)
  224. else:
  225. raise RuntimeError("this can't happen (bad char '%c')" % s[end])
  226. if m is None:
  227. raise ValueError("bad string (mismatched %s quotes?)" % s[end])
  228. (beg, end) = m.span()
  229. s = s[:beg] + s[beg+1:end-1] + s[end:]
  230. pos = m.end() - 2
  231. if pos >= len(s):
  232. words.append(s)
  233. break
  234. return words
  235. # split_quoted ()
  236. def execute (func, args, msg=None, verbose=0, dry_run=0):
  237. """Perform some action that affects the outside world (eg. by
  238. writing to the filesystem). Such actions are special because they
  239. are disabled by the 'dry_run' flag. This method takes care of all
  240. that bureaucracy for you; all you have to do is supply the
  241. function to call and an argument tuple for it (to embody the
  242. "external action" being performed), and an optional message to
  243. print.
  244. """
  245. if msg is None:
  246. msg = "%s%r" % (func.__name__, args)
  247. if msg[-2:] == ',)': # correct for singleton tuple
  248. msg = msg[0:-2] + ')'
  249. log.info(msg)
  250. if not dry_run:
  251. func(*args)
  252. def strtobool (val):
  253. """Convert a string representation of truth to true (1) or false (0).
  254. True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
  255. are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if
  256. 'val' is anything else.
  257. """
  258. val = val.lower()
  259. if val in ('y', 'yes', 't', 'true', 'on', '1'):
  260. return 1
  261. elif val in ('n', 'no', 'f', 'false', 'off', '0'):
  262. return 0
  263. else:
  264. raise ValueError("invalid truth value %r" % (val,))
  265. def byte_compile (py_files,
  266. optimize=0, force=0,
  267. prefix=None, base_dir=None,
  268. verbose=1, dry_run=0,
  269. direct=None):
  270. """Byte-compile a collection of Python source files to .pyc
  271. files in a __pycache__ subdirectory. 'py_files' is a list
  272. of files to compile; any files that don't end in ".py" are silently
  273. skipped. 'optimize' must be one of the following:
  274. 0 - don't optimize
  275. 1 - normal optimization (like "python -O")
  276. 2 - extra optimization (like "python -OO")
  277. If 'force' is true, all files are recompiled regardless of
  278. timestamps.
  279. The source filename encoded in each bytecode file defaults to the
  280. filenames listed in 'py_files'; you can modify these with 'prefix' and
  281. 'basedir'. 'prefix' is a string that will be stripped off of each
  282. source filename, and 'base_dir' is a directory name that will be
  283. prepended (after 'prefix' is stripped). You can supply either or both
  284. (or neither) of 'prefix' and 'base_dir', as you wish.
  285. If 'dry_run' is true, doesn't actually do anything that would
  286. affect the filesystem.
  287. Byte-compilation is either done directly in this interpreter process
  288. with the standard py_compile module, or indirectly by writing a
  289. temporary script and executing it. Normally, you should let
  290. 'byte_compile()' figure out to use direct compilation or not (see
  291. the source for details). The 'direct' flag is used by the script
  292. generated in indirect mode; unless you know what you're doing, leave
  293. it set to None.
  294. """
  295. # nothing is done if sys.dont_write_bytecode is True
  296. if sys.dont_write_bytecode:
  297. raise DistutilsByteCompileError('byte-compiling is disabled.')
  298. # First, if the caller didn't force us into direct or indirect mode,
  299. # figure out which mode we should be in. We take a conservative
  300. # approach: choose direct mode *only* if the current interpreter is
  301. # in debug mode and optimize is 0. If we're not in debug mode (-O
  302. # or -OO), we don't know which level of optimization this
  303. # interpreter is running with, so we can't do direct
  304. # byte-compilation and be certain that it's the right thing. Thus,
  305. # always compile indirectly if the current interpreter is in either
  306. # optimize mode, or if either optimization level was requested by
  307. # the caller.
  308. if direct is None:
  309. direct = (__debug__ and optimize == 0)
  310. # "Indirect" byte-compilation: write a temporary script and then
  311. # run it with the appropriate flags.
  312. if not direct:
  313. try:
  314. from tempfile import mkstemp
  315. (script_fd, script_name) = mkstemp(".py")
  316. except ImportError:
  317. from tempfile import mktemp
  318. (script_fd, script_name) = None, mktemp(".py")
  319. log.info("writing byte-compilation script '%s'", script_name)
  320. if not dry_run:
  321. if script_fd is not None:
  322. script = os.fdopen(script_fd, "w")
  323. else:
  324. script = open(script_name, "w")
  325. script.write("""\
  326. from distutils.util import byte_compile
  327. files = [
  328. """)
  329. # XXX would be nice to write absolute filenames, just for
  330. # safety's sake (script should be more robust in the face of
  331. # chdir'ing before running it). But this requires abspath'ing
  332. # 'prefix' as well, and that breaks the hack in build_lib's
  333. # 'byte_compile()' method that carefully tacks on a trailing
  334. # slash (os.sep really) to make sure the prefix here is "just
  335. # right". This whole prefix business is rather delicate -- the
  336. # problem is that it's really a directory, but I'm treating it
  337. # as a dumb string, so trailing slashes and so forth matter.
  338. #py_files = map(os.path.abspath, py_files)
  339. #if prefix:
  340. # prefix = os.path.abspath(prefix)
  341. script.write(",\n".join(map(repr, py_files)) + "]\n")
  342. script.write("""
  343. byte_compile(files, optimize=%r, force=%r,
  344. prefix=%r, base_dir=%r,
  345. verbose=%r, dry_run=0,
  346. direct=1)
  347. """ % (optimize, force, prefix, base_dir, verbose))
  348. script.close()
  349. cmd = [sys.executable, script_name]
  350. if optimize == 1:
  351. cmd.insert(1, "-O")
  352. elif optimize == 2:
  353. cmd.insert(1, "-OO")
  354. spawn(cmd, dry_run=dry_run)
  355. execute(os.remove, (script_name,), "removing %s" % script_name,
  356. dry_run=dry_run)
  357. # "Direct" byte-compilation: use the py_compile module to compile
  358. # right here, right now. Note that the script generated in indirect
  359. # mode simply calls 'byte_compile()' in direct mode, a weird sort of
  360. # cross-process recursion. Hey, it works!
  361. else:
  362. from py_compile import compile
  363. for file in py_files:
  364. if file[-3:] != ".py":
  365. # This lets us be lazy and not filter filenames in
  366. # the "install_lib" command.
  367. continue
  368. # Terminology from the py_compile module:
  369. # cfile - byte-compiled file
  370. # dfile - purported source filename (same as 'file' by default)
  371. if optimize >= 0:
  372. opt = '' if optimize == 0 else optimize
  373. cfile = importlib.util.cache_from_source(
  374. file, optimization=opt)
  375. else:
  376. cfile = importlib.util.cache_from_source(file)
  377. dfile = file
  378. if prefix:
  379. if file[:len(prefix)] != prefix:
  380. raise ValueError("invalid prefix: filename %r doesn't start with %r"
  381. % (file, prefix))
  382. dfile = dfile[len(prefix):]
  383. if base_dir:
  384. dfile = os.path.join(base_dir, dfile)
  385. cfile_base = os.path.basename(cfile)
  386. if direct:
  387. if force or newer(file, cfile):
  388. log.info("byte-compiling %s to %s", file, cfile_base)
  389. if not dry_run:
  390. compile(file, cfile, dfile)
  391. else:
  392. log.debug("skipping byte-compilation of %s to %s",
  393. file, cfile_base)
  394. # byte_compile ()
  395. def rfc822_escape (header):
  396. """Return a version of the string escaped for inclusion in an
  397. RFC-822 header, by ensuring there are 8 spaces space after each newline.
  398. """
  399. lines = header.split('\n')
  400. sep = '\n' + 8 * ' '
  401. return sep.join(lines)
  402. # 2to3 support
  403. def run_2to3(files, fixer_names=None, options=None, explicit=None):
  404. """Invoke 2to3 on a list of Python files.
  405. The files should all come from the build area, as the
  406. modification is done in-place. To reduce the build time,
  407. only files modified since the last invocation of this
  408. function should be passed in the files argument."""
  409. if not files:
  410. return
  411. # Make this class local, to delay import of 2to3
  412. from lib2to3.refactor import RefactoringTool, get_fixers_from_package
  413. class DistutilsRefactoringTool(RefactoringTool):
  414. def log_error(self, msg, *args, **kw):
  415. log.error(msg, *args)
  416. def log_message(self, msg, *args):
  417. log.info(msg, *args)
  418. def log_debug(self, msg, *args):
  419. log.debug(msg, *args)
  420. if fixer_names is None:
  421. fixer_names = get_fixers_from_package('lib2to3.fixes')
  422. r = DistutilsRefactoringTool(fixer_names, options=options)
  423. r.refactor(files, write=True)
  424. def copydir_run_2to3(src, dest, template=None, fixer_names=None,
  425. options=None, explicit=None):
  426. """Recursively copy a directory, only copying new and changed files,
  427. running run_2to3 over all newly copied Python modules afterward.
  428. If you give a template string, it's parsed like a MANIFEST.in.
  429. """
  430. from distutils.dir_util import mkpath
  431. from distutils.file_util import copy_file
  432. from distutils.filelist import FileList
  433. filelist = FileList()
  434. curdir = os.getcwd()
  435. os.chdir(src)
  436. try:
  437. filelist.findall()
  438. finally:
  439. os.chdir(curdir)
  440. filelist.files[:] = filelist.allfiles
  441. if template:
  442. for line in template.splitlines():
  443. line = line.strip()
  444. if not line: continue
  445. filelist.process_template_line(line)
  446. copied = []
  447. for filename in filelist.files:
  448. outname = os.path.join(dest, filename)
  449. mkpath(os.path.dirname(outname))
  450. res = copy_file(os.path.join(src, filename), outname, update=1)
  451. if res[1]: copied.append(outname)
  452. run_2to3([fn for fn in copied if fn.lower().endswith('.py')],
  453. fixer_names=fixer_names, options=options, explicit=explicit)
  454. return copied
  455. class Mixin2to3:
  456. '''Mixin class for commands that run 2to3.
  457. To configure 2to3, setup scripts may either change
  458. the class variables, or inherit from individual commands
  459. to override how 2to3 is invoked.'''
  460. # provide list of fixers to run;
  461. # defaults to all from lib2to3.fixers
  462. fixer_names = None
  463. # options dictionary
  464. options = None
  465. # list of fixers to invoke even though they are marked as explicit
  466. explicit = None
  467. def run_2to3(self, files):
  468. return run_2to3(files, self.fixer_names, self.options, self.explicit)