mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-06-24 12:21:58 +02:00
4fa1b30d52
Add computed properties to `SymbolLocation` that centralise the index-to-LSP coordinate conversion: - `uri: DocumentURI?` — returns nil when `path` is empty. - `lspPosition: Position` — converts the 1-based line/utf8Column to a 0-based LSP Position, using UTF-8 column as a UTF-16 approximation. - `lspLocation: Location?` — wraps `documentUri` + `lspPosition` into an LSP Location, returning nil when `path` is empty. Update all call sites.
140 lines
5.1 KiB
Swift
140 lines
5.1 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2026 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
package import IndexStoreDB
|
|
@_spi(SourceKitLSP) package import LanguageServerProtocol
|
|
@_spi(SourceKitLSP) import SKLogging
|
|
package import SemanticIndex
|
|
|
|
/// The result of looking up definition locations for a symbol.
|
|
package struct DefinitionLocationsResult {
|
|
/// The locations of the symbol's definition.
|
|
package let locations: [Location]
|
|
/// The occurrences from the index lookup, if any. Can be used by callers to avoid duplicate index lookups.
|
|
package let indexOccurrences: [SymbolOccurrence]
|
|
|
|
package init(locations: [Location], indexOccurrences: [SymbolOccurrence] = []) {
|
|
self.locations = locations
|
|
self.indexOccurrences = indexOccurrences
|
|
}
|
|
}
|
|
|
|
/// Return the locations for jump to definition from the given `SymbolDetails`.
|
|
package func definitionLocations(
|
|
for symbol: SymbolDetails,
|
|
originatorUri: DocumentURI,
|
|
index: CheckedIndex?,
|
|
languageService: any LanguageService
|
|
) async throws -> DefinitionLocationsResult {
|
|
// If this symbol is a module then generate a textual interface
|
|
if symbol.kind == .module {
|
|
// For module symbols, prefer using systemModule information if available
|
|
let moduleName: String
|
|
let groupName: String?
|
|
|
|
if let systemModule = symbol.systemModule {
|
|
moduleName = systemModule.moduleName
|
|
groupName = systemModule.groupName
|
|
} else if let name = symbol.name {
|
|
moduleName = name
|
|
groupName = nil
|
|
} else {
|
|
return DefinitionLocationsResult(locations: [])
|
|
}
|
|
|
|
let location = try await definitionInInterface(
|
|
moduleName: moduleName,
|
|
groupName: groupName,
|
|
symbolUSR: nil,
|
|
originatorUri: originatorUri,
|
|
languageService: languageService
|
|
)
|
|
return DefinitionLocationsResult(locations: [location])
|
|
}
|
|
|
|
// System symbols use generated interface
|
|
if symbol.isSystem ?? false, let systemModule = symbol.systemModule {
|
|
let location = try await definitionInInterface(
|
|
moduleName: systemModule.moduleName,
|
|
groupName: systemModule.groupName,
|
|
symbolUSR: symbol.usr,
|
|
originatorUri: originatorUri,
|
|
languageService: languageService
|
|
)
|
|
return DefinitionLocationsResult(locations: [location])
|
|
}
|
|
|
|
guard let index else {
|
|
if let bestLocalDeclaration = symbol.bestLocalDeclaration {
|
|
return DefinitionLocationsResult(locations: [bestLocalDeclaration])
|
|
}
|
|
return DefinitionLocationsResult(locations: [])
|
|
}
|
|
|
|
guard let usr = symbol.usr else { return DefinitionLocationsResult(locations: []) }
|
|
logger.info("Performing indexed jump-to-definition with USR \(usr)")
|
|
|
|
let occurrences = try index.definitionOrDeclarationOccurrences(ofUSR: usr)
|
|
|
|
if occurrences.isEmpty {
|
|
if let bestLocalDeclaration = symbol.bestLocalDeclaration {
|
|
return DefinitionLocationsResult(locations: [bestLocalDeclaration])
|
|
}
|
|
// Fallback: The symbol was not found in the index. This often happens with
|
|
// third-party binary frameworks or libraries where indexing data is missing.
|
|
// If module info is available, fallback to generating the textual interface.
|
|
if let systemModule = symbol.systemModule {
|
|
let location = try await definitionInInterface(
|
|
moduleName: systemModule.moduleName,
|
|
groupName: systemModule.groupName,
|
|
symbolUSR: symbol.usr,
|
|
originatorUri: originatorUri,
|
|
languageService: languageService
|
|
)
|
|
return DefinitionLocationsResult(locations: [location])
|
|
}
|
|
}
|
|
|
|
return DefinitionLocationsResult(
|
|
locations: occurrences.compactMap { $0.location.lspLocation }.sorted(),
|
|
indexOccurrences: occurrences
|
|
)
|
|
}
|
|
|
|
/// Generate the generated interface for the given module, write it to disk and return the location to which to jump
|
|
/// to get to the definition of `symbolUSR`.
|
|
///
|
|
/// `originatorUri` is the URI of the file from which the definition request is performed. It is used to determine the
|
|
/// compiler arguments to generate the generated interface.
|
|
package func definitionInInterface(
|
|
moduleName: String,
|
|
groupName: String?,
|
|
symbolUSR: String?,
|
|
originatorUri: DocumentURI,
|
|
languageService: any LanguageService
|
|
) async throws -> Location {
|
|
let documentForBuildSettings = originatorUri.buildSettingsFile
|
|
|
|
guard
|
|
let interfaceDetails = try await languageService.openGeneratedInterface(
|
|
document: documentForBuildSettings,
|
|
moduleName: moduleName,
|
|
groupName: groupName,
|
|
symbolUSR: symbolUSR
|
|
)
|
|
else {
|
|
throw ResponseError.unknown("Could not generate Swift Interface for \(moduleName)")
|
|
}
|
|
let position = interfaceDetails.position ?? Position(line: 0, utf16index: 0)
|
|
return Location(uri: interfaceDetails.uri, range: Range(position))
|
|
}
|