rust-analyzer/editors/code/src/client.ts

88 lines
3.7 KiB
TypeScript
Raw Normal View History

2019-12-31 17:14:00 +00:00
import * as lc from 'vscode-languageclient';
import * as vscode from 'vscode';
2019-12-31 17:14:00 +00:00
import { Config } from './config';
import { CallHierarchyFeature } from 'vscode-languageclient/lib/callHierarchy.proposed';
import { SemanticTokensFeature, DocumentSemanticsTokensSignature } from 'vscode-languageclient/lib/semanticTokens.proposed';
2019-12-31 17:14:00 +00:00
export async function createClient(config: Config, serverPath: string, cwd: string): Promise<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,
options: { cwd },
2019-12-31 17:14:00 +00:00
};
const serverOptions: lc.ServerOptions = {
run,
debug: run,
};
const traceOutputChannel = vscode.window.createOutputChannel(
2019-12-31 17:14:00 +00:00
'Rust Analyzer Language Server Trace',
);
2019-12-31 17:14:00 +00:00
const clientOptions: lc.LanguageClientOptions = {
documentSelector: [{ scheme: 'file', language: 'rust' }],
initializationOptions: vscode.workspace.getConfiguration("rust-analyzer"),
2019-12-31 17:14:00 +00:00
traceOutputChannel,
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 09:46:43 +00:00
const res = await next(document, token);
if (res === undefined) throw new Error('busy');
return res;
}
} as any
2019-12-31 17:14:00 +00:00
};
const res = new lc.LanguageClient(
'rust-analyzer',
'Rust Analyzer Language Server',
serverOptions,
clientOptions,
);
// HACK: This is an awful way of filtering out the decorations notifications
// However, pending proper support, this is the most effecitve approach
// Proper support for this would entail a change to vscode-languageclient to allow not notifying on certain messages
// Or the ability to disable the serverside component of highlighting (but this means that to do tracing we need to disable hihlighting)
// This also requires considering our settings strategy, which is work which needs doing
// @ts-ignore The tracer is private to vscode-languageclient, but we need access to it to not log publishDecorations requests
res._tracer = {
log: (messageOrDataObject: string | unknown, data?: string) => {
2019-12-31 17:14:00 +00:00
if (typeof messageOrDataObject === 'string') {
if (
messageOrDataObject.includes(
'rust-analyzer/publishDecorations',
) ||
messageOrDataObject.includes(
'rust-analyzer/decorationsRequest',
)
) {
// Don't log publish decorations requests
} else {
// @ts-ignore This is just a utility function
res.logTrace(messageOrDataObject, data);
}
} else {
// @ts-ignore
res.logObjectTrace(messageOrDataObject);
}
},
};
// To turn on all proposed features use: res.registerProposedFeatures();
// Here we want to just enable CallHierarchyFeature since it is available on stable.
// Note that while the CallHierarchyFeature is stable the LSP protocol is not.
res.registerFeature(new CallHierarchyFeature(res));
2020-02-26 15:03:30 +00:00
if (config.package.enableProposedApi) {
if (config.highlightingSemanticTokens) {
res.registerFeature(new SemanticTokensFeature(res));
}
2020-02-26 15:03:30 +00:00
}
2019-12-31 17:14:00 +00:00
return res;
}