-
-
Notifications
You must be signed in to change notification settings - Fork 465
/
build.py
475 lines (353 loc) · 17.2 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
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
import argparse
import glob
import os
import platform
import shutil
import stat
import subprocess
import sys
try:
from ctypes import windll
windll.kernel32.SetConsoleMode(windll.kernel32.GetStdHandle(-11), 7)
except ImportError:
pass
_BAZEL_BIN_PATH = 'bazel-bin'
_BAZEL_OUT_PATH = 'bazel-out'
_BUILD_PATH = 'build'
_BUILD_RUNTIME_PATH = os.path.join(_BUILD_PATH, 'Runtime')
_BUILD_RESOURCES_PATH = os.path.join(_BUILD_PATH, 'PackageResources', 'MediaPipe')
_NUGET_PATH = '.nuget'
_ANALYZER_PATH = os.path.join('Assets', 'Analyzers')
_STREAMING_ASSETS_PATH = os.path.join('Assets', 'StreamingAssets')
_INSTALL_PATH = os.path.join('Packages', 'com.github.homuler.mediapipe')
class Console:
def __init__(self, verbose):
self.verbose = verbose
def v(self, message):
if self.verbose > 0:
self.log(33, 'DEBUG', message)
def info(self, message):
self.log(32, 'INFO', message)
def warn(self, message):
self.log(35, 'WARN', message)
def error(self, message):
self.log(31, 'ERROR', message)
def log(self, color, level, message):
print('\033[' + str(color) + 'm' + level + '\033[0m (build.py): ' + message)
class Command:
def __init__(self, command_args):
self.console = Console(command_args.args.verbose)
self.system = platform.system()
def _run_command(self, command_list, shell=True):
self.console.v(f"Running `{' '.join(command_list)}`")
if shell:
return subprocess.run(' '.join(command_list), check=True, shell=shell)
return subprocess.run(command_list, check=True)
def _copy(self, source, dest, mode=0o755):
self.console.v(f"Copying '{source}' to '{dest}'...")
dest_dir = os.path.dirname(dest)
if not os.path.exists(dest_dir):
self.console.v(f"Creating '{dest_dir}'...")
os.makedirs(dest_dir, 0o755)
shutil.copy(source, dest)
self.console.v(f"Changing the mode of '{dest}'...")
os.chmod(dest, mode)
def _copytree(self, source, dest):
self.console.v(f"Copying '{source}' to '{dest}' recursively...")
if not os.path.exists(dest):
self.console.v(f"Creating '{dest}'...")
os.makedirs(dest, 0o755)
# `shutil.copytree` fails on Windows if target file exists, so run `cp -r` instead.
self._run_command(['cp', '-r', f'{source}/*', dest])
def _remove(self, path):
self.console.v(f"Removing '{path}'...")
try:
os.remove(path)
except PermissionError:
self._run_command(['rm', path])
def _rmtree(self, path):
if os.path.exists(path):
self.console.v(f"Removing '{path}'...")
shutil.rmtree(path)
else:
self.console.v(f"Tried to remove '{path}', but it does not exist")
def _unzip(self, source, dest):
self.console.v(f"Unarchiving '{source}' to '{dest}'...")
shutil.unpack_archive(source, dest)
def _is_windows(self):
return self.system == 'Windows'
def _is_macos(self):
return self.system == 'Darwin'
class BuildCommand(Command):
def __init__(self, command_args):
Command.__init__(self, command_args)
self.command_args = command_args.args
def run(self):
self.console.info('Building protobuf sources...')
self._run_command(self._build_proto_srcs_commands())
self._unzip(
os.path.join(_BAZEL_BIN_PATH, 'mediapipe_api', 'mediapipe_proto_srcs.zip'),
os.path.join(_BUILD_RUNTIME_PATH, 'Scripts', 'Protobuf'))
self.console.info('Built protobuf sources')
self.console.info('Downloading dlls...')
self._run_command(self._build_proto_dlls_commands())
for f in glob.glob(os.path.join(_NUGET_PATH, '**', 'lib', 'netstandard2.0', '*.dll'), recursive=True):
basename = os.path.basename(f)
self._copy(f, os.path.join(_BUILD_RUNTIME_PATH, 'Plugins', 'Protobuf', basename))
self.console.info('Downloaded protobuf dlls')
if self.command_args.resources:
self.console.info('Building resource files')
self._run_command(self._build_resources_commands())
self._unzip(
os.path.join(_BAZEL_BIN_PATH, 'mediapipe_api', 'mediapipe_assets.zip'),
_BUILD_RESOURCES_PATH)
self._unzip(
os.path.join(_BAZEL_BIN_PATH, 'mediapipe_api', 'mediapipe_assets.zip'),
_STREAMING_ASSETS_PATH)
self.console.info('Built resource files')
if self.command_args.desktop:
self.console.info('Building native libraries for Desktop...')
self._run_command(self._build_desktop_commands())
self._unzip(
os.path.join(_BAZEL_BIN_PATH, 'mediapipe_api', 'mediapipe_desktop.zip'),
os.path.join(_BUILD_RUNTIME_PATH, 'Plugins'))
self.console.info('Built native libraries for Desktop')
if self.command_args.android:
self.console.info('Building native libraries for Android...')
self._run_command(self._build_android_commands())
self._copy(
os.path.join(_BAZEL_BIN_PATH, 'mediapipe_api', 'java', 'com', 'github', 'homuler', 'mediapipe', 'mediapipe_android.aar'),
os.path.join(_BUILD_RUNTIME_PATH, 'Plugins', 'Android', 'mediapipe_android.aar'))
self.console.info('Built native libraries for Android')
if self.command_args.ios:
self.console.info('Building native libaries for iOS...')
self._run_command(self._build_ios_commands())
self._unzip(self._find_latest_built_framework(), os.path.join(_BUILD_RUNTIME_PATH, 'Plugins', 'iOS'))
self.console.info('Built native libraries for iOS')
self.console.info('Installing built resources...')
# _copytree fails on Windows, so run `cp -r` instead.
self._copytree(_BUILD_PATH, _INSTALL_PATH)
# install analyzers
if self.command_args.analyzers:
self.console.info('Installing Roslyn Analyzers...')
for f in glob.glob(os.path.join(_NUGET_PATH, '**', 'analyzers', 'dotnet', 'cs', '*.dll'), recursive=True):
self._copy(f, _ANALYZER_PATH)
self.console.info('Installed')
def _build_common_commands(self):
commands = ['bazel']
commands += self._build_startup_opts()
commands += ['build', '-c', self.command_args.compilation_mode]
commands += self._build_linkopt()
if self.command_args.android_ndk_api_level:
commands += ['--action_env', f'ANDROID_NDK_API_LEVEL="{self.command_args.android_ndk_api_level}"']
if self._is_windows():
python_bin_path = sys.executable.replace('\\', '//')
commands += ['--action_env', f'PYTHON_BIN_PATH="{python_bin_path}"']
# Required to compile OpenCV
# Without this environment variable, Visual Studio instances won't be found
# cf. https://github.com/bazelbuild/rules_foreign_cc/issues/793
program_data_key = 'ProgramData'
if program_data_key in os.environ:
commands += ['--action_env', program_data_key]
# Enable CMake to detect processors when configuring OpenCV
processor_architecture_key = 'PROCESSOR_ARCHITECTURE'
if processor_architecture_key in os.environ:
commands += ['--action_env', processor_architecture_key]
processor_identifier_key = 'PROCESSOR_IDENTIFIER'
if processor_identifier_key in os.environ:
commands += ['--action_env', processor_identifier_key]
processor_level_key = 'PROCESSOR_LEVEL'
if processor_level_key in os.environ:
commands += ['--action_env', processor_level_key]
processor_revision_key = 'PROCESSOR_REVISION'
if processor_revision_key in os.environ:
commands += ['--action_env', processor_revision_key]
if self.command_args.verbose > 1:
commands.append('--verbose_failures')
if self.command_args.verbose > 2:
commands.append('--sandbox_debug')
commands += self.command_args.bazel_build_opts or []
commands += self._build_solution_options()
return commands
def _build_startup_opts(self):
commands = []
if self._is_windows():
# limit the path length for Windows
# @see https://docs.bazel.build/versions/master/windows.html#avoid-long-path-issues
commands += ['--output_user_root', 'C:/_bzl']
commands += self.command_args.bazel_startup_opts or []
return commands
def _build_linkopt(self):
if self.command_args.linkopt is None or len(self.command_args.linkopt) == 0:
return []
return ['--linkopt={}'.format(l) for l in self.command_args.linkopt]
def _build_opencv_switch(self):
commands = [f'--@opencv//:switch={self.command_args.opencv}']
return commands
def _build_solution_options(self):
if self.command_args.solutions is None:
return []
return [f'--//mediapipe_api:solutions={",".join(self.command_args.solutions)}']
def _build_desktop_options(self):
commands = []
if self.command_args.desktop == 'gpu':
commands += ['--copt', '-DMESA_EGL_NO_X11_HEADERS', '--copt', '-DEGL_NO_X11']
else:
commands += ['--define', 'MEDIAPIPE_DISABLE_GPU=1']
if self.command_args.macos_universal:
if self._is_macos():
commands += ['--//mediapipe_api:macos_universal']
else:
self.console.warn("Ignoring the `--macos_universal` option.")
commands += self._build_opencv_switch()
return commands
def _build_desktop_commands(self):
if self.command_args.desktop is None:
return []
commands = self._build_common_commands()
commands += self._build_desktop_options()
commands.append('//mediapipe_api:mediapipe_desktop')
return commands
def _build_android_commands(self):
if self.command_args.android is None:
return []
commands = self._build_common_commands()
commands.append(f'--config=android_{self.command_args.android}')
if self.command_args.android_fat_apk_cpu is not None:
commands.append(f'--fat_apk_cpu={",".join(self.command_args.android_fat_apk_cpu)}')
commands.append('//mediapipe_api/java/com/github/homuler/mediapipe:mediapipe_android')
return commands
def _build_ios_commands(self):
if self.command_args.ios is None:
return []
commands = self._build_common_commands()
commands += [f'--config=ios_{self.command_args.ios}']
if self.command_args.apple_bitcode:
commands += ['--copt=-fembed-bitcode', '--apple_bitcode=embedded']
commands.append('//mediapipe_api/objc:MediaPipeUnity')
return commands
def _build_resources_commands(self):
if not self.command_args.resources:
return []
commands = self._build_common_commands()
commands.append('//mediapipe_api:mediapipe_assets')
return commands
def _build_proto_srcs_commands(self):
commands = self._build_common_commands()
commands.append('//mediapipe_api:mediapipe_proto_srcs')
return commands
def _build_proto_dlls_commands(self):
return ['nuget', 'install', '-o', _NUGET_PATH, '-Source', 'https://api.nuget.org/v3/index.json']
def _find_latest_built_framework(self):
zip_files = glob.glob(os.path.join(_BAZEL_OUT_PATH, '*', 'bin', 'mediapipe_api', 'objc', 'MediaPipeUnity.zip'))
if not zip_files:
raise RuntimeError('MediaPipeUnity.zip has not been built yet')
zip_files.sort(key=lambda x: os.path.getatime(x), reverse=True)
return zip_files[0]
class CleanCommand(Command):
def __init__(self, command_args):
Command.__init__(self, command_args)
self.command_args = command_args.args
def run(self):
self._rmtree(_BUILD_PATH)
self._rmtree(_NUGET_PATH)
commands = ['bazel'] + self._build_startup_opts() + ['clean', '--expunge']
self._run_command(commands)
def _build_startup_opts(self):
commands = []
if self._is_windows():
# limit the path length for Windows
# @see https://docs.bazel.build/versions/master/windows.html#avoid-long-path-issues
commands += ['--output_user_root', 'C:/_bzl']
commands += self.command_args.bazel_startup_opts or []
return commands
class UninstallCommand(Command):
def __init__(self, command_args):
Command.__init__(self, command_args)
self.command_args = command_args.args
def run(self):
self._rmtree(_BUILD_PATH)
if self.command_args.desktop:
self.console.info('Uninstalling native libraries for Desktop...')
for f in glob.glob(os.path.join(_INSTALL_PATH, 'Runtime', 'Plugins', '*'), recursive=True):
if f.endswith('.dll') or f.endswith('.dylib') or f.endswith('.so'):
self._remove(f)
if self.command_args.android:
self.console.info('Uninstalling native libraries for Android...')
aar_path = os.path.join(_INSTALL_PATH, 'Runtime', 'Plugins', 'Android', 'mediapipe_android.aar')
if os.path.exists(aar_path):
self._remove(aar_path)
if self.command_args.ios:
self.console.info('Uninstalling native libraries for iOS...')
ios_framework_path = os.path.join(_INSTALL_PATH, 'Runtime', 'Plugins', 'iOS', 'MediaPipeUnity.framework')
if os.path.exists(ios_framework_path):
self._rmtree(ios_framework_path)
if self.command_args.resources:
self.console.info('Uninstalling resource files...')
for f in glob.glob(os.path.join(_INSTALL_PATH, 'PackageResources', 'MediaPipe', '*'), recursive=True):
if not f.endswith('.meta'):
self._remove(f)
for f in glob.glob(os.path.join(_STREAMING_ASSETS_PATH, '*'), recursive=False):
self._remove(f)
if self.command_args.protobuf:
self.console.info('Uninstalling protobuf sources and dlls...')
for f in glob.glob(os.path.join(_INSTALL_PATH, 'Runtime', 'Plugins', 'Protobuf', '*.dll'), recursive=True):
self._remove(f)
for f in glob.glob(os.path.join(_INSTALL_PATH, 'Runtime', 'Scripts', 'Protobuf', '**', '*.cs'), recursive=True):
self._remove(f)
if self.command_args.analyzers:
self.console.info('Uninstalling analyzers...')
for f in glob.glob(os.path.join(_ANALYZER_PATH, '*.dll'), recursive=True):
self._remove(f)
class HelpCommand(Command):
def __init__(self, args):
self.args = args
def run(self):
self.args.argument_parser.print_help()
class Argument:
argument_parser = None
args = None
def __init__(self):
self.argument_parser = argparse.ArgumentParser()
subparsers = self.argument_parser.add_subparsers(dest='command')
build_command_parser = subparsers.add_parser('build', help='Build and install native libraries')
build_command_parser.add_argument('--desktop', choices=['cpu', 'gpu'])
build_command_parser.add_argument('--android', choices=['armv7', 'arm64', 'x86', 'x86_64'])
build_command_parser.add_argument('--android_fat_apk_cpu', nargs='+')
build_command_parser.add_argument('--android_ndk_api_level', type=int, choices=range(16, 31))
build_command_parser.add_argument('--ios', choices=['arm64'])
build_command_parser.add_argument('--resources', action=argparse.BooleanOptionalAction, default=True)
build_command_parser.add_argument('--analyzers', action=argparse.BooleanOptionalAction, default=False, help='Install Roslyn Analyzers')
build_command_parser.add_argument('--compilation_mode', '-c', choices=['fastbuild', 'opt', 'dbg'], default='opt')
build_command_parser.add_argument('--opencv', choices=['local', 'cmake'], default='local', help='Decide to which OpenCV to link for Desktop native libraries')
build_command_parser.add_argument('--solutions', nargs='+',
choices=['face_detection', 'face_mesh', 'iris', 'hands', 'pose', 'holistic',
'image_segmentation', 'object_detection', 'audio_classification'])
build_command_parser.add_argument('--linkopt', '-l', action='append', help='Linker options')
build_command_parser.add_argument('--apple_bitcode', action=argparse.BooleanOptionalAction, default=True, help='Embed bitcode to iOS Framework')
build_command_parser.add_argument('--macos_universal', action=argparse.BooleanOptionalAction, default=False, help='Build a universal library')
build_command_parser.add_argument('--bazel_startup_opts', action='append', help='Bazel startup options')
build_command_parser.add_argument('--bazel_build_opts', action='append', help='Bazel startup options')
build_command_parser.add_argument('--verbose', '-v', action='count', default=0)
clean_command_parser = subparsers.add_parser('clean', help='Clean cache files')
clean_command_parser.add_argument('--bazel_startup_opts', action='append', help='Bazel startup options')
clean_command_parser.add_argument('--verbose', '-v', action='count', default=0)
uninstall_command_parser = subparsers.add_parser('uninstall', help='Remove installed files')
uninstall_command_parser.add_argument('--desktop', action=argparse.BooleanOptionalAction, default=True)
uninstall_command_parser.add_argument('--android', action=argparse.BooleanOptionalAction, default=True)
uninstall_command_parser.add_argument('--ios', action=argparse.BooleanOptionalAction, default=True)
uninstall_command_parser.add_argument('--resources', action=argparse.BooleanOptionalAction, default=True)
uninstall_command_parser.add_argument('--protobuf', action=argparse.BooleanOptionalAction, default=True)
uninstall_command_parser.add_argument('--analyzers', action=argparse.BooleanOptionalAction, default=True)
uninstall_command_parser.add_argument('--verbose', '-v', action='count', default=0)
self.args = self.argument_parser.parse_args()
def command(self):
if self.args.command == 'build':
return BuildCommand(self)
elif self.args.command == 'clean':
return CleanCommand(self)
elif self.args.command == 'uninstall':
return UninstallCommand(self)
else:
return HelpCommand(self)
Argument().command().run()