-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
PIFBuilder.swift
1943 lines (1675 loc) · 75.6 KB
/
PIFBuilder.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) 2014-2024 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 Basics
import Foundation
import PackageGraph
import PackageLoading
import PackageModel
@_spi(SwiftPMInternal)
import SPMBuildCore
import func TSCBasic.memoize
import func TSCBasic.topologicalSort
/// The parameters required by `PIFBuilder`.
struct PIFBuilderParameters {
let triple: Triple
/// Whether the toolchain supports `-package-name` option.
let isPackageAccessModifierSupported: Bool
/// Whether or not build for testability is enabled.
let enableTestability: Bool
/// Whether to create dylibs for dynamic library products.
let shouldCreateDylibForDynamicProducts: Bool
/// The path to the library directory of the active toolchain.
let toolchainLibDir: AbsolutePath
/// An array of paths to search for pkg-config `.pc` files.
let pkgConfigDirectories: [AbsolutePath]
/// The toolchain's SDK root path.
let sdkRootPath: AbsolutePath?
/// The Swift language versions supported by the XCBuild being used for the buid.
let supportedSwiftVersions: [SwiftLanguageVersion]
}
/// PIF object builder for a package graph.
public final class PIFBuilder {
/// Name of the PIF target aggregating all targets (excluding tests).
public static let allExcludingTestsTargetName = "AllExcludingTests"
/// Name of the PIF target aggregating all targets (including tests).
public static let allIncludingTestsTargetName = "AllIncludingTests"
/// The package graph to build from.
let graph: ModulesGraph
/// The parameters used to configure the PIF.
let parameters: PIFBuilderParameters
/// The ObservabilityScope to emit diagnostics to.
let observabilityScope: ObservabilityScope
/// The file system to read from.
let fileSystem: FileSystem
private var pif: PIF.TopLevelObject?
/// Creates a `PIFBuilder` instance.
/// - Parameters:
/// - graph: The package graph to build from.
/// - parameters: The parameters used to configure the PIF.
/// - fileSystem: The file system to read from.
/// - observabilityScope: The ObservabilityScope to emit diagnostics to.
init(
graph: ModulesGraph,
parameters: PIFBuilderParameters,
fileSystem: FileSystem,
observabilityScope: ObservabilityScope
) {
self.graph = graph
self.parameters = parameters
self.fileSystem = fileSystem
self.observabilityScope = observabilityScope.makeChildScope(description: "PIF Builder")
}
/// Generates the PIF representation.
/// - Parameters:
/// - prettyPrint: Whether to return a formatted JSON.
/// - preservePIFModelStructure: Whether to preserve model structure.
/// - Returns: The package graph in the JSON PIF format.
func generatePIF(
prettyPrint: Bool = true,
preservePIFModelStructure: Bool = false
) throws -> String {
let encoder = prettyPrint ? JSONEncoder.makeWithDefaults() : JSONEncoder()
if !preservePIFModelStructure {
encoder.userInfo[.encodeForXCBuild] = true
}
let topLevelObject = try self.construct()
// Sign the pif objects before encoding it for XCBuild.
try PIF.sign(topLevelObject.workspace)
let pifData = try encoder.encode(topLevelObject)
return String(decoding: pifData, as: UTF8.self)
}
/// Constructs a `PIF.TopLevelObject` representing the package graph.
public func construct() throws -> PIF.TopLevelObject {
try memoize(to: &self.pif) {
let rootPackage = self.graph.rootPackages[self.graph.rootPackages.startIndex]
let sortedPackages = self.graph.packages
.sorted { $0.manifest.displayName < $1.manifest.displayName } // TODO: use identity instead?
var projects: [PIFProjectBuilder] = try sortedPackages.map { package in
try PackagePIFProjectBuilder(
package: package,
parameters: self.parameters,
fileSystem: self.fileSystem,
observabilityScope: self.observabilityScope
)
}
projects.append(AggregatePIFProjectBuilder(projects: projects))
let workspace = try PIF.Workspace(
guid: "Workspace:\(rootPackage.path.pathString)",
name: rootPackage.manifest.displayName, // TODO: use identity instead?
path: rootPackage.path,
projects: projects.map { try $0.construct() }
)
return PIF.TopLevelObject(workspace: workspace)
}
}
// Convenience method for generating PIF.
public static func generatePIF(
buildParameters: BuildParameters,
packageGraph: ModulesGraph,
fileSystem: FileSystem,
observabilityScope: ObservabilityScope,
preservePIFModelStructure: Bool
) throws -> String {
let parameters = PIFBuilderParameters(buildParameters, supportedSwiftVersions: [])
let builder = Self(
graph: packageGraph,
parameters: parameters,
fileSystem: fileSystem,
observabilityScope: observabilityScope
)
return try builder.generatePIF(preservePIFModelStructure: preservePIFModelStructure)
}
}
class PIFProjectBuilder {
let groupTree: PIFGroupBuilder
private(set) var targets: [PIFBaseTargetBuilder]
private(set) var buildConfigurations: [PIFBuildConfigurationBuilder]
@DelayedImmutable
var guid: PIF.GUID
@DelayedImmutable
var name: String
@DelayedImmutable
var path: AbsolutePath
@DelayedImmutable
var projectDirectory: AbsolutePath
@DelayedImmutable
var developmentRegion: String
fileprivate init() {
self.groupTree = PIFGroupBuilder(path: "")
self.targets = []
self.buildConfigurations = []
}
/// Creates and adds a new empty build configuration, i.e. one that does not initially have any build settings.
/// The name must not be empty and must not be equal to the name of any existing build configuration in the target.
@discardableResult
func addBuildConfiguration(
name: String,
settings: PIF.BuildSettings = PIF.BuildSettings(),
impartedBuildProperties: PIF.ImpartedBuildProperties = PIF
.ImpartedBuildProperties(settings: PIF.BuildSettings())
) -> PIFBuildConfigurationBuilder {
let builder = PIFBuildConfigurationBuilder(
name: name,
settings: settings,
impartedBuildProperties: impartedBuildProperties
)
self.buildConfigurations.append(builder)
return builder
}
/// Creates and adds a new empty target, i.e. one that does not initially have any build phases. If provided,
/// the ID must be non-empty and unique within the PIF workspace; if not provided, an arbitrary guaranteed-to-be-
/// unique identifier will be assigned. The name must not be empty and must not be equal to the name of any existing
/// target in the project.
@discardableResult
func addTarget(
guid: PIF.GUID,
name: String,
productType: PIF.Target.ProductType,
productName: String
) -> PIFTargetBuilder {
let target = PIFTargetBuilder(guid: guid, name: name, productType: productType, productName: productName)
self.targets.append(target)
return target
}
@discardableResult
func addAggregateTarget(guid: PIF.GUID, name: String) -> PIFAggregateTargetBuilder {
let target = PIFAggregateTargetBuilder(guid: guid, name: name)
self.targets.append(target)
return target
}
func construct() throws -> PIF.Project {
let buildConfigurations = self.buildConfigurations.map { builder -> PIF.BuildConfiguration in
builder.guid = "\(self.guid)::BUILDCONFIG_\(builder.name)"
return builder.construct()
}
// Construct group tree before targets to make sure file references have GUIDs.
groupTree.guid = "\(self.guid)::MAINGROUP"
let groupTree = self.groupTree.construct() as! PIF.Group
let targets = try self.targets.map { try $0.construct() }
return PIF.Project(
guid: self.guid,
name: self.name,
path: self.path,
projectDirectory: self.projectDirectory,
developmentRegion: self.developmentRegion,
buildConfigurations: buildConfigurations,
targets: targets,
groupTree: groupTree
)
}
}
final class PackagePIFProjectBuilder: PIFProjectBuilder {
private let package: ResolvedPackage
private let parameters: PIFBuilderParameters
private let fileSystem: FileSystem
private let observabilityScope: ObservabilityScope
private var binaryGroup: PIFGroupBuilder!
private let executableTargetProductMap: [ResolvedModule.ID: ResolvedProduct]
var isRootPackage: Bool { self.package.manifest.packageKind.isRoot }
init(
package: ResolvedPackage,
parameters: PIFBuilderParameters,
fileSystem: FileSystem,
observabilityScope: ObservabilityScope
) throws {
self.package = package
self.parameters = parameters
self.fileSystem = fileSystem
self.observabilityScope = observabilityScope.makeChildScope(
description: "Package PIF Builder",
metadata: package.underlying.diagnosticsMetadata
)
self.executableTargetProductMap = try Dictionary(
throwingUniqueKeysWithValues: package.products
.filter { $0.type == .executable }
.map { ($0.mainTarget.id, $0) }
)
super.init()
self.guid = package.pifProjectGUID
self.name = package.manifest.displayName // TODO: use identity instead?
self.path = package.path
self.projectDirectory = package.path
self.developmentRegion = package.manifest.defaultLocalization ?? "en"
self.binaryGroup = groupTree.addGroup(path: "/", sourceTree: .absolute, name: "Binaries")
// Configure the project-wide build settings. First we set those that are in common between the "Debug" and
// "Release" configurations, and then we set those that are different.
var settings = PIF.BuildSettings()
settings[.PRODUCT_NAME] = "$(TARGET_NAME)"
settings[.SUPPORTED_PLATFORMS] = ["$(AVAILABLE_PLATFORMS)"]
settings[.SDKROOT] = "auto"
settings[.SDK_VARIANT] = "auto"
settings[.SKIP_INSTALL] = "YES"
settings[.MACOSX_DEPLOYMENT_TARGET] = package.deploymentTarget(for: .macOS)
settings[.IPHONEOS_DEPLOYMENT_TARGET] = package.deploymentTarget(for: .iOS)
settings[.IPHONEOS_DEPLOYMENT_TARGET, for: .macCatalyst] = package.deploymentTarget(for: .macCatalyst)
settings[.TVOS_DEPLOYMENT_TARGET] = package.deploymentTarget(for: .tvOS)
settings[.WATCHOS_DEPLOYMENT_TARGET] = package.deploymentTarget(for: .watchOS)
settings[.XROS_DEPLOYMENT_TARGET] = package.deploymentTarget(for: .visionOS)
settings[.DRIVERKIT_DEPLOYMENT_TARGET] = package.deploymentTarget(for: .driverKit)
settings[.DYLIB_INSTALL_NAME_BASE] = "@rpath"
settings[.USE_HEADERMAP] = "NO"
settings[.SWIFT_ACTIVE_COMPILATION_CONDITIONS] = ["$(inherited)", "SWIFT_PACKAGE"]
settings[.GCC_PREPROCESSOR_DEFINITIONS] = ["$(inherited)", "SWIFT_PACKAGE"]
settings[.CLANG_ENABLE_OBJC_ARC] = "YES"
settings[.KEEP_PRIVATE_EXTERNS] = "NO"
// We currently deliberately do not support Swift ObjC interface headers.
settings[.SWIFT_INSTALL_OBJC_HEADER] = "NO"
settings[.SWIFT_OBJC_INTERFACE_HEADER_NAME] = ""
settings[.OTHER_LDRFLAGS] = []
// This will add the XCTest related search paths automatically
// (including the Swift overlays).
settings[.ENABLE_TESTING_SEARCH_PATHS] = "YES"
// XCTest search paths should only be specified for certain platforms (watchOS doesn't have XCTest).
for platform: PIF.BuildSettings.Platform in [.macOS, .iOS, .tvOS] {
settings[.FRAMEWORK_SEARCH_PATHS, for: platform, default: ["$(inherited)"]]
.append("$(PLATFORM_DIR)/Developer/Library/Frameworks")
}
PlatformRegistry.default.knownPlatforms.forEach {
guard let platform = PIF.BuildSettings.Platform.from(platform: $0) else { return }
let supportedPlatform = package.getSupportedPlatform(for: $0, usingXCTest: false)
if !supportedPlatform.options.isEmpty {
settings[.SPECIALIZATION_SDK_OPTIONS, for: platform] = supportedPlatform.options
}
}
// Disable signing for all the things since there is no way to configure
// signing information in packages right now.
settings[.ENTITLEMENTS_REQUIRED] = "NO"
settings[.CODE_SIGNING_REQUIRED] = "NO"
settings[.CODE_SIGN_IDENTITY] = ""
var debugSettings = settings
debugSettings[.COPY_PHASE_STRIP] = "NO"
debugSettings[.DEBUG_INFORMATION_FORMAT] = "dwarf"
debugSettings[.ENABLE_NS_ASSERTIONS] = "YES"
debugSettings[.GCC_OPTIMIZATION_LEVEL] = "0"
debugSettings[.ONLY_ACTIVE_ARCH] = "YES"
debugSettings[.SWIFT_OPTIMIZATION_LEVEL] = "-Onone"
debugSettings[.ENABLE_TESTABILITY] = "YES"
debugSettings[.SWIFT_ACTIVE_COMPILATION_CONDITIONS, default: []].append("DEBUG")
debugSettings[.GCC_PREPROCESSOR_DEFINITIONS, default: ["$(inherited)"]].append("DEBUG=1")
addBuildConfiguration(name: "Debug", settings: debugSettings)
var releaseSettings = settings
releaseSettings[.COPY_PHASE_STRIP] = "YES"
releaseSettings[.DEBUG_INFORMATION_FORMAT] = "dwarf-with-dsym"
releaseSettings[.GCC_OPTIMIZATION_LEVEL] = "s"
releaseSettings[.SWIFT_OPTIMIZATION_LEVEL] = "-Owholemodule"
if parameters.enableTestability {
releaseSettings[.ENABLE_TESTABILITY] = "YES"
}
addBuildConfiguration(name: "Release", settings: releaseSettings)
for product in package.products.sorted(by: { $0.name < $1.name }) {
let productScope = observabilityScope.makeChildScope(
description: "Adding \(product.name) product",
metadata: package.underlying.diagnosticsMetadata
)
productScope.trap { try self.addTarget(for: product) }
}
for target in package.modules.sorted(by: { $0.name < $1.name }) {
let targetScope = observabilityScope.makeChildScope(
description: "Adding \(target.name) module",
metadata: package.underlying.diagnosticsMetadata
)
targetScope.trap { try self.addTarget(for: target) }
}
if self.binaryGroup.children.isEmpty {
groupTree.removeChild(self.binaryGroup)
}
}
private func addTarget(for product: ResolvedProduct) throws {
switch product.type {
case .executable, .snippet, .test:
try self.addMainModuleTarget(for: product)
case .library:
self.addLibraryTarget(for: product)
case .plugin, .macro:
return
}
}
private func addTarget(for target: ResolvedModule) throws {
switch target.type {
case .library:
try self.addLibraryTarget(for: target)
case .systemModule:
try self.addSystemTarget(for: target)
case .executable, .snippet, .test:
// Skip executable module targets and test module targets (they will have been dealt with as part of the
// products to which they belong).
return
case .binary:
// Binary target don't need to be built.
return
case .plugin:
// Package plugin modules.
return
case .macro:
// Macros are not supported when using XCBuild, similar to package plugins.
return
}
}
private func targetName(for product: ResolvedProduct) -> String {
Self.targetName(for: product.name)
}
static func targetName(for productName: String) -> String {
"\(productName)_\(String(productName.hash, radix: 16, uppercase: true))_PackageProduct"
}
private func addMainModuleTarget(for product: ResolvedProduct) throws {
let productType: PIF.Target.ProductType = product.type == .executable ? .executable : .unitTest
let pifTarget = self.addTarget(
guid: product.pifTargetGUID,
name: self.targetName(for: product),
productType: productType,
productName: "\(product.name)\(parameters.triple.executableExtension)"
)
// We'll be infusing the product's main module target into the one for the product itself.
let mainTarget = product.mainTarget
self.addSources(mainTarget.sources, to: pifTarget)
let dependencies = try! topologicalSort(mainTarget.dependencies) { $0.packageDependencies }.sorted()
for dependency in dependencies {
self.addDependency(to: dependency, in: pifTarget, linkProduct: true)
}
// Configure the target-wide build settings. The details depend on the kind of product we're building, but are
// in general the ones that are suitable for end-product artifacts such as executables and test bundles.
var settings = PIF.BuildSettings()
settings[.TARGET_NAME] = product.name
settings[.PACKAGE_RESOURCE_TARGET_KIND] = "regular"
settings[.PRODUCT_NAME] = "$(TARGET_NAME)"
settings[.PRODUCT_MODULE_NAME] = mainTarget.c99name
settings[.PRODUCT_BUNDLE_IDENTIFIER] = product.name
settings[.CLANG_ENABLE_MODULES] = "YES"
settings[.DEFINES_MODULE] = "YES"
if product.type == .executable || product.type == .test {
if let darwinPlatform = parameters.triple.darwinPlatform {
settings[.LIBRARY_SEARCH_PATHS] = [
"$(inherited)",
"\(self.parameters.toolchainLibDir.pathString)/swift/\(darwinPlatform.platformName)",
]
}
}
// Tests can have a custom deployment target based on the minimum supported by XCTest.
if mainTarget.underlying.type == .test {
settings[.MACOSX_DEPLOYMENT_TARGET] = mainTarget.deploymentTarget(for: .macOS, usingXCTest: true)
settings[.IPHONEOS_DEPLOYMENT_TARGET] = mainTarget.deploymentTarget(for: .iOS, usingXCTest: true)
settings[.TVOS_DEPLOYMENT_TARGET] = mainTarget.deploymentTarget(for: .tvOS, usingXCTest: true)
settings[.WATCHOS_DEPLOYMENT_TARGET] = mainTarget.deploymentTarget(for: .watchOS, usingXCTest: true)
settings[.XROS_DEPLOYMENT_TARGET] = mainTarget.deploymentTarget(for: .visionOS, usingXCTest: true)
}
if product.type == .executable {
// Setup install path for executables if it's in root of a pure Swift package.
if self.isRootPackage {
settings[.SKIP_INSTALL] = "NO"
settings[.INSTALL_PATH] = "/usr/local/bin"
settings[.LD_RUNPATH_SEARCH_PATHS, default: ["$(inherited)"]].append("@executable_path/../lib")
}
} else {
// FIXME: we shouldn't always include both the deep and shallow bundle paths here, but for that we'll need
// rdar://problem/31867023
settings[.LD_RUNPATH_SEARCH_PATHS, default: ["$(inherited)"]] +=
["@loader_path/Frameworks", "@loader_path/../Frameworks"]
settings[.GENERATE_INFOPLIST_FILE] = "YES"
}
if let clangTarget = mainTarget.underlying as? ClangModule {
// Let the target itself find its own headers.
settings[.HEADER_SEARCH_PATHS, default: ["$(inherited)"]].append(clangTarget.includeDir.pathString)
settings[.GCC_C_LANGUAGE_STANDARD] = clangTarget.cLanguageStandard
settings[.CLANG_CXX_LANGUAGE_STANDARD] = clangTarget.cxxLanguageStandard
} else if let swiftTarget = mainTarget.underlying as? SwiftModule {
try settings.addSwiftVersionSettings(target: swiftTarget, parameters: self.parameters)
settings.addCommonSwiftSettings(package: self.package, target: mainTarget, parameters: self.parameters)
}
if let resourceBundle = addResourceBundle(for: mainTarget, in: pifTarget) {
settings[.PACKAGE_RESOURCE_BUNDLE_NAME] = resourceBundle
settings[.GENERATE_RESOURCE_ACCESSORS] = "YES"
}
// For targets, we use the common build settings for both the "Debug" and the "Release" configurations (all
// differentiation is at the project level).
var debugSettings = settings
var releaseSettings = settings
var impartedSettings = PIF.BuildSettings()
try self.addManifestBuildSettings(
from: mainTarget.underlying,
debugSettings: &debugSettings,
releaseSettings: &releaseSettings,
impartedSettings: &impartedSettings
)
let impartedBuildProperties = PIF.ImpartedBuildProperties(settings: impartedSettings)
pifTarget.addBuildConfiguration(
name: "Debug",
settings: debugSettings,
impartedBuildProperties: impartedBuildProperties
)
pifTarget.addBuildConfiguration(
name: "Release",
settings: releaseSettings,
impartedBuildProperties: impartedBuildProperties
)
}
private func addLibraryTarget(for product: ResolvedProduct) {
// For the name of the product reference
let pifTargetProductName: String
let productType: PIF.Target.ProductType
if product.type == .library(.dynamic) {
if self.parameters.shouldCreateDylibForDynamicProducts {
pifTargetProductName = "\(parameters.triple.dynamicLibraryPrefix)\(product.name)\(parameters.triple.dynamicLibraryExtension)"
productType = .dynamicLibrary
} else {
pifTargetProductName = product.name + ".framework"
productType = .framework
}
} else {
pifTargetProductName = "lib\(product.name)\(parameters.triple.staticLibraryExtension)"
productType = .packageProduct
}
// Create a special kind of .packageProduct PIF target that just "groups" a set of targets for clients to
// depend on. XCBuild will not produce a separate artifact for a package product, but will instead consider any
// dependency on the package product to be a dependency on the whole set of targets on which the package product
// depends.
let pifTarget = self.addTarget(
guid: product.pifTargetGUID,
name: self.targetName(for: product),
productType: productType,
productName: pifTargetProductName
)
// Handle the dependencies of the targets in the product (and link against them, which in the case of a package
// product, really just means that clients should link against them).
let dependencies = product.recursivePackageDependencies()
for dependency in dependencies {
switch dependency {
case .module(let target, let conditions):
if target.type != .systemModule {
self.addDependency(to: target, in: pifTarget, conditions: conditions, linkProduct: true)
}
case .product(let product, let conditions):
self.addDependency(to: product, in: pifTarget, conditions: conditions, linkProduct: true)
}
}
var settings = PIF.BuildSettings()
let usesUnsafeFlags = dependencies.contains { $0.module?.underlying.usesUnsafeFlags == true }
settings[.USES_SWIFTPM_UNSAFE_FLAGS] = usesUnsafeFlags ? "YES" : "NO"
// If there are no system modules in the dependency graph, mark the target as extension-safe.
let dependsOnAnySystemModules = dependencies.contains { $0.module?.type == .systemModule }
if !dependsOnAnySystemModules {
settings[.APPLICATION_EXTENSION_API_ONLY] = "YES"
}
// Add other build settings when we're building an actual dylib.
if product.type == .library(.dynamic) {
settings[.TARGET_NAME] = product.name
settings[.PRODUCT_NAME] = "$(TARGET_NAME)"
settings[.PRODUCT_MODULE_NAME] = product.name
settings[.PRODUCT_BUNDLE_IDENTIFIER] = product.name
settings[.EXECUTABLE_PREFIX] = parameters.triple.dynamicLibraryPrefix
settings[.CLANG_ENABLE_MODULES] = "YES"
settings[.DEFINES_MODULE] = "YES"
settings[.SKIP_INSTALL] = "NO"
settings[.INSTALL_PATH] = "/usr/local/lib"
if let darwinPlatform = parameters.triple.darwinPlatform {
settings[.LIBRARY_SEARCH_PATHS] = [
"$(inherited)",
"\(self.parameters.toolchainLibDir.pathString)/swift/\(darwinPlatform.platformName)",
]
}
if !self.parameters.shouldCreateDylibForDynamicProducts {
settings[.GENERATE_INFOPLIST_FILE] = "YES"
// If the built framework is named same as one of the target in the package, it can be picked up
// automatically during indexing since the build system always adds a -F flag to the built products dir.
// To avoid this problem, we build all package frameworks in a subdirectory.
settings[.BUILT_PRODUCTS_DIR] = "$(BUILT_PRODUCTS_DIR)/PackageFrameworks"
settings[.TARGET_BUILD_DIR] = "$(TARGET_BUILD_DIR)/PackageFrameworks"
// Set the project and marketing version for the framework because the app store requires these to be
// present. The AppStore requires bumping the project version when ingesting new builds but that's for
// top-level apps and not frameworks embedded inside it.
settings[.MARKETING_VERSION] = "1.0" // Version
settings[.CURRENT_PROJECT_VERSION] = "1" // Build
}
pifTarget.addSourcesBuildPhase()
}
pifTarget.addBuildConfiguration(name: "Debug", settings: settings)
pifTarget.addBuildConfiguration(name: "Release", settings: settings)
}
private func addLibraryTarget(for target: ResolvedModule) throws {
let pifTarget = self.addTarget(
guid: target.pifTargetGUID,
name: target.name,
productType: .objectFile,
productName: "\(target.name)_Module.o"
)
var settings = PIF.BuildSettings()
settings[.TARGET_NAME] = target.name + "_Module"
settings[.PACKAGE_RESOURCE_TARGET_KIND] = "regular"
settings[.PRODUCT_NAME] = "$(TARGET_NAME)"
settings[.PRODUCT_MODULE_NAME] = target.c99name
settings[.PRODUCT_BUNDLE_IDENTIFIER] = target.name
settings[.CLANG_ENABLE_MODULES] = "YES"
settings[.DEFINES_MODULE] = "YES"
settings[.MACH_O_TYPE] = "mh_object"
settings[.GENERATE_MASTER_OBJECT_FILE] = "NO"
// Disable code coverage linker flags since we're producing .o files. Otherwise, we will run into duplicated
// symbols when there are more than one targets that produce .o as their product.
settings[.CLANG_COVERAGE_MAPPING_LINKER_ARGS] = "NO"
if let aliases = target.moduleAliases {
settings[.SWIFT_MODULE_ALIASES] = aliases.map { $0.key + "=" + $0.value }
}
// Create a set of build settings that will be imparted to any target that depends on this one.
var impartedSettings = PIF.BuildSettings()
let generatedModuleMapDir = "$(OBJROOT)/GeneratedModuleMaps/$(PLATFORM_NAME)"
let moduleMapFile = "\(generatedModuleMapDir)/\(target.name).modulemap"
let moduleMapFileContents: String?
let shouldImpartModuleMap: Bool
if let clangTarget = target.underlying as? ClangModule {
// Let the target itself find its own headers.
settings[.HEADER_SEARCH_PATHS, default: ["$(inherited)"]].append(clangTarget.includeDir.pathString)
settings[.GCC_C_LANGUAGE_STANDARD] = clangTarget.cLanguageStandard
settings[.CLANG_CXX_LANGUAGE_STANDARD] = clangTarget.cxxLanguageStandard
// Also propagate this search path to all direct and indirect clients.
impartedSettings[.HEADER_SEARCH_PATHS, default: ["$(inherited)"]].append(clangTarget.includeDir.pathString)
if !self.fileSystem.exists(clangTarget.moduleMapPath) {
impartedSettings[.OTHER_SWIFT_FLAGS, default: ["$(inherited)"]] +=
["-Xcc", "-fmodule-map-file=\(moduleMapFile)"]
moduleMapFileContents = """
module \(target.c99name) {
umbrella "\(clangTarget.includeDir.pathString)"
export *
}
"""
shouldImpartModuleMap = true
} else {
moduleMapFileContents = nil
shouldImpartModuleMap = false
}
} else if let swiftTarget = target.underlying as? SwiftModule {
try settings.addSwiftVersionSettings(target: swiftTarget, parameters: self.parameters)
// Generate ObjC compatibility header for Swift library targets.
settings[.SWIFT_OBJC_INTERFACE_HEADER_DIR] = "$(OBJROOT)/GeneratedModuleMaps/$(PLATFORM_NAME)"
settings[.SWIFT_OBJC_INTERFACE_HEADER_NAME] = "\(target.name)-Swift.h"
settings.addCommonSwiftSettings(package: self.package, target: target, parameters: self.parameters)
moduleMapFileContents = """
module \(target.c99name) {
header "\(target.name)-Swift.h"
export *
}
"""
shouldImpartModuleMap = true
} else {
throw InternalError("unexpected target")
}
if let moduleMapFileContents {
settings[.MODULEMAP_PATH] = moduleMapFile
settings[.MODULEMAP_FILE_CONTENTS] = moduleMapFileContents
}
// Pass the path of the module map up to all direct and indirect clients.
if shouldImpartModuleMap {
impartedSettings[.OTHER_CFLAGS, default: ["$(inherited)"]].append("-fmodule-map-file=\(moduleMapFile)")
}
impartedSettings[.OTHER_LDRFLAGS] = []
if target.underlying.isCxx {
impartedSettings[.OTHER_LDFLAGS, default: ["$(inherited)"]].append("-lc++")
}
// radar://112671586 supress unnecessary warnings
impartedSettings[.OTHER_LDFLAGS, default: ["$(inherited)"]].append("-Wl,-no_warn_duplicate_libraries")
self.addSources(target.sources, to: pifTarget)
// Handle the target's dependencies (but don't link against them).
let dependencies = try! topologicalSort(target.dependencies) { $0.packageDependencies }.sorted()
for dependency in dependencies {
self.addDependency(to: dependency, in: pifTarget, linkProduct: false)
}
if let resourceBundle = addResourceBundle(for: target, in: pifTarget) {
settings[.PACKAGE_RESOURCE_BUNDLE_NAME] = resourceBundle
settings[.GENERATE_RESOURCE_ACCESSORS] = "YES"
impartedSettings[.EMBED_PACKAGE_RESOURCE_BUNDLE_NAMES, default: ["$(inherited)"]].append(resourceBundle)
}
// For targets, we use the common build settings for both the "Debug" and the "Release" configurations (all
// differentiation is at the project level).
var debugSettings = settings
var releaseSettings = settings
try addManifestBuildSettings(
from: target.underlying,
debugSettings: &debugSettings,
releaseSettings: &releaseSettings,
impartedSettings: &impartedSettings
)
let impartedBuildProperties = PIF.ImpartedBuildProperties(settings: impartedSettings)
pifTarget.addBuildConfiguration(
name: "Debug",
settings: debugSettings,
impartedBuildProperties: impartedBuildProperties
)
pifTarget.addBuildConfiguration(
name: "Release",
settings: releaseSettings,
impartedBuildProperties: impartedBuildProperties
)
pifTarget.impartedBuildSettings = impartedSettings
}
private func addSystemTarget(for target: ResolvedModule) throws {
guard let systemTarget = target.underlying as? SystemLibraryModule else {
throw InternalError("unexpected target type")
}
// Impart the header search path to all direct and indirect clients.
var impartedSettings = PIF.BuildSettings()
var cFlags: [String] = []
for result in try pkgConfigArgs(
for: systemTarget,
pkgConfigDirectories: self.parameters.pkgConfigDirectories,
sdkRootPath: self.parameters.sdkRootPath,
fileSystem: self.fileSystem,
observabilityScope: self.observabilityScope
) {
if let error = result.error {
self.observabilityScope.emit(
warning: "\(error.interpolationDescription)",
metadata: .pkgConfig(pcFile: result.pkgConfigName, targetName: target.name)
)
} else {
cFlags = result.cFlags
impartedSettings[.OTHER_LDFLAGS, default: ["$(inherited)"]] += result.libs
}
}
impartedSettings[.OTHER_LDRFLAGS] = []
impartedSettings[.OTHER_CFLAGS, default: ["$(inherited)"]] +=
["-fmodule-map-file=\(systemTarget.moduleMapPath)"] + cFlags
impartedSettings[.OTHER_SWIFT_FLAGS, default: ["$(inherited)"]] +=
["-Xcc", "-fmodule-map-file=\(systemTarget.moduleMapPath)"] + cFlags
let impartedBuildProperties = PIF.ImpartedBuildProperties(settings: impartedSettings)
// Create an aggregate PIF target (which doesn't have an actual product).
let pifTarget = addAggregateTarget(guid: target.pifTargetGUID, name: target.name)
pifTarget.addBuildConfiguration(
name: "Debug",
settings: PIF.BuildSettings(),
impartedBuildProperties: impartedBuildProperties
)
pifTarget.addBuildConfiguration(
name: "Release",
settings: PIF.BuildSettings(),
impartedBuildProperties: impartedBuildProperties
)
pifTarget.impartedBuildSettings = impartedSettings
}
private func addSources(_ sources: Sources, to pifTarget: PIFTargetBuilder) {
// Create a group for the target's source files. For now we use an absolute path for it, but we should really
// make it be container-relative, since it's always inside the package directory.
let targetGroup = groupTree.addGroup(
path: sources.root.relative(to: self.package.path).pathString,
sourceTree: .group
)
// Add a source file reference for each of the source files, and also an indexable-file URL for each one.
for path in sources.relativePaths {
pifTarget.addSourceFile(targetGroup.addFileReference(path: path.pathString, sourceTree: .group))
}
}
private func addDependency(
to dependency: ResolvedModule.Dependency,
in pifTarget: PIFTargetBuilder,
linkProduct: Bool
) {
switch dependency {
case .module(let target, let conditions):
self.addDependency(
to: target,
in: pifTarget,
conditions: conditions,
linkProduct: linkProduct
)
case .product(let product, let conditions):
self.addDependency(
to: product,
in: pifTarget,
conditions: conditions,
linkProduct: linkProduct
)
}
}
private func addDependency(
to target: ResolvedModule,
in pifTarget: PIFTargetBuilder,
conditions: [PackageCondition],
linkProduct: Bool
) {
// Only add the binary target as a library when we want to link against the product.
if let binaryTarget = target.underlying as? BinaryModule {
let ref = self.binaryGroup.addFileReference(path: binaryTarget.artifactPath.pathString)
pifTarget.addLibrary(ref, platformFilters: conditions.toPlatformFilters())
} else {
// If this is an executable target, the dependency should be to the PIF target created from the its
// product, as we don't have PIF targets corresponding to executable targets.
let targetGUID = self.executableTargetProductMap[target.id]?.pifTargetGUID ?? target.pifTargetGUID
let linkProduct = linkProduct && target.type != .systemModule && target.type != .executable
pifTarget.addDependency(
toTargetWithGUID: targetGUID,
platformFilters: conditions.toPlatformFilters(),
linkProduct: linkProduct
)
}
}
private func addDependency(
to product: ResolvedProduct,
in pifTarget: PIFTargetBuilder,
conditions: [PackageCondition],
linkProduct: Bool
) {
pifTarget.addDependency(
toTargetWithGUID: product.pifTargetGUID,
platformFilters: conditions.toPlatformFilters(),
linkProduct: linkProduct
)
}
private func addResourceBundle(for target: ResolvedModule, in pifTarget: PIFTargetBuilder) -> String? {
guard !target.underlying.resources.isEmpty else {
return nil
}
let bundleName = "\(package.manifest.displayName)_\(target.name)" // TODO: use identity instead?
let resourcesTarget = self.addTarget(
guid: target.pifResourceTargetGUID,
name: bundleName,
productType: .bundle,
productName: bundleName
)
pifTarget.addDependency(
toTargetWithGUID: resourcesTarget.guid,
platformFilters: [],
linkProduct: false
)
var settings = PIF.BuildSettings()
settings[.TARGET_NAME] = bundleName
settings[.PRODUCT_NAME] = "$(TARGET_NAME)"
settings[.PRODUCT_MODULE_NAME] = bundleName
let bundleIdentifier = "\(package.manifest.displayName).\(target.name).resources"
.spm_mangledToBundleIdentifier() // TODO: use identity instead?
settings[.PRODUCT_BUNDLE_IDENTIFIER] = bundleIdentifier
settings[.GENERATE_INFOPLIST_FILE] = "YES"
settings[.PACKAGE_RESOURCE_TARGET_KIND] = "resource"
resourcesTarget.addBuildConfiguration(name: "Debug", settings: settings)
resourcesTarget.addBuildConfiguration(name: "Release", settings: settings)
let coreDataFileTypes = [XCBuildFileType.xcdatamodeld, .xcdatamodel].flatMap(\.fileTypes)
for resource in target.underlying.resources {
// FIXME: Handle rules here.
let resourceFile = groupTree.addFileReference(
path: resource.path.pathString,
sourceTree: .absolute
)
// CoreData files should also be in the actual target because they can end up generating code during the
// build. The build system will only perform codegen tasks for the main target in this case.
if coreDataFileTypes.contains(resource.path.extension ?? "") {
pifTarget.addSourceFile(resourceFile)
}
resourcesTarget.addResourceFile(resourceFile)
}
let targetGroup = groupTree.addGroup(path: "/", sourceTree: .group)
pifTarget.addResourceFile(targetGroup.addFileReference(
path: "\(bundleName)\(parameters.triple.nsbundleExtension)",
sourceTree: .builtProductsDir
))
return bundleName
}
// Add inferred build settings for a particular value for a manifest setting and value.
private func addInferredBuildSettings(
for setting: PIF.BuildSettings.MultipleValueSetting,
value: [String],
platform: PIF.BuildSettings.Platform? = nil,
configuration: BuildConfiguration,
settings: inout PIF.BuildSettings
) {
// Automatically set SWIFT_EMIT_MODULE_INTERFACE if the package author uses unsafe flags to enable
// library evolution (this is needed until there is a way to specify this in the package manifest).
if setting == .OTHER_SWIFT_FLAGS && value.contains("-enable-library-evolution") {
settings[.SWIFT_EMIT_MODULE_INTERFACE] = "YES"
}
}
// Apply target-specific build settings defined in the manifest.
private func addManifestBuildSettings(
from target: Module,
debugSettings: inout PIF.BuildSettings,
releaseSettings: inout PIF.BuildSettings,
impartedSettings: inout PIF.BuildSettings
) throws {
for (setting, assignments) in target.buildSettings.pifAssignments {
for assignment in assignments {
var value = assignment.value
if setting == .HEADER_SEARCH_PATHS {
value = try value
.map { try AbsolutePath(validating: $0, relativeTo: target.sources.root).pathString }
}
if let platforms = assignment.platforms {
for platform in platforms {
for configuration in assignment.configurations {
switch configuration {
case .debug:
debugSettings[setting, for: platform, default: ["$(inherited)"]] += value
self.addInferredBuildSettings(
for: setting,
value: value,
platform: platform,
configuration: .debug,
settings: &debugSettings
)
case .release:
releaseSettings[setting, for: platform, default: ["$(inherited)"]] += value
self.addInferredBuildSettings(
for: setting,
value: value,
platform: platform,
configuration: .release,
settings: &releaseSettings
)
}
}
if setting == .OTHER_LDFLAGS {
impartedSettings[setting, for: platform, default: ["$(inherited)"]] += value
}
}
} else {
for configuration in assignment.configurations {
switch configuration {