2018-08-10 07:07:43 -05:00
|
|
|
import * as vscode from 'vscode';
|
2020-03-17 06:44:31 -05:00
|
|
|
import * as path from "path";
|
|
|
|
import * as os from "os";
|
2020-05-21 10:26:50 -05:00
|
|
|
import { promises as fs, PathLike } from "fs";
|
2018-08-10 07:07:43 -05:00
|
|
|
|
2018-10-07 15:59:02 -05:00
|
|
|
import * as commands from './commands';
|
2019-12-30 13:21:25 -06:00
|
|
|
import { activateInlayHints } from './inlay_hints';
|
2019-12-31 10:22:43 -06:00
|
|
|
import { activateStatusDisplay } from './status_display';
|
2019-12-30 08:11:30 -06:00
|
|
|
import { Ctx } from './ctx';
|
2020-03-17 06:44:31 -05:00
|
|
|
import { Config, NIGHTLY_TAG } from './config';
|
2020-05-05 17:42:04 -05:00
|
|
|
import { log, assert, isValidExecutable } from './util';
|
2020-03-16 13:23:38 -05:00
|
|
|
import { PersistentState } from './persistent_state';
|
2020-03-17 06:44:31 -05:00
|
|
|
import { fetchRelease, download } from './net';
|
2020-03-30 12:12:22 -05:00
|
|
|
import { activateTaskProvider } from './tasks';
|
2020-05-27 11:40:13 -05:00
|
|
|
import { setContextValue } from './util';
|
2020-05-21 10:26:50 -05:00
|
|
|
import { exec } from 'child_process';
|
2019-12-30 07:42:59 -06:00
|
|
|
|
2020-02-04 16:13:46 -06:00
|
|
|
let ctx: Ctx | undefined;
|
2018-08-10 07:07:43 -05:00
|
|
|
|
2020-05-27 11:40:13 -05:00
|
|
|
const RUST_PROJECT_CONTEXT_NAME = "inRustProject";
|
|
|
|
|
2019-12-08 06:41:44 -06:00
|
|
|
export async function activate(context: vscode.ExtensionContext) {
|
2020-02-24 05:32:15 -06: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 14:09:44 -06:00
|
|
|
const config = new Config(context);
|
2020-03-17 06:44:31 -05:00
|
|
|
const state = new PersistentState(context.globalState);
|
2020-06-20 07:38:08 -05:00
|
|
|
const serverPath = await bootstrap(config, state).catch(err => {
|
|
|
|
let message = "Failed to bootstrap rust-analyzer.";
|
|
|
|
if (err.code === "EBUSY" || err.code === "ETXTBSY") {
|
|
|
|
message += " Other vscode windows might be using rust-analyzer, " +
|
|
|
|
"you should close them and reload this window to retry.";
|
|
|
|
}
|
|
|
|
message += " Open \"Help > Toggle Developer Tools > Console\" to see the logs";
|
|
|
|
log.error("Bootstrap error", err);
|
|
|
|
throw new Error(message);
|
|
|
|
});
|
2020-02-17 07:03:33 -06:00
|
|
|
|
2020-03-31 03:05:22 -05:00
|
|
|
const workspaceFolder = vscode.workspace.workspaceFolders?.[0];
|
|
|
|
if (workspaceFolder === undefined) {
|
|
|
|
const err = "Cannot activate rust-analyzer when no folder is opened";
|
|
|
|
void vscode.window.showErrorMessage(err);
|
|
|
|
throw new Error(err);
|
|
|
|
}
|
2020-03-30 12:12:22 -05:00
|
|
|
|
2020-02-17 06:40:20 -06: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-03-31 04:23:18 -05:00
|
|
|
ctx = await Ctx.create(config, context, serverPath, workspaceFolder.uri.fsPath);
|
2020-02-17 06:40:20 -06:00
|
|
|
|
2020-05-27 11:40:13 -05:00
|
|
|
setContextValue(RUST_PROJECT_CONTEXT_NAME, true);
|
|
|
|
|
2020-02-17 06:40:20 -06:00
|
|
|
// Commands which invokes manually via command palette, shortcut, etc.
|
2020-03-26 16:44:19 -05:00
|
|
|
|
|
|
|
// Reloading is inspired by @DanTup maneuver: https://github.com/microsoft/vscode/issues/45774#issuecomment-373423895
|
|
|
|
ctx.registerCommand('reload', _ => async () => {
|
|
|
|
void vscode.window.showInformationMessage('Reloading rust-analyzer...');
|
|
|
|
await deactivate();
|
|
|
|
while (context.subscriptions.length > 0) {
|
|
|
|
try {
|
|
|
|
context.subscriptions.pop()!.dispose();
|
|
|
|
} catch (err) {
|
|
|
|
log.error("Dispose error:", err);
|
2020-02-17 05:17:01 -06:00
|
|
|
}
|
2020-03-26 16:44:19 -05:00
|
|
|
}
|
|
|
|
await activate(context).catch(log.error);
|
2020-02-17 14:09:44 -06:00
|
|
|
});
|
2020-02-17 05:17:01 -06:00
|
|
|
|
2019-12-30 07:53:43 -06:00
|
|
|
ctx.registerCommand('analyzerStatus', commands.analyzerStatus);
|
|
|
|
ctx.registerCommand('collectGarbage', commands.collectGarbage);
|
2019-12-30 08:20:13 -06:00
|
|
|
ctx.registerCommand('matchingBrace', commands.matchingBrace);
|
2019-12-30 08:50:15 -06:00
|
|
|
ctx.registerCommand('joinLines', commands.joinLines);
|
2019-12-30 10:03:05 -06:00
|
|
|
ctx.registerCommand('parentModule', commands.parentModule);
|
2019-12-30 12:05:41 -06:00
|
|
|
ctx.registerCommand('syntaxTree', commands.syntaxTree);
|
2019-12-30 12:30:30 -06:00
|
|
|
ctx.registerCommand('expandMacro', commands.expandMacro);
|
2019-12-30 12:58:44 -06:00
|
|
|
ctx.registerCommand('run', commands.run);
|
2020-05-11 08:06:57 -05:00
|
|
|
ctx.registerCommand('debug', commands.debug);
|
2020-05-11 10:00:15 -05:00
|
|
|
ctx.registerCommand('newDebugConfig', commands.newDebugConfig);
|
2020-02-24 05:32:15 -06:00
|
|
|
|
|
|
|
defaultOnEnter.dispose();
|
2020-02-01 19:21:04 -06:00
|
|
|
ctx.registerCommand('onEnter', commands.onEnter);
|
2020-02-24 05:32:15 -06:00
|
|
|
|
2020-02-17 14:09:44 -06:00
|
|
|
ctx.registerCommand('ssr', commands.ssr);
|
2020-02-20 20:04:03 -06:00
|
|
|
ctx.registerCommand('serverVersion', commands.serverVersion);
|
2020-05-24 19:47:33 -05:00
|
|
|
ctx.registerCommand('toggleInlayHints', commands.toggleInlayHints);
|
2019-12-30 13:07:04 -06:00
|
|
|
|
|
|
|
// Internal commands which are invoked by the server.
|
|
|
|
ctx.registerCommand('runSingle', commands.runSingle);
|
2020-03-09 16:06:45 -05:00
|
|
|
ctx.registerCommand('debugSingle', commands.debugSingle);
|
2019-12-30 13:07:04 -06:00
|
|
|
ctx.registerCommand('showReferences', commands.showReferences);
|
2020-05-21 07:26:44 -05:00
|
|
|
ctx.registerCommand('applySnippetWorkspaceEdit', commands.applySnippetWorkspaceEditCommand);
|
2020-06-02 15:21:48 -05:00
|
|
|
ctx.registerCommand('resolveCodeAction', commands.resolveCodeAction);
|
2020-05-22 10:29:55 -05:00
|
|
|
ctx.registerCommand('applyActionGroup', commands.applyActionGroup);
|
2020-06-10 15:01:19 -05:00
|
|
|
ctx.registerCommand('gotoLocation', commands.gotoLocation);
|
2019-12-30 07:42:59 -06:00
|
|
|
|
2020-03-31 03:11:22 -05:00
|
|
|
ctx.pushCleanup(activateTaskProvider(workspaceFolder));
|
2020-03-30 12:12:22 -05:00
|
|
|
|
2019-12-31 11:14:00 -06:00
|
|
|
activateStatusDisplay(ctx);
|
2019-12-31 14:13:30 -06:00
|
|
|
|
2019-12-31 11:14:00 -06:00
|
|
|
activateInlayHints(ctx);
|
2020-03-18 18:39:12 -05:00
|
|
|
|
|
|
|
vscode.workspace.onDidChangeConfiguration(
|
|
|
|
_ => ctx?.client?.sendNotification('workspace/didChangeConfiguration', { settings: "" }),
|
|
|
|
null,
|
2020-03-21 17:40:07 -05:00
|
|
|
ctx.subscriptions,
|
2020-03-18 18:39:12 -05:00
|
|
|
);
|
2018-08-17 11:54:08 -05:00
|
|
|
}
|
|
|
|
|
2019-12-31 11:14:00 -06:00
|
|
|
export async function deactivate() {
|
2020-05-27 11:40:13 -05:00
|
|
|
setContextValue(RUST_PROJECT_CONTEXT_NAME, undefined);
|
2020-03-26 16:44:19 -05:00
|
|
|
await ctx?.client.stop();
|
2020-02-17 05:17:01 -06:00
|
|
|
ctx = undefined;
|
2019-04-16 15:11:50 -05:00
|
|
|
}
|
2020-03-17 06:44:31 -05:00
|
|
|
|
|
|
|
async function bootstrap(config: Config, state: PersistentState): Promise<string> {
|
|
|
|
await fs.mkdir(config.globalStoragePath, { recursive: true });
|
|
|
|
|
|
|
|
await bootstrapExtension(config, state);
|
|
|
|
const path = await bootstrapServer(config, state);
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function bootstrapExtension(config: Config, state: PersistentState): Promise<void> {
|
2020-03-25 13:56:48 -05:00
|
|
|
if (config.package.releaseTag === null) return;
|
2020-03-17 06:44:31 -05:00
|
|
|
if (config.channel === "stable") {
|
2020-03-24 03:31:42 -05:00
|
|
|
if (config.package.releaseTag === NIGHTLY_TAG) {
|
2020-03-25 13:56:48 -05:00
|
|
|
void vscode.window.showWarningMessage(
|
|
|
|
`You are running a nightly version of rust-analyzer extension. ` +
|
|
|
|
`To switch to stable, uninstall the extension and re-install it from the marketplace`
|
|
|
|
);
|
2020-03-17 06:44:31 -05:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
|
|
|
const lastCheck = state.lastCheck;
|
|
|
|
const now = Date.now();
|
|
|
|
|
|
|
|
const anHour = 60 * 60 * 1000;
|
|
|
|
const shouldDownloadNightly = state.releaseId === undefined || (now - (lastCheck ?? 0)) > anHour;
|
|
|
|
|
|
|
|
if (!shouldDownloadNightly) return;
|
|
|
|
|
|
|
|
const release = await fetchRelease("nightly").catch((e) => {
|
|
|
|
log.error(e);
|
|
|
|
if (state.releaseId === undefined) { // Show error only for the initial download
|
|
|
|
vscode.window.showErrorMessage(`Failed to download rust-analyzer nightly ${e}`);
|
|
|
|
}
|
|
|
|
return undefined;
|
|
|
|
});
|
|
|
|
if (release === undefined || release.id === state.releaseId) return;
|
|
|
|
|
|
|
|
const userResponse = await vscode.window.showInformationMessage(
|
|
|
|
"New version of rust-analyzer (nightly) is available (requires reload).",
|
|
|
|
"Update"
|
|
|
|
);
|
|
|
|
if (userResponse !== "Update") return;
|
|
|
|
|
|
|
|
const artifact = release.assets.find(artifact => artifact.name === "rust-analyzer.vsix");
|
|
|
|
assert(!!artifact, `Bad release: ${JSON.stringify(release)}`);
|
|
|
|
|
|
|
|
const dest = path.join(config.globalStoragePath, "rust-analyzer.vsix");
|
|
|
|
await download(artifact.browser_download_url, dest, "Downloading rust-analyzer extension");
|
|
|
|
|
|
|
|
await vscode.commands.executeCommand("workbench.extensions.installExtension", vscode.Uri.file(dest));
|
|
|
|
await fs.unlink(dest);
|
|
|
|
|
|
|
|
await state.updateReleaseId(release.id);
|
|
|
|
await state.updateLastCheck(now);
|
|
|
|
await vscode.commands.executeCommand("workbench.action.reloadWindow");
|
|
|
|
}
|
|
|
|
|
|
|
|
async function bootstrapServer(config: Config, state: PersistentState): Promise<string> {
|
|
|
|
const path = await getServer(config, state);
|
|
|
|
if (!path) {
|
|
|
|
throw new Error(
|
|
|
|
"Rust Analyzer Language Server is not available. " +
|
|
|
|
"Please, ensure its [proper installation](https://rust-analyzer.github.io/manual.html#installation)."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-04 08:10:06 -05:00
|
|
|
log.debug("Using server binary at", path);
|
|
|
|
|
2020-05-05 17:42:04 -05:00
|
|
|
if (!isValidExecutable(path)) {
|
2020-03-26 16:45:01 -05:00
|
|
|
throw new Error(`Failed to execute ${path} --version`);
|
2020-03-17 06:44:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
2020-05-21 10:26:50 -05:00
|
|
|
async function patchelf(dest: PathLike): Promise<void> {
|
|
|
|
await vscode.window.withProgress(
|
|
|
|
{
|
2020-05-21 10:49:30 -05:00
|
|
|
location: vscode.ProgressLocation.Notification,
|
2020-05-21 10:50:28 -05:00
|
|
|
title: "Patching rust-analyzer for NixOS"
|
2020-05-21 10:49:30 -05:00
|
|
|
},
|
2020-05-21 10:26:50 -05:00
|
|
|
async (progress, _) => {
|
2020-05-21 13:30:56 -05:00
|
|
|
const expression = `
|
2020-05-21 10:26:50 -05:00
|
|
|
{src, pkgs ? import <nixpkgs> {}}:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
|
|
name = "rust-analyzer";
|
|
|
|
inherit src;
|
|
|
|
phases = [ "installPhase" "fixupPhase" ];
|
|
|
|
installPhase = "cp $src $out";
|
|
|
|
fixupPhase = ''
|
|
|
|
chmod 755 $out
|
|
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out
|
|
|
|
'';
|
|
|
|
}
|
2020-05-21 13:30:56 -05:00
|
|
|
`;
|
2020-05-21 10:49:30 -05:00
|
|
|
const origFile = dest + "-orig";
|
|
|
|
await fs.rename(dest, origFile);
|
|
|
|
progress.report({ message: "Patching executable", increment: 20 });
|
2020-05-21 10:26:50 -05:00
|
|
|
await new Promise((resolve, reject) => {
|
2020-05-21 13:30:56 -05:00
|
|
|
const handle = exec(`nix-build -E - --arg src '${origFile}' -o ${dest}`,
|
2020-05-21 10:49:30 -05:00
|
|
|
(err, stdout, stderr) => {
|
|
|
|
if (err != null) {
|
|
|
|
reject(Error(stderr));
|
|
|
|
} else {
|
|
|
|
resolve(stdout);
|
|
|
|
}
|
|
|
|
});
|
2020-05-21 13:30:56 -05:00
|
|
|
handle.stdin?.write(expression);
|
|
|
|
handle.stdin?.end();
|
2020-05-21 10:49:30 -05:00
|
|
|
});
|
|
|
|
await fs.unlink(origFile);
|
2020-05-21 10:26:50 -05:00
|
|
|
}
|
2020-05-21 10:49:30 -05:00
|
|
|
);
|
2020-05-21 10:26:50 -05:00
|
|
|
}
|
|
|
|
|
2020-03-17 06:44:31 -05:00
|
|
|
async function getServer(config: Config, state: PersistentState): Promise<string | undefined> {
|
|
|
|
const explicitPath = process.env.__RA_LSP_SERVER_DEBUG ?? config.serverPath;
|
|
|
|
if (explicitPath) {
|
|
|
|
if (explicitPath.startsWith("~/")) {
|
|
|
|
return os.homedir() + explicitPath.slice("~".length);
|
|
|
|
}
|
|
|
|
return explicitPath;
|
|
|
|
};
|
2020-03-25 13:56:48 -05:00
|
|
|
if (config.package.releaseTag === null) return "rust-analyzer";
|
2020-03-17 06:44:31 -05:00
|
|
|
|
|
|
|
let binaryName: string | undefined = undefined;
|
2020-03-25 04:51:03 -05:00
|
|
|
if (process.arch === "x64" || process.arch === "ia32") {
|
2020-03-17 06:44:31 -05:00
|
|
|
if (process.platform === "linux") binaryName = "rust-analyzer-linux";
|
|
|
|
if (process.platform === "darwin") binaryName = "rust-analyzer-mac";
|
|
|
|
if (process.platform === "win32") binaryName = "rust-analyzer-windows.exe";
|
|
|
|
}
|
|
|
|
if (binaryName === undefined) {
|
|
|
|
vscode.window.showErrorMessage(
|
|
|
|
"Unfortunately we don't ship binaries for your platform yet. " +
|
|
|
|
"You need to manually clone rust-analyzer repository and " +
|
|
|
|
"run `cargo xtask install --server` to build the language server from sources. " +
|
|
|
|
"If you feel that your platform should be supported, please create an issue " +
|
|
|
|
"about that [here](https://github.com/rust-analyzer/rust-analyzer/issues) and we " +
|
|
|
|
"will consider it."
|
|
|
|
);
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
const dest = path.join(config.globalStoragePath, binaryName);
|
|
|
|
const exists = await fs.stat(dest).then(() => true, () => false);
|
|
|
|
if (!exists) {
|
|
|
|
await state.updateServerVersion(undefined);
|
|
|
|
}
|
|
|
|
|
2020-03-24 03:31:42 -05:00
|
|
|
if (state.serverVersion === config.package.version) return dest;
|
2020-03-17 06:44:31 -05:00
|
|
|
|
|
|
|
if (config.askBeforeDownload) {
|
|
|
|
const userResponse = await vscode.window.showInformationMessage(
|
2020-03-24 03:31:42 -05:00
|
|
|
`Language server version ${config.package.version} for rust-analyzer is not installed.`,
|
2020-03-17 06:44:31 -05:00
|
|
|
"Download now"
|
|
|
|
);
|
|
|
|
if (userResponse !== "Download now") return dest;
|
|
|
|
}
|
|
|
|
|
2020-03-24 03:31:42 -05:00
|
|
|
const release = await fetchRelease(config.package.releaseTag);
|
2020-03-17 06:44:31 -05:00
|
|
|
const artifact = release.assets.find(artifact => artifact.name === binaryName);
|
|
|
|
assert(!!artifact, `Bad release: ${JSON.stringify(release)}`);
|
|
|
|
|
2020-06-20 07:38:08 -05:00
|
|
|
// Unlinking the exe file before moving new one on its place should prevent ETXTBSY error.
|
|
|
|
await fs.unlink(dest).catch(err => {
|
|
|
|
if (err.code !== "ENOENT") throw err;
|
|
|
|
});
|
|
|
|
|
2020-03-17 06:44:31 -05:00
|
|
|
await download(artifact.browser_download_url, dest, "Downloading rust-analyzer server", { mode: 0o755 });
|
2020-05-21 10:26:50 -05:00
|
|
|
|
|
|
|
// Patching executable if that's NixOS.
|
2020-05-21 13:32:27 -05:00
|
|
|
if (await fs.stat("/etc/nixos").then(_ => true).catch(_ => false)) {
|
2020-05-21 10:49:30 -05:00
|
|
|
await patchelf(dest);
|
2020-05-21 10:26:50 -05:00
|
|
|
}
|
|
|
|
|
2020-03-24 03:31:42 -05:00
|
|
|
await state.updateServerVersion(config.package.version);
|
2020-03-17 06:44:31 -05:00
|
|
|
return dest;
|
|
|
|
}
|