-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathninja.py
1999 lines (1680 loc) · 77.3 KB
/
ninja.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
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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2020 MongoDB Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
"""Generate build.ninja files from SCons aliases."""
import importlib
import io
import os
import shlex
import shutil
import sys
import tempfile
import textwrap
from collections import OrderedDict
from glob import glob
from os.path import join as joinpath
from os.path import splitext
import SCons
from SCons.Action import _string_from_cmd_list, get_default_ENV
from SCons.Script import COMMAND_LINE_TARGETS
from SCons.Util import flatten_sequence, is_List
NINJA_STATE = None
NINJA_SYNTAX = "NINJA_SYNTAX"
NINJA_RULES = "__NINJA_CUSTOM_RULES"
NINJA_POOLS = "__NINJA_CUSTOM_POOLS"
NINJA_CUSTOM_HANDLERS = "__NINJA_CUSTOM_HANDLERS"
NINJA_BUILD = "NINJA_BUILD"
NINJA_WHEREIS_MEMO = {}
NINJA_STAT_MEMO = {}
__NINJA_RULE_MAPPING = {}
# These are the types that get_command can do something with
COMMAND_TYPES = (
SCons.Action.CommandAction,
SCons.Action.CommandGeneratorAction,
)
def _install_action_function(_env, node):
"""Install files using the install or copy commands"""
return {
"outputs": get_outputs(node),
"rule": "INSTALL",
"inputs": [get_path(src_file(s)) for s in node.sources],
"implicit": get_dependencies(node),
"variables": {"precious": node.precious},
}
def _mkdir_action_function(env, node):
return {
"outputs": get_outputs(node),
"rule": "CMD",
# implicit explicitly omitted, we translate these so they can be
# used by anything that depends on these but commonly this is
# hit with a node that will depend on all of the fake
# srcnode's that SCons will never give us a rule for leading
# to an invalid ninja file.
"variables": {
# On Windows mkdir "-p" is always on
"cmd": "mkdir {args}".format(
args=" ".join(get_outputs(node)) + " & exit /b 0"
if env["PLATFORM"] == "win32"
else "-p " + " ".join(get_outputs(node)),
),
"variables": {"precious": node.precious},
},
}
def _lib_symlink_action_function(_env, node):
"""Create shared object symlinks if any need to be created"""
symlinks = getattr(getattr(node, "attributes", None), "shliblinks", None)
if not symlinks or symlinks is None:
return None
outputs = [link.get_dir().rel_path(linktgt) for link, linktgt in symlinks]
inputs = [link.get_path() for link, _ in symlinks]
return {
"outputs": outputs,
"inputs": inputs,
"rule": "SYMLINK",
"implicit": get_dependencies(node),
"variables": {"precious": node.precious},
}
def is_valid_dependent_node(node):
"""
Return True if node is not an alias or is an alias that has children
This prevents us from making phony targets that depend on other
phony targets that will never have an associated ninja build
target.
We also have to specify that it's an alias when doing the builder
check because some nodes (like src files) won't have builders but
are valid implicit dependencies.
"""
if isinstance(node, SCons.Node.Alias.Alias):
return node.children()
if not node.env:
return True
return not node.env.get("NINJA_SKIP")
def alias_to_ninja_build(node):
"""Convert an Alias node into a Ninja phony target"""
return {
"outputs": get_outputs(node),
"rule": "phony",
"implicit": [get_path(src_file(n)) for n in node.children() if is_valid_dependent_node(n)],
}
def get_order_only(node):
"""Return a list of order only dependencies for node."""
if node.prerequisites is None:
return []
return [
get_path(src_file(prereq))
for prereq in node.prerequisites
if is_valid_dependent_node(prereq)
]
def get_dependencies(node, skip_sources=False):
"""Return a list of dependencies for node."""
if skip_sources:
return [
get_path(src_file(child))
for child in node.children()
if child not in node.sources and is_valid_dependent_node(child)
]
return [
get_path(src_file(child)) for child in node.children() if is_valid_dependent_node(child)
]
def get_inputs(node, skip_unknown_types=False):
"""
Collect the Ninja inputs for node.
If the given node has inputs which can not be converted into something
Ninja can process, this will throw an exception. Optionally, those nodes
that are not processable can be skipped as inputs with the
skip_unknown_types keyword arg.
"""
executor = node.get_executor()
if executor is not None:
inputs = executor.get_all_sources()
else:
inputs = node.sources
# Some Nodes (e.g. Python.Value Nodes) won't have files associated. We allow these to be
# optionally skipped to enable the case where we will re-invoke SCons for things
# like TEMPLATE. Otherwise, we have no direct way to express the behavior for such
# Nodes in Ninja, so we raise a hard error
ninja_nodes = []
for input_node in inputs:
if isinstance(input_node, (SCons.Node.FS.Base, SCons.Node.Alias.Alias)):
ninja_nodes.append(input_node)
else:
if skip_unknown_types:
continue
raise Exception(
"Can't process {} node '{}' as an input for '{}'".format(
type(input_node),
str(input_node),
str(node),
),
)
# convert node items into raw paths/aliases for ninja
return [get_path(src_file(o)) for o in ninja_nodes]
def get_outputs(node):
"""Collect the Ninja outputs for node."""
executor = node.get_executor()
if executor is not None:
outputs = executor.get_all_targets()
else:
if hasattr(node, "target_peers"):
outputs = node.target_peers
else:
outputs = [node]
outputs = [get_path(o) for o in outputs]
return outputs
def generate_depfile(env, node, dependencies):
"""
Ninja tool function for writing a depfile. The depfile should include
the node path followed by all the dependent files in a makefile format.
dependencies arg can be a list or a subst generator which returns a list.
"""
depfile = os.path.join(get_path(env["NINJA_BUILDDIR"]), str(node) + ".depfile")
# subst_list will take in either a raw list or a subst callable which generates
# a list, and return a list of CmdStringHolders which can be converted into raw strings.
# If a raw list was passed in, then scons_list will make a list of lists from the original
# values and even subst items in the list if they are substitutable. Flatten will flatten
# the list in that case, to ensure for either input we have a list of CmdStringHolders.
deps_list = env.Flatten(env.subst_list(dependencies))
# Now that we have the deps in a list as CmdStringHolders, we can convert them into raw strings
# and make sure to escape the strings to handle spaces in paths. We also will sort the result
# keep the order of the list consistent.
escaped_depends = sorted([dep.escape(env.get("ESCAPE", lambda x: x)) for dep in deps_list])
depfile_contents = str(node) + ": " + " ".join(escaped_depends)
need_rewrite = False
try:
with open(depfile, "r") as f:
need_rewrite = f.read() != depfile_contents
except FileNotFoundError:
need_rewrite = True
if need_rewrite:
os.makedirs(os.path.dirname(depfile) or ".", exist_ok=True)
with open(depfile, "w") as f:
f.write(depfile_contents)
def _extract_cmdstr_for_list_action(ninja_build_list):
cmdline = ""
for cmd in ninja_build_list:
# Occasionally a command line will expand to a
# whitespace only string (i.e. ' '). Which is not a
# valid command but does not trigger the empty command
# condition if not cmdstr. So here we trim the whitespace
# to make strings like the above become empty strings and
# so they will be skipped.
cmdstr = cmd["variables"]["cmd"].strip()
if not cmdstr:
continue
# Skip duplicate commands
if cmdstr in cmdline:
continue
if cmdline:
cmdline += " && "
cmdline += cmdstr
# Remove all preceding and proceeding whitespace
cmdline = cmdline.strip()
return cmdline
class SConsToNinjaTranslator:
"""Translates SCons Actions into Ninja build objects."""
def __init__(self, env):
self.env = env
self.func_handlers = {
# Skip conftest builders
"_createSource": ninja_noop,
# SCons has a custom FunctionAction that just makes sure the
# target isn't static. We let the commands that ninja runs do
# this check for us.
"SharedFlagChecker": ninja_noop,
# The install builder is implemented as a function action.
"installFunc": _install_action_function,
"MkdirFunc": _mkdir_action_function,
"LibSymlinksActionFunction": _lib_symlink_action_function,
}
self.loaded_custom = False
def action_to_ninja_build(self, node, action=None):
"""Generate build arguments dictionary for node."""
if not self.loaded_custom:
self.func_handlers.update(self.env[NINJA_CUSTOM_HANDLERS])
self.loaded_custom = True
if node.builder is None:
return None
if action is None:
action = node.builder.action
if node.env and node.env.get("NINJA_SKIP"):
return None
build = {}
env = node.env if node.env else self.env
# Ideally this should never happen, and we do try to filter
# Ninja builders out of being sources of ninja builders but I
# can't fix every DAG problem so we just skip ninja_builders
# if we find one
if node.builder == self.env["BUILDERS"]["Ninja"]:
build = None
elif isinstance(action, SCons.Action.FunctionAction):
build = self.handle_func_action(node, action)
elif isinstance(action, SCons.Action.LazyAction):
# pylint: disable=protected-access
action = action._generate_cache(env)
build = self.action_to_ninja_build(node, action=action)
elif isinstance(action, SCons.Action.ListAction):
build = self.handle_list_action(node, action)
elif isinstance(action, COMMAND_TYPES):
build = get_command(env, node, action)
else:
raise Exception("Got an unbuildable ListAction for: {}".format(str(node)))
if build is not None:
build["order_only"] = get_order_only(node)
if "conftest" not in str(node):
node_callback = getattr(node.attributes, "ninja_build_callback", None)
if callable(node_callback):
node_callback(env, node, build)
if build is not None and node.precious:
if not build.get("variables"):
build["variables"] = {}
build["variables"]["precious"] = node.precious
return build
def handle_func_action(self, node, action):
"""Determine how to handle the function action."""
name = action.function_name()
# This is the name given by the Subst/Textfile builders. So return the
# node to indicate that SCons is required. We skip sources here because
# dependencies don't really matter when we're going to shove these to
# the bottom of ninja's DAG anyway and Textfile builders can have text
# content as their source which doesn't work as an implicit dep in
# ninja. We suppress errors on input Nodes types that we cannot handle
# since we expect that the re-invocation of SCons will handle dependency
# tracking for those Nodes and their dependents.
if name == "_action":
return {
"rule": "TEMPLATE",
"outputs": get_outputs(node),
"inputs": get_inputs(node, skip_unknown_types=True),
"implicit": get_dependencies(node, skip_sources=True),
}
handler = self.func_handlers.get(name, None)
if handler is not None:
return handler(node.env if node.env else self.env, node)
raise Exception(
"Found unhandled function action {}, "
" generating scons command to build\n"
"Note: this is less efficient than Ninja,"
" you can write your own ninja build generator for"
" this function using NinjaRegisterFunctionHandler".format(name)
)
def handle_list_action(self, node, action):
"""TODO write this comment"""
results = [
self.action_to_ninja_build(node, action=act) for act in action.list if act is not None
]
results = [result for result in results if result is not None and result["outputs"]]
if not results:
return None
# No need to process the results if we only got a single result
if len(results) == 1:
return results[0]
all_outputs = list({output for build in results for output in build["outputs"]})
dependencies = list({dep for build in results for dep in build["implicit"]})
if all([result["rule"] == "CMD" for result in results]):
cmdline = _extract_cmdstr_for_list_action(results)
# Make sure we didn't generate an empty cmdline
if cmdline:
env = node.env if node.env else self.env
sources = [get_path(src_file(s)) for s in node.sources]
ninja_build = {
"outputs": all_outputs,
"rule": "CMD",
"variables": {
"cmd": cmdline,
"env": get_command_env(env, all_outputs, sources),
},
"implicit": dependencies,
}
if node.env and node.env.get("NINJA_POOL", None) is not None:
ninja_build["pool"] = node.env["pool"]
return ninja_build
elif results[0]["rule"] == "LINK" and all(
[result["rule"] == "CMD" for result in results[1:]]
):
cmdline = _extract_cmdstr_for_list_action(results[1:])
# Make sure we didn't generate an empty cmdline
if cmdline:
env = node.env if node.env else self.env
sources = [get_path(src_file(s)) for s in node.sources]
ninja_build = results[0]
ninja_build.update(
{
"outputs": all_outputs,
"rule": "LINK_CHAINED_CMD",
"implicit": dependencies,
}
)
ninja_build["variables"].update(
{
"cmd": cmdline,
"env": get_command_env(env, all_outputs, sources),
}
)
if node.env and node.env.get("NINJA_POOL", None) is not None:
ninja_build["pool"] = node.env["pool"]
return ninja_build
elif results[0]["rule"] == "phony":
return {
"outputs": all_outputs,
"rule": "phony",
"implicit": dependencies,
}
raise Exception("Unhandled list action with rule: " + results[0]["rule"])
class NinjaState:
"""Maintains state of Ninja build system as it's translated from SCons."""
def __init__(self, env, ninja_syntax):
self.env = env
self.writer_class = ninja_syntax.Writer
self.__generated = False
self.translator = SConsToNinjaTranslator(env)
self.generated_suffixes = env.get("NINJA_GENERATED_SOURCE_SUFFIXES", [])
# List of generated builds that will be written at a later stage
self.builds = dict()
# List of targets for which we have generated a build. This
# allows us to take multiple Alias nodes as sources and to not
# fail to build if they have overlapping targets.
self.built = set()
# SCons sets this variable to a function which knows how to do
# shell quoting on whatever platform it's run on. Here we use it
# to make the SCONS_INVOCATION variable properly quoted for things
# like CCFLAGS
scons_escape = env.get("ESCAPE", lambda x: x)
self.variables = {
# The /b option here will make sure that windows updates the mtime
# when copying the file. This allows to not need to use restat for windows
# copy commands.
"COPY": "cmd.exe /c 1>NUL copy /b" if sys.platform == "win32" else "cp",
"NOOP": "cmd.exe /c 1>NUL echo 0" if sys.platform == "win32" else "echo 0 >/dev/null",
"SCONS_INVOCATION": "{} {} __NINJA_NO=1 $out".format(
sys.executable,
" ".join(
[
ninja_syntax.escape(scons_escape(arg))
for arg in sys.argv
if arg not in COMMAND_LINE_TARGETS
]
),
),
"SCONS_INVOCATION_W_TARGETS": "{} {}".format(
sys.executable,
" ".join([ninja_syntax.escape(scons_escape(arg)) for arg in sys.argv]),
),
# This must be set to a global default per:
# https://ninja-build.org/manual.html
#
# (The deps section)
"msvc_deps_prefix": "Note: including file:",
}
self.rules = {
"CMD": {
"command": "cmd.exe /c $env$cmd" if sys.platform == "win32" else "$env$cmd",
"description": "Built $out",
"pool": "local_pool",
},
# We add the deps processing variables to this below. We
# don't pipe these through cmd.exe on Windows because we
# use this to generate a compile_commands.json database
# which can't use the shell command as it's compile
# command.
"CC": {
"command": "$env$CC @$out.rsp",
"description": "Compiled $out",
"rspfile": "$out.rsp",
"rspfile_content": "$rspc",
},
"CXX": {
"command": "$env$CXX @$out.rsp",
"description": "Compiled $out",
"rspfile": "$out.rsp",
"rspfile_content": "$rspc",
},
"COMPDB_CC": {
"command": "$CC $rspc",
"description": "Compiling $out",
"rspfile": "$out.rsp",
"rspfile_content": "$rspc",
},
"COMPDB_CXX": {
"command": "$CXX $rspc",
"description": "Compiling $out",
"rspfile": "$out.rsp",
"rspfile_content": "$rspc",
},
"LINK": {
"command": "$env$LINK @$out.rsp",
"description": "Linked $out",
"rspfile": "$out.rsp",
"rspfile_content": "$rspc",
"pool": "link_pool",
},
"LINK_CHAINED_CMD": {
"command": "$env$LINK @$out.rsp && $cmd",
"description": "Linked $out",
"rspfile": "$out.rsp",
"rspfile_content": "$rspc",
"pool": "link_pool",
},
"AR": {
"command": "$env$AR @$out.rsp",
"description": "Archived $out",
"rspfile": "$out.rsp",
"rspfile_content": "$rspc",
"pool": "local_pool",
},
"SYMLINK": {
"command": (
"cmd /c mklink $out $in" if sys.platform == "win32" else "ln -s $in $out"
),
"description": "Symlinked $in -> $out",
},
"NOOP": {
"command": "$NOOP",
"description": "Checked $out",
"pool": "local_pool",
},
"BAZEL_BUILD_INDIRECTION": {
"command": "$NOOP",
"description": "Checking Bazel outputs...",
"pool": "local_pool",
"restat": 1,
},
"INSTALL": {
"command": "$COPY $in $out",
"description": "Installed $out",
"pool": "install_pool",
},
"TEMPLATE": {
"command": "$SCONS_INVOCATION $out",
"description": "Rendered $out",
"pool": "scons_pool",
"restat": 1,
},
"SCONS": {
"command": "$SCONS_INVOCATION $out",
"description": "SCons $out",
"pool": "scons_pool",
# restat
# if present, causes Ninja to re-stat the command's outputs
# after execution of the command. Each output whose
# modification time the command did not change will be
# treated as though it had never needed to be built. This
# may cause the output's reverse dependencies to be removed
# from the list of pending build actions.
#
# We use restat any time we execute SCons because
# SCons calls in Ninja typically create multiple
# targets. But since SCons is doing it's own up to
# date-ness checks it may only update say one of
# them. Restat will find out which of the multiple
# build targets did actually change then only rebuild
# those targets which depend specifically on that
# output.
"restat": 1,
},
"REGENERATE": {
"command": "$SCONS_INVOCATION_W_TARGETS",
"description": "Regenerated $self",
"depfile": os.path.join(get_path(env["NINJA_BUILDDIR"]), "$out.depfile"),
"generator": 1,
# Console pool restricts to 1 job running at a time,
# it additionally has some special handling about
# passing stdin, stdout, etc to process in this pool
# that we need for SCons to behave correctly when
# regenerating Ninja
"pool": "console",
# Again we restat in case Ninja thought the
# build.ninja should be regenerated but SCons knew
# better.
"restat": 1,
},
}
command = [
f"{sys.executable}",
"site_scons/mongo/ninja_bazel_build.py",
f"--ninja-file={self.env.get('NINJA_PREFIX')}.{self.env.get('NINJA_SUFFIX')}",
]
if self.env.get("VERBOSE"):
command += ["--verbose"]
if self.env.get("BAZEL_INTEGRATION_DEBUG"):
command += ["--integration-debug"]
self.rules.update(
{
"RUN_BAZEL_BUILD": {
"command": " ".join(command),
"description": "Running bazel build",
"pool": "console",
"restat": 1,
}
}
)
num_jobs = self.env.get("NINJA_MAX_JOBS", self.env.GetOption("num_jobs"))
self.pools = {
"local_pool": num_jobs,
"install_pool": num_jobs / 2,
"scons_pool": 1,
}
for rule in ["CC", "CXX"]:
if env["PLATFORM"] == "win32":
self.rules[rule]["deps"] = "msvc"
else:
self.rules[rule]["deps"] = "gcc"
self.rules[rule]["depfile"] = "$out.d"
def add_build(self, node):
if not node.has_builder():
return False
if isinstance(node, SCons.Node.Alias.Alias):
build = alias_to_ninja_build(node)
else:
build = self.translator.action_to_ninja_build(node)
# Some things are unbuild-able or need not be built in Ninja
if build is None:
return False
node_string = str(node)
if node_string in self.builds:
raise Exception("Node {} added to ninja build state more than once".format(node_string))
self.builds[node_string] = build
self.built.update(build["outputs"])
return True
def is_generated_source(self, output):
"""Check if output ends with a known generated suffix."""
_, suffix = splitext(output)
return suffix in self.generated_suffixes
def has_generated_sources(self, output):
"""
Determine if output indicates this is a generated header file.
"""
for generated in output:
if self.is_generated_source(generated):
return True
return False
def generate(self, ninja_file):
"""
Generate the build.ninja.
This should only be called once for the lifetime of this object.
"""
if self.__generated:
return
self.rules.update(self.env.get(NINJA_RULES, {}))
self.pools.update(self.env.get(NINJA_POOLS, {}))
content = io.StringIO()
ninja = self.writer_class(content, width=100)
ninja.comment("Generated by scons. DO NOT EDIT.")
# This version is needed because it is easy to get from pip and it support compile_commands.json
ninja.variable("ninja_required_version", "1.10")
ninja.variable("builddir", get_path(self.env["NINJA_BUILDDIR"]))
ninja.variable("artifact_dir", self.env.Dir("$BUILD_DIR"))
link_jobs = self.env.get("NINJA_LINK_JOBS", self.env.GetOption("num_jobs"))
self.pools.update({"link_pool": link_jobs})
for pool_name, size in self.pools.items():
ninja.pool(pool_name, min(self.env.get("NINJA_MAX_JOBS", size), size))
for var, val in self.variables.items():
ninja.variable(var, val)
# This is the command that is used to clean a target before building it,
# excluding precious targets.
if sys.platform == "win32":
rm_cmd = "cmd.exe /c del /q $rm_outs >nul 2>&1 &"
else:
rm_cmd = "rm -f $rm_outs;"
precious_rule_suffix = "_PRECIOUS"
# Make two sets of rules to honor scons Precious setting. The build nodes themselves
# will then reselect their rule according to the precious being set for that node.
precious_rules = {}
for rule, kwargs in self.rules.items():
if self.env.get("NINJA_MAX_JOBS") is not None and "pool" not in kwargs:
kwargs["pool"] = "local_pool"
# Do not worry about precious for commands that don't have targets (phony)
# or that will callback to scons (which maintains its own precious).
if rule not in ["phony", "TEMPLATE", "REGENERATE", "COMPDB_CC", "COMPDB_CXX"]:
precious_rule = rule + precious_rule_suffix
precious_rules[precious_rule] = kwargs.copy()
ninja.rule(precious_rule, **precious_rules[precious_rule])
kwargs["command"] = f"{rm_cmd} " + kwargs["command"]
ninja.rule(rule, **kwargs)
else:
ninja.rule(rule, **kwargs)
self.rules.update(precious_rules)
# If the user supplied an alias to determine generated sources, use that, otherwise
# determine what the generated sources are dynamically.
generated_sources_alias = self.env.get("NINJA_GENERATED_SOURCE_ALIAS_NAME")
generated_sources_build = None
if generated_sources_alias:
generated_sources_build = self.builds.get(generated_sources_alias)
if generated_sources_build is None or generated_sources_build["rule"] != "phony":
raise Exception(
"ERROR: 'NINJA_GENERATED_SOURCE_ALIAS_NAME' set, but no matching Alias object found."
)
if generated_sources_alias and generated_sources_build:
generated_source_files = sorted(
[] if not generated_sources_build else generated_sources_build["implicit"]
)
def check_generated_source_deps(build):
return build != generated_sources_build and set(build["outputs"]).isdisjoint(
generated_source_files
)
else:
generated_sources_build = None
generated_source_files = sorted(
{
output
# First find builds which have header files in their outputs.
for build in self.builds.values()
if self.has_generated_sources(build["outputs"])
for output in build["outputs"]
# Collect only the header files from the builds with them
# in their output. We do this because is_generated_source
# returns True if it finds a header in any of the outputs,
# here we need to filter so we only have the headers and
# not the other outputs.
if self.is_generated_source(output)
}
)
if generated_source_files:
generated_sources_alias = "_ninja_generated_sources"
ninja_sorted_build(
ninja,
outputs=generated_sources_alias,
rule="phony",
implicit=generated_source_files,
)
def check_generated_source_deps(build):
return (
not build["rule"] == "INSTALL"
and set(build["outputs"]).isdisjoint(generated_source_files)
and set(build.get("implicit", [])).isdisjoint(generated_source_files)
)
template_builders = []
self.builds["compiledb"] = {
"rule": "phony",
"outputs": ["compiledb"],
"implicit": ["compile_commands.json"],
}
# Now for all build nodes, we want to select the precious rule or not.
# If it's not precious, we need to save all the outputs into a variable
# on that node. Later we will be removing outputs and switching them to
# phonies so that we can generate response and depfiles correctly.
for build, kwargs in self.builds.items():
if kwargs.get("variables") and kwargs["variables"].get("precious"):
kwargs["rule"] = kwargs["rule"] + precious_rule_suffix
elif kwargs["rule"] not in ["phony", "TEMPLATE", "REGENERATE"]:
if not kwargs.get("variables"):
kwargs["variables"] = {}
kwargs["variables"]["rm_outs"] = kwargs["outputs"].copy()
for build in [self.builds[key] for key in sorted(self.builds.keys())]:
if build["rule"] == "TEMPLATE":
template_builders.append(build)
continue
if "order_only" not in build:
build["order_only"] = ["bazel_run_first"]
else:
build["order_only"].append("bazel_run_first")
if "implicit" in build:
build["implicit"].sort()
# Don't make generated sources depend on each other. We
# have to check that none of the outputs are generated
# sources and none of the direct implicit dependencies are
# generated sources or else we will create a dependency
# cycle.
if generated_source_files and check_generated_source_deps(build):
depends_on_gen_source = build["rule"] != "INSTALL"
if build["outputs"]:
if (
self.env.Entry(build["outputs"][0])
.get_build_env()
.get("NINJA_GENSOURCE_INDEPENDENT")
):
depends_on_gen_source = False
if depends_on_gen_source:
# Make all non-generated source targets depend on
# _generated_sources. We use order_only for generated
# sources so that we don't rebuild the world if one
# generated source was rebuilt. We just need to make
# sure that all of these sources are generated before
# other builds.
order_only = build.get("order_only", [])
order_only.append(generated_sources_alias)
build["order_only"] = order_only
if "order_only" in build:
build["order_only"].sort()
# When using a depfile Ninja can only have a single output
# but SCons will usually have emitted an output for every
# thing a command will create because it's caching is much
# more complex than Ninja's. This includes things like DWO
# files. Here we make sure that Ninja only ever sees one
# target when using a depfile. It will still have a command
# that will create all of the outputs but most targets don't
# depend direclty on DWO files and so this assumption is safe
# to make.
rule = self.rules.get(build["rule"])
# Some rules like 'phony' and other builtins we don't have
# listed in self.rules so verify that we got a result
# before trying to check if it has a deps key.
#
# Anything using deps or rspfile in Ninja can only have a single
# output, but we may have a build which actually produces
# multiple outputs which other targets can depend on. Here we
# slice up the outputs so we have a single output which we will
# use for the "real" builder and multiple phony targets that
# match the file names of the remaining outputs. This way any
# build can depend on any output from any build.
#
# We assume that the first listed output is the 'key'
# output and is stably presented to us by SCons. For
# instance if -gsplit-dwarf is in play and we are
# producing foo.o and foo.dwo, we expect that outputs[0]
# from SCons will be the foo.o file and not the dwo
# file. If instead we just sorted the whole outputs array,
# we would find that the dwo file becomes the
# first_output, and this breaks, for instance, header
# dependency scanning.
if rule is not None and (rule.get("deps") or rule.get("rspfile")):
first_output, remaining_outputs = (
build["outputs"][0],
build["outputs"][1:],
)
if remaining_outputs:
ninja_sorted_build(
ninja,
outputs=sorted(remaining_outputs),
rule="phony",
implicit=first_output,
)
build["outputs"] = first_output
# Optionally a rule can specify a depfile, and SCons can generate implicit
# dependencies into the depfile. This allows for dependencies to come and go
# without invalidating the ninja file. The depfile was created in ninja specifically
# for dealing with header files appearing and disappearing across rebuilds, but it can
# be repurposed for anything, as long as you have a way to regenerate the depfile.
# More specific info can be found here: https://ninja-build.org/manual.html#_depfile
if rule is not None and rule.get("depfile") and build.get("deps_files"):
path = (
build["outputs"] if SCons.Util.is_List(build["outputs"]) else [build["outputs"]]
)
generate_depfile(self.env, path[0], build.pop("deps_files", []))
if "inputs" in build:
build["inputs"].sort()
ninja_sorted_build(ninja, **build)
for build, kwargs in self.builds.items():
if kwargs["rule"] in [
"CC",
f"CC{precious_rule_suffix}",
"CXX",
f"CXX{precious_rule_suffix}",
]:
rule = (
kwargs["rule"].replace(precious_rule_suffix)
if precious_rule_suffix in kwargs["rule"]
else kwargs["rule"]
)
compdb_build = kwargs.copy()
# the tool list is stored in the rule variable, so remove any wrappers we find.
for wrapper in compdb_build["variables"]["_COMPILATIONDB_IGNORE_WRAPPERS"]:
if wrapper in compdb_build["variables"][rule]:
compdb_build["variables"][rule].remove(wrapper)
rule = "COMPDB_" + rule
compdb_build["rule"] = rule
compdb_build["outputs"] = [kwargs["outputs"] + ".compdb"]
ninja.build(**compdb_build)
template_builds = {"rule": "TEMPLATE"}
for template_builder in template_builders:
# Special handling for outputs and implicit since we need to
# aggregate not replace for each builder.
for agg_key in ["outputs", "implicit", "inputs"]:
new_val = template_builds.get(agg_key, [])
# Use pop so the key is removed and so the update
# below will not overwrite our aggregated values.
cur_val = template_builder.pop(agg_key, [])
if is_List(cur_val):
new_val += cur_val
else:
new_val.append(cur_val)
template_builds[agg_key] = new_val
if template_builds.get("outputs", []):
ninja_sorted_build(ninja, **template_builds)
# We have to glob the SCons files here to teach the ninja file
# how to regenerate itself. We'll never see ourselves in the
# DAG walk so we can't rely on action_to_ninja_build to
# generate this rule even though SCons should know we're
# dependent on SCons files.