2023-09-05 16:02:27 -07:00
|
|
|
import type * as LSP from 'vscode-languageserver-protocol'
|
|
|
|
import Client from './client'
|
|
|
|
import { LanguageServerPlugin } from './plugin'
|
|
|
|
import { SemanticToken, deserializeTokens } from './semantic_tokens'
|
|
|
|
|
|
|
|
// https://microsoft.github.io/language-server-protocol/specifications/specification-current/
|
|
|
|
|
|
|
|
// Client to server then server to client
|
|
|
|
interface LSPRequestMap {
|
|
|
|
initialize: [LSP.InitializeParams, LSP.InitializeResult]
|
|
|
|
'textDocument/hover': [LSP.HoverParams, LSP.Hover]
|
|
|
|
'textDocument/completion': [
|
|
|
|
LSP.CompletionParams,
|
|
|
|
LSP.CompletionItem[] | LSP.CompletionList | null
|
|
|
|
]
|
|
|
|
'textDocument/semanticTokens/full': [
|
|
|
|
LSP.SemanticTokensParams,
|
|
|
|
LSP.SemanticTokens
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Client to server
|
|
|
|
interface LSPNotifyMap {
|
|
|
|
initialized: LSP.InitializedParams
|
|
|
|
'textDocument/didChange': LSP.DidChangeTextDocumentParams
|
|
|
|
'textDocument/didOpen': LSP.DidOpenTextDocumentParams
|
|
|
|
}
|
|
|
|
|
|
|
|
// Server to client
|
|
|
|
interface LSPEventMap {
|
|
|
|
'textDocument/publishDiagnostics': LSP.PublishDiagnosticsParams
|
|
|
|
}
|
|
|
|
|
|
|
|
export type Notification = {
|
|
|
|
[key in keyof LSPEventMap]: {
|
|
|
|
jsonrpc: '2.0'
|
|
|
|
id?: null | undefined
|
|
|
|
method: key
|
|
|
|
params: LSPEventMap[key]
|
|
|
|
}
|
|
|
|
}[keyof LSPEventMap]
|
|
|
|
|
|
|
|
export interface LanguageServerClientOptions {
|
|
|
|
client: Client
|
|
|
|
}
|
|
|
|
|
|
|
|
export class LanguageServerClient {
|
|
|
|
private client: Client
|
|
|
|
|
|
|
|
public ready: boolean
|
|
|
|
|
|
|
|
private plugins: LanguageServerPlugin[]
|
|
|
|
|
|
|
|
public initializePromise: Promise<void>
|
|
|
|
|
|
|
|
private isUpdatingSemanticTokens: boolean = false
|
|
|
|
private semanticTokens: SemanticToken[] = []
|
|
|
|
|
|
|
|
constructor(options: LanguageServerClientOptions) {
|
|
|
|
this.plugins = []
|
|
|
|
this.client = options.client
|
|
|
|
|
|
|
|
this.ready = false
|
|
|
|
|
|
|
|
this.initializePromise = this.initialize()
|
|
|
|
}
|
|
|
|
|
|
|
|
async initialize() {
|
|
|
|
// Start the client in the background.
|
2024-01-31 10:17:24 +01:00
|
|
|
await this.client.start()
|
2023-09-05 16:02:27 -07:00
|
|
|
|
|
|
|
this.ready = true
|
|
|
|
}
|
|
|
|
|
|
|
|
getServerCapabilities(): LSP.ServerCapabilities<any> {
|
|
|
|
return this.client.getServerCapabilities()
|
|
|
|
}
|
|
|
|
|
|
|
|
close() {}
|
|
|
|
|
|
|
|
textDocumentDidOpen(params: LSP.DidOpenTextDocumentParams) {
|
|
|
|
this.notify('textDocument/didOpen', params)
|
|
|
|
|
2024-01-31 10:17:24 +01:00
|
|
|
void this.updateSemanticTokens(params.textDocument.uri)
|
2023-09-05 16:02:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
textDocumentDidChange(params: LSP.DidChangeTextDocumentParams) {
|
|
|
|
this.notify('textDocument/didChange', params)
|
2024-01-31 10:17:24 +01:00
|
|
|
void this.updateSemanticTokens(params.textDocument.uri)
|
2023-09-05 16:02:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
async updateSemanticTokens(uri: string) {
|
|
|
|
// Make sure we can only run, if we aren't already running.
|
|
|
|
if (!this.isUpdatingSemanticTokens) {
|
|
|
|
this.isUpdatingSemanticTokens = true
|
|
|
|
|
|
|
|
const result = await this.request('textDocument/semanticTokens/full', {
|
|
|
|
textDocument: {
|
|
|
|
uri,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
this.semanticTokens = deserializeTokens(
|
|
|
|
result.data,
|
|
|
|
this.getServerCapabilities().semanticTokensProvider
|
|
|
|
)
|
|
|
|
|
|
|
|
this.isUpdatingSemanticTokens = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
getSemanticTokens(): SemanticToken[] {
|
|
|
|
return this.semanticTokens
|
|
|
|
}
|
|
|
|
|
|
|
|
async textDocumentHover(params: LSP.HoverParams) {
|
|
|
|
return await this.request('textDocument/hover', params)
|
|
|
|
}
|
|
|
|
|
|
|
|
async textDocumentCompletion(params: LSP.CompletionParams) {
|
|
|
|
return await this.request('textDocument/completion', params)
|
|
|
|
}
|
|
|
|
|
|
|
|
attachPlugin(plugin: LanguageServerPlugin) {
|
|
|
|
this.plugins.push(plugin)
|
|
|
|
}
|
|
|
|
|
|
|
|
detachPlugin(plugin: LanguageServerPlugin) {
|
|
|
|
const i = this.plugins.indexOf(plugin)
|
|
|
|
if (i === -1) return
|
|
|
|
this.plugins.splice(i, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
private request<K extends keyof LSPRequestMap>(
|
|
|
|
method: K,
|
|
|
|
params: LSPRequestMap[K][0]
|
|
|
|
): Promise<LSPRequestMap[K][1]> {
|
|
|
|
return this.client.request(method, params) as Promise<LSPRequestMap[K][1]>
|
|
|
|
}
|
|
|
|
|
|
|
|
private notify<K extends keyof LSPNotifyMap>(
|
|
|
|
method: K,
|
|
|
|
params: LSPNotifyMap[K]
|
|
|
|
): void {
|
|
|
|
return this.client.notify(method, params)
|
|
|
|
}
|
|
|
|
|
|
|
|
private processNotification(notification: Notification) {
|
|
|
|
for (const plugin of this.plugins) plugin.processNotification(notification)
|
|
|
|
}
|
|
|
|
}
|