Files
sourcekit-lsp/Sources/Diagnose/RunSourcekitdRequestCommand.swift
2025-10-31 14:11:11 -07:00

156 lines
5.1 KiB
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org 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 https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
package import ArgumentParser
import Csourcekitd
import Foundation
@_spi(SourceKitLSP) import SKLogging
import SKUtilities
import SourceKitD
import SwiftExtensions
import ToolchainRegistry
import struct TSCBasic.AbsolutePath
package struct RunSourceKitdRequestCommand: AsyncParsableCommand {
package static let configuration = CommandConfiguration(
commandName: "run-sourcekitd-request",
abstract: "Run a sourcekitd request and print its result"
)
@Option(
name: .customLong("sourcekitd"),
help: """
Instead of using sourcekitd from the default toolchain, use this path to sourcekitd.framework/sourcekitd instead
"""
)
var sourcekitdPath: String?
private var sourcekitdUrl: URL? {
guard let sourcekitdPath else {
return nil
}
return URL(fileURLWithPath: sourcekitdPath)
}
@Option(
name: .customLong("sourcekit-plugin-path"),
help: """
Instead of using the SourceKit plugin from from the default toolchain, use this plugin instead
"""
)
var sourcekitPluginPath: String?
private var sourcekitPluginUrl: URL? {
guard let sourcekitPluginPath else {
return nil
}
return URL(fileURLWithPath: sourcekitPluginPath)
}
@Option(
name: .customLong("sourcekit-client-plugin-path"),
help: """
Instead of using the SourceKit client plugin from from the default toolchain, use this plugin instead.
"""
)
var sourcekitClientPluginPath: String?
private var sourcekitClientPluginUrl: URL? {
guard let sourcekitClientPluginPath else {
return nil
}
return URL(fileURLWithPath: sourcekitClientPluginPath)
}
@Option(
name: .customLong("request-file"),
help:
"Path to a JSON sourcekitd request. Multiple may be passed to run them in sequence on the same sourcekitd instance"
)
var sourcekitdRequestPaths: [String]
@Option(help: "line:column override for key.offset")
var position: String?
package init() {}
package func run() async throws {
let toolchain = await ToolchainRegistry(installPath: Bundle.main.bundleURL).default
let pluginPaths: PluginPaths?
if let clientPlugin = sourcekitClientPluginUrl ?? toolchain?.sourceKitClientPlugin,
let servicePlugin = sourcekitPluginUrl ?? toolchain?.sourceKitServicePlugin
{
pluginPaths = PluginPaths(clientPlugin: clientPlugin, servicePlugin: servicePlugin)
} else {
print("Not loading SourceKit plugin")
pluginPaths = nil
}
guard let sourcekitdPath = sourcekitdUrl ?? toolchain?.sourcekitd else {
print("Did not find sourcekitd in the toolchain. Specify path to sourcekitd manually by passing --sourcekitd")
throw ExitCode(1)
}
let sourcekitd = try await SourceKitD.getOrCreate(
dylibPath: sourcekitdPath,
pluginPaths: pluginPaths
)
var lastResponse: SKDResponse?
for sourcekitdRequestPath in sourcekitdRequestPaths {
var requestString = try String(contentsOf: URL(fileURLWithPath: sourcekitdRequestPath), encoding: .utf8)
if let lineColumn = position?.split(separator: ":", maxSplits: 2).map({ Int($0) }),
lineColumn.count == 2,
let line = lineColumn[0],
let column = lineColumn[1]
{
let requestInfo = try RequestInfo(request: requestString)
let lineTable = LineTable(requestInfo.fileContents)
let offset = lineTable.utf8OffsetOf(line: line - 1, utf8Column: column - 1)
print("Adjusting request offset to \(offset)")
requestString.replace(#/key.offset: [0-9]+/#, with: "key.offset: \(offset)")
}
let request = try requestString.cString(using: .utf8)!.withUnsafeBufferPointer { buffer in
var error: UnsafeMutablePointer<CChar>?
let req = sourcekitd.api.request_create_from_yaml(buffer.baseAddress!, &error)
if let error {
throw GenericError("Failed to parse sourcekitd request from YAML: \(String(cString: error))")
}
guard let req else {
throw GenericError("Failed to parse request from YAML but did not produce error")
}
return req
}
let response = await withCheckedContinuation { continuation in
var handle: sourcekitd_api_request_handle_t? = nil
sourcekitd.api.send_request(request, &handle) { resp in
continuation.resume(returning: SKDResponse(resp!, sourcekitd: sourcekitd))
}
}
lastResponse = response
print(response.description)
}
switch lastResponse?.error {
case .requestFailed, .requestInvalid, .requestCancelled, .timedOut, .missingRequiredSymbol:
throw ExitCode(1)
case .connectionInterrupted:
throw ExitCode(255)
case nil:
break
}
}
}