bdist_wininst.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. """distutils.command.bdist_wininst
  2. Implements the Distutils 'bdist_wininst' command: create a windows installer
  3. exe-program."""
  4. __revision__ = "$Id$"
  5. import sys
  6. import os
  7. import string
  8. from sysconfig import get_python_version
  9. from distutils.core import Command
  10. from distutils.dir_util import remove_tree
  11. from distutils.errors import DistutilsOptionError, DistutilsPlatformError
  12. from distutils import log
  13. from distutils.util import get_platform
  14. class bdist_wininst (Command):
  15. description = "create an executable installer for MS Windows"
  16. user_options = [('bdist-dir=', None,
  17. "temporary directory for creating the distribution"),
  18. ('plat-name=', 'p',
  19. "platform name to embed in generated filenames "
  20. "(default: %s)" % get_platform()),
  21. ('keep-temp', 'k',
  22. "keep the pseudo-installation tree around after " +
  23. "creating the distribution archive"),
  24. ('target-version=', None,
  25. "require a specific python version" +
  26. " on the target system"),
  27. ('no-target-compile', 'c',
  28. "do not compile .py to .pyc on the target system"),
  29. ('no-target-optimize', 'o',
  30. "do not compile .py to .pyo (optimized)"
  31. "on the target system"),
  32. ('dist-dir=', 'd',
  33. "directory to put final built distributions in"),
  34. ('bitmap=', 'b',
  35. "bitmap to use for the installer instead of python-powered logo"),
  36. ('title=', 't',
  37. "title to display on the installer background instead of default"),
  38. ('skip-build', None,
  39. "skip rebuilding everything (for testing/debugging)"),
  40. ('install-script=', None,
  41. "basename of installation script to be run after"
  42. "installation or before deinstallation"),
  43. ('pre-install-script=', None,
  44. "Fully qualified filename of a script to be run before "
  45. "any files are installed. This script need not be in the "
  46. "distribution"),
  47. ('user-access-control=', None,
  48. "specify Vista's UAC handling - 'none'/default=no "
  49. "handling, 'auto'=use UAC if target Python installed for "
  50. "all users, 'force'=always use UAC"),
  51. ]
  52. boolean_options = ['keep-temp', 'no-target-compile', 'no-target-optimize',
  53. 'skip-build']
  54. def initialize_options (self):
  55. self.bdist_dir = None
  56. self.plat_name = None
  57. self.keep_temp = 0
  58. self.no_target_compile = 0
  59. self.no_target_optimize = 0
  60. self.target_version = None
  61. self.dist_dir = None
  62. self.bitmap = None
  63. self.title = None
  64. self.skip_build = None
  65. self.install_script = None
  66. self.pre_install_script = None
  67. self.user_access_control = None
  68. # initialize_options()
  69. def finalize_options (self):
  70. self.set_undefined_options('bdist', ('skip_build', 'skip_build'))
  71. if self.bdist_dir is None:
  72. if self.skip_build and self.plat_name:
  73. # If build is skipped and plat_name is overridden, bdist will
  74. # not see the correct 'plat_name' - so set that up manually.
  75. bdist = self.distribution.get_command_obj('bdist')
  76. bdist.plat_name = self.plat_name
  77. # next the command will be initialized using that name
  78. bdist_base = self.get_finalized_command('bdist').bdist_base
  79. self.bdist_dir = os.path.join(bdist_base, 'wininst')
  80. if not self.target_version:
  81. self.target_version = ""
  82. if not self.skip_build and self.distribution.has_ext_modules():
  83. short_version = get_python_version()
  84. if self.target_version and self.target_version != short_version:
  85. raise DistutilsOptionError, \
  86. "target version can only be %s, or the '--skip-build'" \
  87. " option must be specified" % (short_version,)
  88. self.target_version = short_version
  89. self.set_undefined_options('bdist',
  90. ('dist_dir', 'dist_dir'),
  91. ('plat_name', 'plat_name'),
  92. )
  93. if self.install_script:
  94. for script in self.distribution.scripts:
  95. if self.install_script == os.path.basename(script):
  96. break
  97. else:
  98. raise DistutilsOptionError, \
  99. "install_script '%s' not found in scripts" % \
  100. self.install_script
  101. # finalize_options()
  102. def run (self):
  103. if (sys.platform != "win32" and
  104. (self.distribution.has_ext_modules() or
  105. self.distribution.has_c_libraries())):
  106. raise DistutilsPlatformError \
  107. ("distribution contains extensions and/or C libraries; "
  108. "must be compiled on a Windows 32 platform")
  109. if not self.skip_build:
  110. self.run_command('build')
  111. install = self.reinitialize_command('install', reinit_subcommands=1)
  112. install.root = self.bdist_dir
  113. install.skip_build = self.skip_build
  114. install.warn_dir = 0
  115. install.plat_name = self.plat_name
  116. install_lib = self.reinitialize_command('install_lib')
  117. # we do not want to include pyc or pyo files
  118. install_lib.compile = 0
  119. install_lib.optimize = 0
  120. if self.distribution.has_ext_modules():
  121. # If we are building an installer for a Python version other
  122. # than the one we are currently running, then we need to ensure
  123. # our build_lib reflects the other Python version rather than ours.
  124. # Note that for target_version!=sys.version, we must have skipped the
  125. # build step, so there is no issue with enforcing the build of this
  126. # version.
  127. target_version = self.target_version
  128. if not target_version:
  129. assert self.skip_build, "Should have already checked this"
  130. target_version = sys.version[0:3]
  131. plat_specifier = ".%s-%s" % (self.plat_name, target_version)
  132. build = self.get_finalized_command('build')
  133. build.build_lib = os.path.join(build.build_base,
  134. 'lib' + plat_specifier)
  135. # Use a custom scheme for the zip-file, because we have to decide
  136. # at installation time which scheme to use.
  137. for key in ('purelib', 'platlib', 'headers', 'scripts', 'data'):
  138. value = string.upper(key)
  139. if key == 'headers':
  140. value = value + '/Include/$dist_name'
  141. setattr(install,
  142. 'install_' + key,
  143. value)
  144. log.info("installing to %s", self.bdist_dir)
  145. install.ensure_finalized()
  146. # avoid warning of 'install_lib' about installing
  147. # into a directory not in sys.path
  148. sys.path.insert(0, os.path.join(self.bdist_dir, 'PURELIB'))
  149. install.run()
  150. del sys.path[0]
  151. # And make an archive relative to the root of the
  152. # pseudo-installation tree.
  153. from tempfile import mktemp
  154. archive_basename = mktemp()
  155. fullname = self.distribution.get_fullname()
  156. arcname = self.make_archive(archive_basename, "zip",
  157. root_dir=self.bdist_dir)
  158. # create an exe containing the zip-file
  159. self.create_exe(arcname, fullname, self.bitmap)
  160. if self.distribution.has_ext_modules():
  161. pyversion = get_python_version()
  162. else:
  163. pyversion = 'any'
  164. self.distribution.dist_files.append(('bdist_wininst', pyversion,
  165. self.get_installer_filename(fullname)))
  166. # remove the zip-file again
  167. log.debug("removing temporary file '%s'", arcname)
  168. os.remove(arcname)
  169. if not self.keep_temp:
  170. remove_tree(self.bdist_dir, dry_run=self.dry_run)
  171. # run()
  172. def get_inidata (self):
  173. # Return data describing the installation.
  174. lines = []
  175. metadata = self.distribution.metadata
  176. # Write the [metadata] section.
  177. lines.append("[metadata]")
  178. # 'info' will be displayed in the installer's dialog box,
  179. # describing the items to be installed.
  180. info = (metadata.long_description or '') + '\n'
  181. # Escape newline characters
  182. def escape(s):
  183. return string.replace(s, "\n", "\\n")
  184. for name in ["author", "author_email", "description", "maintainer",
  185. "maintainer_email", "name", "url", "version"]:
  186. data = getattr(metadata, name, "")
  187. if data:
  188. info = info + ("\n %s: %s" % \
  189. (string.capitalize(name), escape(data)))
  190. lines.append("%s=%s" % (name, escape(data)))
  191. # The [setup] section contains entries controlling
  192. # the installer runtime.
  193. lines.append("\n[Setup]")
  194. if self.install_script:
  195. lines.append("install_script=%s" % self.install_script)
  196. lines.append("info=%s" % escape(info))
  197. lines.append("target_compile=%d" % (not self.no_target_compile))
  198. lines.append("target_optimize=%d" % (not self.no_target_optimize))
  199. if self.target_version:
  200. lines.append("target_version=%s" % self.target_version)
  201. if self.user_access_control:
  202. lines.append("user_access_control=%s" % self.user_access_control)
  203. title = self.title or self.distribution.get_fullname()
  204. lines.append("title=%s" % escape(title))
  205. import time
  206. import distutils
  207. build_info = "Built %s with distutils-%s" % \
  208. (time.ctime(time.time()), distutils.__version__)
  209. lines.append("build_info=%s" % build_info)
  210. return string.join(lines, "\n")
  211. # get_inidata()
  212. def create_exe (self, arcname, fullname, bitmap=None):
  213. import struct
  214. self.mkpath(self.dist_dir)
  215. cfgdata = self.get_inidata()
  216. installer_name = self.get_installer_filename(fullname)
  217. self.announce("creating %s" % installer_name)
  218. if bitmap:
  219. bitmapdata = open(bitmap, "rb").read()
  220. bitmaplen = len(bitmapdata)
  221. else:
  222. bitmaplen = 0
  223. file = open(installer_name, "wb")
  224. file.write(self.get_exe_bytes())
  225. if bitmap:
  226. file.write(bitmapdata)
  227. # Convert cfgdata from unicode to ascii, mbcs encoded
  228. try:
  229. unicode
  230. except NameError:
  231. pass
  232. else:
  233. if isinstance(cfgdata, unicode):
  234. cfgdata = cfgdata.encode("mbcs")
  235. # Append the pre-install script
  236. cfgdata = cfgdata + "\0"
  237. if self.pre_install_script:
  238. script_data = open(self.pre_install_script, "r").read()
  239. cfgdata = cfgdata + script_data + "\n\0"
  240. else:
  241. # empty pre-install script
  242. cfgdata = cfgdata + "\0"
  243. file.write(cfgdata)
  244. # The 'magic number' 0x1234567B is used to make sure that the
  245. # binary layout of 'cfgdata' is what the wininst.exe binary
  246. # expects. If the layout changes, increment that number, make
  247. # the corresponding changes to the wininst.exe sources, and
  248. # recompile them.
  249. header = struct.pack("<iii",
  250. 0x1234567B, # tag
  251. len(cfgdata), # length
  252. bitmaplen, # number of bytes in bitmap
  253. )
  254. file.write(header)
  255. file.write(open(arcname, "rb").read())
  256. # create_exe()
  257. def get_installer_filename(self, fullname):
  258. # Factored out to allow overriding in subclasses
  259. if self.target_version:
  260. # if we create an installer for a specific python version,
  261. # it's better to include this in the name
  262. installer_name = os.path.join(self.dist_dir,
  263. "%s.%s-py%s.exe" %
  264. (fullname, self.plat_name, self.target_version))
  265. else:
  266. installer_name = os.path.join(self.dist_dir,
  267. "%s.%s.exe" % (fullname, self.plat_name))
  268. return installer_name
  269. # get_installer_filename()
  270. def get_exe_bytes (self):
  271. from distutils.msvccompiler import get_build_version
  272. # If a target-version other than the current version has been
  273. # specified, then using the MSVC version from *this* build is no good.
  274. # Without actually finding and executing the target version and parsing
  275. # its sys.version, we just hard-code our knowledge of old versions.
  276. # NOTE: Possible alternative is to allow "--target-version" to
  277. # specify a Python executable rather than a simple version string.
  278. # We can then execute this program to obtain any info we need, such
  279. # as the real sys.version string for the build.
  280. cur_version = get_python_version()
  281. if self.target_version and self.target_version != cur_version:
  282. # If the target version is *later* than us, then we assume they
  283. # use what we use
  284. # string compares seem wrong, but are what sysconfig.py itself uses
  285. if self.target_version > cur_version:
  286. bv = get_build_version()
  287. else:
  288. if self.target_version < "2.4":
  289. bv = 6.0
  290. else:
  291. bv = 7.1
  292. else:
  293. # for current version - use authoritative check.
  294. bv = get_build_version()
  295. # wininst-x.y.exe is in the same directory as this file
  296. directory = os.path.dirname(__file__)
  297. # we must use a wininst-x.y.exe built with the same C compiler
  298. # used for python. XXX What about mingw, borland, and so on?
  299. # if plat_name starts with "win" but is not "win32"
  300. # we want to strip "win" and leave the rest (e.g. -amd64)
  301. # for all other cases, we don't want any suffix
  302. if self.plat_name != 'win32' and self.plat_name[:3] == 'win':
  303. sfix = self.plat_name[3:]
  304. else:
  305. sfix = ''
  306. filename = os.path.join(directory, "wininst-%.1f%s.exe" % (bv, sfix))
  307. f = open(filename, "rb")
  308. try:
  309. return f.read()
  310. finally:
  311. f.close()
  312. # class bdist_wininst