2019-03-18 15:16:20 -05:00
|
|
|
import { exec } from 'child_process';
|
2019-03-18 14:50:52 -05:00
|
|
|
import * as util from 'util';
|
2018-08-10 07:07:43 -05:00
|
|
|
import * as vscode from 'vscode';
|
2018-10-08 13:55:22 -05:00
|
|
|
import * as lc from 'vscode-languageclient';
|
2018-08-10 07:07:43 -05:00
|
|
|
|
2018-10-07 15:59:02 -05:00
|
|
|
import * as commands from './commands';
|
2019-03-18 14:50:52 -05:00
|
|
|
import { autoCargoWatchTask, createTask } from './commands/runnables';
|
2019-03-03 13:54:51 -06:00
|
|
|
import { SyntaxTreeContentProvider } from './commands/syntaxTree';
|
2018-10-07 15:59:02 -05:00
|
|
|
import * as events from './events';
|
2018-10-08 13:55:22 -05:00
|
|
|
import * as notifications from './notifications';
|
2018-10-07 15:59:02 -05:00
|
|
|
import { Server } from './server';
|
2018-08-10 07:07:43 -05:00
|
|
|
|
|
|
|
export function activate(context: vscode.ExtensionContext) {
|
2018-10-07 15:44:25 -05:00
|
|
|
function disposeOnDeactivation(disposable: vscode.Disposable) {
|
2018-08-10 07:07:43 -05:00
|
|
|
context.subscriptions.push(disposable);
|
|
|
|
}
|
2018-08-22 02:18:58 -05:00
|
|
|
|
2018-10-07 15:44:25 -05:00
|
|
|
function registerCommand(name: string, f: any) {
|
2018-10-07 15:59:02 -05:00
|
|
|
disposeOnDeactivation(vscode.commands.registerCommand(name, f));
|
2018-10-07 15:44:25 -05:00
|
|
|
}
|
2018-10-09 08:00:20 -05:00
|
|
|
function overrideCommand(
|
|
|
|
name: string,
|
2018-10-09 15:56:15 -05:00
|
|
|
f: (...args: any[]) => Promise<boolean>
|
2018-10-09 08:00:20 -05:00
|
|
|
) {
|
|
|
|
const defaultCmd = `default:${name}`;
|
2018-10-12 01:59:12 -05:00
|
|
|
const original = (...args: any[]) =>
|
|
|
|
vscode.commands.executeCommand(defaultCmd, ...args);
|
2018-10-09 15:56:15 -05:00
|
|
|
|
2018-12-22 07:26:18 -06:00
|
|
|
try {
|
|
|
|
registerCommand(name, async (...args: any[]) => {
|
|
|
|
const editor = vscode.window.activeTextEditor;
|
|
|
|
if (
|
|
|
|
!editor ||
|
|
|
|
!editor.document ||
|
|
|
|
editor.document.languageId !== 'rust'
|
|
|
|
) {
|
|
|
|
return await original(...args);
|
|
|
|
}
|
|
|
|
if (!(await f(...args))) {
|
|
|
|
return await original(...args);
|
|
|
|
}
|
|
|
|
});
|
2019-01-12 17:49:07 -06:00
|
|
|
} catch (_) {
|
|
|
|
vscode.window.showWarningMessage(
|
|
|
|
'Enhanced typing feature is disabled because of incompatibility with VIM extension'
|
|
|
|
);
|
2018-12-22 07:26:18 -06:00
|
|
|
}
|
2018-10-09 08:00:20 -05:00
|
|
|
}
|
2018-08-27 12:58:38 -05:00
|
|
|
|
2018-10-08 13:55:22 -05:00
|
|
|
// Commands are requests from vscode to the language server
|
2019-01-25 07:10:34 -06:00
|
|
|
registerCommand(
|
2019-01-28 05:43:07 -06:00
|
|
|
'rust-analyzer.analyzerStatus',
|
2019-01-25 07:10:34 -06:00
|
|
|
commands.analyzerStatus.makeCommand(context)
|
|
|
|
);
|
2019-01-28 05:43:07 -06:00
|
|
|
registerCommand('rust-analyzer.collectGarbage', () =>
|
|
|
|
Server.client.sendRequest<null>('rust-analyzer/collectGarbage', null)
|
2019-01-25 10:11:58 -06:00
|
|
|
);
|
2018-10-08 16:38:33 -05:00
|
|
|
registerCommand(
|
2019-01-28 05:43:07 -06:00
|
|
|
'rust-analyzer.extendSelection',
|
|
|
|
commands.extendSelection.handle
|
|
|
|
);
|
|
|
|
registerCommand(
|
|
|
|
'rust-analyzer.matchingBrace',
|
|
|
|
commands.matchingBrace.handle
|
|
|
|
);
|
|
|
|
registerCommand('rust-analyzer.joinLines', commands.joinLines.handle);
|
|
|
|
registerCommand('rust-analyzer.parentModule', commands.parentModule.handle);
|
|
|
|
registerCommand('rust-analyzer.run', commands.runnables.handle);
|
|
|
|
// Unlike the above this does not send requests to the language server
|
|
|
|
registerCommand('rust-analyzer.runSingle', commands.runnables.handleSingle);
|
|
|
|
registerCommand(
|
|
|
|
'rust-analyzer.applySourceChange',
|
2018-10-08 16:38:33 -05:00
|
|
|
commands.applySourceChange.handle
|
|
|
|
);
|
2019-02-01 07:44:23 -06:00
|
|
|
registerCommand(
|
|
|
|
'rust-analyzer.showReferences',
|
|
|
|
(uri: string, position: lc.Position, locations: lc.Location[]) => {
|
|
|
|
vscode.commands.executeCommand(
|
|
|
|
'editor.action.showReferences',
|
|
|
|
vscode.Uri.parse(uri),
|
|
|
|
Server.client.protocol2CodeConverter.asPosition(position),
|
|
|
|
locations.map(Server.client.protocol2CodeConverter.asLocation)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2019-02-07 04:37:36 -06:00
|
|
|
if (Server.config.enableEnhancedTyping) {
|
|
|
|
overrideCommand('type', commands.onEnter.handle);
|
|
|
|
}
|
2018-08-10 13:13:39 -05:00
|
|
|
|
2018-10-08 13:55:22 -05:00
|
|
|
// Notifications are events triggered by the language server
|
2018-10-08 16:38:33 -05:00
|
|
|
const allNotifications: Iterable<
|
|
|
|
[string, lc.GenericNotificationHandler]
|
2019-01-28 05:43:07 -06:00
|
|
|
> = [
|
2019-03-18 14:50:52 -05:00
|
|
|
[
|
|
|
|
'rust-analyzer/publishDecorations',
|
|
|
|
notifications.publishDecorations.handle
|
|
|
|
]
|
|
|
|
];
|
2019-03-03 14:03:37 -06:00
|
|
|
const syntaxTreeContentProvider = new SyntaxTreeContentProvider();
|
2018-10-08 13:55:22 -05:00
|
|
|
|
|
|
|
// The events below are plain old javascript events, triggered and handled by vscode
|
2018-10-08 16:38:33 -05:00
|
|
|
vscode.window.onDidChangeActiveTextEditor(
|
2019-03-03 14:03:37 -06:00
|
|
|
events.changeActiveTextEditor.makeHandler(syntaxTreeContentProvider)
|
2018-10-08 16:38:33 -05:00
|
|
|
);
|
2018-10-08 13:55:22 -05:00
|
|
|
|
2018-10-08 16:38:33 -05:00
|
|
|
disposeOnDeactivation(
|
|
|
|
vscode.workspace.registerTextDocumentContentProvider(
|
2019-01-28 05:43:07 -06:00
|
|
|
'rust-analyzer',
|
2019-03-03 13:54:51 -06:00
|
|
|
syntaxTreeContentProvider
|
2018-10-08 16:38:33 -05:00
|
|
|
)
|
|
|
|
);
|
2018-08-10 07:07:43 -05:00
|
|
|
|
2019-03-03 13:21:40 -06:00
|
|
|
registerCommand(
|
|
|
|
'rust-analyzer.syntaxTree',
|
2019-03-03 13:54:51 -06:00
|
|
|
commands.syntaxTree.createHandle(syntaxTreeContentProvider)
|
2019-03-03 13:21:40 -06:00
|
|
|
);
|
|
|
|
|
2018-10-07 15:44:25 -05:00
|
|
|
vscode.workspace.onDidChangeTextDocument(
|
2019-03-03 13:54:51 -06:00
|
|
|
events.changeTextDocument.createHandler(syntaxTreeContentProvider),
|
2018-10-07 15:44:25 -05:00
|
|
|
null,
|
2018-10-08 16:38:33 -05:00
|
|
|
context.subscriptions
|
|
|
|
);
|
2018-10-08 13:55:22 -05:00
|
|
|
|
2019-03-18 14:50:52 -05:00
|
|
|
// Attempts to run `cargo watch`, which provides inline diagnostics on save
|
|
|
|
askToCargoWatch();
|
|
|
|
|
2018-10-08 13:55:22 -05:00
|
|
|
// Start the language server, finally!
|
|
|
|
Server.start(allNotifications);
|
2018-08-17 11:54:08 -05:00
|
|
|
}
|
|
|
|
|
2018-08-10 07:07:43 -05:00
|
|
|
export function deactivate(): Thenable<void> {
|
2018-10-07 15:44:25 -05:00
|
|
|
if (!Server.client) {
|
2018-08-27 14:52:43 -05:00
|
|
|
return Promise.resolve();
|
2018-08-10 07:07:43 -05:00
|
|
|
}
|
2018-10-07 15:44:25 -05:00
|
|
|
return Server.client.stop();
|
2018-08-29 10:03:14 -05:00
|
|
|
}
|
2019-03-18 14:50:52 -05:00
|
|
|
|
|
|
|
async function askToCargoWatch() {
|
|
|
|
const watch = await vscode.window.showInformationMessage(
|
|
|
|
'Start watching changes with cargo? (Executes `cargo watch`, provides inline diagnostics)',
|
|
|
|
'yes',
|
|
|
|
'no'
|
|
|
|
);
|
|
|
|
if (watch === 'no') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const { stderr } = await util.promisify(exec)('cargo watch --version').catch(e => e);
|
|
|
|
if (stderr.includes('no such subcommand: `watch`')) {
|
|
|
|
const msg = 'The `cargo-watch` subcommand is not installed. Install? (takes ~1-2 minutes)';
|
|
|
|
const install = await vscode.window.showInformationMessage(msg, 'yes', 'no');
|
|
|
|
if (install === 'no') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-18 15:13:49 -05:00
|
|
|
const label = 'install-cargo-watch';
|
|
|
|
const taskFinished = new Promise((resolve, reject) => {
|
|
|
|
let disposable = vscode.tasks.onDidEndTask(({ execution }) => {
|
|
|
|
if (execution.task.name === label) {
|
|
|
|
disposable.dispose();
|
|
|
|
resolve();
|
|
|
|
};
|
2019-03-18 14:50:52 -05:00
|
|
|
});
|
2019-03-18 15:13:49 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
vscode.tasks.executeTask(createTask({ label, bin: 'cargo', args: ['install', 'cargo-watch'], env: {} }));
|
|
|
|
await taskFinished;
|
|
|
|
const { stderr } = await util.promisify(exec)('cargo watch --version').catch(e => e);
|
|
|
|
if (stderr !== '') {
|
|
|
|
vscode.window.showErrorMessage(`Couldn't install \`cargo-\`watch: ${stderr}`);
|
2019-03-18 14:50:52 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vscode.tasks.executeTask(autoCargoWatchTask);
|
|
|
|
}
|