-
Notifications
You must be signed in to change notification settings - Fork 512
/
manage.py
executable file
·680 lines (568 loc) · 24.4 KB
/
manage.py
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
#!/usr/bin/env python
# Copyright (c) 2011-2014 Turbulenz Limited
"""
Init script for manipulating the Turbulenz Engine project.
"""
import os
import sys
import re
import time
import os.path
from glob import iglob
from subprocess import call
import argparse
from scripts import TURBULENZ_ENGINE_VERSION
from scripts.utils import TURBULENZOS, TURBULENZROOT, PYTHON, ENV
from scripts.utils import command_no_arguments, command_with_arguments, command_requires_env
from scripts.utils import CalledProcessError, echo, log, warning, error, ok, sh, rmdir, rm, mkdir, cp
from scripts.utils import check_documentation_links, find_devenv, check_compilers
################################################################################
def _d3d11_cgfx2json_flags():
abspath = os.path.abspath
join = os.path.join
hlsl5_script = abspath(join('scripts', 'compile_hlsl5_shader.bat'))
hlsl4_script = abspath(join('scripts', 'compile_hlsl4_shader.bat'))
return [
"--hlsl5", "%s,%s" % ("binary_hlsl5", hlsl5_script),
"--hlsl4", "%s,%s" % ("binary_hlsl4", hlsl4_script),
]
def _d3d9_cgfx2json_flags():
abspath = os.path.abspath
join = os.path.join
hlsl3_script = abspath(join('scripts', 'compile_hlsl3_shader.bat'))
return [ "--hlsl3", "%s,%s" % ("binary_hlsl3", hlsl3_script) ]
################################################################################
@command_no_arguments
def command_env():
if sys.version_info[1] != 7:
error('Turbulenz requires python 2.7')
return -1
env_dir = os.path.join(TURBULENZROOT, ENV)
if not os.path.isdir(env_dir):
if TURBULENZOS == 'win32':
sh('%s -m virtualenv --no-site-packages %s' % (sys.executable, env_dir))
else:
print "PYTHON: %s" % PYTHON
cmd = 'virtualenv -p %s --no-site-packages %s' % (PYTHON, env_dir)
print "CMD: %s" % cmd
sh(cmd, console=True)
if TURBULENZOS == 'win32':
env_bin = os.path.join(TURBULENZROOT, 'env', 'scripts')
activate_script = os.path.join(env_bin, 'activate.bat')
extra_path = 'set PATH=%PATH%;%VIRTUAL_ENV%\\..\\tools\\scripts\n'
else:
env_bin = os.path.join(TURBULENZROOT, 'env', 'bin')
activate_script = os.path.join(env_bin, 'activate')
extra_path = 'export PATH=$PATH:$VIRTUAL_ENV/../tools/scripts\n'
with open(activate_script, 'r+') as f:
activate_text = f.read()
if activate_text.find(extra_path) == -1:
# Seek is required here on Windows Python 2.x
f.seek(0, 2)
f.write(extra_path)
try:
check_compilers()
except EnvironmentError as e:
error(e)
exit(1)
def _easy_install(package):
cmd = [os.path.join(env_bin, 'easy_install'), '-Z', package]
sh(cmd)
_easy_install('simplejson>=2.1.5')
_easy_install('PyYAML>=3.10')
_easy_install('pylint==1.2.1')
_easy_install('roman>=1.4.0')
_easy_install('docutils>=0.9.1')
_easy_install('Sphinx>=1.1.3')
_easy_install('turbulenz_tools>=1.0.7')
_easy_install('turbulenz_local>=1.1.6')
cmd = [os.path.join(env_bin, 'python'),
os.path.join(TURBULENZROOT, 'scripts', 'install_nodejs.py'),
'--prefix', env_dir,
'--typescript']
if not TURBULENZOS in ['linux32', 'linux64']:
cmd.append('-f')
sh(cmd, console=True)
if TURBULENZOS == 'win32':
sh([os.path.join(env_bin, 'npm.cmd'), 'install', '-g', '[email protected]'])
else:
sh([os.path.join(env_bin, 'npm'), 'install', '-g', '[email protected]'])
@command_no_arguments
def command_env_clean():
rmdir(os.path.join(TURBULENZROOT, ENV), False)
#######################################################################################################################
@command_requires_env
@command_with_arguments
def command_jslib(options):
parser = argparse.ArgumentParser(description=" Builds or cleans specified app(s), by name or path. If no app is"
" given, builds or cleans all the listed apps (except samples).")
parser.add_argument('--clean', action='store_true', help="Clean jslib (completely removes directory!)")
parser.add_argument('--outdir', default=None, help="Build jslib to an alternative directory")
parser.add_argument('--closure', action='store_true', help="Verify the generated .js files with closure")
parser.add_argument('-v', '--verbose', action='store_true', help="Verbose output")
parser.add_argument('-j', type=int, default=_get_num_cpus() + 1, help="Up to N processes (default is num CPUS + 1)")
parser.add_argument('--check', help="Syntax check the given file under tslib")
parser.add_argument('--refcheck', action='store_true', help="Enable the reference checking build")
parser.add_argument('-m', '--modular', action='store_true', help="Build modules only (in dependency order)")
parser.add_argument('--crude', action='store_true', help="Build jslib only (no error checking)")
parser.add_argument('--cgfx-flag', action='append', help="Flag for cgfx2json")
parser.add_argument('--d3d11', action='store_true', help="Build D3D11 shaders")
parser.add_argument('--d3d9', action='store_true', help="Build D3D9 shaders")
args = parser.parse_args(options)
if args.modular:
mode = 'modular'
elif args.crude:
mode = 'crude'
else:
mode = 'all'
# Clean any make env vars in case we have been invoked from a
# parent make process.
os.environ['MAKEFLAGS'] = ""
os.environ['MFLAGS'] = ""
# Determine the make command line
cmd = "%s -j %s" % (_get_make_command(), args.j)
# Explicitly run make in the root of the engine folder
cmd += ' -C %s' % TURBULENZROOT
if args.outdir:
cmd += " TZ_OUTPUT_DIR=%s" % args.outdir
if args.verbose:
cmd += " CMDVERBOSE=1"
if args.closure:
cmd += " VERIFY_CLOSURE=1"
cgfx2json_flags = []
if args.d3d11:
cgfx2json_flags.extend(_d3d11_cgfx2json_flags())
if args.d3d9:
cgfx2json_flags.extend(_d3d9_cgfx2json_flags())
if args.cgfx_flag:
cgfx2json_flags.extend(args.cgfx_flag)
if 0 != len(cgfx2json_flags):
cmd += " \"CGFX2JSONFLAGS=%s\"" % " ".join(cgfx2json_flags)
# If mode == "all", run the modular build, then crude
if "all" == mode:
if 0 != command_jslib(options + ['--modular']):
return 1
return command_jslib(options + [ '--crude' ])
elif "modular" == mode:
cmd += " MODULAR=1"
elif "refcheck" == mode:
cmd += " REFCHECK=1"
elif "crude" == mode:
cmd += " ONESHOT=1"
# Select the appropriate target based on whether we are syntax
# checking or doing a full build.
if args.check:
cmd += " CHK_SOURCES=%s SYNTAX_CHECK_MODE=1 REFCHECK=1 check-syntax" \
% args.check
elif args.clean:
cmd += " distclean_ts"
else:
cmd += " jslib"
print "BUILD CMD IS:\n %s" % cmd
start_time = time.time()
retval = call(cmd, shell=True)
print "BUILD TOOK: %.6f seconds" % (time.time() - start_time)
if 0 != retval:
error(cmd)
return retval
@command_requires_env
@command_with_arguments
def command_jslib_clean(options):
command_jslib(['--clean'] + options)
def _get_num_cpus():
import multiprocessing
return multiprocessing.cpu_count()
def _get_make_command():
if TURBULENZOS in ['win32', 'win64']:
return os.path.join(TURBULENZROOT, 'external', 'gnumake-win32', '3.81', 'bin', 'make.exe')
return "make"
#######################################################################################################################
@command_no_arguments
def command_tools():
tools = os.path.normpath(os.path.join(TURBULENZROOT, 'tools'))
tools_bin = os.path.normpath(os.path.join(tools, 'bin', TURBULENZOS))
mkdir(tools_bin)
if TURBULENZOS == 'win32':
devenv, vs_version_name, msbuild = find_devenv()
if not devenv and not msbuild:
error('Could not find a valid install of Visual Studio')
return 1
if vs_version_name == '2008':
proj_postfix = '.vcproj'
sln_postfix = '.sln'
vs_version = '9.0'
elif vs_version_name == '2010':
proj_postfix = '-2010.vcxproj'
sln_postfix = '-2010.sln'
vs_version = '10.0'
elif vs_version_name == '2012':
proj_postfix = '-2012.vcxproj'
sln_postfix = '-2012.sln'
vs_version = '11.0'
elif vs_version_name == '2013':
proj_postfix = '-2013.vcxproj'
sln_postfix = '-2013.sln'
vs_version = '12.0'
if devenv:
base_cmd = [devenv, '/build', 'Release']
elif msbuild:
base_cmd = [msbuild, '/t:build', '/p:Configuration=Release',
'/p:Platform=Win32', '/p:VisualStudioVersion=%s' % vs_version]
cgfx2json_proj = os.path.join(tools, 'cgfx2json', 'cgfx2json%s' % proj_postfix)
cmd = base_cmd + [cgfx2json_proj]
sh(cmd, console=True, shell=True)
cp('%s/cgfx2json/Release/cgfx2json.exe' % tools, tools_bin)
cp('%s/external/Cg/bin/cg.dll' % TURBULENZROOT, tools_bin)
cp('%s/external/Cg/bin/cgGL.dll' % TURBULENZROOT, tools_bin)
nvtristrip_sln = os.path.join(tools, 'NvTriStrip', 'NvTriStrip%s' % sln_postfix)
cmd = base_cmd + [nvtristrip_sln]
sh(cmd, console=True, shell=True)
cp('%s/NvTriStrip/NvTriStripper/bin/release/NvTriStripper.exe' % tools, tools_bin)
else:
sh('make', cwd=tools, console=True)
cp('%s/cgfx2json/bin/release/cgfx2json' % tools, tools_bin)
cp('%s/NvTriStrip/NvTriStripper/bin/release/NvTriStripper' % tools, tools_bin)
@command_no_arguments
def command_tools_clean():
tools = os.path.normpath(os.path.join(TURBULENZROOT, 'tools'))
if TURBULENZOS == 'win32':
devenv, vs_version_name, msbuild = find_devenv()
if not devenv and not msbuild:
error('Could not find a valid install of Visual Studio')
return 1
if vs_version_name == '2008':
proj_postfix = '.vcproj'
sln_postfix = '.sln'
vs_version = '9.0'
elif vs_version_name == '2010':
proj_postfix = '-2010.vcxproj'
sln_postfix = '-2010.sln'
vs_version = '10.0'
elif vs_version_name == '2012':
proj_postfix = '-2012.vcxproj'
sln_postfix = '-2012.sln'
vs_version = '11.0'
elif vs_version_name == '2013':
proj_postfix = '-2013.vcxproj'
sln_postfix = '-2013.sln'
vs_version = '12.0'
if devenv:
base_cmd = [devenv, '/clean', 'Release']
elif msbuild:
base_cmd = [msbuild, '/t:clean', '/p:Configuration=Release',
'/p:Platform=Win32', '/p:VisualStudioVersion=%s' % vs_version]
cgfx2json_proj = os.path.join(tools, 'cgfx2json', 'cgfx2json%s' % proj_postfix)
cmd = base_cmd + [cgfx2json_proj]
sh(cmd, console=True, shell=True)
nvtristrip_sln = os.path.join(tools, 'NvTriStrip', 'NvTriStrip%s' % sln_postfix)
cmd = base_cmd + [nvtristrip_sln]
sh(cmd, console=True, shell=True)
else:
sh('make clean', cwd=tools)
#######################################################################################################################
@command_requires_env
@command_with_arguments
def command_apps(options):
app_dirs = ['samples',
'apps/inputapp',
'apps/multiworm',
'apps/sampleapp',
'apps/templateapp',
'apps/viewer',
'apps/tictactoe',
'apps/protolibsampleapp']
app_dirs = [os.path.join(TURBULENZROOT, p) for p in app_dirs]
all_apps = {}
for d in app_dirs:
all_apps[os.path.split(d)[1]] = d
parser = argparse.ArgumentParser(description=" Builds or cleans specified app(s), by name or path. If no app is"
" given, builds or cleans all the listed apps (except samples).")
parser.add_argument('--clean', action='store_true', help="Clean specified apps (same as apps-clean)")
parser.add_argument('--refcheck', action='store_true', help="Build with reference checking")
parser.add_argument('--verbose', action='store_true', help="Display verbose build output")
parser.add_argument('--compactor', default='uglifyjs', help="Select a compactor for the code build",
choices=['uglifyjs', 'yui', 'closure', 'none'])
parser.add_argument('--mode', action='append', help="Add build mode (default canvas & canvas-debug)",
choices=['all', 'plugin', 'plugin-debug', 'canvas', 'canvas-debug'])
parser.add_argument('--assets-path', action='append', help="Specify additional asset root paths")
parser.add_argument('app', default='all_apps', nargs='?', help="Select an individual app to build")
parser.add_argument('--d3d11', action='store_true', help="Build shaders for d3d11")
parser.add_argument('--d3d9', action='store_true', help="Build shaders for d3d11")
parser.add_argument('--cgfx-flag', action='append',
help="flag for cgfx2json")
parser.add_argument('--options', nargs='*', help="Additional options to pass to the build process")
args = parser.parse_args(options)
if args.app == 'all_apps':
# If no app given, build all apps except samples
apps = [app for app in all_apps.keys() if app != 'samples']
else:
if args.app not in all_apps and not os.path.exists(args.app):
print "ERROR: app name not recognised: %s" % args.app
apps = [args.app]
if not args.mode:
modes = ['canvas-debug', 'canvas']
elif 'all' in args.mode:
modes = ['all']
else:
modes = args.mode
if 'plugin-debug' in modes:
warning('**DEPRECATED** plugin-debug has been deprecated as a build mode. '
'Please use canvas-debug for debugging. Removing from list of modes.')
modes = [m for m in modes if m != 'plugin-debug']
if not modes:
error("No remaining modes to build.")
return
options = ' '.join(args.options) if args.options else ''
asset_options = []
if args.cgfx_flag:
asset_options.extend([ '--cgfx-flag=%s' % c for c in args.cgfx_flag ])
if args.d3d11:
d3d11_flags = _d3d11_cgfx2json_flags()
asset_options.extend([ "--cgfx-flag=%s" % f for f in d3d11_flags ])
if args.d3d9:
d3d9_flags = _d3d9_cgfx2json_flags()
asset_options.extend([ "--cgfx-flag=%s" % f for f in d3d9_flags ])
start_time = time.time()
# Build / clean each app
for app in apps:
try:
app_dir = all_apps[app]
except KeyError:
app_dir = app
print "APP: %s, DIR: %s, BUILDOPTIONS: %s" \
% (app, app_dir, options)
if args.clean:
for mode in modes:
cmd = _get_make_command() + " -C " + app_dir + " clean"
cmd += " MODE=%s" % mode
#cmd += " BUILDVERBOSE=%d" % args.verbose
cmd += " CMDVERBOSE=%d" % args.verbose
cmd += " --no-print-directory"
if 0 != call(cmd, shell=True):
return 1
rmdir('%s/_build' % app_dir, False)
rmdir('%s/staticmax' % app_dir, False)
rm('%s/mapping_table.json' % app_dir, False)
elif args.refcheck:
make_cmd = "%s -C %s jslib TS_REFCHECK=1 -j %s" \
% (_get_make_command(), app_dir, _get_num_cpus() + 1)
print "BUILD CMD IS: %s" % make_cmd
if 0 != call(make_cmd, shell=True):
return 1
else:
if 0 != command_jslib([]):
return 1
buildassets_cmd = ['python', os.path.join(TURBULENZROOT, 'scripts', 'buildassets.py')]
buildassets_cmd.extend(['--root', TURBULENZROOT])
buildassets_cmd.extend(asset_options)
# Add asset paths, start with user supplied paths, then app specific, then default assets
# Build assets searches the paths in order in the case of duplicate source names
if args.assets_path:
for p in args.assets_path:
buildassets_cmd.extend(['--assets-path', p])
app_assets = os.path.abspath(os.path.join(app_dir, 'assets'))
if os.path.isdir(app_assets):
buildassets_cmd.extend(['--assets-path', app_assets])
buildassets_cmd.extend(['--assets-path', os.path.join(TURBULENZROOT, 'assets')])
if args.verbose:
buildassets_cmd.append('--verbose')
try:
sh(buildassets_cmd, cwd=app_dir, console=True)
except CalledProcessError as e:
return e.retcode
for mode in modes:
cmd = _get_make_command() + " -C " + app_dir + " build"
cmd += " -j %d" % (_get_num_cpus() + 1)
cmd += " MODE=%s" % mode
cmd += " COMPACTOR=" + args.compactor
#cmd += " BUILDVERBOSE=%d" % args.verbose
cmd += " CMDVERBOSE=%d" % args.verbose
cmd += " --no-print-directory"
if 0 != call(cmd, shell=True):
return 1
print "BUILD TOOK: %.6f seconds" % (time.time() - start_time)
@command_requires_env
@command_with_arguments
def command_apps_clean(options):
command_apps(['--clean'] + (options or []))
#######################################################################################################################
@command_with_arguments
def command_samples(args):
command_apps(['samples'] + args)
@command_no_arguments
def command_samples_clean():
command_apps(['samples', '--clean'])
#######################################################################################################################
def _docs_build_command():
docs_version_opts = '-D version=%s -D release=%s-dev' % (TURBULENZ_ENGINE_VERSION, TURBULENZ_ENGINE_VERSION)
docs_src = os.path.join(TURBULENZROOT, 'docs', 'source')
docs_build = os.path.join(TURBULENZROOT, 'build', 'docs')
build_command = 'sphinx-build -b html -d ' + os.path.join(docs_build, 'doctrees') + ' ' + \
docs_version_opts + ' -c ' + docs_src + ' ' + docs_src + \
' ' + os.path.join(docs_build, 'html')
return build_command
@command_requires_env
def command_docs(args):
sh(_docs_build_command(), console=True)
echo('Docs built to build/docs/html/index.html')
@command_no_arguments
def command_docs_clean():
rmdir(os.path.join(TURBULENZROOT, 'build', 'docs', 'doctrees'), False)
rmdir(os.path.join(TURBULENZROOT, 'build', 'docs'), False)
@command_requires_env
@command_no_arguments
def command_check_docs():
# clean the docs first to get all warnings
command_docs_clean()
build_fail_regex = re.compile('^.*ERROR.*$|^.*WARNING.*$|^.*SEVERE.*$|^.*Exception occurred.*$', re.MULTILINE)
result = 0
cmd = _docs_build_command()
log(cmd)
stdout = sh(cmd, wait=True, verbose=False)
errors = re.findall(build_fail_regex, stdout)
if len(errors) > 0:
for e in errors:
error(e)
result += 1
error('Build failed. Documentation contains errors or warnings.')
if result == 0:
ok('HTML build')
print 'Checking links'
result += check_documentation_links('build/docs')
if result == 0:
ok('docs links')
if result == 0:
ok('Documentation build succeeded')
else:
error('Documentation build failed')
return result
@command_requires_env
@command_with_arguments
def command_check_docs_links(args):
if len(args) == 0:
echo('Path argument required')
return 1
return check_documentation_links(args[0])
#######################################################################################################################
@command_requires_env
@command_with_arguments
def command_check_ts(tsfiles=None):
# Run the basic reference checks by building the jslib
if 0 != command_jslib(['--refcheck']):
return 1
# Run tslint on all the typescript source
if TURBULENZOS == 'win32':
tslint = 'tslint.cmd -c .tslintrc -f '
else:
tslint = 'tslint -c .tslintrc -f '
tsfiles = tsfiles or ['tslib/*.ts']
files = []
for pattern in tsfiles:
for f in iglob(pattern):
files.append(f)
for f in files:
try:
sh('%s %s' % (tslint, f), verbose=False)
ok(f)
except CalledProcessError as e:
warning(f)
echo(e.output)
return 0
@command_requires_env
@command_with_arguments
def command_check_py(pyfiles=None):
def module_glob(pattern):
if '*' in pattern or '/' in pattern:
return iglob(pattern)
else:
return [pattern]
pylint = 'python -m pylint.lint --rcfile=.pylintrc -f text -r n'
pyfiles = pyfiles or ['*.py', 'scripts/*.py']
files = []
for pattern in pyfiles:
for p in module_glob(pattern):
files.append(p)
for f in files:
try:
sh('%s %s' % (pylint, f), verbose=False)
ok(f)
except CalledProcessError as e:
warning(f)
echo(e.output)
#######################################################################################################################
def command_help(commands):
echo('Usage')
echo('=====')
echo(' %s command [options]\n' % sys.argv[0])
for title, group in commands.iteritems():
echo('%s commands:' % title)
echo((len(title) + 10) * '-')
for command, (_, help_txt) in iter(sorted(group.iteritems())):
if len(command) > 24:
padding = '\n%s' % (' ' * 26)
else:
padding = ' ' * (24 - len(command))
echo(' %s%s%s' % (command, padding, help_txt))
echo()
return 1
def main():
commands = {
'Environment setup': {
'env': (command_env, "initialise the development environment"),
'env-clean': (command_env_clean, "clean the installed environment")
},
'JavaScript build': {
'jslib' : (command_jslib, "build jslib from TypeScript"),
'jslib-clean' : (command_jslib_clean, "clean jslib files built from TypeScript")
},
'Application building': {
'samples': (command_samples, "build the samples"),
'samples-clean': (command_samples_clean, "clean the samples"),
'tools': (command_tools, "build the tools (-h for options)"),
'tools-clean': (command_tools_clean, "clean the tools"),
'apps': (command_apps, "build or clean apps (-h for options)"),
'apps-clean': (command_apps_clean, "clean apps"),
},
'Development': {
'docs': (command_docs, "build the documentation"),
'docs-clean': (command_docs_clean, "clean the documentation"),
'check-docs': (command_check_docs,
"build the documentation and check for warnings or errors"),
'check-docs-links': (command_check_docs_links,
"check links in the documentation (requires build path e.g. 'builds/docs')"),
'check-ts': (command_check_ts, "check the JavaScript code " \
"generated by TypeScript compiler."),
'check-py': (command_check_py, "check the Python source code"),
}
}
if len(sys.argv) == 1:
command_help(commands)
return 1
command = sys.argv[1]
options = sys.argv[2:]
for command_group in commands.itervalues():
try:
command_fn, _ = command_group[command]
except KeyError:
pass
else:
try:
return command_fn(options)
except CalledProcessError as e:
error(str(e))
return e.retcode
except OSError as e:
error(str(e))
return e.errno
except KeyboardInterrupt as e:
error(str(e))
return 1
if command == '--list-commands':
for command_group in commands.itervalues():
for command in command_group.iterkeys():
echo(command)
return 0
command_help(commands)
return 1
if __name__ == "__main__":
exit(main())