summaryrefslogtreecommitdiffstats
path: root/Tools/freeze/makefreeze.py
blob: 97315b339128ca643ebc888afb997037a46e3270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import marshal
import string


# Write a file containing frozen code for the modules in the dictionary.

header = """
#include "Python.h"

static struct _frozen _PyImport_FrozenModules[] = {
"""
trailer = """\
	{0, 0, 0} /* sentinel */
};

int
main(argc, argv)
	int argc;
	char **argv;
{
	PyImport_FrozenModules = _PyImport_FrozenModules;
	return Py_FrozenMain(argc, argv);
}

"""

def makefreeze(outfp, dict, debug=0):
	done = []
	mods = dict.keys()
	mods.sort()
	for mod in mods:
		m = dict[mod]
		mangled = string.join(string.split(mod, "."), "__")
		if m.__code__:
			if debug:
				print "freezing", mod, "..."
			str = marshal.dumps(m.__code__)
			size = len(str)
			if m.__path__:
				# Indicate package by negative size
				size = -size
			done.append((mod, mangled, size))
			writecode(outfp, mangled, str)
	if debug:
		print "generating table of frozen modules"
	outfp.write(header)
	for mod, mangled, size in done:
		outfp.write('\t{"%s", M_%s, %d},\n' % (mod, mangled, size))
	outfp.write(trailer)


# Write a C initializer for a module containing the frozen python code.
# The array is called M_<mod>.

def writecode(outfp, mod, str):
	outfp.write('static unsigned char M_%s[] = {' % mod)
	for i in range(0, len(str), 16):
		outfp.write('\n\t')
		for c in str[i:i+16]:
			outfp.write('%d,' % ord(c))
	outfp.write('\n};\n')