-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuild.py
428 lines (348 loc) · 15.3 KB
/
build.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
import platform
import os
import shutil
import subprocess
import argparse
import stat
import hashlib
from pathlib import Path
import re
import PyInstaller.__main__
import requests
from data.constants import VERSION
PROGRAM_FOLDER = os.path.dirname(os.path.realpath(__file__))
def replaceLine(path, pattern, new_line):
"""Replace the first line containing a pattern."""
path = os.path.normpath(path)
if not os.path.isfile(path):
return
content = ""
with open(path, "r") as file:
content = file.readlines()
for n, line in enumerate(content):
if pattern in line:
if line != new_line: # If the file wouldn't be the same
content[n] = new_line
break # Only one line needs to be replaced
else:
return
with open(path, "w") as file:
file.writelines(content)
def removeReadOnly(path: str) -> None:
"""Removes "Read-only" attribute from files and folders recursively. Windows-only."""
if platform.system() != "Windows":
raise Exception("[removeReadOnly] Wrong OS")
for file_path in Path(path).rglob("*"):
if file_path.is_file():
try:
file_path.chmod(stat.S_IWRITE)
except Exception as e:
raise OSError(f"[removeReadOnly] Failed to remove \"Read-only\" attribute. {e}")
def copy(src, dst):
src = os.path.normpath(src)
dst = os.path.normpath(dst)
try:
shutil.copy(src, dst)
except OSError as err:
print(f"[Error] Copying failed ({src} -> {dst}) ({err})")
def move(src, dst):
src = os.path.normpath(src)
dst = os.path.normpath(dst)
try:
shutil.move(src, dst)
except OSError as err:
print(f"[Error] Moving failed ({src} -> {dst}) ({err})")
def makedirs(path):
path = os.path.normpath(path)
try:
os.makedirs(path)
except OSError as err:
print(f"[Error] Makedirs failed ({path}) ({err})")
def addExecPerm(path):
st = os.stat(path)
os.chmod(path, st.st_mode | stat.S_IEXEC)
def rmTree(path):
if os.path.isdir(path):
shutil.rmtree(path)
def blake2(path):
"""Calculate the blake2 hash."""
hasher = hashlib.blake2b()
with open(path, "rb") as file:
buff_size = 8192
for buf in iter(lambda: file.read(buff_size), b""):
hasher.update(buf)
return hasher.hexdigest()
class Downloader():
"""Downloads dependencies."""
def __init__(self):
self.appimagetool_url = "https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-x86_64.AppImage"
self.appimagetool_dst = "misc/appimagetool"
self.appimagetool_blake2 = "83db0c2644d992045f974592099fdbf69c690f20d8440e773bfb76fff199d4abf9a3b19a72279e63b9aa37ef46b201ced2a106138c0404e2a03de2f7b390c4a5"
self.redist_url = "https://aka.ms/vs/17/release/vc_redist.x64.exe"
self.redist_dst = "misc/VC_redist.x64.exe"
# No static link available
def download(self, url, dst, checksum = None):
dst = Path(dst)
if dst.is_file():
return
# Download the file
print(f"[Downloading] Downloading {dst.name}")
response = requests.get(url)
if response.status_code == 200:
with open(Path(dst), 'wb') as f:
f.write(response.content)
else:
print(f"[Downloading] Downloading failed ({dst.name})")
raise Exception(f"[Downloading] Status code: {response.status_code}")
# Verify the checksum
if checksum is not None:
if blake2(dst) != checksum:
raise Exception(f"[Downloading] Checksum mismatch ({dst.name})")
# Permissions
addExecPerm(dst)
print(f"[Downloading] Download completed ({dst.name})")
def downloadAppImageTool(self):
self.download(self.appimagetool_url, self.appimagetool_dst, self.appimagetool_blake2)
def downloadRedistributable(self):
self.download(self.redist_url, self.redist_dst)
class Args():
def __init__(self):
self.parser = argparse.ArgumentParser(formatter_class=argparse.RawTextHelpFormatter)
self.args = {}
self.parser.add_argument("--build-type", "-b",
help="""Type of build to generate.
not specified: vanilla build.
sh (Linux only): 7z archive with an installer script.
appimage (Linux only): an AppImage build.
innosetup (Windows only): an InnoSetup script and build ready to compile.
portable (Windows only): 7z archive with the program.""",
action="store"
)
self.parser.add_argument("--update-file", "-u", help="Append an update file (to place on a server).", action="store_true")
self._parseArgs()
def _parseArgs(self):
args = self.parser.parse_args()
self.args["build_type"] = args.build_type
self.args["update_file"] = args.update_file
def getArg(self, arg):
return self.args[arg]
class Builder():
# You can use the "/" symbol to divide paths (the functions will normalize it)
def __init__(self):
self.args = Args()
self.downloader = Downloader()
# General
self.project_name = "xl-converter"
self.dst_dir = "dist"
self.internal_dir = f"{self.dst_dir}/{self.project_name}/_internal"
# Shared
self.bin_dir = {
"Windows": "bin/win",
"Linux": "bin/linux"
}
self.installer_path = {
"Windows": "misc/install.iss",
"Linux": "misc/install.sh"
}
self.assets = (
"LICENSE.txt",
"LICENSE_3RD_PARTY.txt",
"./fonts/",
"./assets/",
)
# Assets
self.fonts_path = "fonts"
# Linux
self.desktop_entry_path = "misc/xl-converter.desktop"
self.version_file_path = "misc/version.json"
self.appimagetool_path = "misc/appimagetool"
# Windows
self.win_7z_path = "C:\\Program Files\\7-Zip\\7z.exe"
# Build Names
self.version_sanitized = re.sub(r"[ \n]", "-", VERSION) # No whitespaces or newline characters
self.build_inno_name = f"xl-converter-win-{self.version_sanitized}-x86_64"
self.build_win_portable_name = f"xl-converter-win-{self.version_sanitized}-x86_64-portable"
self.build_7z_name = f"xl-converter-linux-{self.version_sanitized}-x86_64"
self.build_appimage_name = f"xl-converter-linux-{self.version_sanitized}-x86_64.AppImage"
def build(self):
build_type = self.args.getArg('build_type')
if build_type is not None and build_type not in ("sh", "appimage", "innosetup", "portable"):
raise Exception("build_type incorrect")
self._prepare()
self._buildBinaries()
self._copyDependencies()
self._copyAssets()
self._finish()
match platform.system():
case "Linux":
match build_type:
case "sh":
self._appendDesktopEntry()
self._appendInstaller()
self._build7z()
case "appimage":
self._appendDesktopEntry()
self._buildAppImage()
case "Windows":
# self.downloader.downloadRedistributable()
match build_type:
case "innosetup":
self._appendInstaller()
case "portable":
self._appendConfig(portable=True)
self._buildPortableWin()
if self.args.getArg("update_file"):
self._appendUpdateFile()
def _prepare(self):
if platform.system() == "Windows":
# On Windows some ExifTool files may get a read-only attribute when unpacking from a 7z.
removeReadOnly(self.dst_dir)
# Remove read-only in ./bin/win as it can be problematic later on.
removeReadOnly(self.bin_dir["Windows"])
rmTree(self.dst_dir) # Delete ./dist
# Prevent conflicts If the same folder is used on multiple systems
if os.path.isdir("build"):
if os.path.isfile("build/last_built_on"):
last_built_on = open("build/last_built_on","r")
last_platform = last_built_on.read()
last_built_on.close()
if last_platform == f"{platform.system()}_{platform.architecture()}":
print("[Building] Using previously compiled cache")
else:
print("[Error] Platform mismatch - deleting the cache")
rmTree("build")
rmTree("__pycache__")
else:
print("[Building] \"last_built_on\" not found - deleting the cache")
rmTree("build")
rmTree("__pycache__")
def _buildBinaries(self):
print("[Building] Generating binaries")
makedirs(self.dst_dir)
PyInstaller.__main__.run([
"--log-level=ERROR",
str(Path("misc/main.spec"))
])
def _copyDependencies(self):
print("[Building] Copying dependencies")
bin_dir = self.bin_dir[platform.system()]
shutil.copytree(Path(bin_dir), Path(self.internal_dir, bin_dir))
def _appendInstaller(self):
installer_dir = self.installer_path[platform.system()]
installer_file = os.path.basename(installer_dir)
print("[Building] Appending an installer script")
match platform.system():
case "Linux":
copy(installer_dir, self.dst_dir)
print("[Building] Embedding version into an installer script")
replaceLine(f"{self.dst_dir}/{installer_file}", "VERSION=", f"VERSION=\"{VERSION}\"\n")
case "Windows":
copy(installer_dir, self.dst_dir)
print("[Building] Embedding version into an installer script")
replaceLine(f"{self.dst_dir}/{installer_file}", "#define MyAppVersion", f"#define MyAppVersion \"{VERSION}\"\n")
replaceLine(f"{self.dst_dir}/{installer_file}", "OutputBaseFilename=", f"OutputBaseFilename={self.build_inno_name}\n")
def _appendDesktopEntry(self):
if platform.system() == "Linux":
print("[Building] Appending a desktop entry")
copy(self.desktop_entry_path, self.dst_dir)
def _copyAssets(self):
print("[Building] Appending assets")
# Most assets
for i in self.assets:
if os.path.isdir(Path(i)):
shutil.copytree(Path(i), Path(self.internal_dir, Path(i).name))
elif os.path.isfile(Path(i)):
copy(i, self.internal_dir)
def _appendUpdateFile(self):
print("[Building] Appending an update file (to place on a server)")
copy(self.version_file_path, self.dst_dir)
replaceLine(f"{self.dst_dir}/{os.path.basename(self.version_file_path)}", "latest_version", f" \"latest_version\": \"{VERSION}\",\n")
def _finish(self):
with open("build/last_built_on","w") as last_built_on:
last_built_on.write(f"{platform.system()}_{platform.architecture()}")
print(f"[Building] Finished (built to {self.dst_dir}/{self.project_name})")
def _appendConfig(self, portable=True):
config = "[General]\n"
if portable: config += "portable_user_data = True\n"
with open(Path(self.internal_dir, "config.ini"), "w") as f:
f.write(config)
# _build methods transform the directory!
def _buildAppImage(self):
if platform.system() != "Linux":
return
self.downloader.downloadAppImageTool()
print("[Building] Building an AppImage")
dsk_ent_f = os.path.basename(self.desktop_entry_path)
dsk_ent_p = f"{self.dst_dir}/{dsk_ent_f}"
appdir = f"{self.dst_dir}/AppDir"
replaceLine(dsk_ent_p, "Icon=", "Icon=/logo\n")
replaceLine(dsk_ent_p, "Path=", "")
replaceLine(dsk_ent_p, "Exec=", "Exec=/AppRun\n")
makedirs(f"{appdir}/usr/bin")
move(dsk_ent_p, f"{appdir}/{dsk_ent_f}")
with open(f"{appdir}/AppRun", "w") as f:
f.write("#!/bin/bash\n\n")
f.write(f"exec ${{APPDIR}}/usr/bin/{self.project_name}/{self.project_name} $@")
addExecPerm(f"{appdir}/AppRun")
# Add Icon
# makedirs(f"{appdir}/usr/share/icons/hicolor/scalable/apps") # The icon does not work on some distros if placed in a deeply-nested directory.
copy(f"./assets/icons/logo.svg", appdir)
# Build
move(f"{self.dst_dir}/{self.project_name}", f"{appdir}/usr/bin") # Move the whole project folder
subprocess.run((self.appimagetool_path, appdir, f"{self.dst_dir}/{self.build_appimage_name}"))
def _build7z(self):
if platform.system() != "Linux":
return
dst_direct = self.build_7z_name
dst = f"{self.dst_dir}/{self.build_7z_name}"
makedirs(dst)
move(f"{self.dst_dir}/{self.project_name}", dst)
move(f"{self.dst_dir}/{os.path.basename(self.installer_path['Linux'])}", dst)
move(f"{self.dst_dir}/{os.path.basename(self.desktop_entry_path)}", dst)
subprocess.run(("7z", "a", "-snl" , f"{dst_direct}.7z", dst_direct), cwd=self.dst_dir)
def _buildPortableWin(self) -> None:
# Scan for available 7zip installs
def is7zipWorking(path: str) -> bool:
try:
result = subprocess.run(
[path, "--help"],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
text=True,
)
return "Add files to archive" in result.stdout
except Exception:
return False
win_7z_path_used = None
if os.path.isfile(self.win_7z_path) and is7zipWorking(self.win_7z_path):
win_7z_path_used = self.win_7z_path
elif is7zipWorking("7z"):
win_7z_path_used = "7z"
if win_7z_path_used is None:
raise Exception("Install 7zip to continue.")
# Pack
try:
shutil.move(
os.path.join(self.dst_dir, self.project_name),
os.path.join(self.dst_dir, self.build_win_portable_name)
)
except OSError as e:
raise OSError(f"Failed to move file (_buildPortableWin) {e}")
subprocess.run([
win_7z_path_used,
"a",
f"{self.build_win_portable_name}.7z",
self.build_win_portable_name,
], cwd=self.dst_dir)
if __name__ == '__main__':
try:
builder = Builder()
builder.build()
except (KeyboardInterrupt):
print("[Canceled] Interrupted")
exit()
except SystemExit:
exit()
except (Exception, OSError) as err:
print(f"[Error] {err}")
exit()