2020-09-01 16:53:07 +00:00
|
|
|
import * as lc from 'vscode-languageclient/node';
|
2020-02-13 20:48:20 +00:00
|
|
|
import * as vscode from 'vscode';
|
2020-06-02 20:21:48 +00:00
|
|
|
import * as ra from '../src/lsp_ext';
|
2020-09-01 16:53:07 +00:00
|
|
|
import * as Is from 'vscode-languageclient/lib/common/utils/is';
|
2020-06-02 20:21:48 +00:00
|
|
|
import { assert } from './util';
|
2019-12-31 17:14:00 +00:00
|
|
|
|
2020-06-05 12:25:01 +00:00
|
|
|
function renderCommand(cmd: ra.CommandLink) {
|
2020-06-03 11:15:54 +00:00
|
|
|
return `[${cmd.title}](command:${cmd.command}?${encodeURIComponent(JSON.stringify(cmd.arguments))} '${cmd.tooltip!}')`;
|
|
|
|
}
|
|
|
|
|
2020-06-05 12:25:01 +00:00
|
|
|
function renderHoverActions(actions: ra.CommandLinkGroup[]): vscode.MarkdownString {
|
2020-06-03 11:15:54 +00:00
|
|
|
const text = actions.map(group =>
|
|
|
|
(group.title ? (group.title + " ") : "") + group.commands.map(renderCommand).join(' | ')
|
|
|
|
).join('___');
|
|
|
|
|
|
|
|
const result = new vscode.MarkdownString(text);
|
|
|
|
result.isTrusted = true;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2020-04-25 17:52:50 +00:00
|
|
|
export function createClient(serverPath: string, cwd: string): lc.LanguageClient {
|
2019-12-31 17:14:00 +00:00
|
|
|
// '.' Is the fallback if no folder is open
|
2020-02-04 22:13:46 +00: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 17:14:00 +00:00
|
|
|
|
|
|
|
const run: lc.Executable = {
|
2020-02-14 22:42:32 +00:00
|
|
|
command: serverPath,
|
2020-03-31 09:23:18 +00:00
|
|
|
options: { cwd },
|
2019-12-31 17:14:00 +00:00
|
|
|
};
|
|
|
|
const serverOptions: lc.ServerOptions = {
|
|
|
|
run,
|
|
|
|
debug: run,
|
|
|
|
};
|
2020-02-13 20:48:20 +00:00
|
|
|
const traceOutputChannel = vscode.window.createOutputChannel(
|
2019-12-31 17:14:00 +00:00
|
|
|
'Rust Analyzer Language Server Trace',
|
|
|
|
);
|
2020-02-13 20:48:20 +00:00
|
|
|
|
2019-12-31 17:14:00 +00:00
|
|
|
const clientOptions: lc.LanguageClientOptions = {
|
|
|
|
documentSelector: [{ scheme: 'file', language: 'rust' }],
|
2020-04-02 10:47:58 +00:00
|
|
|
initializationOptions: vscode.workspace.getConfiguration("rust-analyzer"),
|
2020-07-23 05:32:54 +00:00
|
|
|
diagnosticCollectionName: "rustc",
|
2019-12-31 17:14:00 +00:00
|
|
|
traceOutputChannel,
|
2020-02-27 09:19:56 +00:00
|
|
|
middleware: {
|
2020-06-03 11:15:54 +00:00
|
|
|
async provideHover(document: vscode.TextDocument, position: vscode.Position, token: vscode.CancellationToken, _next: lc.ProvideHoverSignature) {
|
|
|
|
return client.sendRequest(lc.HoverRequest.type, client.code2ProtocolConverter.asTextDocumentPositionParams(document, position), token).then(
|
|
|
|
(result) => {
|
|
|
|
const hover = client.protocol2CodeConverter.asHover(result);
|
|
|
|
if (hover) {
|
|
|
|
const actions = (<any>result).actions;
|
|
|
|
if (actions) {
|
|
|
|
hover.contents.push(renderHoverActions(actions));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return hover;
|
|
|
|
},
|
|
|
|
(error) => {
|
2020-09-01 16:53:07 +00:00
|
|
|
client.handleFailedRequest(lc.HoverRequest.type, error, null);
|
2020-06-03 11:15:54 +00:00
|
|
|
return Promise.resolve(null);
|
|
|
|
});
|
|
|
|
},
|
2020-06-28 23:59:39 +00:00
|
|
|
// Using custom handling of CodeActions where each code action is resolved lazily
|
2020-06-02 20:21:48 +00:00
|
|
|
// That's why we are not waiting for any command or edits
|
2020-05-17 23:53:55 +00: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)[] = [];
|
2020-05-22 15:29:55 +00:00
|
|
|
const groups = new Map<string, { index: number; items: vscode.CodeAction[] }>();
|
2020-05-17 23:53:55 +00:00
|
|
|
for (const item of values) {
|
2020-06-02 20:21:48 +00:00
|
|
|
// In our case we expect to get code edits only from diagnostics
|
2020-05-17 23:53:55 +00:00
|
|
|
if (lc.CodeAction.is(item)) {
|
2020-06-02 20:21:48 +00:00
|
|
|
assert(!item.command, "We don't expect to receive commands in CodeActions");
|
2020-05-17 23:53:55 +00:00
|
|
|
const action = client.protocol2CodeConverter.asCodeAction(item);
|
2020-06-02 20:21:48 +00:00
|
|
|
result.push(action);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
assert(isCodeActionWithoutEditsAndCommands(item), "We don't expect edits or commands here");
|
2020-06-28 23:59:39 +00:00
|
|
|
const kind = client.protocol2CodeConverter.asCodeActionKind((item as any).kind);
|
|
|
|
const action = new vscode.CodeAction(item.title, kind);
|
2020-06-02 20:21:48 +00:00
|
|
|
const group = (item as any).group;
|
|
|
|
const id = (item as any).id;
|
|
|
|
const resolveParams: ra.ResolveCodeActionParams = {
|
|
|
|
id: id,
|
|
|
|
codeActionParams: params
|
|
|
|
};
|
|
|
|
action.command = {
|
|
|
|
command: "rust-analyzer.resolveCodeAction",
|
|
|
|
title: item.title,
|
|
|
|
arguments: [resolveParams],
|
|
|
|
};
|
|
|
|
if (group) {
|
|
|
|
let entry = groups.get(group);
|
|
|
|
if (!entry) {
|
|
|
|
entry = { index: result.length, items: [] };
|
|
|
|
groups.set(group, entry);
|
2020-05-22 15:29:55 +00:00
|
|
|
result.push(action);
|
|
|
|
}
|
2020-06-02 20:21:48 +00:00
|
|
|
entry.items.push(action);
|
2020-05-17 23:53:55 +00:00
|
|
|
} else {
|
2020-06-02 20:21:48 +00:00
|
|
|
result.push(action);
|
2020-05-17 23:53:55 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-22 15:29:55 +00:00
|
|
|
for (const [group, { index, items }] of groups) {
|
|
|
|
if (items.length === 1) {
|
|
|
|
result[index] = items[0];
|
|
|
|
} else {
|
|
|
|
const action = new vscode.CodeAction(group);
|
2020-06-28 23:59:39 +00:00
|
|
|
action.kind = items[0].kind;
|
2020-05-22 15:29:55 +00:00
|
|
|
action.command = {
|
|
|
|
command: "rust-analyzer.applyActionGroup",
|
|
|
|
title: "",
|
|
|
|
arguments: [items.map((item) => {
|
2020-06-02 20:21:48 +00:00
|
|
|
return { label: item.title, arguments: item.command!!.arguments!![0] };
|
2020-05-22 15:29:55 +00:00
|
|
|
})],
|
|
|
|
};
|
|
|
|
result[index] = action;
|
|
|
|
}
|
|
|
|
}
|
2020-05-17 23:53:55 +00:00
|
|
|
return result;
|
|
|
|
},
|
|
|
|
(_error) => undefined
|
|
|
|
);
|
2020-02-27 09:19:56 +00:00
|
|
|
}
|
2020-05-17 23:53:55 +00:00
|
|
|
|
2020-08-09 22:09:27 +00:00
|
|
|
}
|
2019-12-31 17:14:00 +00:00
|
|
|
};
|
|
|
|
|
2020-05-17 19:24:33 +00:00
|
|
|
const client = new lc.LanguageClient(
|
2019-12-31 17:14:00 +00:00
|
|
|
'rust-analyzer',
|
|
|
|
'Rust Analyzer Language Server',
|
|
|
|
serverOptions,
|
|
|
|
clientOptions,
|
|
|
|
);
|
|
|
|
|
2020-05-17 23:53:55 +00:00
|
|
|
// To turn on all proposed features use: client.registerProposedFeatures();
|
2020-05-22 15:29:55 +00:00
|
|
|
client.registerFeature(new ExperimentalFeatures());
|
2020-02-26 13:42:26 +00:00
|
|
|
|
2020-05-17 19:24:33 +00:00
|
|
|
return client;
|
|
|
|
}
|
|
|
|
|
2020-05-22 15:29:55 +00:00
|
|
|
class ExperimentalFeatures implements lc.StaticFeature {
|
2020-05-17 19:24:33 +00:00
|
|
|
fillClientCapabilities(capabilities: lc.ClientCapabilities): void {
|
|
|
|
const caps: any = capabilities.experimental ?? {};
|
|
|
|
caps.snippetTextEdit = true;
|
2020-05-22 15:29:55 +00:00
|
|
|
caps.codeActionGroup = true;
|
2020-06-02 20:21:48 +00:00
|
|
|
caps.resolveCodeAction = true;
|
2020-06-03 11:15:54 +00:00
|
|
|
caps.hoverActions = true;
|
2020-07-02 10:37:04 +00:00
|
|
|
caps.statusNotification = true;
|
2020-05-17 23:53:55 +00:00
|
|
|
capabilities.experimental = caps;
|
2020-05-17 19:24:33 +00:00
|
|
|
}
|
|
|
|
initialize(_capabilities: lc.ServerCapabilities<any>, _documentSelector: lc.DocumentSelector | undefined): void {
|
|
|
|
}
|
2019-12-31 17:14:00 +00:00
|
|
|
}
|
2020-05-17 23:53:55 +00:00
|
|
|
|
2020-06-02 20:21:48 +00:00
|
|
|
function isCodeActionWithoutEditsAndCommands(value: any): boolean {
|
|
|
|
const candidate: lc.CodeAction = value;
|
|
|
|
return candidate && Is.string(candidate.title) &&
|
|
|
|
(candidate.diagnostics === void 0 || Is.typedArray(candidate.diagnostics, lc.Diagnostic.is)) &&
|
|
|
|
(candidate.kind === void 0 || Is.string(candidate.kind)) &&
|
|
|
|
(candidate.edit === void 0 && candidate.command === void 0);
|
2020-05-22 15:29:55 +00:00
|
|
|
}
|