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
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2020 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import Basics
import Build
import BuildServerProtocol
import Dispatch
import Foundation
import LSPLogging
import LanguageServerProtocol
import PackageGraph
import PackageLoading
import PackageModel
import SKCore
import SKSupport
import SourceControl
import SourceKitLSPAPI
import SwiftExtensions
import Workspace
import struct Basics.AbsolutePath
import struct Basics.IdentifiableSet
import struct Basics.TSCAbsolutePath
import struct Foundation.URL
import struct TSCBasic.AbsolutePath
import protocol TSCBasic.FileSystem
import class TSCBasic.Process
import var TSCBasic.localFileSystem
import func TSCBasic.resolveSymlinks
typealias AbsolutePath = Basics.AbsolutePath
#if canImport(SPMBuildCore)
import SPMBuildCore
#endif
/// Parameter of `reloadPackageStatusCallback` in ``SwiftPMWorkspace``.
///
/// Informs the callback about whether `reloadPackage` started or finished executing.
public enum ReloadPackageStatus: Sendable {
case start
case end
}
/// A build target in SwiftPM
public typealias SwiftBuildTarget = SourceKitLSPAPI.BuildTarget
/// A build target in `BuildServerProtocol`
public typealias BuildServerTarget = BuildServerProtocol.BuildTarget
/// Same as `toolchainRegistry.default`.
///
/// Needed to work around a compiler crash that prevents us from accessing `toolchainRegistry.preferredToolchain` in
/// `SwiftPMWorkspace.init`.
private func preferredToolchain(_ toolchainRegistry: ToolchainRegistry) async -> SKCore.Toolchain? {
return await toolchainRegistry.preferredToolchain(containing: [
\.clang, \.clangd, \.sourcekitd, \.swift, \.swiftc,
])
}
fileprivate extension BuildTriple {
/// A string that can be used to identify the build triple in `ConfiguredTarget.runDestinationID`.
var id: String {
switch self {
case .tools:
return "tools"
case .destination:
return "destination"
}
}
}
fileprivate extension ConfiguredTarget {
init(_ buildTarget: any SwiftBuildTarget) {
self.init(targetID: buildTarget.name, runDestinationID: buildTarget.buildTriple.id)
}
static let forPackageManifest = ConfiguredTarget(targetID: "", runDestinationID: "")
}
fileprivate let preparationTaskID: AtomicUInt32 = AtomicUInt32(initialValue: 0)
public struct SwiftPMTestHooks: Sendable {
public var reloadPackageDidStart: (@Sendable () async -> Void)?
public var reloadPackageDidFinish: (@Sendable () async -> Void)?
public init(
reloadPackageDidStart: (@Sendable () async -> Void)? = nil,
reloadPackageDidFinish: (@Sendable () async -> Void)? = nil
) {
self.reloadPackageDidStart = reloadPackageDidStart
self.reloadPackageDidFinish = reloadPackageDidFinish
}
}
/// Swift Package Manager build system and workspace support.
///
/// This class implements the `BuildSystem` interface to provide the build settings for a Swift
/// Package Manager (SwiftPM) package. The settings are determined by loading the Package.swift
/// manifest using `libSwiftPM` and constructing a build plan using the default (debug) parameters.
public actor SwiftPMBuildSystem {
public enum Error: Swift.Error {
/// Could not find a manifest (Package.swift file). This is not a package.
case noManifest(workspacePath: TSCAbsolutePath)
/// Could not determine an appropriate toolchain for swiftpm to use for manifest loading.
case cannotDetermineHostToolchain
}
/// Delegate to handle any build system events.
public weak var delegate: SKCore.BuildSystemDelegate? = nil
public func setDelegate(_ delegate: SKCore.BuildSystemDelegate?) async {
self.delegate = delegate
}
/// Callbacks that should be called if the list of possible test files has changed.
private var testFilesDidChangeCallbacks: [() async -> Void] = []
private let workspacePath: TSCAbsolutePath
/// Options that allow the user to pass extra compiler flags.
private let options: SourceKitLSPOptions
/// The directory containing `Package.swift`.
@_spi(Testing)
public var projectRoot: TSCAbsolutePath
private var buildDescription: SourceKitLSPAPI.BuildDescription?
private var modulesGraph: ModulesGraph
private let workspace: Workspace
@_spi(Testing) public let toolsBuildParameters: BuildParameters
@_spi(Testing) public let destinationBuildParameters: BuildParameters
private let fileSystem: FileSystem
private let toolchain: SKCore.Toolchain
private var fileToTargets: [DocumentURI: [SwiftBuildTarget]] = [:]
private var sourceDirToTargets: [DocumentURI: [SwiftBuildTarget]] = [:]
/// Maps configured targets ids to their SwiftPM build target as well as an index in their topological sorting.
///
/// Targets with lower index are more low level, ie. targets with higher indices depend on targets with lower indices.
private var targets: [ConfiguredTarget: (index: Int, buildTarget: SwiftBuildTarget)] = [:]
/// The URIs for which the delegate has registered for change notifications,
/// mapped to the language the delegate specified when registering for change notifications.
private var watchedFiles: Set<DocumentURI> = []
/// This callback is informed when `reloadPackage` starts and ends executing.
private var reloadPackageStatusCallback: (ReloadPackageStatus) async -> Void
/// Debounces calls to `delegate.filesDependenciesUpdated`.
///
/// This is to ensure we don't call `filesDependenciesUpdated` for the same file multiple time if the client does not
/// debounce `workspace/didChangeWatchedFiles` and sends a separate notification eg. for every file within a target as
/// it's being updated by a git checkout, which would cause other files within that target to receive a
/// `fileDependenciesUpdated` call once for every updated file within the target.
///
/// Force-unwrapped optional because initializing it requires access to `self`.
private var fileDependenciesUpdatedDebouncer: Debouncer<Set<DocumentURI>>! = nil
/// A `ObservabilitySystem` from `SwiftPM` that logs.
private let observabilitySystem = ObservabilitySystem({ scope, diagnostic in
logger.log(level: diagnostic.severity.asLogLevel, "SwiftPM log: \(diagnostic.description)")
})
/// Whether the `SwiftPMBuildSystem` is pointed at a `.index-build` directory that's independent of the
/// user's build.
private var isForIndexBuild: Bool { options.backgroundIndexingOrDefault }
private let testHooks: SwiftPMTestHooks
/// Creates a build system using the Swift Package Manager, if this workspace is a package.
///
/// - Parameters:
/// - workspace: The workspace root path.
/// - toolchainRegistry: The toolchain registry to use to provide the Swift compiler used for
/// manifest parsing and runtime support.
/// - reloadPackageStatusCallback: Will be informed when `reloadPackage` starts and ends executing.
/// - Throws: If there is an error loading the package, or no manifest is found.
public init(
workspacePath: TSCAbsolutePath,
toolchainRegistry: ToolchainRegistry,
fileSystem: FileSystem = localFileSystem,
options: SourceKitLSPOptions,
reloadPackageStatusCallback: @escaping (ReloadPackageStatus) async -> Void = { _ in },
testHooks: SwiftPMTestHooks
) async throws {
self.workspacePath = workspacePath
self.options = options
self.fileSystem = fileSystem
guard let toolchain = await preferredToolchain(toolchainRegistry) else {
throw Error.cannotDetermineHostToolchain
}
self.toolchain = toolchain
self.testHooks = testHooks
guard let packageRoot = findPackageDirectory(containing: workspacePath, fileSystem) else {
throw Error.noManifest(workspacePath: workspacePath)
}
self.projectRoot = try resolveSymlinks(packageRoot)
guard let destinationToolchainBinDir = toolchain.swiftc?.parentDirectory else {
throw Error.cannotDetermineHostToolchain
}
let hostSDK = try SwiftSDK.hostSwiftSDK(AbsolutePath(destinationToolchainBinDir))
let hostSwiftPMToolchain = try UserToolchain(swiftSDK: hostSDK)
var destinationSDK: SwiftSDK
if let swiftSDK = options.swiftPM.swiftSDK {
let bundleStore = try SwiftSDKBundleStore(
swiftSDKsDirectory: fileSystem.getSharedSwiftSDKsDirectory(
explicitDirectory: options.swiftPM.swiftSDKsDirectory.map { try AbsolutePath(validating: $0) }
),
fileSystem: fileSystem,
observabilityScope: observabilitySystem.topScope,
outputHandler: { _ in }
)
destinationSDK = try bundleStore.selectBundle(matching: swiftSDK, hostTriple: hostSwiftPMToolchain.targetTriple)
} else {
destinationSDK = hostSDK
}
if let triple = options.swiftPM.triple {
destinationSDK = hostSDK
destinationSDK.targetTriple = try Triple(triple)
}
let destinationSwiftPMToolchain = try UserToolchain(swiftSDK: destinationSDK)
var location = try Workspace.Location(
forRootPackage: AbsolutePath(packageRoot),
fileSystem: fileSystem
)
if options.backgroundIndexingOrDefault {
location.scratchDirectory = AbsolutePath(packageRoot.appending(component: ".index-build"))
} else if let scratchDirectory = options.swiftPM.scratchPath,
let scratchDirectoryPath = try? AbsolutePath(validating: scratchDirectory)
{
location.scratchDirectory = scratchDirectoryPath
}
var configuration = WorkspaceConfiguration.default
configuration.skipDependenciesUpdates = true
self.workspace = try Workspace(
fileSystem: fileSystem,
location: location,
configuration: configuration,
customHostToolchain: hostSwiftPMToolchain
)
let buildConfiguration: PackageModel.BuildConfiguration
switch options.swiftPM.configuration {
case .debug, nil:
buildConfiguration = .debug
case .release:
buildConfiguration = .release
}
let buildFlags = BuildFlags(
cCompilerFlags: options.swiftPM.cCompilerFlags ?? [],
cxxCompilerFlags: options.swiftPM.cxxCompilerFlags ?? [],
swiftCompilerFlags: options.swiftPM.swiftCompilerFlags ?? [],
linkerFlags: options.swiftPM.linkerFlags ?? []
)
self.toolsBuildParameters = try BuildParameters(
destination: .host,
dataPath: location.scratchDirectory.appending(
component: hostSwiftPMToolchain.targetTriple.platformBuildPathComponent
),
configuration: buildConfiguration,
toolchain: hostSwiftPMToolchain,
flags: buildFlags
)
self.destinationBuildParameters = try BuildParameters(
destination: .target,
dataPath: location.scratchDirectory.appending(
component: destinationSwiftPMToolchain.targetTriple.platformBuildPathComponent
),
configuration: buildConfiguration,
toolchain: destinationSwiftPMToolchain,
triple: destinationSDK.targetTriple,
flags: buildFlags
)
self.modulesGraph = try ModulesGraph(
rootPackages: [],
packages: IdentifiableSet(),
dependencies: [],
binaryArtifacts: [:]
)
self.reloadPackageStatusCallback = reloadPackageStatusCallback
// The debounce duration of 500ms was chosen arbitrarily without scientific research.
self.fileDependenciesUpdatedDebouncer = Debouncer(
debounceDuration: .milliseconds(500),
combineResults: { $0.union($1) }
) {
[weak self] (filesWithUpdatedDependencies) in
guard let delegate = await self?.delegate else {
logger.fault("Not calling filesDependenciesUpdated because no delegate exists in SwiftPMBuildSystem")
return
}
await delegate.filesDependenciesUpdated(filesWithUpdatedDependencies)
}
}
/// Creates a build system using the Swift Package Manager, if this workspace is a package.
///
/// - Parameters:
/// - reloadPackageStatusCallback: Will be informed when `reloadPackage` starts and ends executing.
/// - Returns: nil if `workspacePath` is not part of a package or there is an error.
public init?(
uri: DocumentURI,
toolchainRegistry: ToolchainRegistry,
options: SourceKitLSPOptions,
reloadPackageStatusCallback: @escaping (ReloadPackageStatus) async -> Void,
testHooks: SwiftPMTestHooks
) async {
guard let fileURL = uri.fileURL else {
return nil
}
do {
try await self.init(
workspacePath: try TSCAbsolutePath(validating: fileURL.path),
toolchainRegistry: toolchainRegistry,
fileSystem: localFileSystem,
options: options,
reloadPackageStatusCallback: reloadPackageStatusCallback,
testHooks: testHooks
)
} catch Error.noManifest {
return nil
} catch {
logger.error("Failed to create SwiftPMWorkspace at \(uri.forLogging): \(error.forLogging)")
return nil
}
}
}
extension SwiftPMBuildSystem {
/// (Re-)load the package settings by parsing the manifest and resolving all the targets and
/// dependencies.
public func reloadPackage(forceResolvedVersions: Bool) async throws {
await reloadPackageStatusCallback(.start)
await testHooks.reloadPackageDidStart?()
defer {
Task {
await testHooks.reloadPackageDidFinish?()
await reloadPackageStatusCallback(.end)
}
}
let modulesGraph = try self.workspace.loadPackageGraph(
rootInput: PackageGraphRootInput(packages: [AbsolutePath(projectRoot)]),
forceResolvedVersions: forceResolvedVersions,
observabilityScope: observabilitySystem.topScope
)
let plan = try BuildPlan(
destinationBuildParameters: destinationBuildParameters,
toolsBuildParameters: toolsBuildParameters,
graph: modulesGraph,
fileSystem: fileSystem,
observabilityScope: observabilitySystem.topScope
)
let buildDescription = BuildDescription(buildPlan: plan)
self.buildDescription = buildDescription
/// Make sure to execute any throwing statements before setting any
/// properties because otherwise we might end up in an inconsistent state
/// with only some properties modified.
self.modulesGraph = modulesGraph
self.targets = Dictionary(
try buildDescription.allTargetsInTopologicalOrder(in: modulesGraph).enumerated().map { (index, target) in
return (key: ConfiguredTarget(target), value: (index, target))
},
uniquingKeysWith: { first, second in
logger.fault("Found two targets with the same name \(first.buildTarget.name)")
return second
}
)
self.fileToTargets = [DocumentURI: [SwiftBuildTarget]](
modulesGraph.allModules.flatMap { target in
return target.sources.paths.compactMap { (filePath) -> (key: DocumentURI, value: [SwiftBuildTarget])? in
guard let buildTarget = buildDescription.getBuildTarget(for: target, in: modulesGraph) else {
return nil
}
return (key: DocumentURI(filePath.asURL), value: [buildTarget])
}
},
uniquingKeysWith: { $0 + $1 }
)
self.sourceDirToTargets = [DocumentURI: [SwiftBuildTarget]](
modulesGraph.allModules.compactMap { (target) -> (DocumentURI, [SwiftBuildTarget])? in
guard let buildTarget = buildDescription.getBuildTarget(for: target, in: modulesGraph) else {
return nil
}
return (key: DocumentURI(target.sources.root.asURL), value: [buildTarget])
},
uniquingKeysWith: { $0 + $1 }
)
guard let delegate = self.delegate else {
return
}
await delegate.fileBuildSettingsChanged(self.watchedFiles)
await delegate.fileHandlingCapabilityChanged()
for testFilesDidChangeCallback in testFilesDidChangeCallbacks {
await testFilesDidChangeCallback()
}
}
}
fileprivate struct NonFileURIError: Error, CustomStringConvertible {
let uri: DocumentURI
var description: String {
"Trying to get build settings for non-file URI: \(uri)"
}
}
extension SwiftPMBuildSystem: SKCore.BuildSystem {
public nonisolated var supportsPreparation: Bool { true }
public var buildPath: TSCAbsolutePath {
return TSCAbsolutePath(destinationBuildParameters.buildPath)
}
public var indexStorePath: TSCAbsolutePath? {
return destinationBuildParameters.indexStoreMode == .off
? nil : TSCAbsolutePath(destinationBuildParameters.indexStore)
}
public var indexDatabasePath: TSCAbsolutePath? {
return buildPath.appending(components: "index", "db")
}
public var indexPrefixMappings: [PathPrefixMapping] { return [] }
/// Return the compiler arguments for the given source file within a target, making any necessary adjustments to
/// account for differences in the SwiftPM versions being linked into SwiftPM and being installed in the toolchain.
private func compilerArguments(for file: DocumentURI, in buildTarget: any SwiftBuildTarget) async throws -> [String] {
guard let fileURL = file.fileURL else {
throw NonFileURIError(uri: file)
}
let compileArguments = try buildTarget.compileArguments(for: fileURL)
#if compiler(>=6.1)
#warning("When we drop support for Swift 5.10 we no longer need to adjust compiler arguments for the Modules move")
#endif
// Fix up compiler arguments that point to a `/Modules` subdirectory if the Swift version in the toolchain is less
// than 6.0 because it places the modules one level higher up.
let toolchainVersion = await orLog("Getting Swift version") { try await toolchain.swiftVersion }
guard let toolchainVersion, toolchainVersion < SwiftVersion(6, 0) else {
return compileArguments
}
return compileArguments.map { argument in
if argument.hasSuffix("/Modules"), argument.contains(self.workspace.location.scratchDirectory.pathString) {
return String(argument.dropLast(8))
}
return argument
}
}
public func buildSettings(
for uri: DocumentURI,
in configuredTarget: ConfiguredTarget,
language: Language
) async throws -> FileBuildSettings? {
guard let url = uri.fileURL, let path = try? AbsolutePath(validating: url.path) else {
// We can't determine build settings for non-file URIs.
return nil
}
if configuredTarget == .forPackageManifest {
return try settings(forPackageManifest: path)
}
guard let buildTarget = self.targets[configuredTarget]?.buildTarget else {
logger.fault("Did not find target with name \(configuredTarget.targetID)")
return nil
}
if !buildTarget.sources.lazy.map(DocumentURI.init).contains(uri),
let substituteFile = buildTarget.sources.sorted(by: { $0.path < $1.path }).first
{
logger.info("Getting compiler arguments for \(url) using substitute file \(substituteFile)")
// If `url` is not part of the target's source, it's most likely a header file. Fake compiler arguments for it
// from a substitute file within the target.
// Even if the file is not a header, this should give reasonable results: Say, there was a new `.cpp` file in a
// target and for some reason the `SwiftPMBuildSystem` doesn’t know about it. Then we would infer the target based
// on the file's location on disk and generate compiler arguments for it by picking a source file in that target,
// getting its compiler arguments and then patching up the compiler arguments by replacing the substitute file
// with the `.cpp` file.
return FileBuildSettings(
compilerArguments: try await compilerArguments(for: DocumentURI(substituteFile), in: buildTarget),
workingDirectory: workspacePath.pathString
).patching(newFile: try resolveSymlinks(path).pathString, originalFile: substituteFile.absoluteString)
}
return FileBuildSettings(
compilerArguments: try await compilerArguments(for: uri, in: buildTarget),
workingDirectory: workspacePath.pathString
)
}
public func defaultLanguage(for document: DocumentURI) -> Language? {
// TODO (indexing): Query The SwiftPM build system for the document's language.
// https://github.com/swiftlang/sourcekit-lsp/issues/1267
return nil
}
public func toolchain(for uri: DocumentURI, _ language: Language) async -> SKCore.Toolchain? {
return toolchain
}
public func configuredTargets(for uri: DocumentURI) -> [ConfiguredTarget] {
guard let url = uri.fileURL, let path = try? AbsolutePath(validating: url.path) else {
// We can't determine targets for non-file URIs.
return []
}
let targets = buildTargets(for: uri)
if !targets.isEmpty {
return targets.map(ConfiguredTarget.init)
}
if path.basename == "Package.swift"
&& projectRoot == (try? TSCBasic.resolveSymlinks(TSCBasic.AbsolutePath(path.parentDirectory)))
{
// We use an empty target name to represent the package manifest since an empty target name is not valid for any
// user-defined target.
return [ConfiguredTarget.forPackageManifest]
}
if let targets = try? inferredTargets(for: path) {
return targets
}
return []
}
public func generateBuildGraph(allowFileSystemWrites: Bool) async throws {
try await self.reloadPackage(forceResolvedVersions: !isForIndexBuild || !allowFileSystemWrites)
}
public func topologicalSort(of targets: [ConfiguredTarget]) -> [ConfiguredTarget]? {
return targets.sorted { (lhs: ConfiguredTarget, rhs: ConfiguredTarget) -> Bool in
let lhsIndex = self.targets[lhs]?.index ?? self.targets.count
let rhsIndex = self.targets[rhs]?.index ?? self.targets.count
return lhsIndex < rhsIndex
}
}
public func targets(dependingOn targets: [ConfiguredTarget]) -> [ConfiguredTarget]? {
let targetIndices = targets.compactMap { self.targets[$0]?.index }
let minimumTargetIndex: Int?
if targetIndices.count == targets.count {
minimumTargetIndex = targetIndices.min()
} else {
// One of the targets didn't have an entry in self.targets. We don't know what might depend on it.
minimumTargetIndex = nil
}
// Files that occur before the target in the topological sorting don't depend on it.
// Ideally, we should consult the dependency graph here for more accurate dependency analysis instead of relying on
// a flattened list (https://github.com/swiftlang/sourcekit-lsp/issues/1312).
return self.targets.compactMap { (configuredTarget, value) -> ConfiguredTarget? in
if let minimumTargetIndex, value.index <= minimumTargetIndex {
return nil
}
return configuredTarget
}
}
public func prepare(
targets: [ConfiguredTarget],
logMessageToIndexLog: @escaping @Sendable (_ taskID: IndexTaskID, _ message: String) -> Void
) async throws {
// TODO (indexing): Support preparation of multiple targets at once.
// https://github.com/swiftlang/sourcekit-lsp/issues/1262
for target in targets {
await orLog("Preparing") { try await prepare(singleTarget: target, logMessageToIndexLog: logMessageToIndexLog) }
}
let filesInPreparedTargets = targets.flatMap { self.targets[$0]?.buildTarget.sources ?? [] }
await fileDependenciesUpdatedDebouncer.scheduleCall(Set(filesInPreparedTargets.map(DocumentURI.init)))
}
private func prepare(
singleTarget target: ConfiguredTarget,
logMessageToIndexLog: @escaping @Sendable (_ taskID: IndexTaskID, _ message: String) -> Void
) async throws {
if target == .forPackageManifest {
// Nothing to prepare for package manifests.
return
}
// TODO (indexing): Add a proper 'prepare' job in SwiftPM instead of building the target.
// https://github.com/swiftlang/sourcekit-lsp/issues/1254
guard let swift = toolchain.swift else {
logger.error(
"Not preparing because toolchain at \(self.toolchain.identifier) does not contain a Swift compiler"
)
return
}
logger.debug("Preparing '\(target.targetID)' using \(self.toolchain.identifier)")
var arguments = [
swift.pathString, "build",
"--package-path", workspacePath.pathString,
"--scratch-path", self.workspace.location.scratchDirectory.pathString,
"--disable-index-store",
"--target", target.targetID,
]
if let configuration = options.swiftPM.configuration {
arguments += ["-c", configuration.rawValue]
}
arguments += options.swiftPM.cCompilerFlags?.flatMap { ["-Xcc", $0] } ?? []
arguments += options.swiftPM.cxxCompilerFlags?.flatMap { ["-Xcxx", $0] } ?? []
arguments += options.swiftPM.swiftCompilerFlags?.flatMap { ["-Xswiftc", $0] } ?? []
arguments += options.swiftPM.linkerFlags?.flatMap { ["-Xlinker", $0] } ?? []
switch options.backgroundPreparationModeOrDefault {
case .build: break
case .noLazy: arguments += ["--experimental-prepare-for-indexing", "--experimental-prepare-for-indexing-no-lazy"]
case .enabled: arguments.append("--experimental-prepare-for-indexing")
}
if Task.isCancelled {
return
}
let start = ContinuousClock.now
let logID = IndexTaskID.preparation(id: preparationTaskID.fetchAndIncrement())
logMessageToIndexLog(
logID,
"""
Preparing \(target.targetID) for \(target.runDestinationID)
\(arguments.joined(separator: " "))
"""
)
let stdoutHandler = PipeAsStringHandler { logMessageToIndexLog(logID, $0) }
let stderrHandler = PipeAsStringHandler { logMessageToIndexLog(logID, $0) }
let result = try await Process.run(
arguments: arguments,
workingDirectory: nil,
outputRedirection: .stream(
stdout: { stdoutHandler.handleDataFromPipe(Data($0)) },
stderr: { stderrHandler.handleDataFromPipe(Data($0)) }
)
)
let exitStatus = result.exitStatus.exhaustivelySwitchable
logMessageToIndexLog(logID, "Finished with \(exitStatus.description) in \(start.duration(to: .now))")
switch exitStatus {
case .terminated(code: 0):
break
case .terminated(code: let code):
// This most likely happens if there are compilation errors in the source file. This is nothing to worry about.
let stdout = (try? String(bytes: result.output.get(), encoding: .utf8)) ?? "<no stderr>"
let stderr = (try? String(bytes: result.stderrOutput.get(), encoding: .utf8)) ?? "<no stderr>"
logger.debug(
"""
Preparation of target \(target.targetID) terminated with non-zero exit code \(code)
Stderr:
\(stderr)
Stdout:
\(stdout)
"""
)
case .signalled(signal: let signal):
if !Task.isCancelled {
// The indexing job finished with a signal. Could be because the compiler crashed.
// Ignore signal exit codes if this task has been cancelled because the compiler exits with SIGINT if it gets
// interrupted.
logger.error("Preparation of target \(target.targetID) signaled \(signal)")
}
case .abnormal(exception: let exception):
if !Task.isCancelled {
logger.error("Preparation of target \(target.targetID) exited abnormally \(exception)")
}
}
}
public func registerForChangeNotifications(for uri: DocumentURI) async {
self.watchedFiles.insert(uri)
}
/// Unregister the given file for build-system level change notifications, such as command
/// line flag changes, dependency changes, etc.
public func unregisterForChangeNotifications(for uri: DocumentURI) {
self.watchedFiles.remove(uri)
}
/// Returns the resolved target descriptions for the given file, if one is known.
private func buildTargets(for file: DocumentURI) -> [SwiftBuildTarget] {
if let targets = fileToTargets[file] {
return targets
}
if let fileURL = file.fileURL,
let realpath = try? resolveSymlinks(AbsolutePath(validating: fileURL.path)),
let targets = fileToTargets[DocumentURI(realpath.asURL)]
{
fileToTargets[file] = targets
return targets
}
return []
}
/// An event is relevant if it modifies a file that matches one of the file rules used by the SwiftPM workspace.
private func fileEventShouldTriggerPackageReload(event: FileEvent) -> Bool {
guard let fileURL = event.uri.fileURL else {
return false
}
switch event.type {
case .created, .deleted:
guard let buildDescription else {
return false
}
return buildDescription.fileAffectsSwiftOrClangBuildSettings(fileURL)
case .changed:
return fileURL.lastPathComponent == "Package.swift" || fileURL.lastPathComponent == "Package.resolved"
default: // Unknown file change type
return false
}
}
public func filesDidChange(_ events: [FileEvent]) async {
if events.contains(where: { self.fileEventShouldTriggerPackageReload(event: $0) }) {
logger.log("Reloading package because of file change")
await orLog("Reloading package") {
// TODO: It should not be necessary to reload the entire package just to get build settings for one file.
try await self.reloadPackage(forceResolvedVersions: !isForIndexBuild)
}
}
var filesWithUpdatedDependencies: Set<DocumentURI> = []
// If a Swift file within a target is updated, reload all the other files within the target since they might be
// referring to a function in the updated file.
for event in events {
guard event.uri.fileURL?.pathExtension == "swift", let targets = fileToTargets[event.uri] else {
continue
}
filesWithUpdatedDependencies.formUnion(targets.flatMap(\.sources).map(DocumentURI.init))
}
// If a `.swiftmodule` file is updated, this means that we have performed a build / are
// performing a build and files that depend on this module have updated dependencies.
// We don't have access to the build graph from the SwiftPM API offered to SourceKit-LSP to figure out which files
// depend on the updated module, so assume that all files have updated dependencies.
// The file watching here is somewhat fragile as well because it assumes that the `.swiftmodule` files are being
// written to a directory within the workspace root. This is not necessarily true if the user specifies a build
// directory outside the source tree.
// If we have background indexing enabled, this is not necessary because we call `fileDependenciesUpdated` when
// preparation of a target finishes.
if !isForIndexBuild, events.contains(where: { $0.uri.fileURL?.pathExtension == "swiftmodule" }) {
filesWithUpdatedDependencies.formUnion(self.fileToTargets.keys)
}
await self.fileDependenciesUpdatedDebouncer.scheduleCall(filesWithUpdatedDependencies)
}
public func fileHandlingCapability(for uri: DocumentURI) -> FileHandlingCapability {
if configuredTargets(for: uri).isEmpty {
return .unhandled
}
return .handled
}
public func sourceFiles() -> [SourceFileInfo] {
return fileToTargets.compactMap { (uri, targets) -> SourceFileInfo? in
// We should only set mayContainTests to `true` for files from test targets
// (https://github.com/swiftlang/sourcekit-lsp/issues/1174).
return SourceFileInfo(
uri: uri,
isPartOfRootProject: targets.contains(where: \.isPartOfRootPackage),
mayContainTests: true
)
}
}
public func addSourceFilesDidChangeCallback(_ callback: @Sendable @escaping () async -> Void) async {
testFilesDidChangeCallbacks.append(callback)
}
}
extension SwiftPMBuildSystem {
// MARK: Implementation details
/// Retrieve settings for a package manifest (Package.swift).
private func settings(forPackageManifest path: AbsolutePath) throws -> FileBuildSettings? {
func impl(_ path: AbsolutePath) -> FileBuildSettings? {
for package in modulesGraph.packages where path == package.manifest.path {
let compilerArgs = workspace.interpreterFlags(for: package.path) + [path.pathString]
return FileBuildSettings(compilerArguments: compilerArgs)
}
return nil
}
if let result = impl(path) {
return result
}
let canonicalPath = try resolveSymlinks(path)
return canonicalPath == path ? nil : impl(canonicalPath)
}
/// This finds the target a file belongs to based on its location in the file system.
///
/// This is primarily intended to find the target a header belongs to.
private func inferredTargets(for path: AbsolutePath) throws -> [ConfiguredTarget] {
func impl(_ path: AbsolutePath) throws -> [ConfiguredTarget] {
var dir = path.parentDirectory
while !dir.isRoot {
if let buildTargets = sourceDirToTargets[DocumentURI(dir.asURL)] {
return buildTargets.map(ConfiguredTarget.init)
}
dir = dir.parentDirectory
}
return []
}
let result = try impl(path)
if !result.isEmpty {
return result
}
let canonicalPath = try resolveSymlinks(path)
return try canonicalPath == path ? [] : impl(canonicalPath)
}
}
/// Find a Swift Package root directory that contains the given path, if any.
private func findPackageDirectory(
containing path: TSCAbsolutePath,
_ fileSystem: FileSystem
) -> TSCAbsolutePath? {
var path = path
while true {
let packagePath = path.appending(component: "Package.swift")
if fileSystem.isFile(packagePath) {
let contents = try? fileSystem.readFileContents(packagePath)
if contents?.cString.contains("PackageDescription") == true {
return path
}
}
if path.isRoot {
return nil
}
path = path.parentDirectory
}
return path
}
extension Basics.Diagnostic.Severity {
var asLogLevel: LogLevel {
switch self {
case .error, .warning: return .default
case .info: return .info
case .debug: return .debug
}
}
}
|