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
build / toolchain / apple / swiftc.py [blame]
# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import argparse
import collections
import contextlib
import hashlib
import io
import json
import multiprocessing
import os
import re
import shutil
import subprocess
import sys
import tempfile
class ArgumentForwarder(object):
"""Class used to abstract forwarding arguments from to the swiftc compiler.
Arguments:
- arg_name: string corresponding to the argument to pass to the compiler
- arg_join: function taking the compiler name and returning whether the
argument value is attached to the argument or separated
- to_swift: function taking the argument value and returning whether it
must be passed to the swift compiler
- to_clang: function taking the argument value and returning whether it
must be passed to the clang compiler
"""
def __init__(self, arg_name, arg_join, to_swift, to_clang):
self._arg_name = arg_name
self._arg_join = arg_join
self._to_swift = to_swift
self._to_clang = to_clang
def forward(self, swiftc_args, values, target_triple):
if not values:
return
is_catalyst = target_triple.endswith('macabi')
for value in values:
if self._to_swift(value):
if self._arg_join('swift'):
swiftc_args.append(f'{self._arg_name}{value}')
else:
swiftc_args.append(self._arg_name)
swiftc_args.append(value)
if self._to_clang(value) and not is_catalyst:
if self._arg_join('clang'):
swiftc_args.append('-Xcc')
swiftc_args.append(f'{self._arg_name}{value}')
else:
swiftc_args.append('-Xcc')
swiftc_args.append(self._arg_name)
swiftc_args.append('-Xcc')
swiftc_args.append(value)
class IncludeArgumentForwarder(ArgumentForwarder):
"""Argument forwarder for -I and -isystem."""
def __init__(self, arg_name):
ArgumentForwarder.__init__(self,
arg_name,
arg_join=lambda _: len(arg_name) == 1,
to_swift=lambda _: arg_name != '-isystem',
to_clang=lambda _: True)
class FrameworkArgumentForwarder(ArgumentForwarder):
"""Argument forwarder for -F and -Fsystem."""
def __init__(self, arg_name):
ArgumentForwarder.__init__(self,
arg_name,
arg_join=lambda _: len(arg_name) == 1,
to_swift=lambda _: True,
to_clang=lambda _: True)
class DefineArgumentForwarder(ArgumentForwarder):
"""Argument forwarder for -D."""
def __init__(self, arg_name):
ArgumentForwarder.__init__(self,
arg_name,
arg_join=lambda _: _ == 'clang',
to_swift=lambda _: '=' not in _,
to_clang=lambda _: True)
# Dictionary mapping argument names to their ArgumentForwarder.
ARGUMENT_FORWARDER_FOR_ATTR = (
('include_dirs', IncludeArgumentForwarder('-I')),
('system_include_dirs', IncludeArgumentForwarder('-isystem')),
('framework_dirs', FrameworkArgumentForwarder('-F')),
('system_framework_dirs', FrameworkArgumentForwarder('-Fsystem')),
('defines', DefineArgumentForwarder('-D')),
)
# Regexp used to parse #import lines.
IMPORT_LINE_REGEXP = re.compile('#import "([^"]*)"')
class FileWriter(contextlib.AbstractContextManager):
"""
FileWriter is a file-like object that only write data to disk if changed.
This object implements the context manager protocols and thus can be used
in a with-clause. The data is written to disk when the context is exited,
and only if the content is different from current file content.
with FileWriter(path) as stream:
stream.write('...')
If the with-clause ends with an exception, no data is written to the disk
and any existing file is left untouched.
"""
def __init__(self, filepath, encoding='utf8'):
self._stringio = io.StringIO()
self._filepath = filepath
self._encoding = encoding
def __exit__(self, exc_type, exc_value, traceback):
if exc_type or exc_value or traceback:
return
new_content = self._stringio.getvalue()
if os.path.exists(self._filepath):
with open(self._filepath, encoding=self._encoding) as stream:
old_content = stream.read()
if old_content == new_content:
return
with open(self._filepath, 'w', encoding=self._encoding) as stream:
stream.write(new_content)
def write(self, data):
self._stringio.write(data)
@contextlib.contextmanager
def existing_directory(path):
"""Returns a context manager wrapping an existing directory."""
yield path
def create_stamp_file(path):
"""Writes an empty stamp file at path."""
with FileWriter(path) as stream:
stream.write('')
def create_build_cache_dir(args, build_signature):
"""Creates the build cache directory according to `args`.
This function returns an object that implements the context manager
protocol and thus can be used in a with-clause. If -derived-data-dir
argument is not used, the returned directory is a temporary directory
that will be deleted when the with-clause is exited.
"""
if not args.derived_data_dir:
return tempfile.TemporaryDirectory()
# The derived data cache can be quite large, so delete any obsolete
# files or directories.
stamp_name = f'{args.module_name}.stamp'
if os.path.isdir(args.derived_data_dir):
for name in os.listdir(args.derived_data_dir):
if name not in (build_signature, stamp_name):
path = os.path.join(args.derived_data_dir, name)
if os.path.isdir(path):
shutil.rmtree(path)
else:
os.unlink(path)
ensure_directory(args.derived_data_dir)
create_stamp_file(os.path.join(args.derived_data_dir, stamp_name))
return existing_directory(
ensure_directory(os.path.join(args.derived_data_dir, build_signature)))
def ensure_directory(path):
"""Creates directory at `path` if it does not exists."""
if not os.path.isdir(path):
os.makedirs(path)
return path
def build_signature(env, args):
"""Generates the build signature from `env` and `args`.
This allow re-using the derived data dir between builds while still
forcing the data to be recreated from scratch in case of significant
changes to the build settings (different arguments or tool versions).
"""
m = hashlib.sha1()
for key in sorted(env):
if key.endswith('_VERSION') or key == 'DEVELOPER_DIR':
m.update(f'{key}={env[key]}'.encode('utf8'))
for i, arg in enumerate(args):
m.update(f'{i}={arg}'.encode('utf8'))
return m.hexdigest()
def generate_source_output_file_map_fragment(args, filename):
"""Generates source OutputFileMap.json fragment according to `args`.
Create the fragment for a single .swift source file for OutputFileMap.
The output depends on whether -whole-module-optimization argument is
used or not.
"""
assert os.path.splitext(filename)[1] == '.swift', filename
basename = os.path.splitext(os.path.basename(filename))[0]
rel_name = os.path.join(args.target_out_dir, basename)
out_name = rel_name
fragment = {
'index-unit-output-path': f'/{rel_name}.o',
'object': f'{out_name}.o',
}
if not args.whole_module_optimization:
fragment.update({
'const-values': f'{out_name}.swiftconstvalues',
'dependencies': f'{out_name}.d',
'diagnostics': f'{out_name}.dia',
'swift-dependencies': f'{out_name}.swiftdeps',
})
return fragment
def generate_module_output_file_map_fragment(args):
"""Generates module OutputFileMap.json fragment according to `args`.
Create the fragment for the module itself for OutputFileMap. The output
depends on whether -whole-module-optimization argument is used or not.
"""
out_name = os.path.join(args.target_out_dir, args.module_name)
if args.whole_module_optimization:
fragment = {
'const-values': f'{out_name}.swiftconstvalues',
'dependencies': f'{out_name}.d',
'diagnostics': f'{out_name}.dia',
'swift-dependencies': f'{out_name}.swiftdeps',
}
else:
fragment = {
'emit-module-dependencies': f'{out_name}.d',
'emit-module-diagnostics': f'{out_name}.dia',
'swift-dependencies': f'{out_name}.swiftdeps',
}
return fragment
def generate_output_file_map(args):
"""Generates OutputFileMap.json according to `args`.
Returns the mapping as a python dictionary that can be serialized to
disk as JSON.
"""
output_file_map = {'': generate_module_output_file_map_fragment(args)}
for filename in args.sources:
fragment = generate_source_output_file_map_fragment(args, filename)
output_file_map[filename] = fragment
return output_file_map
def fix_generated_header(header_path, output_path, src_dir, gen_dir):
"""Fix the Objective-C header generated by the Swift compiler.
The Swift compiler assumes that the generated Objective-C header will be
imported from code compiled with module support enabled (-fmodules). The
generated code thus uses @import and provides no fallback if modules are
not enabled.
The Swift compiler also uses absolute path when including the bridging
header or another module's generated header. This causes issues with the
distributed compiler (i.e. reclient or siso) who expects all paths to be
relative to the build directory
This method fix the generated header to use relative path for #import
and to use #import instead of @import when using system frameworks.
The header is read at `header_path` and written to `output_path`.
"""
header_contents = []
with open(header_path, 'r', encoding='utf8') as header_file:
imports_section = None
for line in header_file:
# Handle #import lines.
match = IMPORT_LINE_REGEXP.match(line)
if match:
import_path = match.group(1)
for root in (gen_dir, src_dir):
if import_path.startswith(root):
import_path = os.path.relpath(import_path, root)
if import_path != match.group(1):
span = match.span(1)
line = line[:span[0]] + import_path + line[span[1]:]
# Handle @import lines.
if line.startswith('#if __has_feature(objc_modules)'):
assert imports_section is None
imports_section = (len(header_contents) + 1, 1)
elif imports_section:
section_start, nesting_level = imports_section
if line.startswith('#if'):
imports_section = (section_start, nesting_level + 1)
elif line.startswith('#endif'):
if nesting_level > 1:
imports_section = (section_start, nesting_level - 1)
else:
imports_section = None
section_end = len(header_contents)
header_contents.append('#else\n')
for index in range(section_start, section_end):
l = header_contents[index]
if l.startswith('@import'):
name = l.split()[1].split(';')[0]
if name != 'ObjectiveC':
header_contents.append(f'#import <{name}/{name}.h>\n')
else:
header_contents.append(l)
header_contents.append(line)
with FileWriter(output_path) as header_file:
for line in header_contents:
header_file.write(line)
def invoke_swift_compiler(args, extras_args, build_cache_dir, output_file_map):
"""Invokes Swift compiler to compile module according to `args`.
The `build_cache_dir` and `output_file_map` should be path to existing
directory to use for writing intermediate build artifact (optionally
a temporary directory) and path to $module-OutputFileMap.json file that
lists the outputs to generate for the module and each source file.
If -fix-module-imports argument is passed, the generated header for the
module is written to a temporary location and then modified to replace
@import by corresponding #import.
"""
# Write the $module.SwiftFileList file.
swift_file_list_path = os.path.join(args.target_out_dir,
f'{args.module_name}.SwiftFileList')
with FileWriter(swift_file_list_path) as stream:
for filename in sorted(args.sources):
stream.write(f'"{filename}"\n')
header_path = args.header_path
if args.fix_generated_header:
header_path = os.path.join(build_cache_dir, os.path.basename(header_path))
swiftc_args = [
'-parse-as-library',
'-module-name',
args.module_name,
f'@{swift_file_list_path}',
'-sdk',
args.sdk_path,
'-target',
args.target_triple,
'-swift-version',
args.swift_version,
'-c',
'-output-file-map',
output_file_map,
'-save-temps',
'-no-color-diagnostics',
'-serialize-diagnostics',
'-emit-dependencies',
'-emit-module',
'-emit-module-path',
os.path.join(args.target_out_dir, f'{args.module_name}.swiftmodule'),
'-emit-objc-header',
'-emit-objc-header-path',
header_path,
'-working-directory',
os.getcwd(),
'-index-store-path',
ensure_directory(os.path.join(build_cache_dir, 'Index.noindex')),
'-module-cache-path',
ensure_directory(os.path.join(build_cache_dir, 'ModuleCache.noindex')),
'-pch-output-dir',
ensure_directory(os.path.join(build_cache_dir, 'PrecompiledHeaders')),
]
# Handle optional -bridge-header flag.
if args.bridge_header:
swiftc_args.extend(('-import-objc-header', args.bridge_header))
# Handle swift const values extraction.
swiftc_args.extend(['-emit-const-values'])
swiftc_args.extend([
'-Xfrontend',
'-const-gather-protocols-file',
'-Xfrontend',
args.const_gather_protocols_file,
])
# Handle -I, -F, -isystem, -Fsystem and -D arguments.
for (attr_name, forwarder) in ARGUMENT_FORWARDER_FOR_ATTR:
forwarder.forward(swiftc_args, getattr(args, attr_name), args.target_triple)
# Handle -whole-module-optimization flag.
num_threads = max(1, multiprocessing.cpu_count() // 2)
if args.whole_module_optimization:
swiftc_args.extend([
'-whole-module-optimization',
'-no-emit-module-separately-wmo',
'-num-threads',
f'{num_threads}',
])
else:
swiftc_args.extend([
'-enable-batch-mode',
'-incremental',
'-experimental-emit-module-separately',
'-disable-cmo',
f'-j{num_threads}',
])
# Handle -file-prefix-map flag.
if args.file_prefix_map:
swiftc_args.extend([
'-file-prefix-map',
args.file_prefix_map,
])
swift_toolchain_path = args.swift_toolchain_path
if not swift_toolchain_path:
swift_toolchain_path = os.path.join(os.path.dirname(args.sdk_path),
'XcodeDefault.xctoolchain')
if not os.path.isdir(swift_toolchain_path):
swift_toolchain_path = ''
command = [f'{swift_toolchain_path}/usr/bin/swiftc'] + swiftc_args
if extras_args:
command.extend(extras_args)
process = subprocess.Popen(command)
process.communicate()
if process.returncode:
sys.exit(process.returncode)
if args.fix_generated_header:
fix_generated_header(header_path,
args.header_path,
src_dir=os.path.abspath(args.src_dir) + os.path.sep,
gen_dir=os.path.abspath(args.gen_dir) + os.path.sep)
def generate_depfile(args, output_file_map):
"""Generates compilation depfile according to `args`.
Parses all intermediate depfile generated by the Swift compiler and
replaces absolute path by relative paths (since ninja compares paths
as strings and does not resolve relative paths to absolute).
Converts path to the SDK and toolchain files to the sdk/xcode_link
symlinks if possible and available.
"""
xcode_paths = {}
if os.path.islink(args.sdk_path):
xcode_links = os.path.dirname(args.sdk_path)
for link_name in os.listdir(xcode_links):
link_path = os.path.join(xcode_links, link_name)
if os.path.islink(link_path):
xcode_paths[os.path.realpath(link_path) + os.sep] = link_path + os.sep
out_dir = os.getcwd() + os.path.sep
src_dir = os.path.abspath(args.src_dir) + os.path.sep
depfile_content = collections.defaultdict(set)
for value in output_file_map.values():
partial_depfile_path = value.get('dependencies', None)
if partial_depfile_path:
with open(partial_depfile_path, encoding='utf8') as stream:
for line in stream:
output, inputs = line.split(' : ', 2)
output = os.path.relpath(output, out_dir)
# The depfile format uses '\' to quote space in filename. Split the
# list of file while respecting this convention.
for path in re.split(r'(?<!\\) ', inputs):
for xcode_path in xcode_paths:
if path.startswith(xcode_path):
path = xcode_paths[xcode_path] + path[len(xcode_path):]
if path.startswith(src_dir) or path.startswith(out_dir):
path = os.path.relpath(path, out_dir)
depfile_content[output].add(path)
with FileWriter(args.depfile_path) as stream:
for output, inputs in sorted(depfile_content.items()):
stream.write(f'{output}: {" ".join(sorted(inputs))}\n')
def compile_module(args, extras_args, build_signature):
"""Compiles Swift module according to `args`."""
for path in (args.target_out_dir, os.path.dirname(args.header_path)):
ensure_directory(path)
# Write the $module-OutputFileMap.json file.
output_file_map = generate_output_file_map(args)
output_file_map_path = os.path.join(args.target_out_dir,
f'{args.module_name}-OutputFileMap.json')
with FileWriter(output_file_map_path) as stream:
json.dump(output_file_map, stream, indent=' ', sort_keys=True)
# Invoke Swift compiler.
with create_build_cache_dir(args, build_signature) as build_cache_dir:
invoke_swift_compiler(args,
extras_args,
build_cache_dir=build_cache_dir,
output_file_map=output_file_map_path)
# Generate the depfile.
generate_depfile(args, output_file_map)
def main(args):
parser = argparse.ArgumentParser(allow_abbrev=False, add_help=False)
# Required arguments.
parser.add_argument('--module-name',
required=True,
help='name of the Swift module')
parser.add_argument('--src-dir',
required=True,
help='path to the source directory')
parser.add_argument('--gen-dir',
required=True,
help='path to the gen directory root')
parser.add_argument('--target-out-dir',
required=True,
help='path to the object directory')
parser.add_argument('--header-path',
required=True,
help='path to the generated header file')
parser.add_argument('--bridge-header',
required=True,
help='path to the Objective-C bridge header file')
parser.add_argument('--depfile-path',
required=True,
help='path to the output dependency file')
parser.add_argument('--const-gather-protocols-file',
required=True,
help='path to file containing const values protocols')
# Optional arguments.
parser.add_argument('--derived-data-dir',
help='path to the derived data directory')
parser.add_argument('--fix-generated-header',
default=False,
action='store_true',
help='fix imports in generated header')
parser.add_argument('--swift-toolchain-path',
default='',
help='path to the Swift toolchain to use')
parser.add_argument('--whole-module-optimization',
default=False,
action='store_true',
help='enable whole module optimisation')
# Required arguments (forwarded to the Swift compiler).
parser.add_argument('-target',
required=True,
dest='target_triple',
help='generate code for the given target')
parser.add_argument('-sdk',
required=True,
dest='sdk_path',
help='path to the iOS SDK')
# Optional arguments (forwarded to the Swift compiler).
parser.add_argument('-I',
action='append',
dest='include_dirs',
help='add directory to header search path')
parser.add_argument('-isystem',
action='append',
dest='system_include_dirs',
help='add directory to system header search path')
parser.add_argument('-F',
action='append',
dest='framework_dirs',
help='add directory to framework search path')
parser.add_argument('-Fsystem',
action='append',
dest='system_framework_dirs',
help='add directory to system framework search path')
parser.add_argument('-D',
action='append',
dest='defines',
help='add preprocessor define')
parser.add_argument('-swift-version',
default='5',
help='version of the Swift language')
parser.add_argument(
'-file-prefix-map',
help='remap source paths in debug, coverage, and index info')
# Positional arguments.
parser.add_argument('sources',
nargs='+',
help='Swift source files to compile')
parsed, extras = parser.parse_known_args(args)
compile_module(parsed, extras, build_signature(os.environ, args))
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))