install_lib.py 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. """distutils.command.install_lib
  2. Implements the Distutils 'install_lib' command
  3. (install all Python modules)."""
  4. __revision__ = "$Id$"
  5. import os
  6. import sys
  7. from distutils.core import Command
  8. from distutils.errors import DistutilsOptionError
  9. # Extension for Python source files.
  10. if hasattr(os, 'extsep'):
  11. PYTHON_SOURCE_EXTENSION = os.extsep + "py"
  12. else:
  13. PYTHON_SOURCE_EXTENSION = ".py"
  14. class install_lib(Command):
  15. description = "install all Python modules (extensions and pure Python)"
  16. # The byte-compilation options are a tad confusing. Here are the
  17. # possible scenarios:
  18. # 1) no compilation at all (--no-compile --no-optimize)
  19. # 2) compile .pyc only (--compile --no-optimize; default)
  20. # 3) compile .pyc and "level 1" .pyo (--compile --optimize)
  21. # 4) compile "level 1" .pyo only (--no-compile --optimize)
  22. # 5) compile .pyc and "level 2" .pyo (--compile --optimize-more)
  23. # 6) compile "level 2" .pyo only (--no-compile --optimize-more)
  24. #
  25. # The UI for this is two option, 'compile' and 'optimize'.
  26. # 'compile' is strictly boolean, and only decides whether to
  27. # generate .pyc files. 'optimize' is three-way (0, 1, or 2), and
  28. # decides both whether to generate .pyo files and what level of
  29. # optimization to use.
  30. user_options = [
  31. ('install-dir=', 'd', "directory to install to"),
  32. ('build-dir=','b', "build directory (where to install from)"),
  33. ('force', 'f', "force installation (overwrite existing files)"),
  34. ('compile', 'c', "compile .py to .pyc [default]"),
  35. ('no-compile', None, "don't compile .py files"),
  36. ('optimize=', 'O',
  37. "also compile with optimization: -O1 for \"python -O\", "
  38. "-O2 for \"python -OO\", and -O0 to disable [default: -O0]"),
  39. ('skip-build', None, "skip the build steps"),
  40. ]
  41. boolean_options = ['force', 'compile', 'skip-build']
  42. negative_opt = {'no-compile' : 'compile'}
  43. def initialize_options(self):
  44. # let the 'install' command dictate our installation directory
  45. self.install_dir = None
  46. self.build_dir = None
  47. self.force = 0
  48. self.compile = None
  49. self.optimize = None
  50. self.skip_build = None
  51. def finalize_options(self):
  52. # Get all the information we need to install pure Python modules
  53. # from the umbrella 'install' command -- build (source) directory,
  54. # install (target) directory, and whether to compile .py files.
  55. self.set_undefined_options('install',
  56. ('build_lib', 'build_dir'),
  57. ('install_lib', 'install_dir'),
  58. ('force', 'force'),
  59. ('compile', 'compile'),
  60. ('optimize', 'optimize'),
  61. ('skip_build', 'skip_build'),
  62. )
  63. if self.compile is None:
  64. self.compile = 1
  65. if self.optimize is None:
  66. self.optimize = 0
  67. if not isinstance(self.optimize, int):
  68. try:
  69. self.optimize = int(self.optimize)
  70. if self.optimize not in (0, 1, 2):
  71. raise AssertionError
  72. except (ValueError, AssertionError):
  73. raise DistutilsOptionError, "optimize must be 0, 1, or 2"
  74. def run(self):
  75. # Make sure we have built everything we need first
  76. self.build()
  77. # Install everything: simply dump the entire contents of the build
  78. # directory to the installation directory (that's the beauty of
  79. # having a build directory!)
  80. outfiles = self.install()
  81. # (Optionally) compile .py to .pyc
  82. if outfiles is not None and self.distribution.has_pure_modules():
  83. self.byte_compile(outfiles)
  84. # -- Top-level worker functions ------------------------------------
  85. # (called from 'run()')
  86. def build(self):
  87. if not self.skip_build:
  88. if self.distribution.has_pure_modules():
  89. self.run_command('build_py')
  90. if self.distribution.has_ext_modules():
  91. self.run_command('build_ext')
  92. def install(self):
  93. if os.path.isdir(self.build_dir):
  94. outfiles = self.copy_tree(self.build_dir, self.install_dir)
  95. else:
  96. self.warn("'%s' does not exist -- no Python modules to install" %
  97. self.build_dir)
  98. return
  99. return outfiles
  100. def byte_compile(self, files):
  101. if sys.dont_write_bytecode:
  102. self.warn('byte-compiling is disabled, skipping.')
  103. return
  104. from distutils.util import byte_compile
  105. # Get the "--root" directory supplied to the "install" command,
  106. # and use it as a prefix to strip off the purported filename
  107. # encoded in bytecode files. This is far from complete, but it
  108. # should at least generate usable bytecode in RPM distributions.
  109. install_root = self.get_finalized_command('install').root
  110. if self.compile:
  111. byte_compile(files, optimize=0,
  112. force=self.force, prefix=install_root,
  113. dry_run=self.dry_run)
  114. if self.optimize > 0:
  115. byte_compile(files, optimize=self.optimize,
  116. force=self.force, prefix=install_root,
  117. verbose=self.verbose, dry_run=self.dry_run)
  118. # -- Utility methods -----------------------------------------------
  119. def _mutate_outputs(self, has_any, build_cmd, cmd_option, output_dir):
  120. if not has_any:
  121. return []
  122. build_cmd = self.get_finalized_command(build_cmd)
  123. build_files = build_cmd.get_outputs()
  124. build_dir = getattr(build_cmd, cmd_option)
  125. prefix_len = len(build_dir) + len(os.sep)
  126. outputs = []
  127. for file in build_files:
  128. outputs.append(os.path.join(output_dir, file[prefix_len:]))
  129. return outputs
  130. def _bytecode_filenames(self, py_filenames):
  131. bytecode_files = []
  132. for py_file in py_filenames:
  133. # Since build_py handles package data installation, the
  134. # list of outputs can contain more than just .py files.
  135. # Make sure we only report bytecode for the .py files.
  136. ext = os.path.splitext(os.path.normcase(py_file))[1]
  137. if ext != PYTHON_SOURCE_EXTENSION:
  138. continue
  139. if self.compile:
  140. bytecode_files.append(py_file + "c")
  141. if self.optimize > 0:
  142. bytecode_files.append(py_file + "o")
  143. return bytecode_files
  144. # -- External interface --------------------------------------------
  145. # (called by outsiders)
  146. def get_outputs(self):
  147. """Return the list of files that would be installed if this command
  148. were actually run. Not affected by the "dry-run" flag or whether
  149. modules have actually been built yet.
  150. """
  151. pure_outputs = \
  152. self._mutate_outputs(self.distribution.has_pure_modules(),
  153. 'build_py', 'build_lib',
  154. self.install_dir)
  155. if self.compile:
  156. bytecode_outputs = self._bytecode_filenames(pure_outputs)
  157. else:
  158. bytecode_outputs = []
  159. ext_outputs = \
  160. self._mutate_outputs(self.distribution.has_ext_modules(),
  161. 'build_ext', 'build_lib',
  162. self.install_dir)
  163. return pure_outputs + bytecode_outputs + ext_outputs
  164. def get_inputs(self):
  165. """Get the list of files that are input to this command, ie. the
  166. files that get installed as they are named in the build tree.
  167. The files in this list correspond one-to-one to the output
  168. filenames returned by 'get_outputs()'.
  169. """
  170. inputs = []
  171. if self.distribution.has_pure_modules():
  172. build_py = self.get_finalized_command('build_py')
  173. inputs.extend(build_py.get_outputs())
  174. if self.distribution.has_ext_modules():
  175. build_ext = self.get_finalized_command('build_ext')
  176. inputs.extend(build_ext.get_outputs())
  177. return inputs