2019-12-31 11:14:00 -06:00
|
|
|
import * as lc from 'vscode-languageclient';
|
2020-02-13 14:48:20 -06:00
|
|
|
import * as vscode from 'vscode';
|
2019-12-31 11:14:00 -06:00
|
|
|
|
2020-02-14 10:48:27 -06:00
|
|
|
import { CallHierarchyFeature } from 'vscode-languageclient/lib/callHierarchy.proposed';
|
2020-02-27 03:19:56 -06:00
|
|
|
import { SemanticTokensFeature, DocumentSemanticsTokensSignature } from 'vscode-languageclient/lib/semanticTokens.proposed';
|
2019-12-31 11:14:00 -06:00
|
|
|
|
2020-04-25 12:52:50 -05:00
|
|
|
export function createClient(serverPath: string, cwd: string): lc.LanguageClient {
|
2019-12-31 11:14:00 -06:00
|
|
|
// '.' Is the fallback if no folder is open
|
2020-02-04 16:13:46 -06:00
|
|
|
// TODO?: Workspace folders support Uri's (eg: file://test.txt).
|
|
|
|
// It might be a good idea to test if the uri points to a file.
|
2019-12-31 11:14:00 -06:00
|
|
|
|
|
|
|
const run: lc.Executable = {
|
2020-02-14 16:42:32 -06:00
|
|
|
command: serverPath,
|
2020-03-31 04:23:18 -05:00
|
|
|
options: { cwd },
|
2019-12-31 11:14:00 -06:00
|
|
|
};
|
|
|
|
const serverOptions: lc.ServerOptions = {
|
|
|
|
run,
|
|
|
|
debug: run,
|
|
|
|
};
|
2020-02-13 14:48:20 -06:00
|
|
|
const traceOutputChannel = vscode.window.createOutputChannel(
|
2019-12-31 11:14:00 -06:00
|
|
|
'Rust Analyzer Language Server Trace',
|
|
|
|
);
|
2020-02-13 14:48:20 -06:00
|
|
|
|
2019-12-31 11:14:00 -06:00
|
|
|
const clientOptions: lc.LanguageClientOptions = {
|
|
|
|
documentSelector: [{ scheme: 'file', language: 'rust' }],
|
2020-04-02 05:47:58 -05:00
|
|
|
initializationOptions: vscode.workspace.getConfiguration("rust-analyzer"),
|
2019-12-31 11:14:00 -06:00
|
|
|
traceOutputChannel,
|
2020-02-27 03:19:56 -06:00
|
|
|
middleware: {
|
|
|
|
// Workaround for https://github.com/microsoft/vscode-languageserver-node/issues/576
|
|
|
|
async provideDocumentSemanticTokens(document: vscode.TextDocument, token: vscode.CancellationToken, next: DocumentSemanticsTokensSignature) {
|
2020-02-27 03:46:43 -06:00
|
|
|
const res = await next(document, token);
|
2020-02-27 03:19:56 -06:00
|
|
|
if (res === undefined) throw new Error('busy');
|
|
|
|
return res;
|
2020-05-17 18:53:55 -05:00
|
|
|
},
|
|
|
|
async provideCodeActions(document: vscode.TextDocument, range: vscode.Range, context: vscode.CodeActionContext, token: vscode.CancellationToken, _next: lc.ProvideCodeActionsSignature) {
|
|
|
|
const params: lc.CodeActionParams = {
|
|
|
|
textDocument: client.code2ProtocolConverter.asTextDocumentIdentifier(document),
|
|
|
|
range: client.code2ProtocolConverter.asRange(range),
|
|
|
|
context: client.code2ProtocolConverter.asCodeActionContext(context)
|
|
|
|
};
|
|
|
|
return client.sendRequest(lc.CodeActionRequest.type, params, token).then((values) => {
|
|
|
|
if (values === null) return undefined;
|
|
|
|
const result: (vscode.CodeAction | vscode.Command)[] = [];
|
|
|
|
for (const item of values) {
|
|
|
|
if (lc.CodeAction.is(item)) {
|
|
|
|
const action = client.protocol2CodeConverter.asCodeAction(item);
|
|
|
|
if (isSnippetEdit(item)) {
|
|
|
|
action.command = {
|
|
|
|
command: "rust-analyzer.applySnippetWorkspaceEdit",
|
|
|
|
title: "",
|
|
|
|
arguments: [action.edit],
|
|
|
|
};
|
|
|
|
action.edit = undefined;
|
|
|
|
}
|
|
|
|
result.push(action);
|
|
|
|
} else {
|
|
|
|
const command = client.protocol2CodeConverter.asCommand(item);
|
|
|
|
result.push(command);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
(_error) => undefined
|
|
|
|
);
|
2020-02-27 03:19:56 -06:00
|
|
|
}
|
2020-05-17 18:53:55 -05:00
|
|
|
|
2020-02-27 03:19:56 -06:00
|
|
|
} as any
|
2019-12-31 11:14:00 -06:00
|
|
|
};
|
|
|
|
|
2020-05-17 14:24:33 -05:00
|
|
|
const client = new lc.LanguageClient(
|
2019-12-31 11:14:00 -06:00
|
|
|
'rust-analyzer',
|
|
|
|
'Rust Analyzer Language Server',
|
|
|
|
serverOptions,
|
|
|
|
clientOptions,
|
|
|
|
);
|
|
|
|
|
2020-05-17 18:53:55 -05:00
|
|
|
// To turn on all proposed features use: client.registerProposedFeatures();
|
2020-04-08 14:45:39 -05:00
|
|
|
// Here we want to enable CallHierarchyFeature and SemanticTokensFeature
|
|
|
|
// since they are available on stable.
|
|
|
|
// Note that while these features are stable in vscode their LSP protocol
|
|
|
|
// implementations are still in the "proposed" category for 3.16.
|
2020-05-17 14:24:33 -05:00
|
|
|
client.registerFeature(new CallHierarchyFeature(client));
|
|
|
|
client.registerFeature(new SemanticTokensFeature(client));
|
|
|
|
client.registerFeature(new SnippetTextEditFeature());
|
2020-02-26 07:42:26 -06:00
|
|
|
|
2020-05-17 14:24:33 -05:00
|
|
|
return client;
|
|
|
|
}
|
|
|
|
|
|
|
|
class SnippetTextEditFeature implements lc.StaticFeature {
|
|
|
|
fillClientCapabilities(capabilities: lc.ClientCapabilities): void {
|
|
|
|
const caps: any = capabilities.experimental ?? {};
|
|
|
|
caps.snippetTextEdit = true;
|
2020-05-17 18:53:55 -05:00
|
|
|
capabilities.experimental = caps;
|
2020-05-17 14:24:33 -05:00
|
|
|
}
|
|
|
|
initialize(_capabilities: lc.ServerCapabilities<any>, _documentSelector: lc.DocumentSelector | undefined): void {
|
|
|
|
}
|
2019-12-31 11:14:00 -06:00
|
|
|
}
|
2020-05-17 18:53:55 -05:00
|
|
|
|
|
|
|
function isSnippetEdit(action: lc.CodeAction): boolean {
|
|
|
|
const documentChanges = action.edit?.documentChanges ?? [];
|
|
|
|
for (const edit of documentChanges) {
|
|
|
|
if (lc.TextDocumentEdit.is(edit)) {
|
|
|
|
if (edit.edits.some((indel) => (indel as any).insertTextFormat === lc.InsertTextFormat.Snippet)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|