mirror of
https://github.com/apple/sourcekit-lsp.git
synced 2026-03-02 18:23:24 +01:00
CMake was previously doing this itself before 4.0, but seems to be inserting `/usr/bin/*` now. Resolve the `/usr/bin` trampoline ourselves in a similar fashion to swiftly (but with xcrun). Resolves rdar://163462990.
60 lines
2.4 KiB
Swift
60 lines
2.4 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
public import Csourcekitd
|
|
import Foundation
|
|
@_spi(SourceKitLSP) import SKLogging
|
|
import SourceKitD
|
|
import SwiftExtensions
|
|
import SwiftSourceKitPluginCommon
|
|
|
|
/// Legacy plugin initialization logic in which sourcekitd does not inform the plugin about the sourcekitd path it was
|
|
/// loaded from.
|
|
@_cdecl("sourcekitd_plugin_initialize")
|
|
public func sourcekitd_plugin_initialize(_ params: sourcekitd_api_plugin_initialize_params_t) {
|
|
LoggingScope.configureDefaultLoggingSubsystem("org.swift.sourcekit-lsp.client-plugin")
|
|
logger.fault("sourcekitd_plugin_initialize has been removed in favor of sourcekitd_plugin_initialize_2")
|
|
}
|
|
|
|
@_cdecl("sourcekitd_plugin_initialize_2")
|
|
public func sourcekitd_plugin_initialize_2(
|
|
_ params: sourcekitd_api_plugin_initialize_params_t,
|
|
_ sourcekitdPath: UnsafePointer<CChar>
|
|
) {
|
|
let pluginPath = URL(fileURLWithPath: String(cString: sourcekitdPath))
|
|
|
|
if SourceKitD.isPluginLoaded {
|
|
// When `DYLD_(FRAMEWORK|LIBRARY)_PATH` is set, `dlopen` will first check if the basename of the provided path is
|
|
// within any of its search paths. Thus it's possible that only a single library is loaded for each toolchain,
|
|
// rather than a separate like we expect. The paths should be equal in this case, since the client plugin is loaded
|
|
// based on the path of `sourcekitd.framework` (and we should only have one for the same reason). Allow this case
|
|
// and just avoid re-initializing.
|
|
precondition(SourceKitD.forPlugin.path == pluginPath)
|
|
return
|
|
}
|
|
|
|
SourceKitD.forPlugin = try! SourceKitD(
|
|
dylib: pluginPath,
|
|
pluginPaths: nil,
|
|
initialize: false
|
|
)
|
|
let sourcekitd = SourceKitD.forPlugin
|
|
|
|
let customBufferStart = sourcekitd.pluginApi.plugin_initialize_custom_buffer_start(params)
|
|
let arrayBuffKind = customBufferStart
|
|
sourcekitd.pluginApi.plugin_initialize_register_custom_buffer(
|
|
params,
|
|
arrayBuffKind,
|
|
CompletionResultsArray.arrayFuncs.rawValue
|
|
)
|
|
}
|