Files
sourcekit-lsp/Sources/SourceKitD/SourceKitD.swift
Alex Hoppen 47e7a13ce6 Emit signposts for request handling
This allows you to trace sourcekit-lsp in Instruments to get a feeling for how long requests take to be handled.
2023-10-30 13:53:59 -07:00

122 lines
3.8 KiB
Swift

//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
@_exported import Csourcekitd
import Dispatch
import Foundation
import LSPLogging
import SKSupport
/// Access to sourcekitd API, taking care of initialization, shutdown, and notification handler
/// multiplexing.
///
/// *Users* of this protocol should not call the api functions `initialize`, `shutdown`, or
/// `set_notification_handler`, which are global state managed internally by this class.
///
/// *Implementors* are expected to handle initialization and shutdown, e.g. during `init` and
/// `deinit` or by wrapping an existing sourcekitd session that outlives this object.
public protocol SourceKitD: AnyObject {
/// The sourcekitd API functions.
var api: sourcekitd_functions_t { get }
/// Convenience for accessing known keys.
var keys: sourcekitd_keys { get }
/// Convenience for accessing known keys.
var requests: sourcekitd_requests { get }
/// Convenience for accessing known keys.
var values: sourcekitd_values { get }
/// Adds a new notification handler, which will be weakly referenced.
func addNotificationHandler(_ handler: SKDNotificationHandler)
/// Removes a previously registered notification handler.
func removeNotificationHandler(_ handler: SKDNotificationHandler)
}
public enum SKDError: Error, Equatable {
/// The service has crashed.
case connectionInterrupted
/// The request was unknown or had an invalid or missing parameter.
case requestInvalid(String)
/// The request failed.
case requestFailed(String)
/// The request was cancelled.
case requestCancelled
/// Loading a required symbol from the sourcekitd library failed.
case missingRequiredSymbol(String)
}
extension SourceKitD {
// MARK: - Convenience API for requests.
public func send(_ req: SKDRequestDictionary) async throws -> SKDResponseDictionary {
logRequest(req)
let signposter = logger.makeSignposter()
let signpostID = signposter.makeSignpostID()
let signposterState = signposter.beginInterval("sourcekitd-request", id: signpostID, "Start")
let sourcekitdResponse: SKDResponse = try await withCancellableCheckedThrowingContinuation { continuation in
var handle: sourcekitd_request_handle_t? = nil
api.send_request(req.dict, &handle) { _resp in
continuation.resume(returning: SKDResponse(_resp, sourcekitd: self))
}
return handle
} cancel: { handle in
api.cancel_request(handle)
}
logResponse(sourcekitdResponse)
guard let dict = sourcekitdResponse.value else {
signposter.endInterval("sourcekitd-request", signposterState, "Error")
throw sourcekitdResponse.error!
}
signposter.endInterval("sourcekitd-request", signposterState, "Done")
return dict
}
}
private func logRequest(_ request: SKDRequestDictionary) {
// FIXME: Ideally we could log the request key here at the info level but the dictionary is
// readonly.
logger.log(
"""
Sending sourcekitd request:
\(request.forLogging)
"""
)
}
private func logResponse(_ response: SKDResponse) {
logger.log(
level: (response.error == nil || response.error == .requestCancelled) ? .debug : .error,
"""
Received sourcekitd response:
\(response.forLogging)
"""
)
}
/// A sourcekitd notification handler in a class to allow it to be uniquely referenced.
public protocol SKDNotificationHandler: AnyObject {
func notification(_: SKDResponse) -> Void
}