forked from swiftlang/sourcekit-lsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftPMBuildSystem.swift
858 lines (767 loc) · 33.4 KB
/
SwiftPMBuildSystem.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
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#if !NO_SWIFTPM_DEPENDENCY
import Basics
@preconcurrency import Build
package import BuildServerProtocol
import Dispatch
package import Foundation
package import LanguageServerProtocol
import LanguageServerProtocolExtensions
@preconcurrency import PackageGraph
import PackageLoading
@preconcurrency import PackageModel
import SKLogging
package import SKOptions
@preconcurrency package import SPMBuildCore
import SourceControl
@preconcurrency package import SourceKitLSPAPI
import SwiftExtensions
import TSCExtensions
package import ToolchainRegistry
@preconcurrency import Workspace
package import struct BuildServerProtocol.SourceItem
import struct TSCBasic.AbsolutePath
import class TSCBasic.Process
package import class ToolchainRegistry.Toolchain
fileprivate typealias AbsolutePath = Basics.AbsolutePath
/// A build target in SwiftPM
package typealias SwiftBuildTarget = SourceKitLSPAPI.BuildTarget
/// A build target in `BuildServerProtocol`
package typealias BuildServerTarget = BuildServerProtocol.BuildTarget
fileprivate extension Basics.Diagnostic.Severity {
var asLogLevel: LogLevel {
switch self {
case .error, .warning: return .default
case .info: return .info
case .debug: return .debug
}
}
}
extension BuildDestinationIdentifier {
init(_ destination: BuildDestination) {
switch destination {
case .target: self = .target
case .host: self = .host
}
}
}
extension BuildTargetIdentifier {
fileprivate init(_ buildTarget: any SwiftBuildTarget) throws {
self = try Self.createSwiftPM(
target: buildTarget.name,
destination: BuildDestinationIdentifier(buildTarget.destination)
)
}
}
fileprivate extension TSCBasic.AbsolutePath {
var asURI: DocumentURI {
DocumentURI(self.asURL)
}
}
fileprivate let preparationTaskID: AtomicUInt32 = AtomicUInt32(initialValue: 0)
/// Swift Package Manager build system and workspace support.
///
/// This class implements the `BuiltInBuildSystem` 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.
package actor SwiftPMBuildSystem: BuiltInBuildSystem {
package enum Error: Swift.Error {
/// Could not determine an appropriate toolchain for swiftpm to use for manifest loading.
case cannotDetermineHostToolchain
}
// MARK: Integration with SourceKit-LSP
/// Options that allow the user to pass extra compiler flags.
private let options: SourceKitLSPOptions
private let testHooks: SwiftPMTestHooks
/// The queue on which we reload the package to ensure we don't reload it multiple times concurrently, which can cause
/// issues in SwiftPM.
private let packageLoadingQueue = AsyncQueue<Serial>()
package let connectionToSourceKitLSP: any Connection
/// Whether the `SwiftPMBuildSystem` is pointed at a `.build/index-build` directory that's independent of the
/// user's build.
private var isForIndexBuild: Bool { options.backgroundIndexingOrDefault }
// MARK: Build system options (set once and not modified)
/// The directory containing `Package.swift`.
private let projectRoot: URL
package let fileWatchers: [FileSystemWatcher]
package let toolsBuildParameters: BuildParameters
package let destinationBuildParameters: BuildParameters
private let toolchain: Toolchain
private let swiftPMWorkspace: Workspace
private let pluginConfiguration: PluginConfiguration
private let traitConfiguration: TraitConfiguration
/// A `ObservabilitySystem` from `SwiftPM` that logs.
private let observabilitySystem: ObservabilitySystem
// MARK: Build system state (modified on package reload)
/// The entry point via with we can access the `SourceKitLSPAPI` provided by SwiftPM.
private var buildDescription: SourceKitLSPAPI.BuildDescription?
/// Maps target ids to their SwiftPM build target.
private var swiftPMTargets: [BuildTargetIdentifier: SwiftBuildTarget] = [:]
private var targetDependencies: [BuildTargetIdentifier: Set<BuildTargetIdentifier>] = [:]
static package func searchForConfig(in path: URL, options: SourceKitLSPOptions) -> BuildSystemSpec? {
let packagePath = path.appendingPathComponent("Package.swift")
if (try? String(contentsOf: packagePath, encoding: .utf8))?.contains("PackageDescription") ?? false {
return BuildSystemSpec(kind: .swiftPM, projectRoot: path, configPath: packagePath)
}
return nil
}
/// Creates a build system using the Swift Package Manager, if this workspace is a package.
///
/// - Parameters:
/// - projectRoot: The directory containing `Package.swift`
/// - toolchainRegistry: The toolchain registry to use to provide the Swift compiler used for
/// manifest parsing and runtime support.
/// - Throws: If there is an error loading the package, or no manifest is found.
package init(
projectRoot: URL,
toolchainRegistry: ToolchainRegistry,
options: SourceKitLSPOptions,
connectionToSourceKitLSP: any Connection,
testHooks: SwiftPMTestHooks
) async throws {
self.projectRoot = projectRoot
self.options = options
// We could theoretically dynamically register all known files when we get back the build graph, but that seems
// more errorprone than just watching everything and then filtering when we need to (eg. in
// `SemanticIndexManager.filesDidChange`).
self.fileWatchers = [FileSystemWatcher(globPattern: "**/*", kind: [.create, .change, .delete])]
let toolchain = await toolchainRegistry.preferredToolchain(containing: [
\.clang, \.clangd, \.sourcekitd, \.swift, \.swiftc,
])
guard let toolchain else {
throw Error.cannotDetermineHostToolchain
}
self.toolchain = toolchain
self.testHooks = testHooks
self.connectionToSourceKitLSP = connectionToSourceKitLSP
// Start an open-ended log for messages that we receive during package loading. We never end this log.
let logTaskID = "swiftpm-log-\(UUID())"
connectionToSourceKitLSP.send(
OnBuildLogMessageNotification(
type: .info,
message: "",
structure: .begin(StructuredLogBegin(title: "SwiftPM log for \(projectRoot.path)", taskID: logTaskID))
)
)
self.observabilitySystem = ObservabilitySystem({ scope, diagnostic in
connectionToSourceKitLSP.send(
OnBuildLogMessageNotification(
type: .info,
message: diagnostic.description,
structure: .report(StructuredLogReport(taskID: logTaskID))
)
)
logger.log(level: diagnostic.severity.asLogLevel, "SwiftPM log: \(diagnostic.description)")
})
guard let destinationToolchainBinDir = toolchain.swiftc?.deletingLastPathComponent() else {
throw Error.cannotDetermineHostToolchain
}
let hostSDK = try SwiftSDK.hostSwiftSDK(AbsolutePath(validating: destinationToolchainBinDir.filePath))
let hostSwiftPMToolchain = try UserToolchain(swiftSDK: hostSDK)
let destinationSDK = try SwiftSDK.deriveTargetSwiftSDK(
hostSwiftSDK: hostSDK,
hostTriple: hostSwiftPMToolchain.targetTriple,
customToolsets: options.swiftPMOrDefault.toolsets?.map { try AbsolutePath(validating: $0) } ?? [],
customCompileTriple: options.swiftPMOrDefault.triple.map { try Triple($0) },
swiftSDKSelector: options.swiftPMOrDefault.swiftSDK,
store: SwiftSDKBundleStore(
swiftSDKsDirectory: localFileSystem.getSharedSwiftSDKsDirectory(
explicitDirectory: options.swiftPMOrDefault.swiftSDKsDirectory.map { try AbsolutePath(validating: $0) }
),
fileSystem: localFileSystem,
observabilityScope: observabilitySystem.topScope.makeChildScope(description: "SwiftPM Bundle Store"),
outputHandler: { _ in }
),
observabilityScope: observabilitySystem.topScope.makeChildScope(description: "Derive Target Swift SDK"),
fileSystem: localFileSystem
)
let destinationSwiftPMToolchain = try UserToolchain(swiftSDK: destinationSDK)
var location = try Workspace.Location(
forRootPackage: try AbsolutePath(validating: projectRoot.filePath),
fileSystem: localFileSystem
)
if options.backgroundIndexingOrDefault {
location.scratchDirectory = try AbsolutePath(
validating: projectRoot.appendingPathComponent(".build").appendingPathComponent("index-build").filePath
)
} else if let scratchDirectory = options.swiftPMOrDefault.scratchPath,
let scratchDirectoryPath = try? AbsolutePath(
validating: scratchDirectory,
relativeTo: AbsolutePath(validating: projectRoot.filePath)
)
{
location.scratchDirectory = scratchDirectoryPath
}
var configuration = WorkspaceConfiguration.default
configuration.skipDependenciesUpdates = !options.backgroundIndexingOrDefault
self.swiftPMWorkspace = try Workspace(
fileSystem: localFileSystem,
location: location,
configuration: configuration,
customHostToolchain: hostSwiftPMToolchain,
customManifestLoader: ManifestLoader(
toolchain: hostSwiftPMToolchain,
isManifestSandboxEnabled: !(options.swiftPMOrDefault.disableSandbox ?? false),
cacheDir: location.sharedManifestsCacheDirectory,
extraManifestFlags: options.swiftPMOrDefault.buildToolsSwiftCompilerFlags,
importRestrictions: configuration.manifestImportRestrictions
)
)
let buildConfiguration: PackageModel.BuildConfiguration
switch options.swiftPMOrDefault.configuration {
case .debug, nil:
buildConfiguration = .debug
case .release:
buildConfiguration = .release
}
let buildFlags = BuildFlags(
cCompilerFlags: options.swiftPMOrDefault.cCompilerFlags ?? [],
cxxCompilerFlags: options.swiftPMOrDefault.cxxCompilerFlags ?? [],
swiftCompilerFlags: options.swiftPMOrDefault.swiftCompilerFlags ?? [],
linkerFlags: options.swiftPMOrDefault.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,
prepareForIndexing: options.backgroundPreparationModeOrDefault.toSwiftPMPreparation
)
let pluginScriptRunner = DefaultPluginScriptRunner(
fileSystem: localFileSystem,
cacheDir: location.pluginWorkingDirectory.appending("cache"),
toolchain: hostSwiftPMToolchain,
extraPluginSwiftCFlags: options.swiftPMOrDefault.buildToolsSwiftCompilerFlags ?? [],
enableSandbox: !(options.swiftPMOrDefault.disableSandbox ?? false)
)
self.pluginConfiguration = PluginConfiguration(
scriptRunner: pluginScriptRunner,
workDirectory: location.pluginWorkingDirectory,
disableSandbox: options.swiftPMOrDefault.disableSandbox ?? false
)
self.traitConfiguration = TraitConfiguration(
enabledTraits: options.swiftPMOrDefault.traits.flatMap(Set.init)
)
packageLoadingQueue.async {
await orLog("Initial package loading") {
// Schedule an initial generation of the build graph. Once the build graph is loaded, the build system will send
// call `fileHandlingCapabilityChanged`, which allows us to move documents to a workspace with this build
// system.
try await self.reloadPackageAssumingOnPackageLoadingQueue()
}
}
}
/// Loading the build description sometimes fails non-deterministically on Windows because it's unable to write
/// `output-file-map.json`, probably due to https://github.com/swiftlang/swift-package-manager/issues/8038.
/// If this happens, retry loading the build description up to `maxLoadAttempt` times.
private func loadBuildDescriptionWithRetryOnOutputFileMapWriteErrorOnWindows(
modulesGraph: ModulesGraph,
maxLoadAttempts: Int = 5
) async throws -> (description: SourceKitLSPAPI.BuildDescription, errors: String) {
// TODO: Remove this workaround once https://github.com/swiftlang/swift-package-manager/issues/8038 is fixed.
var loadAttempt = 0
while true {
loadAttempt += 1
do {
return try await BuildDescription.load(
destinationBuildParameters: destinationBuildParameters,
toolsBuildParameters: toolsBuildParameters,
packageGraph: modulesGraph,
pluginConfiguration: pluginConfiguration,
traitConfiguration: traitConfiguration,
disableSandbox: options.swiftPMOrDefault.disableSandbox ?? false,
scratchDirectory: swiftPMWorkspace.location.scratchDirectory.asURL,
fileSystem: localFileSystem,
observabilityScope: observabilitySystem.topScope.makeChildScope(
description: "Create SwiftPM build description"
)
)
} catch let error as NSError {
#if os(Windows)
if error.domain == NSCocoaErrorDomain, error.code == CocoaError.fileWriteNoPermission.rawValue,
let url = error.userInfo["NSURL"] as? URL, url.lastPathComponent == "output-file-map.json",
loadAttempt < maxLoadAttempts
{
logger.log(
"""
Loading the build description failed to write output-file-map.json \
(attempt \(loadAttempt)/\(maxLoadAttempts)), trying again.
\(error)
"""
)
continue
}
#endif
throw error
}
}
}
/// (Re-)load the package settings by parsing the manifest and resolving all the targets and
/// dependencies.
///
/// - Important: Must only be called on `packageLoadingQueue`.
private func reloadPackageAssumingOnPackageLoadingQueue() async throws {
let signposter = logger.makeSignposter()
let signpostID = signposter.makeSignpostID()
let state = signposter.beginInterval("Reloading package", id: signpostID, "Start reloading package")
self.connectionToSourceKitLSP.send(
TaskStartNotification(
taskId: TaskId(id: "package-reloading"),
data: WorkDoneProgressTask(title: "SourceKit-LSP: Reloading Package").encodeToLSPAny()
)
)
await testHooks.reloadPackageDidStart?()
defer {
Task {
self.connectionToSourceKitLSP.send(
TaskFinishNotification(taskId: TaskId(id: "package-reloading"), status: .ok)
)
await testHooks.reloadPackageDidFinish?()
}
}
let modulesGraph = try await self.swiftPMWorkspace.loadPackageGraph(
rootInput: PackageGraphRootInput(packages: [AbsolutePath(validating: projectRoot.filePath)]),
forceResolvedVersions: !isForIndexBuild,
observabilityScope: observabilitySystem.topScope.makeChildScope(description: "Load package graph")
)
signposter.emitEvent("Finished loading modules graph", id: signpostID)
// We have a whole separate arena if we're performing background indexing. This allows us to also build and run
// plugins, without having to worry about messing up any regular build state.
let buildDescription: SourceKitLSPAPI.BuildDescription
if isForIndexBuild && !(options.swiftPMOrDefault.skipPlugins ?? false) {
let loaded = try await loadBuildDescriptionWithRetryOnOutputFileMapWriteErrorOnWindows(modulesGraph: modulesGraph)
if !loaded.errors.isEmpty {
logger.error("Loading SwiftPM description had errors: \(loaded.errors)")
}
signposter.emitEvent("Finished generating build description", id: signpostID)
buildDescription = loaded.description
} else {
let plan = try await BuildPlan(
destinationBuildParameters: destinationBuildParameters,
toolsBuildParameters: toolsBuildParameters,
graph: modulesGraph,
disableSandbox: options.swiftPMOrDefault.disableSandbox ?? false,
fileSystem: localFileSystem,
observabilityScope: observabilitySystem.topScope.makeChildScope(description: "Create SwiftPM build plan")
)
signposter.emitEvent("Finished generating build plan", id: signpostID)
buildDescription = BuildDescription(buildPlan: plan)
}
/// 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.buildDescription = buildDescription
self.swiftPMTargets = [:]
self.targetDependencies = [:]
buildDescription.traverseModules { buildTarget, parent in
let targetIdentifier = orLog("Getting build target identifier") { try BuildTargetIdentifier(buildTarget) }
guard let targetIdentifier else {
return
}
if let parent,
let parentIdentifier = orLog("Getting parent build target identifier", { try BuildTargetIdentifier(parent) })
{
self.targetDependencies[parentIdentifier, default: []].insert(targetIdentifier)
}
swiftPMTargets[targetIdentifier] = buildTarget
}
signposter.emitEvent("Finished traversing modules", id: signpostID)
connectionToSourceKitLSP.send(OnBuildTargetDidChangeNotification(changes: nil))
signposter.endInterval("Reloading package", state)
}
package nonisolated var supportsPreparationAndOutputPaths: Bool { options.backgroundIndexingOrDefault }
package var buildPath: URL {
return destinationBuildParameters.buildPath.asURL
}
package var indexStorePath: URL? {
if destinationBuildParameters.indexStoreMode == .off {
return nil
}
return destinationBuildParameters.indexStore.asURL
}
package var indexDatabasePath: URL? {
return buildPath.appendingPathComponent("index").appendingPathComponent("db")
}
private func indexUnitOutputPath(forSwiftFile uri: DocumentURI) -> String {
return uri.pseudoPath + ".o"
}
/// 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 {
struct NonFileURIError: Swift.Error, CustomStringConvertible {
let uri: DocumentURI
var description: String {
"Trying to get build settings for non-file URI: \(uri)"
}
}
throw NonFileURIError(uri: file)
}
var compilerArguments = try buildTarget.compileArguments(for: fileURL)
if buildTarget.compiler == .swift {
compilerArguments += [
// Fake an output path so that we get a different unit file for every Swift file we background index
"-index-unit-output-path", indexUnitOutputPath(forSwiftFile: file),
]
}
return compilerArguments
}
package func buildTargets(request: WorkspaceBuildTargetsRequest) async throws -> WorkspaceBuildTargetsResponse {
var targets = self.swiftPMTargets.map { (targetId, target) in
var tags: [BuildTargetTag] = []
if target.isTestTarget {
tags.append(.test)
}
if !target.isPartOfRootPackage {
tags.append(.dependency)
}
return BuildTarget(
id: targetId,
displayName: target.name,
tags: tags,
capabilities: BuildTargetCapabilities(),
// Be conservative with the languages that might be used in the target. SourceKit-LSP doesn't use this property.
languageIds: [.c, .cpp, .objective_c, .objective_cpp, .swift],
dependencies: self.targetDependencies[targetId, default: []].sorted { $0.uri.stringValue < $1.uri.stringValue },
dataKind: .sourceKit,
data: SourceKitBuildTarget(toolchain: URI(toolchain.path)).encodeToLSPAny()
)
}
targets.append(
BuildTarget(
id: .forPackageManifest,
displayName: "Package.swift",
tags: [.notBuildable],
capabilities: BuildTargetCapabilities(),
languageIds: [.swift],
dependencies: []
)
)
return WorkspaceBuildTargetsResponse(targets: targets)
}
package func buildTargetSources(request: BuildTargetSourcesRequest) async throws -> BuildTargetSourcesResponse {
var result: [SourcesItem] = []
// TODO: Query The SwiftPM build system for the document's language and add it to SourceItem.data
// (https://github.com/swiftlang/sourcekit-lsp/issues/1267)
for target in request.targets {
if target == .forPackageManifest {
let packageManifestName = #/^Package@swift-(\d+)(?:\.(\d+))?(?:\.(\d+))?.swift$/#
let versionSpecificManifests = try? FileManager.default.contentsOfDirectory(
at: projectRoot,
includingPropertiesForKeys: nil
).compactMap { (url) -> SourceItem? in
guard (try? packageManifestName.wholeMatch(in: url.lastPathComponent)) != nil else {
return nil
}
return SourceItem(
uri: DocumentURI(url),
kind: .file,
generated: false
)
}
let packageManifest = SourceItem(
uri: DocumentURI(projectRoot.appendingPathComponent("Package.swift")),
kind: .file,
generated: false
)
result.append(
SourcesItem(
target: target,
sources: [packageManifest] + (versionSpecificManifests ?? [])
)
)
}
guard let swiftPMTarget = self.swiftPMTargets[target] else {
continue
}
var sources = swiftPMTarget.sources.map { sourceItem in
let outputPath: String? =
if let outputFile = sourceItem.outputFile {
orLog("Getting file path of output file") { try outputFile.filePath }
} else if swiftPMTarget.compiler == .swift {
indexUnitOutputPath(forSwiftFile: DocumentURI(sourceItem.sourceFile))
} else {
nil
}
return SourceItem(
uri: DocumentURI(sourceItem.sourceFile),
kind: .file,
generated: false,
dataKind: .sourceKit,
data: SourceKitSourceItemData(outputPath: outputPath).encodeToLSPAny()
)
}
sources += swiftPMTarget.headers.map {
SourceItem(
uri: DocumentURI($0),
kind: .file,
generated: false,
dataKind: .sourceKit,
data: SourceKitSourceItemData(isHeader: true).encodeToLSPAny()
)
}
sources += (swiftPMTarget.resources + swiftPMTarget.ignored + swiftPMTarget.others).map {
SourceItem(
uri: DocumentURI($0),
kind: $0.isDirectory ? .directory : .file,
generated: false
)
}
result.append(SourcesItem(target: target, sources: sources))
}
return BuildTargetSourcesResponse(items: result)
}
package func sourceKitOptions(
request: TextDocumentSourceKitOptionsRequest
) async throws -> TextDocumentSourceKitOptionsResponse? {
guard let url = request.textDocument.uri.fileURL, let path = try? AbsolutePath(validating: url.filePath) else {
// We can't determine build settings for non-file URIs.
return nil
}
if request.target == .forPackageManifest {
return try settings(forPackageManifest: path)
}
guard let swiftPMTarget = self.swiftPMTargets[request.target] else {
logger.error("Did not find target \(request.target.forLogging)")
return nil
}
if !swiftPMTarget.sources.lazy.map({ DocumentURI($0.sourceFile) }).contains(request.textDocument.uri),
let substituteFile = swiftPMTarget.sources.map(\.sourceFile).sorted(by: { $0.description < $1.description }).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.
let buildSettings = FileBuildSettings(
compilerArguments: try await compilerArguments(for: DocumentURI(substituteFile), in: swiftPMTarget),
workingDirectory: try projectRoot.filePath,
language: request.language
).patching(newFile: DocumentURI(try path.asURL.realpath), originalFile: DocumentURI(substituteFile))
return TextDocumentSourceKitOptionsResponse(
compilerArguments: buildSettings.compilerArguments,
workingDirectory: buildSettings.workingDirectory
)
}
return TextDocumentSourceKitOptionsResponse(
compilerArguments: try await compilerArguments(for: request.textDocument.uri, in: swiftPMTarget),
workingDirectory: try projectRoot.filePath
)
}
package func waitForBuildSystemUpdates(request: WorkspaceWaitForBuildSystemUpdatesRequest) async -> VoidResponse {
await self.packageLoadingQueue.async {}.valuePropagatingCancellation
return VoidResponse()
}
package func prepare(request: BuildTargetPrepareRequest) async throws -> VoidResponse {
// TODO: Support preparation of multiple targets at once. (https://github.com/swiftlang/sourcekit-lsp/issues/1262)
for target in request.targets {
await orLog("Preparing") { try await prepare(singleTarget: target) }
}
return VoidResponse()
}
private func prepare(singleTarget target: BuildTargetIdentifier) async throws {
if target == .forPackageManifest {
// Nothing to prepare for package manifests.
return
}
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.forLogging)' using \(self.toolchain.identifier)")
var arguments = [
try swift.filePath, "build",
"--package-path", try projectRoot.filePath,
"--scratch-path", self.swiftPMWorkspace.location.scratchDirectory.pathString,
"--disable-index-store",
"--target", try target.swiftpmTargetProperties.target,
]
if options.swiftPMOrDefault.disableSandbox ?? false {
arguments += ["--disable-sandbox"]
}
if let configuration = options.swiftPMOrDefault.configuration {
arguments += ["-c", configuration.rawValue]
}
if let triple = options.swiftPMOrDefault.triple {
arguments += ["--triple", triple]
}
if let swiftSDKsDirectory = options.swiftPMOrDefault.swiftSDKsDirectory {
arguments += ["--swift-sdks-path", swiftSDKsDirectory]
}
if let swiftSDK = options.swiftPMOrDefault.swiftSDK {
arguments += ["--swift-sdk", swiftSDK]
}
if let traits = options.swiftPMOrDefault.traits {
arguments += ["--traits", traits.joined(separator: ",")]
}
arguments += options.swiftPMOrDefault.cCompilerFlags?.flatMap { ["-Xcc", $0] } ?? []
arguments += options.swiftPMOrDefault.cxxCompilerFlags?.flatMap { ["-Xcxx", $0] } ?? []
arguments += options.swiftPMOrDefault.swiftCompilerFlags?.flatMap { ["-Xswiftc", $0] } ?? []
arguments += options.swiftPMOrDefault.linkerFlags?.flatMap { ["-Xlinker", $0] } ?? []
arguments += options.swiftPMOrDefault.buildToolsSwiftCompilerFlags?.flatMap { ["-Xbuild-tools-swiftc", $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 taskID: TaskId = TaskId(id: "preparation-\(preparationTaskID.fetchAndIncrement())")
connectionToSourceKitLSP.send(
BuildServerProtocol.OnBuildLogMessageNotification(
type: .info,
message: "\(arguments.joined(separator: " "))",
structure: .begin(
StructuredLogBegin(
title: "Preparing \(self.swiftPMTargets[target]?.name ?? target.uri.stringValue)",
taskID: taskID.id
)
)
)
)
let stdoutHandler = PipeAsStringHandler { message in
self.connectionToSourceKitLSP.send(
BuildServerProtocol.OnBuildLogMessageNotification(
type: .info,
message: message,
structure: .report(StructuredLogReport(taskID: taskID.id))
)
)
}
let stderrHandler = PipeAsStringHandler { message in
self.connectionToSourceKitLSP.send(
BuildServerProtocol.OnBuildLogMessageNotification(
type: .info,
message: message,
structure: .report(StructuredLogReport(taskID: taskID.id))
)
)
}
let result = try await Process.run(
arguments: arguments,
workingDirectory: nil,
outputRedirection: .stream(
stdout: { @Sendable bytes in stdoutHandler.handleDataFromPipe(Data(bytes)) },
stderr: { @Sendable bytes in stderrHandler.handleDataFromPipe(Data(bytes)) }
)
)
let exitStatus = result.exitStatus.exhaustivelySwitchable
self.connectionToSourceKitLSP.send(
BuildServerProtocol.OnBuildLogMessageNotification(
type: exitStatus.isSuccess ? .info : .error,
message: "Finished with \(exitStatus.description) in \(start.duration(to: .now))",
structure: .end(StructuredLogEnd(taskID: taskID.id))
)
)
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.forLogging) 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.forLogging) signaled \(signal)")
}
case .abnormal(exception: let exception):
if !Task.isCancelled {
logger.error("Preparation of target \(target.forLogging) exited abnormally \(exception)")
}
}
}
/// 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
}
}
package func didChangeWatchedFiles(notification: OnWatchedFilesDidChangeNotification) async {
if let packageReloadTriggerEvent = notification.changes.first(where: {
self.fileEventShouldTriggerPackageReload(event: $0)
}) {
logger.log("Reloading package because \(packageReloadTriggerEvent.uri.forLogging) changed")
await packageLoadingQueue.async {
await orLog("Reloading package") {
try await self.reloadPackageAssumingOnPackageLoadingQueue()
}
}.valuePropagatingCancellation
}
}
/// Retrieve settings for a package manifest (Package.swift).
private func settings(forPackageManifest path: AbsolutePath) throws -> TextDocumentSourceKitOptionsResponse? {
let compilerArgs = try swiftPMWorkspace.interpreterFlags(for: path) + [path.pathString]
return TextDocumentSourceKitOptionsResponse(compilerArguments: compilerArgs)
}
}
fileprivate extension URL {
var isDirectory: Bool {
(try? resourceValues(forKeys: [.isDirectoryKey]))?.isDirectory == true
}
}
fileprivate extension SourceKitLSPOptions.BackgroundPreparationMode {
var toSwiftPMPreparation: BuildParameters.PrepareForIndexingMode {
switch self {
case .build:
return .off
case .noLazy:
return .noLazy
case .enabled:
return .on
}
}
}
#endif