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
|
|
|
|
|
|
|
import { Config } from './config';
|
2020-02-14 10:48:27 -06:00
|
|
|
import { CallHierarchyFeature } from 'vscode-languageclient/lib/callHierarchy.proposed';
|
2019-12-31 11:14:00 -06:00
|
|
|
|
2020-02-17 07:03:33 -06:00
|
|
|
export async function createClient(config: Config, serverPath: string): Promise<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.
|
2020-02-13 14:48:20 -06:00
|
|
|
const workspaceFolderPath = vscode.workspace.workspaceFolders?.[0]?.uri.fsPath ?? '.';
|
2019-12-31 11:14:00 -06:00
|
|
|
|
|
|
|
const run: lc.Executable = {
|
2020-02-14 16:42:32 -06:00
|
|
|
command: serverPath,
|
2020-02-04 16:13:46 -06:00
|
|
|
options: { cwd: workspaceFolderPath },
|
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-14 15:04:50 -06:00
|
|
|
const cargoWatchOpts = config.cargoWatchOptions;
|
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' }],
|
|
|
|
initializationOptions: {
|
|
|
|
publishDecorations: true,
|
|
|
|
lruCapacity: config.lruCapacity,
|
|
|
|
maxInlayHintLength: config.maxInlayHintLength,
|
2020-02-13 14:48:20 -06:00
|
|
|
cargoWatchEnable: cargoWatchOpts.enable,
|
|
|
|
cargoWatchArgs: cargoWatchOpts.arguments,
|
|
|
|
cargoWatchCommand: cargoWatchOpts.command,
|
|
|
|
cargoWatchAllTargets: cargoWatchOpts.allTargets,
|
2019-12-31 11:14:00 -06:00
|
|
|
excludeGlobs: config.excludeGlobs,
|
|
|
|
useClientWatching: config.useClientWatching,
|
|
|
|
featureFlags: config.featureFlags,
|
|
|
|
withSysroot: config.withSysroot,
|
|
|
|
cargoFeatures: config.cargoFeatures,
|
2020-02-17 02:44:58 -06:00
|
|
|
rustfmtArgs: config.rustfmtArgs,
|
2019-12-31 11:14:00 -06:00
|
|
|
},
|
|
|
|
traceOutputChannel,
|
|
|
|
};
|
|
|
|
|
|
|
|
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 = {
|
2020-02-02 14:19:59 -06:00
|
|
|
log: (messageOrDataObject: string | unknown, data?: string) => {
|
2019-12-31 11:14:00 -06: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);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
2020-02-14 10:48:27 -06:00
|
|
|
|
|
|
|
// 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));
|
2019-12-31 11:14:00 -06:00
|
|
|
return res;
|
|
|
|
}
|