forked from x3dom/x3dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage.py
executable file
·340 lines (279 loc) · 12 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
#!/usr/bin/env python
from __future__ import with_statement
# -------------------------------------------------------------------
# NOTE:
# What is written here is what this build file should do, not what it
# is currently doing ;) So, when working on the build system use this
# text as guide of what to do.
# -------------------------------------------------------------------
#
# This buildfile creates the distributable package of X3DOM
# and zips it up as tarball and zip variants. It also provides additiona
# management tasks for development and debugging.
#
#
# BUILD PROCESS
# =============
#
# First all required files are assembled in the dist/ directory of the X3DOM
# checkout (aka build directory - maybe rename it).
#
# dist/
# README the readme
# LICENSE the license for X3DOM
# components/ optional components to be used with core profile
# Geometry2D.js
# ...
# docs/
# nodetypes-x.x.x.html The node type tree dump
# docs/html/ The documentation as browsable html
# docs/singlehtml/ The documentation as single page html
# docs/guide.pdf The documnetation as PDF (optional)
# examples/ Some selected examples that work locally
# x3dom.js the core x3dom profile, minified
# x3dom-debug.js the core x3dom profile, un-minified with comments
# x3dom-full.js the full x3dom profile, minified
# x3dom-full.debug.js the full x3dom profile, un-minified with comments
# ...
#
# The concatenated versions are for local development and debugging. This is
# what people should use locally when they develop their app with X3DOM.
#
# RELEASE
# =======
# Once the files are assembled as outlined above, they are zipped and
# targzed to:
#
# x3dom-x.x.x.tar.gz
# x3dom-x.x.x.zip
#
# Once this is done, the Git repository is tagged with the release version
# x.x.x. Then the files should be uploaded to the webserver (this is should
# also b accomplished by this file). We want to provide the tarball|zip in the
# download directory, but also the unzipped version.
# The structure should look like this:
# x3dom.org/download/
# dev/ -> development build x3dom/dist/
# x.x.x/
# <unzipped contents>
# x3dom-x.x.x.zip
#
# y.y.y/
# <unzipped contents>
# x3dom-y.y.y.zip
#
#
# -----
try:
import argparse
except:
print "\nYou need to install argparse. Please run the following command:"
print "on your command line and try again:\n"
print " easy_install argparse\n"
exit()
import os
import subprocess
import shutil
from contextlib import closing
from zipfile import ZipFile, ZIP_DEFLATED
from tools import x3dom_packer
from tools.packages import FULL_PROFILE, CORE_PROFILE, COMPONENTS, prefix_path
PROJECT_ROOT = os.path.dirname(__file__)
SRC_ROOT = os.path.join(PROJECT_ROOT, 'src')
DIST_ROOT = os.path.join(PROJECT_ROOT, 'dist')
DOC_ROOT = os.path.join(PROJECT_ROOT, 'doc')
GUIDE_ROOT = os.path.join(DOC_ROOT, 'guide')
# make sure we run from project root
#os.chdir(PROJECT_ROOT)
def build(mode='production'):
prepare()
print("\n-- [ BUILD STARTED ] --------------------------------------")
packer = x3dom_packer.packer()
# building compressed files
packer.build(prefix_path(FULL_PROFILE, SRC_ROOT), "dist/x3dom-full.js", "jsmin", include_version=True)
packer.build(prefix_path(CORE_PROFILE, SRC_ROOT), "dist/x3dom.js", "jsmin", include_version=True)
if not mode == 'no-debug':
# building plain files (debug)
packer.build(prefix_path(FULL_PROFILE, SRC_ROOT), "dist/x3dom-full.debug.js", 'none')
packer.build(prefix_path(CORE_PROFILE, SRC_ROOT), "dist/x3dom.debug.js", 'none')
# ~~~~ copy copy components extras ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
print("\nBundling components...")
nodes_dest = os.path.join(DIST_ROOT, 'components')
if not os.path.exists(nodes_dest):
os.makedirs(nodes_dest)
for src in prefix_path(COMPONENTS, SRC_ROOT):
try:
print " Copying file %s to %s" % (src, nodes_dest)
packer.build([src], os.path.join(nodes_dest, os.path.basename(src)), 'jsmin', include_version=False)
# shutil.copy(src, nodes_dest)
except:
print " Error copying file %s" % src
# done with components
# ~~ copy other files ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
dist_docs = os.path.join(DIST_ROOT, 'docs')
if not os.path.exists(dist_docs):
os.makedirs(dist_docs)
print("\nCopying additional files")
shutil.copy('README.md', DIST_ROOT)
shutil.copy('LICENSE', DIST_ROOT)
shutil.copy('CHANGELOG', DIST_ROOT)
shutil.copy('AUTHORS', DIST_ROOT)
shutil.copy(SRC_ROOT + '/x3dom.css', DIST_ROOT)
shutil.copy(SRC_ROOT + '/flashbackend/bin/x3dom.swf', DIST_ROOT)
shutil.copy(DOC_ROOT + '/help/dumpNodeTypeTree.html', DIST_ROOT + '/docs')
shutil.copy(SRC_ROOT + '/dash.all.js', DIST_ROOT)
# end other files
def _build_examples():
## copy the exmaples to the distribution as well
# as x3dom.css, js, etc.
pass
def release(version='snapshot'):
# does everything necessary to bundle a major release
# like git tagging, bundling tar/gz, deploying, etc.
# adding version numbers to files, etc.
rebuild()
print("Creating ZIP distributable")
_zipdir(DIST_ROOT, 'dist/x3dom-%s.zip' % version)
def runserver():
import SimpleHTTPServer
import SocketServer
print("Starting development server...")
print("Open your browser and visit http://localhost:8080/")
print("Press Ctrl-C to quit.")
Handler = SimpleHTTPServer.SimpleHTTPRequestHandler
httpd = SocketServer.TCPServer(("", 8080), Handler)
httpd.serve_forever()
def deploy():
# TODO use fabric for that
print("Updating x3dom.org... (requires you set up public key auth and a ssh config file)")
subprocess.call('ssh x3dom "cd ~/web/x3dom/; git pull; python manage.py --rebuild; ln -s dist/x3dom.js src/x3dom.js"', shell=True)
def update_tests():
# TODO, integrate the python script here instead of calling it
print("Refreshing test cases header files.")
subprocess.call(["python", 'tools/update_headers.py', 'test/functional'])
subprocess.call(["python", 'tools/update_headers.py', 'test/regression'])
def stats():
# TODO: use a python lib to do this
print("Statistics for X3DOM")
all_files = ' '.join(prefix_path(FULL_PROFILE, 'src'));
subprocess.call("wc -l " + all_files, shell=True)
def changelog():
# TODO dont' call this use it
print("Generating changelog this may take a while ...")
subprocess.call(["python", 'tools/git2cl.py'])
def docs(mode='nojsdoc'):
if not mode == 'nojsdoc':
# TODO: call this directly with python
print("Generating JSDOC for Sphinx")
subprocess.call([
'java',
'-jar',
'tools/jsdoc-toolkit/jsrun.jar',
'tools/jsdoc-toolkit/app/run.js',
'--recurse=5',
'--template=doc/guide/_themes/jsdoc-for-sphinx',
'-x=js,jsx',
'--allfunctions',
'--directory=./doc/guide/api',
SRC_ROOT
])
print("Generating Sphinx documentation ...")
SPHINX_BUILD_DIR = os.path.join(DIST_ROOT, 'docs', 'html')
subprocess.call(['sphinx-build', '-b', 'html', '-d' , SPHINX_BUILD_DIR + '/doctrees', '-D latex_paper_size=a4', GUIDE_ROOT, SPHINX_BUILD_DIR])
print("Building SINGLEHTML guide....")
SPHINX_BUILD_DIR = os.path.join(DIST_ROOT, 'docs', 'singlehtml')
subprocess.call(['sphinx-build', '-b', 'singlehtml', '-d' , SPHINX_BUILD_DIR + '/doctrees', '-D latex_paper_size=a4', GUIDE_ROOT, SPHINX_BUILD_DIR])
print("Done.")
def _clone_or_pull():
# Gets Qunit
pass
# define clone_or_pull
# -@@if test ! -d $(strip ${1})/.git; then \
# echo "Cloning $(strip ${1})..."; \
# git clone $(strip ${verbose}) --depth=1 $(strip ${2}) $(strip ${1}); \
# else \
# echo "Pulling $(strip ${1})..."; \
# git --git-dir=$(strip ${1})/.git pull $(strip ${verbose}) origin master; \
# fi
# endef
#
#
# ${QUNIT_DIR}:
# $(call clone_or_pull, ${QUNIT_DIR}, git://github.com/jquery/qunit.git)
def clean():
# Make smarter (list of paths and files to remove, including
# globbing patterns)
print("Cleaning up...")
if os.path.exists(DIST_ROOT):
shutil.rmtree(DIST_ROOT)
if os.path.exists(os.path.join(GUIDE_ROOT, 'api')):
shutil.rmtree(os.path.join(GUIDE_ROOT, 'api'))
if os.path.exists("version.js"):
os.remove("version.js")
if os.path.exists("src/version.js"):
os.remove("src/version.js")
def prepare():
print("Preparing build...")
if not os.path.exists(DIST_ROOT):
os.mkdir(DIST_ROOT)
def rebuild():
clean()
prepare()
build()
docs()
def _zipdir(basedir, archivename):
assert os.path.isdir(basedir)
with closing(ZipFile(archivename, "w", ZIP_DEFLATED)) as z:
for root, dirs, files in os.walk(basedir):
# ignore empty directories
for fn in files:
# skip self and other zip files
if os.path.basename(fn) == os.path.basename(archivename):
continue
print("Zipping %s" % fn)
absfn = os.path.join(root, fn)
zfn = absfn[len(basedir)+len(os.sep):] #XXX: relative path
z.write(absfn, zfn)
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Management script for X3DOM. Building, running things, cleaning up, testing, and then some.')
parser.add_argument('--build', nargs='?', action='store', default=False, const='production', required=False, choices= ['production', 'debug', 'source'],help='build the X3DOM distributables. The default is to build production libraries (minified). If you use the debug switch, you can produce plain versions, with the source switch the source could distributable will be generated')
parser.add_argument('--release', action='store', help='make a release, version number RELEASE in the format x.x.x (major.minor.tiny)')
parser.add_argument('--runserver', action='store_true', default=False, help='run the development server')
parser.add_argument('--deploy', action='store_true', default=False, help='deploy X3DOM to the webserver')
parser.add_argument('--updatetests', action='store_true', default=False, help='update the test files in test/ with new header information')
parser.add_argument('--stats', action='store_true', default=False, help='show code metrics')
parser.add_argument('--changelog', action='store_true', default=False, help='regenerate ChangeLog file from git log messages')
parser.add_argument('--docs', nargs='?', action='store', default=False, const='nojsdoc', required=False, choices=['all', 'nojsdoc'], help='build documentation')
parser.add_argument('--clean', action='store_true', default=False,
help='clean up build and remove all generated files')
parser.add_argument('--rebuild', action='store_true', default=False, help='clean up and build everything again')
args = parser.parse_args()
# print args
# exit()
# this is better be done the smart way with a simple tuple and dynamic
# method calling. Or better yet a dict with help messages and
# parameter names and then building parser stuff dynamically as well
if args.build:
prepare()
build(mode=args.build)
elif args.release:
release(version=args.release)
elif args.runserver:
runserver()
elif args.deploy:
deploy()
elif args.updatetests:
update_tests()
elif args.stats:
stats()
elif args.clean:
clean()
elif args.changelog:
changelog()
elif args.docs:
prepare()
docs(mode=args.docs)
elif args.rebuild:
rebuild()
else:
parser.print_help()