-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbuild_qt.py
executable file
·264 lines (203 loc) · 7.86 KB
/
build_qt.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
#!/usr/bin/env python3
import sys
import os
import shutil
import subprocess
import argparse
COPYRIGHT = '/* Agitodo | Copyright (c) 2013 P. Asimakopoulos */'
def join_paths(base, path):
return os.path.normpath(os.path.join(base, path))
RUN_DIR = os.path.dirname(os.path.realpath(__file__))
SRC_DIR = join_paths(RUN_DIR, "./core")
LIB_DIR = join_paths(RUN_DIR, "./lib")
CUSTOM_DIR = join_paths(RUN_DIR, "./qt/custom")
RESOURCE_DIR = join_paths(RUN_DIR, "./qt/agitodo/res")
DEBUG_DIR = join_paths(RUN_DIR, "./qt/build-debug")
RELEASE_DIR = join_paths(RUN_DIR, "./qt/build-release")
SOURCES = (
(join_paths(CUSTOM_DIR, "index.html"), RESOURCE_DIR),
(join_paths(SRC_DIR, "css/style.css"), (join_paths(DEBUG_DIR, "css/"), join_paths(RELEASE_DIR, "css/"))),
(join_paths(SRC_DIR, "favicon.ico"), (join_paths(DEBUG_DIR, ""), join_paths(RELEASE_DIR, ""))),
(join_paths(SRC_DIR, "img"), (join_paths(DEBUG_DIR, ""), join_paths(RELEASE_DIR, ""))),
(join_paths(SRC_DIR, "font"), (join_paths(DEBUG_DIR, ""), join_paths(RELEASE_DIR, "")))
)
SOURCES_MERGE = (
join_paths(SRC_DIR, "js/global.js"),
join_paths(SRC_DIR, "js/util.js"),
join_paths(CUSTOM_DIR, "compat.js"),
join_paths(SRC_DIR, "js/request.js"),
join_paths(SRC_DIR, "js/oauth.js"),
join_paths(SRC_DIR, "js/storage.js"),
join_paths(SRC_DIR, "js/sync.js"),
join_paths(SRC_DIR, "js/email.js"),
join_paths(SRC_DIR, "js/tasks.js"),
join_paths(SRC_DIR, "js/widget.js"),
join_paths(SRC_DIR, "js/session.js"),
join_paths(SRC_DIR, "js/pg_day.js"),
join_paths(SRC_DIR, "js/pg_week.js"),
join_paths(SRC_DIR, "js/pg_month.js"),
join_paths(SRC_DIR, "js/pg_taskList.js"),
join_paths(SRC_DIR, "js/dg_edit.js"),
join_paths(SRC_DIR, "js/dg_settings.js"),
join_paths(SRC_DIR, "js/dg_about.js")
)
LIBS = (
(join_paths(SRC_DIR, "css/theme.css"), ""),
(join_paths(LIB_DIR, "jquery.mobile-1.4.5/jquery.mobile.icons-1.4.5.min.css"), ""),
(join_paths(LIB_DIR, "jquery.mobile-1.4.5/jquery.mobile.structure-1.4.5.min.css"), ""),
(join_paths(LIB_DIR, "jquery.mobile-1.4.5/images/ajax-loader.gif"), "images/"),
(join_paths(LIB_DIR, "jquery-2.1.3/jquery-2.1.3.min.js"), ""),
(join_paths(LIB_DIR, "xdate-0.8/src/xdate.js"), ""),
(join_paths(LIB_DIR, "CryptoJS v3.1.2/rollups/pbkdf2.js"), ""),
(join_paths(LIB_DIR, "CryptoJS v3.1.2/rollups/sha1.js"), ""),
(join_paths(LIB_DIR, "CryptoJS v3.1.2/rollups/sha256.js"), ""),
(join_paths(LIB_DIR, "CryptoJS v3.1.2/rollups/aes.js"), "")
)
def create_dir(path, verbose=False):
if os.path.isdir(path): return True
res = False
try:
if verbose:
print('Creating directory %s...' % path)
os.makedirs(path)
res = True
except:
if verbose:
print('Cannot create directory %s' % path)
return res
def remove_dir(path):
res = False
if not os.path.isdir(path):
res = True
else:
try:
print('Removing directory %s...' % path)
shutil.rmtree(path)
res = True
except:
print('Cannot remove directory %s' % path)
return res
def merge_files(*files):
merged = ''
for path in files:
if not isinstance(path, str) or not path: continue
if not os.path.isfile(path):
print('File %s does not exist...' % path)
continue
if not os.access(path, os.R_OK):
print('Read access denied for file %s...' % path)
continue
with open(path, 'r') as f:
if merged != '': merged += '\n'
merged += f.read()
return merged
def write_file(contents, dst, base=None, create_dir=True):
if not isinstance(dst, str) or not dst: return
if base is not None: dst = os.path.join(base, dst)
if not os.path.isdir(os.path.dirname(dst)):
if create_dir:
try:
os.makedirs(os.path.dirname(dst))
except:
print('Cannot create directory %s' % os.path.dirname(dst))
return
else:
print('Directory %s does not exist' % os.path.dirname(dst))
return
print('Writing to %s...' % dst, end='')
content_length = 0
with open(dst, 'w') as f:
content_length = f.write(contents)
print(' %d bytes' % content_length)
def uglifyjs(src, dst, verbose=False):
if not os.path.isfile(src):
if verbose:
print('File %s does not exist...' % (src))
return
create_dir(os.path.dirname(dst), verbose=verbose)
if verbose:
print('Copying (uglifyjs) %s to %s...' % (src, dst))
reserved = [
"session",
"pg_day",
"pg_week",
"pg_month",
"pg_taskList",
"dg_edit",
"dg_settings",
"dg_about",
"compat"
]
return subprocess.call(['uglifyjs', src, '-o', dst, '-c', '-m', 'toplevel', '-r', ','.join(reserved), '--screw-ie8', '--preamble', COPYRIGHT])
def copy_path(src_path, dst_dir):
if not os.path.exists(src_path):
raise Exception('Path %s does not exist' % (src_path))
if not create_dir(dst_dir, verbose=True):
raise Exception('Cannot create %s' % (dst_dir))
basename = os.path.basename(src_path)
if not basename:
raise Exception('Cannot derive basename from %s' % (src_path))
dst_path = join_paths(dst_dir, basename)
if os.path.isdir(src_path):
if not create_dir(dst_path, verbose=True):
raise Exception('Cannot create %s' % (dst_path))
for i in os.listdir(src_path):
s = join_paths(src_path, i)
d = join_paths(dst_path, i)
if os.path.isdir(s):
if os.path.isdir(d):
shutil.rmtree(d)
elif os.path.isfile(d):
os.remove(d)
shutil.copytree(s, d)
else:
shutil.copy(s, d)
else:
shutil.copy(src_path, dst_path)
return dst_path
def build(UGLIFY=False):
# Create resource directory
if not create_dir(RESOURCE_DIR, verbose=True):
raise Exception('Cannot create %s' % (BUILD_DIR))
# Copy sources to target directories
print('Copying source files...')
n = 1
for src in SOURCES:
dst_dirs = []
if isinstance(src[1], tuple):
dst_dirs.extend(src[1])
else:
dst_dirs.append(src[1])
for dst in dst_dirs:
dst_path = copy_path(src[0], dst)
print('%d: %s...' % (n, dst_path))
n += 1
# Merge JavaScript sources, uglify & copy to build directory
print('Merging JavaScript sources...')
write_file(merge_files(*SOURCES_MERGE), "script.js", base=RESOURCE_DIR)
if UGLIFY:
uglifyjs(join_paths(RESOURCE_DIR, "script.js"), join_paths(RESOURCE_DIR, "script.js"), verbose=True)
# Copy libraries
lib_dir_debug = join_paths(DEBUG_DIR, "lib")
lib_dir_release = join_paths(RELEASE_DIR, "lib")
# Clean-up previous lib dirs
if not remove_dir(lib_dir_debug):
raise Exception('Cannot remove %s' % (lib_dir_debug))
if not remove_dir(lib_dir_release):
raise Exception('Cannot remove %s' % (lib_dir_release))
print('Copying libraries to %s and %s...' % (lib_dir_debug, lib_dir_release))
n = 1
for i in LIBS:
dst_path = copy_path(i[0], join_paths(lib_dir_debug, i[1]))
print('%d: %s...' % (n, os.path.relpath(dst_path, start=lib_dir_debug)))
dst_path = copy_path(i[0], join_paths(lib_dir_release, i[1]))
print('%d: %s...' % (n, os.path.relpath(dst_path, start=lib_dir_release)))
n += 1
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Builds Agitodo from source')
parser.add_argument('-u', '--uglify', help="Uglify source code", action="store_true")
args = parser.parse_args()
uglify = False
if args.uglify:
uglify = args.uglify
build(UGLIFY=uglify)