-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathBuildOperation.swift
1052 lines (922 loc) · 43.6 KB
/
BuildOperation.swift
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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2015-2022 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import _Concurrency
@_spi(SwiftPMInternal)
import Basics
import Foundation
import LLBuildManifest
import PackageGraph
import PackageLoading
import PackageModel
import SPMBuildCore
import SPMLLBuild
import class Basics.AsyncProcess
import class TSCBasic.DiagnosticsEngine
import protocol TSCBasic.OutputByteStream
import struct TSCBasic.RegEx
import enum TSCUtility.Diagnostics
#if USE_IMPL_ONLY_IMPORTS
internal import DriverSupport
internal import SwiftDriver
#else
import DriverSupport
import SwiftDriver
#endif
package struct LLBuildSystemConfiguration {
let toolsBuildParameters: BuildParameters
let destinationBuildParameters: BuildParameters
let scratchDirectory: AbsolutePath
let traitConfiguration: TraitConfiguration?
fileprivate(set) var manifestPath: AbsolutePath
fileprivate(set) var databasePath: AbsolutePath
fileprivate(set) var buildDescriptionPath: AbsolutePath
let fileSystem: any Basics.FileSystem
let logLevel: Basics.Diagnostic.Severity
let outputStream: OutputByteStream
let observabilityScope: ObservabilityScope
init(
toolsBuildParameters: BuildParameters,
destinationBuildParameters: BuildParameters,
scratchDirectory: AbsolutePath,
traitConfiguration: TraitConfiguration?,
manifestPath: AbsolutePath? = nil,
databasePath: AbsolutePath? = nil,
buildDescriptionPath: AbsolutePath? = nil,
fileSystem: any Basics.FileSystem,
logLevel: Basics.Diagnostic.Severity,
outputStream: OutputByteStream,
observabilityScope: ObservabilityScope
) {
self.toolsBuildParameters = toolsBuildParameters
self.destinationBuildParameters = destinationBuildParameters
self.scratchDirectory = scratchDirectory
self.traitConfiguration = traitConfiguration
self.manifestPath = manifestPath ?? destinationBuildParameters.llbuildManifest
self.databasePath = databasePath ?? scratchDirectory.appending("build.db")
self.buildDescriptionPath = buildDescriptionPath ?? destinationBuildParameters.buildDescriptionPath
self.fileSystem = fileSystem
self.logLevel = logLevel
self.outputStream = outputStream
self.observabilityScope = observabilityScope
}
func buildParameters(for destination: BuildParameters.Destination) -> BuildParameters {
switch destination {
case .host: self.toolsBuildParameters
case .target: self.destinationBuildParameters
}
}
func buildEnvironment(for destination: BuildParameters.Destination) -> BuildEnvironment {
switch destination {
case .host: self.toolsBuildParameters.buildEnvironment
case .target: self.destinationBuildParameters.buildEnvironment
}
}
func shouldSkipBuilding(for destination: BuildParameters.Destination) -> Bool {
switch destination {
case .host: self.toolsBuildParameters.shouldSkipBuilding
case .target: self.destinationBuildParameters.shouldSkipBuilding
}
}
func toolchain(for description: BuildParameters.Destination) -> any PackageModel.Toolchain {
switch description {
case .host: self.toolsBuildParameters.toolchain
case .target: self.destinationBuildParameters.toolchain
}
}
func buildPath(for description: BuildParameters.Destination) -> AbsolutePath {
switch description {
case .host: self.toolsBuildParameters.buildPath
case .target: self.destinationBuildParameters.buildPath
}
}
func dataPath(for description: BuildParameters.Destination) -> AbsolutePath {
switch description {
case .host: self.toolsBuildParameters.dataPath
case .target: self.destinationBuildParameters.dataPath
}
}
func buildDescriptionPath(for description: BuildParameters.Destination) -> AbsolutePath {
switch description {
case .host: self.toolsBuildParameters.buildDescriptionPath
case .target: self.destinationBuildParameters.buildDescriptionPath
}
}
func configuration(for destination: BuildParameters.Destination) -> BuildConfiguration {
switch destination {
case .host: self.toolsBuildParameters.configuration
case .target: self.destinationBuildParameters.configuration
}
}
}
public final class BuildOperation: PackageStructureDelegate, SPMBuildCore.BuildSystem, BuildErrorAdviceProvider {
/// The delegate used by the build system.
public weak var delegate: SPMBuildCore.BuildSystemDelegate?
private let config: LLBuildSystemConfiguration
/// The closure for loading the package graph.
let packageGraphLoader: () async throws -> ModulesGraph
/// the plugin configuration for build plugins
let pluginConfiguration: PluginConfiguration?
/// The llbuild build system reference previously created
/// via `createBuildSystem` call.
private var current: (buildSystem: SPMLLBuild.BuildSystem, tracker: LLBuildProgressTracker)?
/// If build manifest caching should be enabled.
public let cacheBuildManifest: Bool
/// The build plan that was computed, if any.
public private(set) var _buildPlan: BuildPlan?
public var buildPlan: SPMBuildCore.BuildPlan {
get throws {
if let buildPlan = _buildPlan {
return buildPlan
} else {
throw StringError("did not compute a build plan yet")
}
}
}
/// The build description resulting from planing.
private let buildDescription = ThreadSafeBox<BuildDescription>()
/// The loaded package graph.
private let packageGraph = ThreadSafeBox<ModulesGraph>()
/// File system to operate on.
private var fileSystem: Basics.FileSystem {
config.fileSystem
}
/// ObservabilityScope with which to emit diagnostics.
private var observabilityScope: ObservabilityScope {
config.observabilityScope
}
public var builtTestProducts: [BuiltTestProduct] {
get async {
(try? await getBuildDescription())?.builtTestProducts ?? []
}
}
/// File rules to determine resource handling behavior.
private let additionalFileRules: [FileRuleDescription]
/// Alternative path to search for pkg-config `.pc` files.
private let pkgConfigDirectories: [AbsolutePath]
public convenience init(
productsBuildParameters: BuildParameters,
toolsBuildParameters: BuildParameters,
cacheBuildManifest: Bool,
packageGraphLoader: @escaping () throws -> ModulesGraph,
pluginConfiguration: PluginConfiguration? = .none,
scratchDirectory: AbsolutePath,
additionalFileRules: [FileRuleDescription],
pkgConfigDirectories: [AbsolutePath],
outputStream: OutputByteStream,
logLevel: Basics.Diagnostic.Severity,
fileSystem: Basics.FileSystem,
observabilityScope: ObservabilityScope
) {
self.init(
productsBuildParameters: productsBuildParameters,
toolsBuildParameters: toolsBuildParameters,
cacheBuildManifest: cacheBuildManifest,
packageGraphLoader: packageGraphLoader,
pluginConfiguration: pluginConfiguration,
scratchDirectory: scratchDirectory,
traitConfiguration: nil,
additionalFileRules: additionalFileRules,
pkgConfigDirectories: pkgConfigDirectories,
outputStream: outputStream,
logLevel: logLevel,
fileSystem: fileSystem,
observabilityScope: observabilityScope
)
}
package init(
productsBuildParameters: BuildParameters,
toolsBuildParameters: BuildParameters,
cacheBuildManifest: Bool,
packageGraphLoader: @escaping () async throws -> ModulesGraph,
pluginConfiguration: PluginConfiguration? = .none,
scratchDirectory: AbsolutePath,
traitConfiguration: TraitConfiguration?,
additionalFileRules: [FileRuleDescription],
pkgConfigDirectories: [AbsolutePath],
outputStream: OutputByteStream,
logLevel: Basics.Diagnostic.Severity,
fileSystem: Basics.FileSystem,
observabilityScope: ObservabilityScope
) {
/// Checks if stdout stream is tty.
var productsBuildParameters = productsBuildParameters
if productsBuildParameters.outputParameters.isColorized {
productsBuildParameters.outputParameters.isColorized = outputStream.isTTY
}
var toolsBuildParameters = toolsBuildParameters
if toolsBuildParameters.outputParameters.isColorized {
toolsBuildParameters.outputParameters.isColorized = outputStream.isTTY
}
self.config = LLBuildSystemConfiguration(
toolsBuildParameters: toolsBuildParameters,
destinationBuildParameters: productsBuildParameters,
scratchDirectory: scratchDirectory,
traitConfiguration: traitConfiguration,
fileSystem: fileSystem,
logLevel: logLevel,
outputStream: outputStream,
observabilityScope: observabilityScope.makeChildScope(description: "Build Operation")
)
self.cacheBuildManifest = cacheBuildManifest
self.packageGraphLoader = packageGraphLoader
self.additionalFileRules = additionalFileRules
self.pluginConfiguration = pluginConfiguration
self.pkgConfigDirectories = pkgConfigDirectories
}
public func getPackageGraph() async throws -> ModulesGraph {
try await self.packageGraph.memoize {
try await self.packageGraphLoader()
}
}
/// Compute and return the latest build description.
///
/// This will try skip build planning if build manifest caching is enabled
/// and the package structure hasn't changed.
public func getBuildDescription(subset: BuildSubset? = nil) async throws -> BuildDescription {
return try await self.buildDescription.memoize {
if self.cacheBuildManifest {
do {
// if buildPackageStructure returns a valid description we use that, otherwise we perform full planning
if try self.buildPackageStructure() {
// confirm the step above created the build description as expected
// we trust it to update the build description when needed
let buildDescriptionPath = self.config.buildDescriptionPath(for: .target)
guard self.fileSystem.exists(buildDescriptionPath) else {
throw InternalError("could not find build descriptor at \(buildDescriptionPath)")
}
// return the build description that's on disk.
let buildDescription = try BuildDescription.load(fileSystem: self.fileSystem, path: buildDescriptionPath)
// We need to check that the build has same traits enabled for the cached build operation
// match otherwise we have to re-plan.
if buildDescription.traitConfiguration == self.config.traitConfiguration {
return buildDescription
}
}
} catch {
// since caching is an optimization, warn about failing to load the cached version
self.observabilityScope.emit(
warning: "failed to load the cached build description",
underlyingError: error
)
}
}
// We need to perform actual planning if we reach here.
return try await self.generateDescription(subset: subset).description
}
}
public func getBuildManifest() async throws -> LLBuildManifest {
try await self.generateDescription().manifest
}
/// Cancel the active build operation.
public func cancel(deadline: DispatchTime) throws {
current?.buildSystem.cancel()
}
// Emit a warning if a target imports another target in this build
// without specifying it as a dependency in the manifest
private func verifyTargetImports(in description: BuildDescription) throws {
let checkingMode = description.explicitTargetDependencyImportCheckingMode
guard checkingMode != .none else {
return
}
// Ensure the compiler supports the import-scan operation
guard DriverSupport.checkSupportedFrontendFlags(
flags: ["import-prescan"],
toolchain: self.config.toolchain(for: .target),
fileSystem: localFileSystem
) else {
return
}
for (target, commandLine) in description.swiftTargetScanArgs {
do {
guard let dependencies = description.targetDependencyMap[target] else {
// Skip target if no dependency information is present
continue
}
let targetDependenciesSet = Set(dependencies)
guard !description.generatedSourceTargetSet.contains(target),
targetDependenciesSet.intersection(description.generatedSourceTargetSet).isEmpty else {
// Skip targets which contain, or depend-on-targets, with generated source-code.
// Such as test discovery targets and targets with plugins.
continue
}
let resolver = try ArgsResolver(fileSystem: localFileSystem)
let executor = SPMSwiftDriverExecutor(resolver: resolver,
fileSystem: localFileSystem,
env: Environment.current)
let consumeDiagnostics: DiagnosticsEngine = DiagnosticsEngine(handlers: [])
var driver = try Driver(args: commandLine,
diagnosticsOutput: .engine(consumeDiagnostics),
fileSystem: localFileSystem,
executor: executor)
guard !consumeDiagnostics.hasErrors else {
// If we could not init the driver with this command, something went wrong,
// proceed without checking this target.
continue
}
let imports = try driver.performImportPrescan().imports
let nonDependencyTargetsSet =
Set(description.targetDependencyMap.keys.filter { !targetDependenciesSet.contains($0) })
let importedTargetsMissingDependency = Set(imports).intersection(nonDependencyTargetsSet)
if let missedDependency = importedTargetsMissingDependency.first {
switch checkingMode {
case .error:
self.observabilityScope.emit(error: "Target \(target) imports another target (\(missedDependency)) in the package without declaring it a dependency.")
case .warn:
self.observabilityScope.emit(warning: "Target \(target) imports another target (\(missedDependency)) in the package without declaring it a dependency.")
case .none:
fatalError("Explicit import checking is disabled.")
}
}
} catch {
// The above verification is a best-effort attempt to warn the user about a potential manifest
// error. If something went wrong during the import-prescan, proceed silently.
return
}
}
}
/// Perform a build using the given build description and subset.
public func build(subset: BuildSubset) async throws {
guard !self.config.shouldSkipBuilding(for: .target) else {
return
}
let buildStartTime = DispatchTime.now()
// Get the build description (either a cached one or newly created).
// Get the build description
let buildDescription = try await self.getBuildDescription(subset: subset)
// Verify dependency imports on the described targets
try verifyTargetImports(in: buildDescription)
// Create the build system.
let (buildSystem, progressTracker) = try self.createBuildSystem(
buildDescription: buildDescription,
config: self.config
)
self.current = (buildSystem, progressTracker)
// If any plugins are part of the build set, compile them now to surface
// any errors up-front. Returns true if we should proceed with the build
// or false if not. It will already have thrown any appropriate error.
guard try await self.compilePlugins(in: subset) else {
return
}
let configuration = self.config.configuration(for: .target)
// delegate is only available after createBuildSystem is called
progressTracker.buildStart(configuration: configuration)
// Perform the build.
let llbuildTarget = try await computeLLBuildTargetName(for: subset)
let success = buildSystem.build(target: llbuildTarget)
let duration = buildStartTime.distance(to: .now())
let subsetDescriptor: String?
switch subset {
case .product(let productName, _):
subsetDescriptor = "product '\(productName)'"
case .target(let targetName, _):
subsetDescriptor = "target: '\(targetName)'"
case .allExcludingTests, .allIncludingTests:
subsetDescriptor = nil
}
progressTracker.buildComplete(
success: success,
duration: duration,
subsetDescriptor: subsetDescriptor
)
guard success else { throw Diagnostics.fatalError }
// Create backwards-compatibility symlink to old build path.
let oldBuildPath = self.config.dataPath(for: .target).parentDirectory.appending(
component: configuration.dirname
)
if self.fileSystem.exists(oldBuildPath) {
do { try self.fileSystem.removeFileTree(oldBuildPath) }
catch {
self.observabilityScope.emit(
warning: "unable to delete \(oldBuildPath), skip creating symbolic link",
underlyingError: error
)
return
}
}
do {
try self.fileSystem.createSymbolicLink(
oldBuildPath,
pointingAt: self.config.buildPath(for: .target),
relative: true
)
} catch {
self.observabilityScope.emit(
warning: "unable to create symbolic link at \(oldBuildPath)",
underlyingError: error
)
}
}
/// Compiles any plugins specified or implied by the build subset, returning
/// true if the build should proceed. Throws an error in case of failure. A
/// reason why the build might not proceed even on success is if only plugins
/// should be compiled.
func compilePlugins(in subset: BuildSubset) async throws -> Bool {
// Figure out what, if any, plugin descriptions to compile, and whether
// to continue building after that based on the subset.
let allPlugins = try await getBuildDescription().pluginDescriptions
let pluginsToCompile: [PluginBuildDescription]
let continueBuilding: Bool
switch subset {
case .allExcludingTests, .allIncludingTests:
pluginsToCompile = allPlugins
continueBuilding = true
case .product(let productName, _):
pluginsToCompile = allPlugins.filter{ $0.productNames.contains(productName) }
continueBuilding = pluginsToCompile.isEmpty
case .target(let targetName, _):
pluginsToCompile = allPlugins.filter{ $0.moduleName == targetName }
continueBuilding = pluginsToCompile.isEmpty
}
// Compile any plugins we ended up with. If any of them fails, it will
// throw.
for plugin in pluginsToCompile {
try await compilePlugin(plugin)
}
// If we get this far they all succeeded. Return whether to continue the
// build, based on the subset.
return continueBuilding
}
// Compiles a single plugin, emitting its output and throwing an error if it
// fails.
func compilePlugin(_ plugin: PluginBuildDescription) async throws {
guard let pluginConfiguration else {
throw InternalError("unknown plugin script runner")
}
// Compile the plugin, getting back a PluginCompilationResult.
final class Delegate: PluginScriptCompilerDelegate {
let preparationStepName: String
let progressTracker: LLBuildProgressTracker?
init(preparationStepName: String, progressTracker: LLBuildProgressTracker?) {
self.preparationStepName = preparationStepName
self.progressTracker = progressTracker
}
func willCompilePlugin(commandLine: [String], environment: [String: String]) {
self.progressTracker?.preparationStepStarted(preparationStepName)
}
func didCompilePlugin(result: PluginCompilationResult) {
self.progressTracker?.preparationStepHadOutput(
preparationStepName,
output: result.commandLine.joined(separator: " "),
verboseOnly: true
)
if !result.compilerOutput.isEmpty {
self.progressTracker?.preparationStepHadOutput(
preparationStepName,
output: result.compilerOutput,
verboseOnly: false
)
}
self.progressTracker?.preparationStepFinished(preparationStepName, result: (result.succeeded ? .succeeded : .failed))
}
func skippedCompilingPlugin(cachedResult: PluginCompilationResult) {
// Historically we have emitted log info about cached plugins that are used. We should reconsider whether this is the right thing to do.
self.progressTracker?.preparationStepStarted(preparationStepName)
if !cachedResult.compilerOutput.isEmpty {
self.progressTracker?.preparationStepHadOutput(
preparationStepName,
output: cachedResult.compilerOutput,
verboseOnly: false
)
}
self.progressTracker?.preparationStepFinished(preparationStepName, result: (cachedResult.succeeded ? .succeeded : .failed))
}
}
let delegate = Delegate(
preparationStepName: "Compiling plugin \(plugin.moduleName)",
progressTracker: self.current?.tracker
)
let result = try await pluginConfiguration.scriptRunner.compilePluginScript(
sourceFiles: plugin.sources.paths,
pluginName: plugin.moduleName,
toolsVersion: plugin.toolsVersion,
observabilityScope: self.observabilityScope,
callbackQueue: DispatchQueue.sharedConcurrent,
delegate: delegate
)
// Throw an error on failure; we will already have emitted the compiler's output in this case.
if !result.succeeded {
throw Diagnostics.fatalError
}
}
/// Compute the llbuild target name using the given subset.
func computeLLBuildTargetName(for subset: BuildSubset) async throws -> String {
func inferTestDestination(
testModule: ResolvedModule,
graph: ModulesGraph
) throws -> BuildParameters.Destination {
for product in graph.allProducts where product.type == .test {
if product.modules.contains(where: { $0.id == testModule.id }) {
return product.hasDirectMacroDependencies ? .host : .target
}
}
throw InternalError("Could not find a product for test module: \(testModule)")
}
switch subset {
case .allExcludingTests:
return LLBuildManifestBuilder.TargetKind.main.targetName
case .allIncludingTests:
return LLBuildManifestBuilder.TargetKind.test.targetName
case .product(let productName, let destination):
// FIXME: This is super unfortunate that we might need to load the package graph.
let graph = try await getPackageGraph()
let product = graph.product(for: productName)
guard let product else {
observabilityScope.emit(error: "no product named '\(productName)'")
throw Diagnostics.fatalError
}
let buildParameters = if let destination {
config.buildParameters(for: destination)
} else if product.type == .macro || product.type == .plugin {
config.buildParameters(for: .host)
} else if product.type == .test {
config.buildParameters(for: product.hasDirectMacroDependencies ? .host : .target)
} else {
config.buildParameters(for: .target)
}
// If the product is automatic, we build the main target because automatic products
// do not produce a binary right now.
if product.type == .library(.automatic) {
observabilityScope.emit(
warning:
"'--product' cannot be used with the automatic product '\(productName)'; building the default target instead"
)
return LLBuildManifestBuilder.TargetKind.main.targetName
}
return try product.getLLBuildTargetName(buildParameters: buildParameters)
case .target(let targetName, let destination):
// FIXME: This is super unfortunate that we might need to load the package graph.
let graph = try await getPackageGraph()
let module = graph.module(for: targetName)
guard let module else {
observabilityScope.emit(error: "no target named '\(targetName)'")
throw Diagnostics.fatalError
}
let buildParameters = if let destination {
config.buildParameters(for: destination)
} else if module.type == .macro || module.type == .plugin {
config.buildParameters(for: .host)
} else if module.type == .test {
try config.buildParameters(for: inferTestDestination(testModule: module, graph: graph))
} else {
config.buildParameters(for: .target)
}
return module.getLLBuildTargetName(buildParameters: buildParameters)
}
}
package func generatePlan() async throws -> BuildPlan {
let graph = try await getPackageGraph()
let pluginTools: [ResolvedModule.ID: [String: PluginTool]]
// FIXME: This is unfortunate but we need to build plugin tools upfront at the moment because
// llbuild doesn't support dynamic dependency detection. In order to construct a manifest
// we need to build and invoke all of the build-tool plugins and capture their outputs in
// `BuildPlan`.
if let pluginConfiguration: PluginConfiguration, !self.config.shouldSkipBuilding(for: .target) {
let pluginsPerModule = graph.pluginsPerModule(
satisfying: self.config.buildEnvironment(for: .host)
)
pluginTools = try await buildPluginTools(
graph: graph,
pluginsPerModule: pluginsPerModule,
hostTriple: try pluginConfiguration.scriptRunner.hostTriple
)
} else {
pluginTools = [:]
}
// Create the build plan based on the modules graph and any information from plugins.
return try await BuildPlan(
destinationBuildParameters: self.config.destinationBuildParameters,
toolsBuildParameters: self.config.buildParameters(for: .host),
graph: graph,
pluginConfiguration: self.pluginConfiguration,
pluginTools: pluginTools,
additionalFileRules: additionalFileRules,
pkgConfigDirectories: pkgConfigDirectories,
disableSandbox: self.pluginConfiguration?.disableSandbox ?? false,
fileSystem: self.fileSystem,
observabilityScope: self.observabilityScope
)
}
/// Create the build plan and return the build description.
private func generateDescription(subset: BuildSubset? = nil) async throws -> (description: BuildDescription, manifest: LLBuildManifest) {
let plan = try await generatePlan()
self._buildPlan = plan
// Emit warnings about any unhandled files in authored packages. We do this after applying build tool plugins, once we know what files they handled.
// rdar://113256834 This fix works for the plugins that do not have PreBuildCommands.
let targetsToConsider: [ResolvedModule]
if let subset = subset, let recursiveDependencies = try
subset.recursiveDependencies(for: plan.graph, observabilityScope: observabilityScope) {
targetsToConsider = recursiveDependencies
} else {
targetsToConsider = Array(plan.graph.reachableModules)
}
for module in targetsToConsider {
// Subtract out any that were inputs to any commands generated by plugins.
if let pluginResults = plan.buildToolPluginInvocationResults[module.id] {
diagnoseUnhandledFiles(
modulesGraph: plan.graph,
module: module,
buildToolPluginInvocationResults: pluginResults
)
}
}
let (buildDescription, buildManifest) = try BuildDescription.create(
from: plan,
using: self.config,
disableSandboxForPluginCommands: self.pluginConfiguration?.disableSandbox ?? false
)
// Finally create the llbuild manifest from the plan.
return (buildDescription, buildManifest)
}
/// Emit warnings about any files that aren't specifically declared as resources
/// or excluded from the build of the given module.
private func diagnoseUnhandledFiles(
modulesGraph: ModulesGraph,
module: ResolvedModule,
buildToolPluginInvocationResults: [BuildToolPluginInvocationResult]
) {
guard let package = modulesGraph.package(for: module),
package.manifest.toolsVersion >= .v5_3
else {
return
}
// Get the set of unhandled files in targets.
var unhandledFiles = Set(module.underlying.others)
if unhandledFiles.isEmpty {
return
}
// Subtract out any that were inputs to any commands generated by plugins.
let handledFiles = buildToolPluginInvocationResults.flatMap { $0.buildCommands.flatMap(\.inputFiles) }
unhandledFiles.subtract(handledFiles)
if unhandledFiles.isEmpty {
return
}
// Emit a diagnostic if any remain. This is kept the same as the previous message for now, but this could be
// improved.
let diagnosticsEmitter = self.observabilityScope.makeDiagnosticsEmitter {
var metadata = ObservabilityMetadata()
metadata.packageIdentity = package.identity
metadata.packageKind = package.manifest.packageKind
metadata.moduleName = module.name
return metadata
}
var warning =
"found \(unhandledFiles.count) file(s) which are unhandled; explicitly declare them as resources or exclude from the target\n"
for file in unhandledFiles {
warning += " " + file.pathString + "\n"
}
diagnosticsEmitter.emit(warning: warning)
}
/// Build the package structure target.
private func buildPackageStructure() throws -> Bool {
let (buildSystem, tracker) = try self.createBuildSystem(
buildDescription: .none,
config: self.config
)
self.current = (buildSystem, tracker)
// Build the package structure target which will re-generate the llbuild manifest, if necessary.
let buildSuccess = buildSystem.build(target: "PackageStructure")
// If progress has been printed this will add a newline to separate it from what could be
// the output of the command. For instance `swift test --skip-build` may print progress for
// the Planning Build stage, followed immediately by a list of tests. Without this finialize()
// call the first entry in the list appear on the same line as the Planning Build progress.
tracker.finalize(success: true)
return buildSuccess
}
/// Create the build system using the given build description.
///
/// The build description should only be omitted when creating the build system for
/// building the package structure target.
private func createBuildSystem(
buildDescription: BuildDescription?,
config: LLBuildSystemConfiguration
) throws -> (buildSystem: SPMLLBuild.BuildSystem, tracker: LLBuildProgressTracker) {
// Figure out which progress bar we have to use during the build.
let progressAnimation = ProgressAnimation.ninja(
stream: config.outputStream,
verbose: config.logLevel.isVerbose
)
let buildExecutionContext = BuildExecutionContext(
productsBuildParameters: config.destinationBuildParameters,
toolsBuildParameters: config.toolsBuildParameters,
buildDescription: buildDescription,
fileSystem: config.fileSystem,
observabilityScope: config.observabilityScope,
packageStructureDelegate: self,
buildErrorAdviceProvider: self
)
// Create the build delegate.
let progressTracker = LLBuildProgressTracker(
buildSystem: self,
buildExecutionContext: buildExecutionContext,
outputStream: config.outputStream,
progressAnimation: progressAnimation,
logLevel: config.logLevel,
observabilityScope: config.observabilityScope,
delegate: self.delegate
)
let llbuildSystem = SPMLLBuild.BuildSystem(
buildFile: config.manifestPath.pathString,
databaseFile: config.databasePath.pathString,
delegate: progressTracker,
schedulerLanes: config.destinationBuildParameters.workers
)
return (buildSystem: llbuildSystem, tracker: progressTracker)
}
public func provideBuildErrorAdvice(for target: String, command: String, message: String) -> String? {
// Find the target for which the error was emitted. If we don't find it, we can't give any advice.
guard let _ = self._buildPlan?.targets.first(where: { $0.module.name == target }) else { return nil }
// Check for cases involving modules that cannot be found.
if let importedModule = try? RegEx(pattern: "no such module '(.+)'").matchGroups(in: message).first?.first {
// A target is importing a module that can't be found. We take a look at the build plan and see if can offer any advice.
// Look for a target with the same module name as the one that's being imported.
if let importedTarget = self._buildPlan?.targets.first(where: { $0.module.c99name == importedModule }) {
// For the moment we just check for executables that other targets try to import.
if importedTarget.module.type == .executable {
return "module '\(importedModule)' is the main module of an executable, and cannot be imported by tests and other targets"
}
if importedTarget.module.type == .macro {
return "module '\(importedModule)' is a macro, and cannot be imported by tests and other targets"
}
// Here we can add more checks in the future.
}
}
return nil
}
public func packageStructureChanged() async -> Bool {
do {
_ = try await self.generateDescription()
}
catch Diagnostics.fatalError {
return false
}
catch {
self.observabilityScope.emit(error)
return false
}
return true
}
}
public struct PluginConfiguration {
/// Entity responsible for compiling and running plugin scripts.
let scriptRunner: PluginScriptRunner
/// Directory where plugin intermediate files are stored.
let workDirectory: AbsolutePath
/// Whether to sandbox commands from build tool plugins.
let disableSandbox: Bool
public init(
scriptRunner: PluginScriptRunner,
workDirectory: AbsolutePath,
disableSandbox: Bool
) {
self.scriptRunner = scriptRunner
self.workDirectory = workDirectory
self.disableSandbox = disableSandbox
}
}
extension BuildOperation {
private func buildPluginTools(
graph: ModulesGraph,
pluginsPerModule: [ResolvedModule.ID: [ResolvedModule]],
hostTriple: Basics.Triple
) async throws -> [ResolvedModule.ID: [String: PluginTool]] {
var accessibleToolsPerPlugin: [ResolvedModule.ID: [String: PluginTool]] = [:]
var config = self.config
config.manifestPath = config.dataPath(for: .host).appending(
components: "..", "plugin-tools.yaml"
)
// FIXME: It should be possible to share database between plugin tools
// and regular builds. To make that happen we need to refactor
// `buildPackageStructure` to recognize the split.
config.databasePath = config.scratchDirectory.appending("plugin-tools.db")
config.buildDescriptionPath = config.buildPath(for: .host).appending(
component: "plugin-tools-description.json"
)
let buildPlan = try await BuildPlan(
destinationBuildParameters: config.destinationBuildParameters,
toolsBuildParameters: config.toolsBuildParameters,
graph: graph,
pluginConfiguration: nil,
additionalFileRules: [],
fileSystem: config.fileSystem,
observabilityScope: config.observabilityScope
)
let (buildDescription, _) = try BuildDescription.create(
from: buildPlan,
using: config,
disableSandboxForPluginCommands: false
)
let (buildSystem, _) = try self.createBuildSystem(
buildDescription: buildDescription,
config: config
)
func buildToolBuilder(_ name: String, _ path: RelativePath) async throws -> AbsolutePath? {
let llbuildTarget = try await self.computeLLBuildTargetName(for: .product(name, for: .host))
let success = buildSystem.build(target: llbuildTarget)
if !success {
return nil
}
return try buildPlan.buildProducts.first {
$0.product.name == name && $0.buildParameters.destination == .host
}?.binaryPath
}
for (_, plugins) in pluginsPerModule {
for plugin in plugins where accessibleToolsPerPlugin[plugin.id] == nil {
// Determine the tools to which this plugin has access, and create a name-to-path mapping from tool
// names to the corresponding paths. Built tools are assumed to be in the build tools directory.
let accessibleTools = try await plugin.preparePluginTools(
fileSystem: config.fileSystem,
environment: config.buildEnvironment(for: .host),
for: hostTriple
) { name, path in
if let result = try await buildToolBuilder(name, path) {
return result
} else {
return config.buildPath(for: .host).appending(path)
}
}
accessibleToolsPerPlugin[plugin.id] = accessibleTools
}
}
return accessibleToolsPerPlugin
}
}
extension BuildDescription {
static func create(
from plan: BuildPlan,
using config: LLBuildSystemConfiguration,
disableSandboxForPluginCommands: Bool
) throws -> (BuildDescription, LLBuildManifest) {
let fileSystem = config.fileSystem
// Generate the llbuild manifest.
let llbuild = LLBuildManifestBuilder(
plan,
disableSandboxForPluginCommands: disableSandboxForPluginCommands,
fileSystem: fileSystem,
observabilityScope: config.observabilityScope
)
let buildManifest = try llbuild.generateManifest(at: config.manifestPath)
let swiftCommands = llbuild.manifest.getCmdToolMap(kind: SwiftCompilerTool.self)
let swiftFrontendCommands = llbuild.manifest.getCmdToolMap(kind: SwiftFrontendTool.self)
let testDiscoveryCommands = llbuild.manifest.getCmdToolMap(kind: TestDiscoveryTool.self)
let testEntryPointCommands = llbuild.manifest.getCmdToolMap(kind: TestEntryPointTool.self)
let copyCommands = llbuild.manifest.getCmdToolMap(kind: CopyTool.self)
let writeCommands = llbuild.manifest.getCmdToolMap(kind: WriteAuxiliaryFile.self)