1996-11-27 15:52:01 -04:00
|
|
|
#! /usr/bin/env python
|
1994-10-03 07:25:54 -03:00
|
|
|
|
1996-08-26 02:14:20 -03:00
|
|
|
"""Freeze a Python script into a binary.
|
1994-10-03 13:33:08 -03:00
|
|
|
|
1996-08-26 02:14:20 -03:00
|
|
|
usage: freeze [options...] script.py [module]...
|
1994-10-03 13:33:08 -03:00
|
|
|
|
1996-08-26 02:14:20 -03:00
|
|
|
Options:
|
1994-10-03 13:33:08 -03:00
|
|
|
|
1996-08-26 02:14:20 -03:00
|
|
|
-p prefix: This is the prefix used when you ran ``name install''
|
|
|
|
in the Python build directory.
|
1994-10-05 13:13:01 -03:00
|
|
|
(If you never ran this, freeze won't work.)
|
1996-08-26 02:14:20 -03:00
|
|
|
The default is whatever sys.prefix evaluates to.
|
1994-10-03 13:33:08 -03:00
|
|
|
|
1995-08-08 11:21:07 -03:00
|
|
|
-P exec_prefix: Like -p but this is the 'exec_prefix', used to
|
1996-08-26 02:14:20 -03:00
|
|
|
install objects etc. The default is whatever sys.exec_prefix
|
|
|
|
evaluates to, or the -p argument if given.
|
1995-08-08 11:21:07 -03:00
|
|
|
|
1994-10-05 13:13:01 -03:00
|
|
|
-e extension: A directory containing additional .o files that
|
|
|
|
may be used to resolve modules. This directory
|
|
|
|
should also have a Setup file describing the .o files.
|
|
|
|
More than one -e option may be given.
|
|
|
|
|
1996-08-26 02:14:20 -03:00
|
|
|
-o dir: Directory where the output files are created; default '.'.
|
|
|
|
|
|
|
|
Arguments:
|
|
|
|
|
1996-06-17 14:49:13 -03:00
|
|
|
script.py: The Python script to be executed by the resulting binary.
|
1995-08-08 11:21:07 -03:00
|
|
|
It *must* end with a .py suffix!
|
1994-10-05 13:13:01 -03:00
|
|
|
|
|
|
|
module ...: Additional Python modules (referenced by pathname)
|
|
|
|
that will be included in the resulting binary. These
|
|
|
|
may be .py or .pyc files.
|
1995-08-08 11:21:07 -03:00
|
|
|
|
|
|
|
NOTES:
|
|
|
|
|
|
|
|
In order to use freeze successfully, you must have built Python and
|
1996-06-17 14:49:13 -03:00
|
|
|
installed it ("make install").
|
1995-08-08 11:21:07 -03:00
|
|
|
|
1996-08-26 02:14:20 -03:00
|
|
|
The script should not use modules provided only as shared libraries;
|
|
|
|
if it does, the resulting binary is not self-contained.
|
1994-10-05 13:13:01 -03:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
1994-10-03 13:33:08 -03:00
|
|
|
# Import standard modules
|
1994-10-03 07:25:54 -03:00
|
|
|
|
1994-10-05 13:13:01 -03:00
|
|
|
import cmp
|
1994-10-03 07:25:54 -03:00
|
|
|
import getopt
|
1994-10-03 13:33:08 -03:00
|
|
|
import os
|
1994-10-03 07:25:54 -03:00
|
|
|
import string
|
1994-10-03 13:33:08 -03:00
|
|
|
import sys
|
|
|
|
import addpack
|
|
|
|
|
|
|
|
|
|
|
|
# Import the freeze-private modules
|
|
|
|
|
1994-10-05 13:13:01 -03:00
|
|
|
import checkextensions
|
1994-10-03 13:33:08 -03:00
|
|
|
import findmodules
|
|
|
|
import makeconfig
|
|
|
|
import makefreeze
|
|
|
|
import makemakefile
|
|
|
|
import parsesetup
|
|
|
|
|
|
|
|
|
|
|
|
# Main program
|
|
|
|
|
1994-10-03 07:25:54 -03:00
|
|
|
def main():
|
1994-10-03 13:33:08 -03:00
|
|
|
# overridable context
|
1996-08-26 02:14:20 -03:00
|
|
|
prefix = None # settable with -p option
|
1995-08-08 11:21:07 -03:00
|
|
|
exec_prefix = None # settable with -P option
|
1994-10-05 13:13:01 -03:00
|
|
|
extensions = []
|
1994-10-03 13:33:08 -03:00
|
|
|
path = sys.path
|
1996-08-26 02:14:20 -03:00
|
|
|
odir = ''
|
1994-10-03 13:33:08 -03:00
|
|
|
|
|
|
|
# output files
|
|
|
|
frozen_c = 'frozen.c'
|
|
|
|
config_c = 'config.c'
|
|
|
|
target = 'a.out' # normally derived from script name
|
|
|
|
makefile = 'Makefile'
|
|
|
|
|
|
|
|
# parse command line
|
1994-10-03 07:25:54 -03:00
|
|
|
try:
|
1996-08-26 02:14:20 -03:00
|
|
|
opts, args = getopt.getopt(sys.argv[1:], 'e:o:p:P:')
|
1994-10-03 07:25:54 -03:00
|
|
|
except getopt.error, msg:
|
1994-10-03 13:33:08 -03:00
|
|
|
usage('getopt error: ' + str(msg))
|
|
|
|
|
|
|
|
# proces option arguments
|
1994-10-03 07:25:54 -03:00
|
|
|
for o, a in opts:
|
1994-10-05 13:13:01 -03:00
|
|
|
if o == '-e':
|
|
|
|
extensions.append(a)
|
1996-08-26 02:14:20 -03:00
|
|
|
if o == '-o':
|
|
|
|
odir = a
|
1994-10-03 13:33:08 -03:00
|
|
|
if o == '-p':
|
|
|
|
prefix = a
|
1995-08-08 11:21:07 -03:00
|
|
|
if o == '-P':
|
|
|
|
exec_prefix = a
|
|
|
|
|
1996-08-26 02:14:20 -03:00
|
|
|
# default prefix and exec_prefix
|
|
|
|
if not exec_prefix:
|
|
|
|
if prefix:
|
1995-08-08 11:21:07 -03:00
|
|
|
exec_prefix = prefix
|
1996-08-26 02:14:20 -03:00
|
|
|
else:
|
|
|
|
exec_prefix = sys.exec_prefix
|
|
|
|
if not prefix:
|
|
|
|
prefix = sys.prefix
|
1994-10-03 13:33:08 -03:00
|
|
|
|
|
|
|
# locations derived from options
|
1996-08-26 02:14:20 -03:00
|
|
|
version = sys.version[:3]
|
|
|
|
binlib = os.path.join(exec_prefix, 'lib/python%s/config' % version)
|
|
|
|
incldir = os.path.join(prefix, 'include/python%s' % version)
|
1994-10-03 13:33:08 -03:00
|
|
|
config_c_in = os.path.join(binlib, 'config.c.in')
|
|
|
|
frozenmain_c = os.path.join(binlib, 'frozenmain.c')
|
1995-08-08 11:21:07 -03:00
|
|
|
getpath_c = os.path.join(binlib, 'getpath.c')
|
|
|
|
supp_sources = [frozenmain_c, getpath_c]
|
1994-10-03 13:33:08 -03:00
|
|
|
makefile_in = os.path.join(binlib, 'Makefile')
|
1996-08-26 00:49:49 -03:00
|
|
|
defines = ['-DPYTHONPATH=\\"$(PYTHONPATH)\\"']
|
1994-10-03 13:33:08 -03:00
|
|
|
includes = ['-I' + incldir, '-I' + binlib]
|
|
|
|
|
1994-10-05 13:13:01 -03:00
|
|
|
# sanity check of directories and files
|
1995-08-08 11:21:07 -03:00
|
|
|
for dir in [prefix, exec_prefix, binlib, incldir] + extensions:
|
1994-10-03 13:33:08 -03:00
|
|
|
if not os.path.exists(dir):
|
1994-10-05 13:13:01 -03:00
|
|
|
usage('needed directory %s not found' % dir)
|
1994-10-03 13:33:08 -03:00
|
|
|
if not os.path.isdir(dir):
|
|
|
|
usage('%s: not a directory' % dir)
|
1995-08-08 11:21:07 -03:00
|
|
|
for file in [config_c_in, makefile_in] + supp_sources:
|
1994-10-03 13:33:08 -03:00
|
|
|
if not os.path.exists(file):
|
|
|
|
usage('needed file %s not found' % file)
|
|
|
|
if not os.path.isfile(file):
|
|
|
|
usage('%s: not a plain file' % file)
|
1994-10-05 13:13:01 -03:00
|
|
|
for dir in extensions:
|
|
|
|
setup = os.path.join(dir, 'Setup')
|
|
|
|
if not os.path.exists(setup):
|
|
|
|
usage('needed file %s not found' % setup)
|
|
|
|
if not os.path.isfile(setup):
|
|
|
|
usage('%s: not a plain file' % setup)
|
|
|
|
|
|
|
|
# check that enough arguments are passed
|
|
|
|
if not args:
|
|
|
|
usage('at least one filename argument required')
|
1994-10-03 13:33:08 -03:00
|
|
|
|
1996-06-17 14:49:13 -03:00
|
|
|
# check that the script name ends in ".py"
|
|
|
|
if args[0][-3:] != ".py":
|
|
|
|
usage('the script name must have a .py suffix')
|
|
|
|
|
1994-10-03 13:33:08 -03:00
|
|
|
# check that file arguments exist
|
|
|
|
for arg in args:
|
|
|
|
if not os.path.exists(arg):
|
|
|
|
usage('argument %s not found' % arg)
|
|
|
|
if not os.path.isfile(arg):
|
|
|
|
usage('%s: not a plain file' % arg)
|
|
|
|
|
|
|
|
# process non-option arguments
|
|
|
|
scriptfile = args[0]
|
|
|
|
modules = args[1:]
|
|
|
|
|
|
|
|
# derive target name from script name
|
|
|
|
base = os.path.basename(scriptfile)
|
|
|
|
base, ext = os.path.splitext(base)
|
|
|
|
if base:
|
|
|
|
if base != scriptfile:
|
|
|
|
target = base
|
1994-10-03 07:25:54 -03:00
|
|
|
else:
|
1994-10-03 13:33:08 -03:00
|
|
|
target = base + '.bin'
|
1996-08-26 02:14:20 -03:00
|
|
|
|
|
|
|
# handle -o option
|
|
|
|
base_frozen_c = frozen_c
|
|
|
|
base_config_c = config_c
|
|
|
|
base_target = target
|
|
|
|
if odir and not os.path.isdir(odir):
|
|
|
|
try:
|
|
|
|
os.mkdir(odir)
|
|
|
|
print "Created output directory", odir
|
|
|
|
except os.error, msg:
|
|
|
|
usage('%s: mkdir failed (%s)' % (odir, str(msg)))
|
|
|
|
if odir:
|
|
|
|
frozen_c = os.path.join(odir, frozen_c)
|
|
|
|
config_c = os.path.join(odir, config_c)
|
|
|
|
target = os.path.join(odir, target)
|
|
|
|
makefile = os.path.join(odir,makefile)
|
1994-10-03 13:33:08 -03:00
|
|
|
|
|
|
|
# Actual work starts here...
|
|
|
|
|
|
|
|
dict = findmodules.findmodules(scriptfile, modules, path)
|
1995-08-08 11:21:07 -03:00
|
|
|
names = dict.keys()
|
|
|
|
names.sort()
|
|
|
|
print "Modules being frozen:"
|
|
|
|
for name in names:
|
|
|
|
print '\t', name
|
1994-10-03 13:33:08 -03:00
|
|
|
|
1994-10-05 13:13:01 -03:00
|
|
|
backup = frozen_c + '~'
|
|
|
|
try:
|
|
|
|
os.rename(frozen_c, backup)
|
|
|
|
except os.error:
|
|
|
|
backup = None
|
|
|
|
outfp = open(frozen_c, 'w')
|
|
|
|
try:
|
|
|
|
makefreeze.makefreeze(outfp, dict)
|
|
|
|
finally:
|
|
|
|
outfp.close()
|
|
|
|
if backup:
|
|
|
|
if cmp.cmp(backup, frozen_c):
|
|
|
|
sys.stderr.write('%s not changed, not written\n' %
|
|
|
|
frozen_c)
|
|
|
|
os.rename(backup, frozen_c)
|
|
|
|
|
1994-10-03 13:33:08 -03:00
|
|
|
builtins = []
|
1994-10-05 13:13:01 -03:00
|
|
|
unknown = []
|
1994-10-03 13:37:36 -03:00
|
|
|
mods = dict.keys()
|
|
|
|
mods.sort()
|
|
|
|
for mod in mods:
|
1994-10-03 13:33:08 -03:00
|
|
|
if dict[mod] == '<builtin>':
|
|
|
|
builtins.append(mod)
|
1994-10-03 13:37:36 -03:00
|
|
|
elif dict[mod] == '<unknown>':
|
1994-10-05 13:13:01 -03:00
|
|
|
unknown.append(mod)
|
|
|
|
|
|
|
|
addfiles = []
|
|
|
|
if unknown:
|
|
|
|
addfiles, addmods = \
|
|
|
|
checkextensions.checkextensions(unknown, extensions)
|
|
|
|
for mod in addmods:
|
|
|
|
unknown.remove(mod)
|
|
|
|
builtins = builtins + addmods
|
|
|
|
if unknown:
|
|
|
|
sys.stderr.write('Warning: unknown modules remain: %s\n' %
|
|
|
|
string.join(unknown))
|
|
|
|
|
|
|
|
builtins.sort()
|
1994-10-03 13:33:08 -03:00
|
|
|
infp = open(config_c_in)
|
1994-10-05 13:13:01 -03:00
|
|
|
backup = config_c + '~'
|
|
|
|
try:
|
|
|
|
os.rename(config_c, backup)
|
|
|
|
except os.error:
|
|
|
|
backup = None
|
1994-10-03 13:33:08 -03:00
|
|
|
outfp = open(config_c, 'w')
|
1994-10-03 07:25:54 -03:00
|
|
|
try:
|
1994-10-03 13:33:08 -03:00
|
|
|
makeconfig.makeconfig(infp, outfp, builtins)
|
1994-10-03 07:25:54 -03:00
|
|
|
finally:
|
1994-10-03 13:33:08 -03:00
|
|
|
outfp.close()
|
|
|
|
infp.close()
|
1994-10-05 13:13:01 -03:00
|
|
|
if backup:
|
|
|
|
if cmp.cmp(backup, config_c):
|
|
|
|
sys.stderr.write('%s not changed, not written\n' %
|
|
|
|
config_c)
|
|
|
|
os.rename(backup, config_c)
|
1994-10-03 13:33:08 -03:00
|
|
|
|
|
|
|
cflags = defines + includes + ['$(OPT)']
|
|
|
|
libs = []
|
|
|
|
for n in 'Modules', 'Python', 'Objects', 'Parser':
|
|
|
|
n = 'lib%s.a' % n
|
|
|
|
n = os.path.join(binlib, n)
|
|
|
|
libs.append(n)
|
|
|
|
|
|
|
|
makevars = parsesetup.getmakevars(makefile_in)
|
|
|
|
somevars = {}
|
|
|
|
for key in makevars.keys():
|
|
|
|
somevars[key] = makevars[key]
|
|
|
|
|
|
|
|
somevars['CFLAGS'] = string.join(cflags) # override
|
1996-08-26 02:14:20 -03:00
|
|
|
files = ['$(OPT)', '$(LDFLAGS)', base_config_c, base_frozen_c] + \
|
1995-08-08 11:21:07 -03:00
|
|
|
supp_sources + addfiles + libs + \
|
1994-10-03 13:33:08 -03:00
|
|
|
['$(MODLIBS)', '$(LIBS)', '$(SYSLIBS)']
|
|
|
|
|
1995-04-05 07:58:39 -03:00
|
|
|
backup = makefile + '~'
|
|
|
|
try:
|
|
|
|
os.rename(makefile, backup)
|
|
|
|
except os.error:
|
|
|
|
backup = None
|
1994-10-03 13:33:08 -03:00
|
|
|
outfp = open(makefile, 'w')
|
1994-10-03 07:25:54 -03:00
|
|
|
try:
|
1996-08-26 02:14:20 -03:00
|
|
|
makemakefile.makemakefile(outfp, somevars, files, base_target)
|
1994-10-03 13:33:08 -03:00
|
|
|
finally:
|
|
|
|
outfp.close()
|
1995-04-05 07:58:39 -03:00
|
|
|
if backup:
|
|
|
|
if not cmp.cmp(backup, makefile):
|
|
|
|
print 'previous Makefile saved as', backup
|
|
|
|
else:
|
|
|
|
sys.stderr.write('%s not changed, not written\n' %
|
|
|
|
makefile)
|
|
|
|
os.rename(backup, makefile)
|
1994-10-03 13:33:08 -03:00
|
|
|
|
|
|
|
# Done!
|
|
|
|
|
1996-08-26 02:14:20 -03:00
|
|
|
if odir:
|
|
|
|
print 'Now run make in', odir,
|
|
|
|
print 'to build the target:', base_target
|
|
|
|
else:
|
|
|
|
print 'Now run make to build the target:', base_target
|
1994-10-03 13:33:08 -03:00
|
|
|
|
1994-10-05 13:13:01 -03:00
|
|
|
|
|
|
|
# Print usage message and exit
|
|
|
|
|
|
|
|
def usage(msg = None):
|
1996-08-26 02:14:20 -03:00
|
|
|
sys.stderr.write(__doc__)
|
1996-06-17 14:49:13 -03:00
|
|
|
# Put the error last since the usage message scrolls off the screen
|
|
|
|
if msg:
|
|
|
|
sys.stderr.write('\nError: ' + str(msg) + '\n')
|
1994-10-05 13:13:01 -03:00
|
|
|
sys.exit(2)
|
|
|
|
|
|
|
|
|
1994-10-03 07:25:54 -03:00
|
|
|
main()
|