blob: bf44ebd6cfa17a8842ec6d5f10312b7424393366 [file] [log] [blame]
Jack Jansenb44f1cc1998-07-31 09:44:58 +00001"""Create a standalone application from a Python script.
2
3This puts up a dialog asking for a Python source file ('TEXT').
4The output is a file with the same name but its ".py" suffix dropped.
5It is created by copying an applet template, all used shared libs and
6then adding 'PYC ' resources containing compiled versions of all used
Just van Rossum29e51841999-11-04 10:30:13 +00007modules written in Python and the main script itself, as __main__.
Jack Jansenb44f1cc1998-07-31 09:44:58 +00008"""
9
10
11import sys
12
13import string
14import os
15import macfs
16import MacOS
17import Res
18import Dlg
19import EasyDialogs
20import buildtools
21
22# Hmmm...
23MACFREEZEPATH = os.path.join(sys.prefix, ":Mac:Tools:macfreeze")
24if MACFREEZEPATH not in sys.path:
25 sys.path.append(MACFREEZEPATH)
26
Jack Jansenb44f1cc1998-07-31 09:44:58 +000027import macgen_bin
28
29# dialog, items
30DLG_ID = 400
31OK_BUTTON = 1
32CANCEL_BUTTON = 2
33GENFAT_BUTTON = 4
34GENPPC_BUTTON = 5
35GEN68K_BUTTON = 6
36
Jack Jansen919d3262000-07-24 19:44:17 +000037# Define this if we cannot generate 68/fat binaries (Python 1.6)
38PPC_ONLY=1
39
Jack Jansenb44f1cc1998-07-31 09:44:58 +000040
41try:
42 Res.GetResource('DITL', DLG_ID)
43except Res.Error:
Jack Jansend13c3852000-06-20 21:59:25 +000044 Res.FSpOpenResFile("BuildApplication.rsrc", 1)
Jack Jansenb44f1cc1998-07-31 09:44:58 +000045else:
46 pass # we're an applet
47
48
49def main():
50 try:
51 buildapplication()
52 except buildtools.BuildError, detail:
53 EasyDialogs.Message(detail)
54
55
56def buildapplication(debug = 0):
57 buildtools.DEBUG = debug
58
59 # Ask for source text if not specified in sys.argv[1:]
60
61 if not sys.argv[1:]:
62 srcfss, ok = macfs.PromptGetFile('Select Python source:', 'TEXT')
63 if not ok:
64 return
65 filename = srcfss.as_pathname()
66 else:
67 if sys.argv[2:]:
68 raise buildtools.BuildError, "please select one file at a time"
69 filename = sys.argv[1]
70 tp, tf = os.path.split(filename)
71
72 # interact with user
73 architecture, ok = interact(tf)
74 if not ok:
75 return
76 if tf[-3:] == '.py':
77 tf = tf[:-3]
Jack Jansenb44f1cc1998-07-31 09:44:58 +000078 else:
79 tf = tf + '.app'
Jack Jansenb44f1cc1998-07-31 09:44:58 +000080
81 dstfss, ok = macfs.StandardPutFile('Save application as:', tf)
82 if not ok:
83 return
84 dstfilename = dstfss.as_pathname()
85
86 macgen_bin.generate(filename, dstfilename, None, architecture, 1)
87
88
89class radio:
90
91 def __init__(self, dlg, *items):
92 self.items = {}
93 for item in items:
Jack Jansend2bf68f1999-12-23 14:33:20 +000094 ctl = dlg.GetDialogItemAsControl(item)
95 self.items[item] = ctl
Jack Jansenb44f1cc1998-07-31 09:44:58 +000096
97 def set(self, setitem):
98 for item, ctl in self.items.items():
99 if item == setitem:
100 ctl.SetControlValue(1)
101 else:
102 ctl.SetControlValue(0)
103
104 def get(self):
105 for item, ctl in self.items.items():
106 if ctl.GetControlValue():
107 return item
108
109 def hasitem(self, item):
110 return self.items.has_key(item)
111
112
113def interact(scriptname):
Jack Jansen919d3262000-07-24 19:44:17 +0000114 if PPC_ONLY:
115 return 'pwpc'
Jack Jansenb44f1cc1998-07-31 09:44:58 +0000116 d = Dlg.GetNewDialog(DLG_ID, -1)
117 if not d:
118 print "Can't get DLOG resource with id =", DLG_ID
119 return
120 d.SetDialogDefaultItem(OK_BUTTON)
121 d.SetDialogCancelItem(CANCEL_BUTTON)
122 Dlg.ParamText(scriptname, "", "", "")
123
124 radiogroup = radio(d, GENFAT_BUTTON, GENPPC_BUTTON, GEN68K_BUTTON)
125 radiogroup.set(GENFAT_BUTTON)
126
127 gentype = 'fat'
128 while 1:
129 n = Dlg.ModalDialog(None)
130 if n == OK_BUTTON or n == CANCEL_BUTTON:
131 break
132 elif radiogroup.hasitem(n):
133 radiogroup.set(n)
134 genitem = radiogroup.get()
135 del radiogroup
136 del d
137 if genitem == GENFAT_BUTTON:
138 gentype = 'fat'
139 elif genitem == GENPPC_BUTTON:
140 gentype = 'pwpc'
141 elif genitem == GEN68K_BUTTON:
142 gentype = 'm68k'
143 return gentype, n == OK_BUTTON
144
145
146if __name__ == '__main__':
147 main()