2022-10-17 12:20:14 +00:00
|
|
|
import * as vscode from "vscode";
|
|
|
|
import * as os from "os";
|
2023-07-10 21:10:00 +00:00
|
|
|
import type { Config } from "./config";
|
2024-06-19 07:36:22 +00:00
|
|
|
import { type Env, log } from "./util";
|
2023-07-10 21:10:00 +00:00
|
|
|
import type { PersistentState } from "./persistent_state";
|
2024-06-19 07:36:22 +00:00
|
|
|
import { exec, spawnSync } from "child_process";
|
2024-07-26 05:33:18 +00:00
|
|
|
import { TextDecoder } from "node:util";
|
2022-10-17 12:20:14 +00:00
|
|
|
|
|
|
|
export async function bootstrap(
|
|
|
|
context: vscode.ExtensionContext,
|
|
|
|
config: Config,
|
2023-07-11 13:35:10 +00:00
|
|
|
state: PersistentState,
|
2022-10-17 12:20:14 +00:00
|
|
|
): Promise<string> {
|
|
|
|
const path = await getServer(context, config, state);
|
|
|
|
if (!path) {
|
|
|
|
throw new Error(
|
2024-06-19 07:36:22 +00:00
|
|
|
"rust-analyzer Language Server is not available. " +
|
2024-07-30 09:25:03 +00:00
|
|
|
"Please, ensure its [proper installation](https://rust-analyzer.github.io/manual.html#installation).",
|
2022-10-17 12:20:14 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
log.info("Using server binary at", path);
|
|
|
|
|
2023-08-12 05:10:20 +00:00
|
|
|
if (!isValidExecutable(path, config.serverExtraEnv)) {
|
2024-06-19 07:36:22 +00:00
|
|
|
throw new Error(
|
|
|
|
`Failed to execute ${path} --version.` + config.serverPath
|
|
|
|
? `\`config.server.path\` or \`config.serverPath\` has been set explicitly.\
|
|
|
|
Consider removing this config or making a valid server binary available at that path.`
|
|
|
|
: "",
|
|
|
|
);
|
2022-10-17 12:20:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
async function getServer(
|
|
|
|
context: vscode.ExtensionContext,
|
|
|
|
config: Config,
|
2023-07-11 13:35:10 +00:00
|
|
|
state: PersistentState,
|
2022-10-17 12:20:14 +00:00
|
|
|
): Promise<string | undefined> {
|
2024-07-06 18:20:21 +00:00
|
|
|
const packageJson: {
|
|
|
|
version: string;
|
|
|
|
releaseTag: string | null;
|
|
|
|
enableProposedApi: boolean | undefined;
|
|
|
|
} = context.extension.packageJSON;
|
|
|
|
|
2024-07-22 08:49:32 +00:00
|
|
|
// check if the server path is configured explicitly
|
2023-06-28 09:15:30 +00:00
|
|
|
const explicitPath = process.env["__RA_LSP_SERVER_DEBUG"] ?? config.serverPath;
|
2022-10-17 12:20:14 +00:00
|
|
|
if (explicitPath) {
|
|
|
|
if (explicitPath.startsWith("~/")) {
|
|
|
|
return os.homedir() + explicitPath.slice("~".length);
|
|
|
|
}
|
|
|
|
return explicitPath;
|
|
|
|
}
|
|
|
|
|
2024-07-26 05:33:18 +00:00
|
|
|
let toolchainServerPath = undefined;
|
|
|
|
if (vscode.workspace.workspaceFolders) {
|
|
|
|
for (const workspaceFolder of vscode.workspace.workspaceFolders) {
|
|
|
|
// otherwise check if there is a toolchain override for the current vscode workspace
|
|
|
|
// and if the toolchain of this override has a rust-analyzer component
|
|
|
|
// if so, use the rust-analyzer component
|
|
|
|
const toolchainUri = vscode.Uri.joinPath(workspaceFolder.uri, "rust-toolchain.toml");
|
|
|
|
if (await hasToolchainFileWithRaDeclared(toolchainUri)) {
|
|
|
|
const res = spawnSync("rustup", ["which", "rust-analyzer"], {
|
|
|
|
encoding: "utf8",
|
|
|
|
env: { ...process.env },
|
|
|
|
cwd: workspaceFolder.uri.fsPath,
|
|
|
|
});
|
|
|
|
if (!res.error && res.status === 0) {
|
|
|
|
toolchainServerPath = earliestToolchainPath(
|
|
|
|
toolchainServerPath,
|
|
|
|
res.stdout.trim(),
|
|
|
|
raVersionResolver,
|
|
|
|
);
|
|
|
|
}
|
2024-07-22 08:49:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-07-26 05:33:18 +00:00
|
|
|
if (toolchainServerPath) {
|
|
|
|
return toolchainServerPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (packageJson.releaseTag === null) return "rust-analyzer";
|
2024-07-22 08:49:32 +00:00
|
|
|
|
|
|
|
// finally, use the bundled one
|
2022-10-17 12:20:14 +00:00
|
|
|
const ext = process.platform === "win32" ? ".exe" : "";
|
|
|
|
const bundled = vscode.Uri.joinPath(context.extensionUri, "server", `rust-analyzer${ext}`);
|
2024-07-22 08:49:32 +00:00
|
|
|
const bundledExists = await fileExists(bundled);
|
2022-10-17 12:20:14 +00:00
|
|
|
if (bundledExists) {
|
|
|
|
let server = bundled;
|
|
|
|
if (await isNixOs()) {
|
2024-07-06 18:20:21 +00:00
|
|
|
server = await getNixOsServer(
|
|
|
|
context.globalStorageUri,
|
|
|
|
packageJson.version,
|
|
|
|
ext,
|
|
|
|
state,
|
|
|
|
bundled,
|
|
|
|
server,
|
|
|
|
);
|
|
|
|
await state.updateServerVersion(packageJson.version);
|
2022-10-17 12:20:14 +00:00
|
|
|
}
|
|
|
|
return server.fsPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
await vscode.window.showErrorMessage(
|
|
|
|
"Unfortunately we don't ship binaries for your platform yet. " +
|
2024-07-30 09:25:03 +00:00
|
|
|
"You need to manually clone the 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-lang/rust-analyzer/issues) and we " +
|
|
|
|
"will consider it.",
|
2022-10-17 12:20:14 +00:00
|
|
|
);
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
|
2024-07-26 05:33:18 +00:00
|
|
|
// Given a path to a rust-analyzer executable, resolve its version and return it.
|
|
|
|
function raVersionResolver(path: string): string | undefined {
|
|
|
|
const res = spawnSync(path, ["--version"], {
|
|
|
|
encoding: "utf8",
|
|
|
|
});
|
|
|
|
if (!res.error && res.status === 0) {
|
|
|
|
return res.stdout;
|
|
|
|
} else {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Given a path to two rust-analyzer executables, return the earliest one by date.
|
|
|
|
function earliestToolchainPath(
|
|
|
|
path0: string | undefined,
|
|
|
|
path1: string,
|
|
|
|
raVersionResolver: (path: string) => string | undefined,
|
|
|
|
): string {
|
|
|
|
if (path0) {
|
|
|
|
if (orderFromPath(path0, raVersionResolver) < orderFromPath(path1, raVersionResolver)) {
|
|
|
|
return path0;
|
|
|
|
} else {
|
|
|
|
return path1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return path1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Further to extracting a date for comparison, determine the order of a toolchain as follows:
|
|
|
|
// Highest - nightly
|
|
|
|
// Medium - versioned
|
|
|
|
// Lowest - stable
|
|
|
|
// Example paths:
|
|
|
|
// nightly - /Users/myuser/.rustup/toolchains/nightly-2022-11-22-aarch64-apple-darwin/bin/rust-analyzer
|
|
|
|
// versioned - /Users/myuser/.rustup/toolchains/1.72.1-aarch64-apple-darwin/bin/rust-analyzer
|
|
|
|
// stable - /Users/myuser/.rustup/toolchains/stable-aarch64-apple-darwin/bin/rust-analyzer
|
|
|
|
function orderFromPath(
|
|
|
|
path: string,
|
|
|
|
raVersionResolver: (path: string) => string | undefined,
|
|
|
|
): string {
|
2024-07-30 06:38:47 +00:00
|
|
|
const raVersion = raVersionResolver(path);
|
|
|
|
const raDate = raVersion?.match(/^rust-analyzer .*\(.* (\d{4}-\d{2}-\d{2})\)$/);
|
|
|
|
if (raDate?.length === 2) {
|
|
|
|
const precedence = path.includes("nightly-") ? "0" : "1";
|
|
|
|
return precedence + "-" + raDate[1];
|
2024-07-26 05:33:18 +00:00
|
|
|
} else {
|
|
|
|
return "2";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-22 08:49:32 +00:00
|
|
|
async function fileExists(uri: vscode.Uri) {
|
|
|
|
return await vscode.workspace.fs.stat(uri).then(
|
|
|
|
() => true,
|
|
|
|
() => false,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-07-26 05:33:18 +00:00
|
|
|
async function hasToolchainFileWithRaDeclared(uri: vscode.Uri): Promise<boolean> {
|
|
|
|
try {
|
|
|
|
const toolchainFileContents = new TextDecoder().decode(
|
|
|
|
await vscode.workspace.fs.readFile(uri),
|
|
|
|
);
|
|
|
|
return (
|
|
|
|
toolchainFileContents.match(/components\s*=\s*\[.*\"rust-analyzer\".*\]/g)?.length === 1
|
|
|
|
);
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-19 07:36:22 +00:00
|
|
|
export function isValidExecutable(path: string, extraEnv: Env): boolean {
|
|
|
|
log.debug("Checking availability of a binary at", path);
|
|
|
|
|
|
|
|
const res = spawnSync(path, ["--version"], {
|
|
|
|
encoding: "utf8",
|
|
|
|
env: { ...process.env, ...extraEnv },
|
|
|
|
});
|
|
|
|
|
|
|
|
const printOutput = res.error ? log.warn : log.info;
|
|
|
|
printOutput(path, "--version:", res);
|
|
|
|
|
|
|
|
return res.status === 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getNixOsServer(
|
2024-07-06 18:20:21 +00:00
|
|
|
globalStorageUri: vscode.Uri,
|
|
|
|
version: string,
|
2024-06-19 07:36:22 +00:00
|
|
|
ext: string,
|
|
|
|
state: PersistentState,
|
|
|
|
bundled: vscode.Uri,
|
|
|
|
server: vscode.Uri,
|
|
|
|
) {
|
2024-07-06 18:20:21 +00:00
|
|
|
await vscode.workspace.fs.createDirectory(globalStorageUri).then();
|
|
|
|
const dest = vscode.Uri.joinPath(globalStorageUri, `rust-analyzer${ext}`);
|
2024-06-19 07:36:22 +00:00
|
|
|
let exists = await vscode.workspace.fs.stat(dest).then(
|
|
|
|
() => true,
|
|
|
|
() => false,
|
|
|
|
);
|
2024-07-06 18:20:21 +00:00
|
|
|
if (exists && version !== state.serverVersion) {
|
2024-06-19 07:36:22 +00:00
|
|
|
await vscode.workspace.fs.delete(dest);
|
|
|
|
exists = false;
|
|
|
|
}
|
|
|
|
if (!exists) {
|
|
|
|
await vscode.workspace.fs.copy(bundled, dest);
|
|
|
|
await patchelf(dest);
|
|
|
|
}
|
|
|
|
server = dest;
|
|
|
|
return server;
|
|
|
|
}
|
|
|
|
|
2022-10-17 12:20:14 +00:00
|
|
|
async function isNixOs(): Promise<boolean> {
|
|
|
|
try {
|
|
|
|
const contents = (
|
|
|
|
await vscode.workspace.fs.readFile(vscode.Uri.file("/etc/os-release"))
|
|
|
|
).toString();
|
|
|
|
const idString = contents.split("\n").find((a) => a.startsWith("ID=")) || "ID=linux";
|
|
|
|
return idString.indexOf("nixos") !== -1;
|
|
|
|
} catch {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2023-01-24 12:43:56 +00:00
|
|
|
|
|
|
|
async function patchelf(dest: vscode.Uri): Promise<void> {
|
|
|
|
await vscode.window.withProgress(
|
|
|
|
{
|
|
|
|
location: vscode.ProgressLocation.Notification,
|
|
|
|
title: "Patching rust-analyzer for NixOS",
|
|
|
|
},
|
|
|
|
async (progress, _) => {
|
|
|
|
const expression = `
|
|
|
|
{srcStr, pkgs ? import <nixpkgs> {}}:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
|
|
name = "rust-analyzer";
|
|
|
|
src = /. + srcStr;
|
|
|
|
phases = [ "installPhase" "fixupPhase" ];
|
|
|
|
installPhase = "cp $src $out";
|
|
|
|
fixupPhase = ''
|
|
|
|
chmod 755 $out
|
|
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
const origFile = vscode.Uri.file(dest.fsPath + "-orig");
|
|
|
|
await vscode.workspace.fs.rename(dest, origFile, { overwrite: true });
|
|
|
|
try {
|
|
|
|
progress.report({ message: "Patching executable", increment: 20 });
|
|
|
|
await new Promise((resolve, reject) => {
|
|
|
|
const handle = exec(
|
|
|
|
`nix-build -E - --argstr srcStr '${origFile.fsPath}' -o '${dest.fsPath}'`,
|
|
|
|
(err, stdout, stderr) => {
|
|
|
|
if (err != null) {
|
|
|
|
reject(Error(stderr));
|
|
|
|
} else {
|
|
|
|
resolve(stdout);
|
|
|
|
}
|
2023-07-11 13:35:10 +00:00
|
|
|
},
|
2023-01-24 12:43:56 +00:00
|
|
|
);
|
|
|
|
handle.stdin?.write(expression);
|
|
|
|
handle.stdin?.end();
|
|
|
|
});
|
|
|
|
} finally {
|
|
|
|
await vscode.workspace.fs.delete(origFile);
|
|
|
|
}
|
2023-07-11 13:35:10 +00:00
|
|
|
},
|
2023-01-24 12:43:56 +00:00
|
|
|
);
|
|
|
|
}
|
2024-07-26 05:33:18 +00:00
|
|
|
|
|
|
|
export const _private = {
|
|
|
|
earliestToolchainPath,
|
|
|
|
orderFromPath,
|
|
|
|
};
|