2018-08-10 12:07:43 +00:00
|
|
|
import * as vscode from 'vscode';
|
|
|
|
|
2018-10-07 20:59:02 +00:00
|
|
|
import * as commands from './commands';
|
2019-12-30 19:21:25 +00:00
|
|
|
import { activateInlayHints } from './inlay_hints';
|
2019-12-31 16:22:43 +00:00
|
|
|
import { activateStatusDisplay } from './status_display';
|
2019-12-30 14:11:30 +00:00
|
|
|
import { Ctx } from './ctx';
|
2019-12-30 19:29:21 +00:00
|
|
|
import { activateHighlighting } from './highlighting';
|
2020-02-17 13:03:33 +00:00
|
|
|
import { ensureServerBinary } from './installation/server';
|
2020-02-17 13:11:01 +00:00
|
|
|
import { Config } from './config';
|
2020-02-21 14:59:46 +00:00
|
|
|
import { log } from './util';
|
2020-03-09 17:57:55 +00:00
|
|
|
import { ensureProperExtensionVersion } from './installation/extension';
|
2019-12-30 13:42:59 +00:00
|
|
|
|
2020-02-04 22:13:46 +00:00
|
|
|
let ctx: Ctx | undefined;
|
2018-08-10 12:07:43 +00:00
|
|
|
|
2019-12-08 12:41:44 +00:00
|
|
|
export async function activate(context: vscode.ExtensionContext) {
|
2020-02-24 11:32:15 +00:00
|
|
|
// Register a "dumb" onEnter command for the case where server fails to
|
|
|
|
// start.
|
|
|
|
//
|
|
|
|
// FIXME: refactor command registration code such that commands are
|
|
|
|
// **always** registered, even if the server does not start. Use API like
|
|
|
|
// this perhaps?
|
|
|
|
//
|
|
|
|
// ```TypeScript
|
|
|
|
// registerCommand(
|
|
|
|
// factory: (Ctx) => ((Ctx) => any),
|
|
|
|
// fallback: () => any = () => vscode.window.showErrorMessage(
|
|
|
|
// "rust-analyzer is not available"
|
|
|
|
// ),
|
|
|
|
// )
|
|
|
|
const defaultOnEnter = vscode.commands.registerCommand(
|
|
|
|
'rust-analyzer.onEnter',
|
|
|
|
() => vscode.commands.executeCommand('default:type', { text: '\n' }),
|
|
|
|
);
|
|
|
|
context.subscriptions.push(defaultOnEnter);
|
|
|
|
|
2020-02-17 20:09:44 +00:00
|
|
|
const config = new Config(context);
|
2019-12-30 19:07:04 +00:00
|
|
|
|
2020-03-09 18:53:01 +00:00
|
|
|
vscode.workspace.onDidChangeConfiguration(() => ensureProperExtensionVersion(config).catch(log.error));
|
2020-03-09 17:57:55 +00:00
|
|
|
|
|
|
|
// Don't await the user response here, otherwise we will block the lsp server bootstrap
|
2020-03-09 19:15:07 +00:00
|
|
|
void ensureProperExtensionVersion(config).catch(log.error);
|
2020-03-09 17:57:55 +00:00
|
|
|
|
|
|
|
const serverPath = await ensureServerBinary(config);
|
|
|
|
|
2020-02-17 13:03:33 +00:00
|
|
|
if (serverPath == null) {
|
|
|
|
throw new Error(
|
|
|
|
"Rust Analyzer Language Server is not available. " +
|
2020-02-17 13:04:32 +00:00
|
|
|
"Please, ensure its [proper installation](https://rust-analyzer.github.io/manual.html#installation)."
|
2020-02-17 13:03:33 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-02-17 12:40:20 +00:00
|
|
|
// Note: we try to start the server before we activate type hints so that it
|
|
|
|
// registers its `onDidChangeDocument` handler before us.
|
|
|
|
//
|
|
|
|
// This a horribly, horribly wrong way to deal with this problem.
|
2020-02-17 13:11:01 +00:00
|
|
|
ctx = await Ctx.create(config, context, serverPath);
|
2020-02-17 12:40:20 +00:00
|
|
|
|
|
|
|
// Commands which invokes manually via command palette, shortcut, etc.
|
2020-02-17 11:17:01 +00:00
|
|
|
ctx.registerCommand('reload', (ctx) => {
|
|
|
|
return async () => {
|
|
|
|
vscode.window.showInformationMessage('Reloading rust-analyzer...');
|
|
|
|
// @DanTup maneuver
|
|
|
|
// https://github.com/microsoft/vscode/issues/45774#issuecomment-373423895
|
2020-02-17 20:09:44 +00:00
|
|
|
await deactivate();
|
2020-02-17 11:17:01 +00:00
|
|
|
for (const sub of ctx.subscriptions) {
|
|
|
|
try {
|
|
|
|
sub.dispose();
|
|
|
|
} catch (e) {
|
2020-02-21 14:59:46 +00:00
|
|
|
log.error(e);
|
2020-02-17 11:17:01 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-17 20:09:44 +00:00
|
|
|
await activate(context);
|
|
|
|
};
|
|
|
|
});
|
2020-02-17 11:17:01 +00:00
|
|
|
|
2019-12-30 13:53:43 +00:00
|
|
|
ctx.registerCommand('analyzerStatus', commands.analyzerStatus);
|
|
|
|
ctx.registerCommand('collectGarbage', commands.collectGarbage);
|
2019-12-30 14:20:13 +00:00
|
|
|
ctx.registerCommand('matchingBrace', commands.matchingBrace);
|
2019-12-30 14:50:15 +00:00
|
|
|
ctx.registerCommand('joinLines', commands.joinLines);
|
2019-12-30 16:03:05 +00:00
|
|
|
ctx.registerCommand('parentModule', commands.parentModule);
|
2019-12-30 18:05:41 +00:00
|
|
|
ctx.registerCommand('syntaxTree', commands.syntaxTree);
|
2019-12-30 18:30:30 +00:00
|
|
|
ctx.registerCommand('expandMacro', commands.expandMacro);
|
2019-12-30 18:58:44 +00:00
|
|
|
ctx.registerCommand('run', commands.run);
|
2020-02-24 11:32:15 +00:00
|
|
|
|
|
|
|
defaultOnEnter.dispose();
|
2020-02-02 01:21:04 +00:00
|
|
|
ctx.registerCommand('onEnter', commands.onEnter);
|
2020-02-24 11:32:15 +00:00
|
|
|
|
2020-02-17 20:09:44 +00:00
|
|
|
ctx.registerCommand('ssr', commands.ssr);
|
2020-02-21 02:04:03 +00:00
|
|
|
ctx.registerCommand('serverVersion', commands.serverVersion);
|
2019-12-30 19:07:04 +00:00
|
|
|
|
|
|
|
// Internal commands which are invoked by the server.
|
|
|
|
ctx.registerCommand('runSingle', commands.runSingle);
|
2020-03-09 21:06:45 +00:00
|
|
|
ctx.registerCommand('debugSingle', commands.debugSingle);
|
2019-12-30 19:07:04 +00:00
|
|
|
ctx.registerCommand('showReferences', commands.showReferences);
|
2019-12-30 22:45:50 +00:00
|
|
|
ctx.registerCommand('applySourceChange', commands.applySourceChange);
|
2020-01-11 22:40:36 +00:00
|
|
|
ctx.registerCommand('selectAndApplySourceChange', commands.selectAndApplySourceChange);
|
2019-12-30 13:42:59 +00:00
|
|
|
|
2019-12-31 17:14:00 +00:00
|
|
|
activateStatusDisplay(ctx);
|
2019-12-31 20:13:30 +00:00
|
|
|
|
2020-02-26 15:03:30 +00:00
|
|
|
if (!ctx.config.highlightingSemanticTokens) {
|
|
|
|
activateHighlighting(ctx);
|
|
|
|
}
|
2019-12-31 17:14:00 +00:00
|
|
|
activateInlayHints(ctx);
|
2018-08-17 16:54:08 +00:00
|
|
|
}
|
|
|
|
|
2019-12-31 17:14:00 +00:00
|
|
|
export async function deactivate() {
|
|
|
|
await ctx?.client?.stop();
|
2020-02-17 11:17:01 +00:00
|
|
|
ctx = undefined;
|
2019-04-16 20:11:50 +00:00
|
|
|
}
|