Bump version to 0.9.1.
[python/dscho.git] / Mac / scripts / BuildApplication.py
blobbf44ebd6cfa17a8842ec6d5f10312b7424393366
1 """Create a standalone application from a Python script.
3 This puts up a dialog asking for a Python source file ('TEXT').
4 The output is a file with the same name but its ".py" suffix dropped.
5 It is created by copying an applet template, all used shared libs and
6 then adding 'PYC ' resources containing compiled versions of all used
7 modules written in Python and the main script itself, as __main__.
8 """
11 import sys
13 import string
14 import os
15 import macfs
16 import MacOS
17 import Res
18 import Dlg
19 import EasyDialogs
20 import buildtools
22 # Hmmm...
23 MACFREEZEPATH = os.path.join(sys.prefix, ":Mac:Tools:macfreeze")
24 if MACFREEZEPATH not in sys.path:
25 sys.path.append(MACFREEZEPATH)
27 import macgen_bin
29 # dialog, items
30 DLG_ID = 400
31 OK_BUTTON = 1
32 CANCEL_BUTTON = 2
33 GENFAT_BUTTON = 4
34 GENPPC_BUTTON = 5
35 GEN68K_BUTTON = 6
37 # Define this if we cannot generate 68/fat binaries (Python 1.6)
38 PPC_ONLY=1
41 try:
42 Res.GetResource('DITL', DLG_ID)
43 except Res.Error:
44 Res.FSpOpenResFile("BuildApplication.rsrc", 1)
45 else:
46 pass # we're an applet
49 def main():
50 try:
51 buildapplication()
52 except buildtools.BuildError, detail:
53 EasyDialogs.Message(detail)
56 def buildapplication(debug = 0):
57 buildtools.DEBUG = debug
59 # Ask for source text if not specified in sys.argv[1:]
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)
72 # interact with user
73 architecture, ok = interact(tf)
74 if not ok:
75 return
76 if tf[-3:] == '.py':
77 tf = tf[:-3]
78 else:
79 tf = tf + '.app'
81 dstfss, ok = macfs.StandardPutFile('Save application as:', tf)
82 if not ok:
83 return
84 dstfilename = dstfss.as_pathname()
86 macgen_bin.generate(filename, dstfilename, None, architecture, 1)
89 class radio:
91 def __init__(self, dlg, *items):
92 self.items = {}
93 for item in items:
94 ctl = dlg.GetDialogItemAsControl(item)
95 self.items[item] = ctl
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)
104 def get(self):
105 for item, ctl in self.items.items():
106 if ctl.GetControlValue():
107 return item
109 def hasitem(self, item):
110 return self.items.has_key(item)
113 def interact(scriptname):
114 if PPC_ONLY:
115 return 'pwpc'
116 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, "", "", "")
124 radiogroup = radio(d, GENFAT_BUTTON, GENPPC_BUTTON, GEN68K_BUTTON)
125 radiogroup.set(GENFAT_BUTTON)
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
146 if __name__ == '__main__':
147 main()