author | Andrey Skvortsov <andrej.skvortzov@gmail.com> |
Fri, 15 Sep 2017 19:53:49 +0300 | |
changeset 1810 | 70768bd1dab3 |
parent 1783 | 3311eea28d56 |
child 1826 | 91796f408540 |
permissions | -rw-r--r-- |
371 | 1 |
#!/usr/bin/env python |
2 |
||
3 |
import sys |
|
4 |
import os |
|
5 |
import shutil |
|
6 |
from copy import copy |
|
7 |
from os.path import join, dirname, basename, abspath, split, isfile, isdir |
|
8 |
from optparse import OptionParser |
|
9 |
import pyjs |
|
1783
3311eea28d56
clean-up: fix PEP8 E402 module level import not at top of file
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1782
diff
changeset
|
10 |
import time |
371 | 11 |
from cStringIO import StringIO |
12 |
try: |
|
13 |
# Python 2.5 and above |
|
14 |
from hashlib import md5 |
|
1780
c52d1460cea8
clean-up: fix PEP8 E722 do not use bare except'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1775
diff
changeset
|
15 |
except Exception: |
371 | 16 |
import md5 |
17 |
import re |
|
18 |
||
19 |
usage = """ |
|
20 |
usage: %prog [options] <application module name or path> |
|
21 |
||
22 |
This is the command line builder for the pyjamas project, which can |
|
23 |
be used to build Ajax applications from Python. |
|
24 |
For more information, see the website at http://pyjs.org/ |
|
25 |
""" |
|
26 |
||
27 |
# GWT1.2 Impl | GWT1.2 Output | Pyjamas 0.2 Platform | Pyjamas 0.2 Output |
|
28 |
# -------------+-----------------------+----------------------+---------------------- |
|
29 |
# IE6 | ie6 | IE6 | ie6 |
|
30 |
# Opera | opera | Opera | opera |
|
31 |
# Safari | safari | Safari | safari |
|
32 |
# -- | gecko1_8 | Mozilla | mozilla |
|
33 |
# -- | gecko | OldMoz | oldmoz |
|
34 |
# Standard | all | (default code) | all |
|
35 |
# Mozilla | gecko1_8, gecko | -- | -- |
|
36 |
# Old | safari, gecko, opera | -- | -- |
|
37 |
||
38 |
version = "%prog pyjamas version 2006-08-19" |
|
39 |
||
40 |
# these names in lowercase need match the strings |
|
41 |
# returned by "provider$user.agent" in order to be selected corretly |
|
42 |
app_platforms = ['IE6', 'Opera', 'OldMoz', 'Safari', 'Mozilla'] |
|
43 |
||
44 |
# usually defaults to e.g. /usr/share/pyjamas |
|
45 |
_data_dir = os.path.join(pyjs.prefix, "share/pyjamas") |
|
46 |
||
47 |
||
48 |
# .cache.html files produces look like this |
|
1742
92932cd370a4
clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
49 |
CACHE_HTML_PAT = re.compile('^[a-z]*.[0-9a-f]{32}\.cache\.html$') |
371 | 50 |
|
51 |
# ok these are the three "default" library directories, containing |
|
52 |
# the builtins (str, List, Dict, ord, round, len, range etc.) |
|
53 |
# the main pyjamas libraries (pyjamas.ui, pyjamas.Window etc.) |
|
54 |
# and the contributed addons |
|
55 |
||
56 |
for p in ["library/builtins", |
|
57 |
"library", |
|
58 |
"addons"]: |
|
59 |
p = os.path.join(_data_dir, p) |
|
60 |
if os.path.isdir(p): |
|
61 |
pyjs.path.append(p) |
|
62 |
||
63 |
||
64 |
def read_boilerplate(data_dir, filename): |
|
65 |
return open(join(data_dir, "builder/boilerplate", filename)).read() |
|
66 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
67 |
|
371 | 68 |
def copy_boilerplate(data_dir, filename, output_dir): |
69 |
filename = join(data_dir, "builder/boilerplate", filename) |
|
70 |
shutil.copy(filename, output_dir) |
|
71 |
||
72 |
||
73 |
# taken and modified from python2.4 |
|
74 |
def copytree_exists(src, dst, symlinks=False): |
|
75 |
if not os.path.exists(src): |
|
76 |
return |
|
77 |
||
78 |
names = os.listdir(src) |
|
79 |
try: |
|
80 |
os.mkdir(dst) |
|
1780
c52d1460cea8
clean-up: fix PEP8 E722 do not use bare except'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1775
diff
changeset
|
81 |
except Exception: |
371 | 82 |
pass |
83 |
||
84 |
errors = [] |
|
85 |
for name in names: |
|
86 |
if name.startswith('CVS'): |
|
87 |
continue |
|
88 |
if name.startswith('.git'): |
|
89 |
continue |
|
90 |
if name.startswith('.svn'): |
|
91 |
continue |
|
92 |
||
93 |
srcname = os.path.join(src, name) |
|
94 |
dstname = os.path.join(dst, name) |
|
95 |
try: |
|
96 |
if symlinks and os.path.islink(srcname): |
|
97 |
linkto = os.readlink(srcname) |
|
98 |
os.symlink(linkto, dstname) |
|
99 |
elif isdir(srcname): |
|
100 |
copytree_exists(srcname, dstname, symlinks) |
|
101 |
else: |
|
102 |
shutil.copy2(srcname, dstname) |
|
103 |
except (IOError, os.error), why: |
|
104 |
errors.append((srcname, dstname, why)) |
|
105 |
if errors: |
|
106 |
print errors |
|
107 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
108 |
|
371 | 109 |
def check_html_file(source_file, dest_path): |
110 |
""" Checks if a base HTML-file is available in the PyJamas |
|
111 |
output directory. |
|
112 |
If the HTML-file isn't available, it will be created. |
|
113 |
||
114 |
If a CSS-file with the same name is available |
|
115 |
in the output directory, a reference to this CSS-file |
|
116 |
is included. |
|
117 |
||
118 |
If no CSS-file is found, this function will look for a special |
|
119 |
CSS-file in the output directory, with the name |
|
120 |
"pyjamas_default.css", and if found it will be referenced |
|
121 |
in the generated HTML-file. |
|
122 |
||
123 |
[thank you to stef mientki for contributing this function] |
|
124 |
""" |
|
125 |
||
126 |
base_html = """\ |
|
127 |
<html> |
|
128 |
<!-- auto-generated html - you should consider editing and |
|
129 |
adapting this to suit your requirements |
|
130 |
--> |
|
131 |
<head> |
|
132 |
<meta name="pygwt:module" content="%(modulename)s"> |
|
133 |
%(css)s |
|
134 |
<title>%(title)s</title> |
|
135 |
</head> |
|
136 |
<body bgcolor="white"> |
|
137 |
<script language="javascript" src="pygwt.js"></script> |
|
138 |
</body> |
|
139 |
</html> |
|
140 |
""" |
|
141 |
||
1758
845ca626db09
clean-up: fix PEP8 E222 multiple spaces after operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1757
diff
changeset
|
142 |
filename = os.path.split(source_file)[1] |
845ca626db09
clean-up: fix PEP8 E222 multiple spaces after operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1757
diff
changeset
|
143 |
mod_name = os.path.splitext(filename)[0] |
845ca626db09
clean-up: fix PEP8 E222 multiple spaces after operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1757
diff
changeset
|
144 |
file_name = os.path.join(dest_path, mod_name + '.html') |
371 | 145 |
|
146 |
# if html file in output directory exists, leave it alone. |
|
1771
f68a105000be
clean-up: fix PEP8 E211 whitespace before '[' or '('
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
147 |
if os.path.exists(file_name): |
371 | 148 |
return 0 |
149 |
||
1746
45d6f5fba016
clean-up: fix PEP8 E202 whitespace before ')'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
150 |
if os.path.exists(os.path.join(dest_path, mod_name + '.css')): |
371 | 151 |
css = "<link rel='stylesheet' href='" + mod_name + ".css'>" |
1746
45d6f5fba016
clean-up: fix PEP8 E202 whitespace before ')'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1744
diff
changeset
|
152 |
elif os.path.exists(os.path.join(dest_path, 'pyjamas_default.css')): |
371 | 153 |
css = "<link rel='stylesheet' href='pyjamas_default.css'>" |
154 |
||
155 |
else: |
|
156 |
css = '' |
|
157 |
||
158 |
title = 'PyJamas Auto-Generated HTML file ' + mod_name |
|
159 |
||
160 |
base_html = base_html % {'modulename': mod_name, 'title': title, 'css': css} |
|
161 |
||
1771
f68a105000be
clean-up: fix PEP8 E211 whitespace before '[' or '('
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
162 |
fh = open(file_name, 'w') |
f68a105000be
clean-up: fix PEP8 E211 whitespace before '[' or '('
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
163 |
fh.write(base_html) |
f68a105000be
clean-up: fix PEP8 E211 whitespace before '[' or '('
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1768
diff
changeset
|
164 |
fh.close() |
371 | 165 |
|
166 |
return 1 |
|
167 |
||
168 |
||
169 |
def build(app_name, output, js_includes=(), debug=False, dynamic=0, |
|
170 |
data_dir=None, cache_buster=False, optimize=False): |
|
171 |
||
172 |
# make sure the output directory is always created in the current working |
|
173 |
# directory or at the place given if it is an absolute path. |
|
174 |
output = os.path.abspath(output) |
|
175 |
msg = "Building '%(app_name)s' to output directory '%(output)s'" % locals() |
|
176 |
if debug: |
|
177 |
msg += " with debugging statements" |
|
178 |
print msg |
|
179 |
||
180 |
# check the output directory |
|
181 |
if os.path.exists(output) and not os.path.isdir(output): |
|
182 |
print >>sys.stderr, "Output destination %s exists and is not a directory" % output |
|
183 |
return |
|
184 |
if not os.path.isdir(output): |
|
185 |
try: |
|
186 |
print "Creating output directory" |
|
187 |
os.mkdir(output) |
|
188 |
except StandardError, e: |
|
189 |
print >>sys.stderr, "Exception creating output directory %s: %s" % (output, e) |
|
190 |
||
1753
19f19c66b67e
clean-up: fix most PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
191 |
# public dir |
371 | 192 |
for p in pyjs.path: |
193 |
pub_dir = join(p, 'public') |
|
194 |
if isdir(pub_dir): |
|
195 |
print "Copying: public directory of library %r" % p |
|
196 |
copytree_exists(pub_dir, output) |
|
197 |
||
1753
19f19c66b67e
clean-up: fix most PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
198 |
# AppName.html - can be in current or public directory |
371 | 199 |
html_input_filename = app_name + ".html" |
200 |
html_output_filename = join(output, basename(html_input_filename)) |
|
201 |
if os.path.isfile(html_input_filename): |
|
202 |
if not os.path.isfile(html_output_filename) or \ |
|
203 |
os.path.getmtime(html_input_filename) > \ |
|
204 |
os.path.getmtime(html_output_filename): |
|
205 |
try: |
|
206 |
shutil.copy(html_input_filename, html_output_filename) |
|
1780
c52d1460cea8
clean-up: fix PEP8 E722 do not use bare except'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1775
diff
changeset
|
207 |
except Exception: |
371 | 208 |
print >>sys.stderr, "Warning: Missing module HTML file %s" % html_input_filename |
209 |
||
210 |
print "Copying: %(html_input_filename)s" % locals() |
|
211 |
||
212 |
if check_html_file(html_input_filename, output): |
|
213 |
print >>sys.stderr, "Warning: Module HTML file %s has been auto-generated" % html_input_filename |
|
214 |
||
1753
19f19c66b67e
clean-up: fix most PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
215 |
# pygwt.js |
371 | 216 |
|
217 |
print "Copying: pygwt.js" |
|
218 |
||
219 |
pygwt_js_template = read_boilerplate(data_dir, "pygwt.js") |
|
220 |
pygwt_js_output = open(join(output, "pygwt.js"), "w") |
|
221 |
||
222 |
print >>pygwt_js_output, pygwt_js_template |
|
223 |
||
224 |
pygwt_js_output.close() |
|
225 |
||
1753
19f19c66b67e
clean-up: fix most PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
226 |
# Images |
371 | 227 |
|
228 |
print "Copying: Images and History" |
|
229 |
copy_boilerplate(data_dir, "corner_dialog_topleft_black.png", output) |
|
230 |
copy_boilerplate(data_dir, "corner_dialog_topright_black.png", output) |
|
231 |
copy_boilerplate(data_dir, "corner_dialog_bottomright_black.png", output) |
|
232 |
copy_boilerplate(data_dir, "corner_dialog_bottomleft_black.png", output) |
|
233 |
copy_boilerplate(data_dir, "corner_dialog_edge_black.png", output) |
|
234 |
copy_boilerplate(data_dir, "corner_dialog_topleft.png", output) |
|
235 |
copy_boilerplate(data_dir, "corner_dialog_topright.png", output) |
|
236 |
copy_boilerplate(data_dir, "corner_dialog_bottomright.png", output) |
|
237 |
copy_boilerplate(data_dir, "corner_dialog_bottomleft.png", output) |
|
238 |
copy_boilerplate(data_dir, "corner_dialog_edge.png", output) |
|
239 |
copy_boilerplate(data_dir, "tree_closed.gif", output) |
|
240 |
copy_boilerplate(data_dir, "tree_open.gif", output) |
|
241 |
copy_boilerplate(data_dir, "tree_white.gif", output) |
|
242 |
copy_boilerplate(data_dir, "history.html", output) |
|
243 |
||
1753
19f19c66b67e
clean-up: fix most PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
244 |
# all.cache.html |
371 | 245 |
app_files = generateAppFiles(data_dir, js_includes, app_name, debug, |
246 |
output, dynamic, cache_buster, optimize) |
|
247 |
||
1753
19f19c66b67e
clean-up: fix most PEP8 E266 too many leading '#' for block comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1749
diff
changeset
|
248 |
# AppName.nocache.html |
371 | 249 |
|
250 |
print "Creating: %(app_name)s.nocache.html" % locals() |
|
251 |
||
252 |
home_nocache_html_template = read_boilerplate(data_dir, "home.nocache.html") |
|
253 |
home_nocache_html_output = open(join(output, app_name + ".nocache.html"), |
|
254 |
"w") |
|
255 |
||
256 |
# the selector templ is added to the selectScript function |
|
257 |
select_tmpl = """O(["true","%s"],"%s");""" |
|
258 |
script_selectors = StringIO() |
|
259 |
||
260 |
for platform, file_prefix in app_files: |
|
261 |
print >> script_selectors, select_tmpl % (platform, file_prefix) |
|
262 |
||
263 |
print >>home_nocache_html_output, home_nocache_html_template % dict( |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
264 |
app_name=app_name, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
265 |
script_selectors=script_selectors.getvalue(), |
371 | 266 |
) |
267 |
||
268 |
home_nocache_html_output.close() |
|
269 |
||
270 |
print "Done. You can run your app by opening '%(html_output_filename)s' in a browser" % locals() |
|
271 |
||
272 |
||
273 |
def generateAppFiles(data_dir, js_includes, app_name, debug, output, dynamic, |
|
274 |
cache_buster, optimize): |
|
275 |
||
276 |
all_cache_html_template = read_boilerplate(data_dir, "all.cache.html") |
|
277 |
mod_cache_html_template = read_boilerplate(data_dir, "mod.cache.html") |
|
278 |
||
279 |
# clean out the old ones first |
|
280 |
for name in os.listdir(output): |
|
281 |
if CACHE_HTML_PAT.match(name): |
|
282 |
p = join(output, name) |
|
283 |
print "Deleting existing app file %s" % p |
|
284 |
os.unlink(p) |
|
285 |
||
286 |
app_files = [] |
|
287 |
tmpl = read_boilerplate(data_dir, "all.cache.html") |
|
288 |
parser = pyjs.PlatformParser("platform") |
|
289 |
app_headers = '' |
|
1764
d5df428640ff
clean-up: fix PEP8 E502 the backslash is redundant between brackets
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1763
diff
changeset
|
290 |
scripts = ['<script type="text/javascript" src="%s"></script>' % |
d5df428640ff
clean-up: fix PEP8 E502 the backslash is redundant between brackets
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1763
diff
changeset
|
291 |
script for script in js_includes] |
371 | 292 |
app_body = '\n'.join(scripts) |
293 |
||
294 |
mod_code = {} |
|
295 |
mod_libs = {} |
|
296 |
modules = {} |
|
297 |
app_libs = {} |
|
298 |
early_app_libs = {} |
|
299 |
app_code = {} |
|
300 |
overrides = {} |
|
301 |
pover = {} |
|
302 |
app_modnames = {} |
|
303 |
mod_levels = {} |
|
304 |
||
305 |
# First, generate all the code. |
|
306 |
# Second, (dynamic only), post-analyse the places where modules |
|
307 |
# haven't changed |
|
308 |
# Third, write everything out. |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
728
diff
changeset
|
309 |
|
371 | 310 |
for platform in app_platforms: |
311 |
||
312 |
mod_code[platform] = {} |
|
313 |
mod_libs[platform] = {} |
|
314 |
modules[platform] = [] |
|
315 |
pover[platform] = {} |
|
316 |
app_libs[platform] = '' |
|
317 |
early_app_libs[platform] = '' |
|
318 |
app_code[platform] = {} |
|
319 |
app_modnames[platform] = {} |
|
320 |
||
321 |
# Application.Platform.cache.html |
|
322 |
||
323 |
parser.setPlatform(platform) |
|
324 |
app_translator = pyjs.AppTranslator( |
|
325 |
parser=parser, dynamic=dynamic, optimize=optimize) |
|
326 |
early_app_libs[platform], appcode = \ |
|
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
327 |
app_translator.translate(None, is_app=False, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
328 |
debug=debug, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
329 |
library_modules=['dynamicajax.js', |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
330 |
'_pyjs.js', 'sys', |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
331 |
'pyjslib']) |
371 | 332 |
pover[platform].update(app_translator.overrides.items()) |
333 |
for mname, name in app_translator.overrides.items(): |
|
334 |
pd = overrides.setdefault(mname, {}) |
|
335 |
pd[platform] = name |
|
336 |
||
337 |
print appcode |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
338 |
# mod_code[platform][app_name] = appcode |
371 | 339 |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
728
diff
changeset
|
340 |
# platform.Module.cache.js |
371 | 341 |
|
342 |
modules_done = ['pyjslib', 'sys', '_pyjs.js'] |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
343 |
# modules_to_do = [app_name] + app_translator.library_modules |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
728
diff
changeset
|
344 |
modules_to_do = [app_name] + app_translator.library_modules |
371 | 345 |
|
346 |
dependencies = {} |
|
347 |
||
348 |
deps = map(pyjs.strip_py, modules_to_do) |
|
349 |
for d in deps: |
|
350 |
sublist = add_subdeps(dependencies, d) |
|
351 |
modules_to_do += sublist |
|
352 |
deps = uniquify(deps) |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
353 |
# dependencies[app_name] = deps |
371 | 354 |
|
355 |
modules[platform] = modules_done + modules_to_do |
|
356 |
||
357 |
while modules_to_do: |
|
358 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
359 |
# print "modules to do", modules_to_do |
371 | 360 |
|
361 |
mn = modules_to_do.pop() |
|
362 |
mod_name = pyjs.strip_py(mn) |
|
363 |
||
364 |
if mod_name in modules_done: |
|
365 |
continue |
|
366 |
||
367 |
modules_done.append(mod_name) |
|
368 |
||
369 |
mod_cache_name = "%s.%s.cache.js" % (platform.lower(), mod_name) |
|
370 |
||
371 |
parser.setPlatform(platform) |
|
372 |
mod_translator = pyjs.AppTranslator(parser=parser, optimize=optimize) |
|
373 |
mod_libs[platform][mod_name], mod_code[platform][mod_name] = \ |
|
1767
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
374 |
mod_translator.translate(mod_name, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
375 |
is_app=False, |
c74815729afd
clean-up: fix PEP8 E127 continuation line over-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1764
diff
changeset
|
376 |
debug=debug) |
371 | 377 |
pover[platform].update(mod_translator.overrides.items()) |
378 |
for mname, name in mod_translator.overrides.items(): |
|
379 |
pd = overrides.setdefault(mname, {}) |
|
380 |
pd[platform] = name |
|
381 |
||
382 |
mods = mod_translator.library_modules |
|
383 |
modules_to_do += mods |
|
384 |
modules[platform] += mods |
|
385 |
||
386 |
deps = map(pyjs.strip_py, mods) |
|
387 |
sd = subdeps(mod_name) |
|
388 |
if len(sd) > 1: |
|
389 |
deps += sd[:-1] |
|
390 |
while mod_name in deps: |
|
391 |
deps.remove(mod_name) |
|
392 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
393 |
|
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
394 |
|
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
395 |
# print "modname preadd:", mod_name, deps |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
396 |
|
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
397 |
|
371 | 398 |
for d in deps: |
399 |
sublist = add_subdeps(dependencies, d) |
|
400 |
modules_to_do += sublist |
|
401 |
modules_to_do += add_subdeps(dependencies, mod_name) |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
402 |
# print "modname:", mod_name, deps |
371 | 403 |
deps = uniquify(deps) |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
404 |
# print "modname:", mod_name, deps |
371 | 405 |
dependencies[mod_name] = deps |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
728
diff
changeset
|
406 |
|
371 | 407 |
# work out the dependency ordering of the modules |
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
728
diff
changeset
|
408 |
|
371 | 409 |
mod_levels[platform] = make_deps(None, dependencies, modules_done) |
410 |
||
411 |
# now write everything out |
|
412 |
||
413 |
for platform in app_platforms: |
|
414 |
||
415 |
early_app_libs_ = early_app_libs[platform] |
|
416 |
app_libs_ = app_libs[platform] |
|
417 |
app_code_ = app_code[platform] |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
418 |
# modules_ = filter_mods(app_name, modules[platform]) |
371 | 419 |
mods = flattenlist(mod_levels[platform]) |
420 |
mods.reverse() |
|
421 |
modules_ = filter_mods(None, mods) |
|
422 |
||
423 |
for mod_name in modules_: |
|
424 |
||
425 |
mod_code_ = mod_code[platform][mod_name] |
|
426 |
||
427 |
mod_name = pyjs.strip_py(mod_name) |
|
428 |
||
429 |
override_name = "%s.%s" % (platform.lower(), mod_name) |
|
1763
bcc07ff2362c
clean-up: fix PEP8 W601 .has_key() is deprecated, use 'in'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1758
diff
changeset
|
430 |
if override_name in pover[platform]: |
371 | 431 |
mod_cache_name = "%s.cache.js" % (override_name) |
432 |
else: |
|
433 |
mod_cache_name = "%s.cache.js" % (mod_name) |
|
434 |
||
435 |
print "Creating: " + mod_cache_name |
|
436 |
||
437 |
modlevels = make_deps(None, dependencies, dependencies[mod_name]) |
|
438 |
||
439 |
modnames = [] |
|
440 |
||
441 |
for md in modlevels: |
|
442 |
mnames = map(lambda x: "'%s'" % x, md) |
|
443 |
mnames = "new pyjslib.List([\n\t\t\t%s])" % ',\n\t\t\t'.join(mnames) |
|
444 |
modnames.append(mnames) |
|
445 |
||
446 |
modnames.reverse() |
|
447 |
modnames = "new pyjslib.List([\n\t\t%s\n\t])" % ',\n\t\t'.join(modnames) |
|
448 |
||
449 |
# convert the overrides |
|
450 |
||
451 |
overnames = map(lambda x: "'%s': '%s'" % x, pover[platform].items()) |
|
452 |
overnames = "new pyjslib.Dict({\n\t\t%s\n\t})" % ',\n\t\t'.join(overnames) |
|
453 |
||
454 |
if dynamic: |
|
455 |
mod_cache_html_output = open(join(output, mod_cache_name), "w") |
|
456 |
else: |
|
457 |
mod_cache_html_output = StringIO() |
|
458 |
||
459 |
print >>mod_cache_html_output, mod_cache_html_template % dict( |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
460 |
mod_name=mod_name, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
461 |
app_name=app_name, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
462 |
modnames=modnames, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
463 |
overrides=overnames, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
464 |
mod_libs=mod_libs[platform][mod_name], |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
465 |
dynamic=dynamic, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
466 |
mod_code=mod_code_, |
371 | 467 |
) |
468 |
||
469 |
if dynamic: |
|
470 |
mod_cache_html_output.close() |
|
471 |
else: |
|
472 |
mod_cache_html_output.seek(0) |
|
473 |
app_libs_ += mod_cache_html_output.read() |
|
474 |
||
475 |
# write out the dependency ordering of the modules |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
728
diff
changeset
|
476 |
|
371 | 477 |
app_modnames = [] |
478 |
||
479 |
for md in mod_levels[platform]: |
|
480 |
mnames = map(lambda x: "'%s'" % x, md) |
|
481 |
mnames = "new pyjslib.List([\n\t\t\t%s])" % ',\n\t\t\t'.join(mnames) |
|
482 |
app_modnames.append(mnames) |
|
483 |
||
484 |
app_modnames.reverse() |
|
485 |
app_modnames = "new pyjslib.List([\n\t\t%s\n\t])" % ',\n\t\t'.join(app_modnames) |
|
486 |
||
487 |
# convert the overrides |
|
488 |
||
489 |
overnames = map(lambda x: "'%s': '%s'" % x, pover[platform].items()) |
|
490 |
overnames = "new pyjslib.Dict({\n\t\t%s\n\t})" % ',\n\t\t'.join(overnames) |
|
491 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
492 |
# print "platform names", platform, overnames |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
493 |
# print pover |
371 | 494 |
|
495 |
# now write app.allcache including dependency-ordered list of |
|
496 |
# library modules |
|
497 |
||
498 |
file_contents = all_cache_html_template % dict( |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
499 |
app_name=app_name, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
500 |
early_app_libs=early_app_libs_, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
501 |
app_libs=app_libs_, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
502 |
app_code=app_code_, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
503 |
app_body=app_body, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
504 |
overrides=overnames, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
505 |
platform=platform.lower(), |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
506 |
dynamic=dynamic, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
507 |
app_modnames=app_modnames, |
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
508 |
app_headers=app_headers |
371 | 509 |
) |
510 |
if cache_buster: |
|
511 |
digest = md5.new(file_contents).hexdigest() |
|
512 |
file_name = "%s.%s.%s" % (platform.lower(), app_name, digest) |
|
513 |
else: |
|
514 |
file_name = "%s.%s" % (platform.lower(), app_name) |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
728
diff
changeset
|
515 |
file_name += ".cache.html" |
371 | 516 |
out_path = join(output, file_name) |
517 |
out_file = open(out_path, 'w') |
|
518 |
out_file.write(file_contents) |
|
519 |
out_file.close() |
|
520 |
app_files.append((platform.lower(), file_name)) |
|
521 |
print "Created app file %s:%s: %s" % ( |
|
522 |
app_name, platform, out_path) |
|
523 |
||
524 |
return app_files |
|
525 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
526 |
|
371 | 527 |
def flattenlist(ll): |
528 |
res = [] |
|
529 |
for l in ll: |
|
530 |
res += l |
|
531 |
return res |
|
532 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
533 |
|
371 | 534 |
def subdeps(m): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
535 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
536 |
creates sub-dependencies e.g. pyjamas.ui.Widget |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
537 |
creates pyjamas.ui.Widget, pyjamas.ui and pyjamas. |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
538 |
""" |
371 | 539 |
d = [] |
540 |
m = m.split(".") |
|
541 |
for i in range(0, len(m)): |
|
542 |
d.append('.'.join(m[:i+1])) |
|
543 |
return d |
|
544 |
||
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1746
diff
changeset
|
545 |
|
371 | 546 |
def add_subdeps(deps, mod_name): |
547 |
sd = subdeps(mod_name) |
|
548 |
if len(sd) == 1: |
|
549 |
return [] |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
550 |
# print "subdeps", mod_name, sd |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
551 |
# print "deps", deps |
371 | 552 |
res = [] |
553 |
for i in range(0, len(sd)-1): |
|
554 |
parent = sd[i] |
|
555 |
child = sd[i+1] |
|
1755
624b9694cb0d
clean-up: fix PEP8 E741 ambiguous variable name
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1754
diff
changeset
|
556 |
k = deps.get(child, []) |
624b9694cb0d
clean-up: fix PEP8 E741 ambiguous variable name
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1754
diff
changeset
|
557 |
k.append(parent) |
624b9694cb0d
clean-up: fix PEP8 E741 ambiguous variable name
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1754
diff
changeset
|
558 |
deps[child] = k |
371 | 559 |
if parent not in res: |
560 |
res.append(parent) |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
561 |
# print deps |
371 | 562 |
return res |
563 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
564 |
|
371 | 565 |
def uniquify(md): |
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
566 |
""" |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
567 |
makes unique and preserves list order |
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
568 |
""" |
371 | 569 |
res = [] |
570 |
for m in md: |
|
571 |
if m not in res: |
|
572 |
res.append(m) |
|
573 |
return res |
|
574 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
575 |
|
371 | 576 |
def filter_mods(app_name, md): |
577 |
while 'sys' in md: |
|
578 |
md.remove('sys') |
|
579 |
while 'pyjslib' in md: |
|
580 |
md.remove('pyjslib') |
|
581 |
while app_name in md: |
|
582 |
md.remove(app_name) |
|
583 |
md = filter(lambda x: not x.endswith('.js'), md) |
|
584 |
md = map(pyjs.strip_py, md) |
|
585 |
||
586 |
return uniquify(md) |
|
587 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
588 |
|
371 | 589 |
def filter_deps(app_name, deps): |
590 |
||
591 |
res = {} |
|
592 |
for (k, l) in deps.items(): |
|
593 |
mods = filter_mods(k, l) |
|
594 |
while k in mods: |
|
595 |
mods.remove(k) |
|
596 |
res[k] = mods |
|
597 |
return res |
|
598 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
599 |
|
371 | 600 |
def has_nodeps(mod, deps): |
1775
b45f2768fab1
clean-up: fix PEP8 E713 test for membership should be 'not in'
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1773
diff
changeset
|
601 |
if mod not in deps or not deps[mod]: |
371 | 602 |
return True |
603 |
return False |
|
604 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
605 |
|
371 | 606 |
def nodeps_list(mod_list, deps): |
607 |
res = [] |
|
608 |
for mod in mod_list: |
|
609 |
if has_nodeps(mod, deps): |
|
610 |
res.append(mod) |
|
611 |
return res |
|
1730
64d8f52bc8c8
clean-up for PEP8: fix W291 trailing whitespace
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
728
diff
changeset
|
612 |
|
371 | 613 |
# this function takes a dictionary of dependent modules and |
614 |
# creates a list of lists. the first list will be modules |
|
615 |
# that have no dependencies; the second list will be those |
|
616 |
# modules that have the first list as dependencies; the |
|
617 |
# third will be those modules that have the first and second... |
|
618 |
# etc. |
|
619 |
||
620 |
||
621 |
def make_deps(app_name, deps, mod_list): |
|
622 |
print "Calculating Dependencies ..." |
|
623 |
mod_list = filter_mods(app_name, mod_list) |
|
624 |
deps = filter_deps(app_name, deps) |
|
625 |
||
626 |
if not mod_list: |
|
627 |
return [] |
|
628 |
||
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
629 |
# print mod_list |
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
630 |
# print deps |
371 | 631 |
|
632 |
ordered_deps = [] |
|
633 |
last_len = -1 |
|
634 |
while deps: |
|
635 |
l_deps = len(deps) |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
636 |
# print l_deps |
1742
92932cd370a4
clean-up: fix PEP8 E225 missing whitespace around operator
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1741
diff
changeset
|
637 |
if l_deps == last_len: |
371 | 638 |
for m, dl in deps.items(): |
639 |
for d in dl: |
|
640 |
if m in deps.get(d, []): |
|
641 |
raise Exception('Circular Imports found: \n%s %s -> %s %s' |
|
642 |
% (m, dl, d, deps[d])) |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
643 |
# raise Exception('Could not calculate dependencies: \n%s' % deps) |
371 | 644 |
break |
645 |
last_len = l_deps |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
646 |
# print "modlist", mod_list |
371 | 647 |
nodeps = nodeps_list(mod_list, deps) |
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
648 |
# print "nodeps", nodeps |
371 | 649 |
mod_list = filter(lambda x: x not in nodeps, mod_list) |
650 |
newdeps = {} |
|
651 |
for k in deps.keys(): |
|
652 |
depslist = deps[k] |
|
653 |
depslist = filter(lambda x: x not in nodeps, depslist) |
|
654 |
if depslist: |
|
655 |
newdeps[k] = depslist |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
656 |
# print "newdeps", newdeps |
371 | 657 |
deps = newdeps |
658 |
ordered_deps.append(nodeps) |
|
1782
5b6ad7a7fd9d
clean-up: fix PEP8 E265 block comment should start with '# '
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1780
diff
changeset
|
659 |
# time.sleep(0) |
371 | 660 |
|
661 |
if mod_list: |
|
1737
a39c2918c015
clean-up: fix PEP8 E261 at least two spaces before inline comment
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1736
diff
changeset
|
662 |
ordered_deps.append(mod_list) # last dependencies - usually the app(s) |
371 | 663 |
|
664 |
ordered_deps.reverse() |
|
665 |
||
666 |
return ordered_deps |
|
667 |
||
1736
7e61baa047f0
clean-up: fix PEP8 E302 expected 2 blank lines, found 1
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1734
diff
changeset
|
668 |
|
371 | 669 |
def main(): |
670 |
global app_platforms |
|
671 |
||
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
672 |
parser = OptionParser(usage=usage, version=version) |
1773
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
673 |
parser.add_option( |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
674 |
"-o", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
675 |
"--output", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
676 |
dest="output", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
677 |
help="directory to which the webapp should be written" |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
678 |
) |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
679 |
parser.add_option( |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
680 |
"-j", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
681 |
"--include-js", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
682 |
dest="js_includes", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
683 |
action="append", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
684 |
help="javascripts to load into the same frame as the rest of the script" |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
685 |
) |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
686 |
parser.add_option( |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
687 |
"-I", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
688 |
"--library_dir", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
689 |
dest="library_dirs", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
690 |
action="append", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
691 |
help="additional paths appended to PYJSPATH" |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
692 |
) |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
693 |
parser.add_option( |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
694 |
"-D", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
695 |
"--data_dir", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
696 |
dest="data_dir", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
697 |
help="path for data directory" |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
698 |
) |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
699 |
parser.add_option( |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
700 |
"-m", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
701 |
"--dynamic-modules", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
702 |
action="store_true", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
703 |
dest="dynamic", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
704 |
default=False, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
705 |
help="Split output into separate dynamically-loaded modules (experimental)" |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
706 |
) |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
707 |
parser.add_option( |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
708 |
"-P", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
709 |
"--platforms", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
710 |
dest="platforms", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
711 |
help="platforms to build for, comma-separated" |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
712 |
) |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
713 |
parser.add_option( |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
714 |
"-d", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
715 |
"--debug", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
716 |
action="store_true", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
717 |
dest="debug" |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
718 |
) |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
719 |
parser.add_option( |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
720 |
"-O", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
721 |
"--optimize", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
722 |
action="store_true", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
723 |
dest="optimize", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
724 |
default=False, |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
725 |
help="Optimize generated code (removes all print statements)", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
726 |
) |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
727 |
parser.add_option( |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
728 |
"-c", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
729 |
"--cache_buster", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
730 |
action="store_true", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
731 |
dest="cache_buster", |
38fde37c3766
clean-up: fix PEP8 E124 closing bracket does not match visual indentation
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1771
diff
changeset
|
732 |
help="Enable browser cache-busting (MD5 hash added to output filenames)" |
1768
691083b5682a
clean-up: fix PEP8 E128 continuation line under-indented for visual indent
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1767
diff
changeset
|
733 |
) |
371 | 734 |
|
1744
69dfdb26f600
clean-up: fix PEP8 E251 unexpected spaces around keyword / parameter equals
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1742
diff
changeset
|
735 |
parser.set_defaults(output="output", js_includes=[], library_dirs=[], |
371 | 736 |
platforms=(','.join(app_platforms)), |
737 |
data_dir=os.path.join(sys.prefix, "share/pyjamas"), |
|
738 |
dynamic=False, |
|
739 |
cache_buster=False, |
|
740 |
debug=False) |
|
741 |
(options, args) = parser.parse_args() |
|
742 |
if len(args) != 1: |
|
743 |
parser.error("incorrect number of arguments") |
|
744 |
||
745 |
data_dir = abspath(options.data_dir) |
|
746 |
||
747 |
app_path = args[0] |
|
748 |
if app_path.endswith('.py'): |
|
749 |
app_path = abspath(app_path) |
|
750 |
if not isfile(app_path): |
|
751 |
parser.error("Application file not found %r" % app_path) |
|
752 |
app_path, app_name = split(app_path) |
|
753 |
app_name = app_name[:-3] |
|
754 |
pyjs.path.append(app_path) |
|
755 |
elif os.path.sep in app_path: |
|
756 |
parser.error("Not a valid module declaration %r" % app_path) |
|
757 |
else: |
|
758 |
app_name = app_path |
|
759 |
||
760 |
for d in options.library_dirs: |
|
761 |
pyjs.path.append(abspath(d)) |
|
762 |
||
763 |
if options.platforms: |
|
1757
0de89da92ee0
clean-up: fix PEP8 E111 indentation is not a multiple of four
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1755
diff
changeset
|
764 |
app_platforms = options.platforms.split(',') |
371 | 765 |
|
766 |
# this is mostly for getting boilerplate stuff |
|
767 |
data_dir = os.path.abspath(options.data_dir) |
|
768 |
||
769 |
build(app_name, options.output, options.js_includes, |
|
770 |
options.debug, options.dynamic and 1 or 0, data_dir, |
|
771 |
options.cache_buster, options.optimize) |
|
772 |
||
1749
d73b64672238
clean-up: fix PEP8 E305 expected 2 blank lines after class or function definition
Andrey Skvortsov <andrej.skvortzov@gmail.com>
parents:
1746
diff
changeset
|
773 |
|
371 | 774 |
if __name__ == "__main__": |
775 |
main() |