rust/editors/code/src/run.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

190 lines
6.3 KiB
TypeScript
Raw Normal View History

2018-10-07 15:44:25 -05:00
import * as vscode from "vscode";
import type * as lc from "vscode-languageclient";
import * as ra from "./lsp_ext";
2020-06-18 14:20:13 -05:00
import * as tasks from "./tasks";
2022-05-17 12:15:06 -05:00
import type { CtxInit } from "./ctx";
2020-06-02 07:33:47 -05:00
import { makeDebugConfig } from "./debug";
2023-07-18 05:51:57 -05:00
import type { Config, RunnableEnvCfg, RunnableEnvCfgItem } from "./config";
import { unwrapUndefinable } from "./undefinable";
2022-05-17 12:15:06 -05:00
2020-05-14 05:22:52 -05:00
const quickPickButtons = [
2022-05-26 12:12:49 -05:00
{ iconPath: new vscode.ThemeIcon("save"), tooltip: "Save as a launch.json configuration." },
2020-05-14 05:22:52 -05:00
];
2022-05-17 12:15:06 -05:00
2020-05-25 05:02:30 -05:00
export async function selectRunnable(
2022-10-28 17:44:37 -05:00
ctx: CtxInit,
2020-05-25 05:02:30 -05:00
prevRunnable?: RunnableQuickPick,
debuggeeOnly = false,
2023-07-11 08:35:10 -05:00
showButtons: boolean = true,
2020-05-25 05:02:30 -05:00
): Promise<RunnableQuickPick | undefined> {
2020-05-11 08:06:57 -05:00
const editor = ctx.activeRustEditor;
2022-10-17 08:05:20 -05:00
if (!editor) return;
2020-05-11 08:06:57 -05:00
2022-10-28 17:44:37 -05:00
const client = ctx.client;
2020-05-11 08:06:57 -05:00
const textDocument: lc.TextDocumentIdentifier = {
uri: editor.document.uri.toString(),
};
const runnables = await client.sendRequest(ra.runnables, {
textDocument,
position: client.code2ProtocolConverter.asPosition(editor.selection.active),
});
const items: RunnableQuickPick[] = [];
if (prevRunnable) {
items.push(prevRunnable);
}
for (const r of runnables) {
if (prevRunnable && JSON.stringify(prevRunnable.runnable) === JSON.stringify(r)) {
continue;
}
2020-05-17 12:29:59 -05:00
if (debuggeeOnly && (r.label.startsWith("doctest") || r.label.startsWith("cargo"))) {
continue;
}
2020-05-11 08:06:57 -05:00
items.push(new RunnableQuickPick(r));
}
2020-05-14 05:22:52 -05:00
2020-05-17 12:38:50 -05:00
if (items.length === 0) {
2020-05-17 12:29:59 -05:00
// it is the debug case, run always has at least 'cargo check ...'
// see crates\rust-analyzer\src\main_loop\handlers.rs, handle_runnables
2021-02-09 08:12:46 -06:00
await vscode.window.showErrorMessage("There's no debug target!");
2020-05-17 12:29:59 -05:00
return;
}
2020-05-14 05:22:52 -05:00
return await new Promise((resolve) => {
const disposables: vscode.Disposable[] = [];
const close = (result?: RunnableQuickPick) => {
resolve(result);
disposables.forEach((d) => d.dispose());
};
const quickPick = vscode.window.createQuickPick<RunnableQuickPick>();
quickPick.items = items;
quickPick.title = "Select Runnable";
if (showButtons) {
quickPick.buttons = quickPickButtons;
}
disposables.push(
quickPick.onDidHide(() => close()),
quickPick.onDidAccept(() => close(quickPick.selectedItems[0])),
2021-02-09 08:12:46 -06:00
quickPick.onDidTriggerButton(async (_button) => {
const runnable = unwrapUndefinable(quickPick.activeItems[0]).runnable;
await makeDebugConfig(ctx, runnable);
2020-05-14 05:22:52 -05:00
close();
}),
quickPick.onDidChangeActive((activeList) => {
if (showButtons && activeList.length > 0) {
const active = unwrapUndefinable(activeList[0]);
if (active.label.startsWith("cargo")) {
2020-05-14 05:22:52 -05:00
// save button makes no sense for `cargo test` or `cargo check`
quickPick.buttons = [];
} else if (quickPick.buttons.length === 0) {
quickPick.buttons = quickPickButtons;
}
}
}),
2023-07-11 08:35:10 -05:00
quickPick,
2020-05-14 05:22:52 -05:00
);
quickPick.show();
});
2020-05-11 08:06:57 -05:00
}
2019-12-30 12:58:44 -06:00
2020-05-25 05:02:30 -05:00
export class RunnableQuickPick implements vscode.QuickPickItem {
2018-10-07 15:59:02 -05:00
public label: string;
public description?: string | undefined;
public detail?: string | undefined;
public picked?: boolean | undefined;
2018-10-07 15:44:25 -05:00
constructor(public runnable: ra.Runnable) {
2018-10-07 15:59:02 -05:00
this.label = runnable.label;
2018-10-07 15:44:25 -05:00
}
}
2020-07-02 13:33:26 -05:00
export function prepareEnv(
runnable: ra.Runnable,
2023-07-11 08:35:10 -05:00
runnableEnvCfg: RunnableEnvCfg,
2020-07-02 13:33:26 -05:00
): Record<string, string> {
2020-07-02 11:47:40 -05:00
const env: Record<string, string> = { RUST_BACKTRACE: "short" };
if (runnable.args.expectTest) {
env["UPDATE_EXPECT"] = "1";
}
2020-07-03 06:56:30 -05:00
Object.assign(env, process.env as { [key: string]: string });
2023-07-18 05:51:57 -05:00
const platform = process.platform;
const checkPlatform = (it: RunnableEnvCfgItem) => {
if (it.platform) {
const platforms = Array.isArray(it.platform) ? it.platform : [it.platform];
return platforms.indexOf(platform) >= 0;
}
return true;
};
2020-07-03 06:56:30 -05:00
2020-07-02 13:33:26 -05:00
if (runnableEnvCfg) {
if (Array.isArray(runnableEnvCfg)) {
for (const it of runnableEnvCfg) {
2023-07-18 05:51:57 -05:00
const masked = !it.mask || new RegExp(it.mask).test(runnable.label);
if (masked && checkPlatform(it)) {
2020-07-02 11:47:40 -05:00
Object.assign(env, it.env);
}
}
} else {
2020-07-02 14:08:33 -05:00
Object.assign(env, runnableEnvCfg);
2020-07-02 11:47:40 -05:00
}
}
return env;
}
2020-06-18 14:20:13 -05:00
export async function createTask(runnable: ra.Runnable, config: Config): Promise<vscode.Task> {
if (runnable.kind !== "cargo") {
// rust-analyzer supports only one kind, "cargo"
// do not use tasks.TASK_TYPE here, these are completely different meanings.
2020-06-02 10:22:23 -05:00
2020-06-18 14:20:13 -05:00
throw `Unexpected runnable kind: ${runnable.kind}`;
2020-06-02 10:22:23 -05:00
}
2020-06-18 14:20:13 -05:00
const args = createArgs(runnable);
2020-07-02 11:47:40 -05:00
2020-06-18 14:20:13 -05:00
const definition: tasks.CargoTaskDefinition = {
type: tasks.TASK_TYPE,
command: args[0], // run, test, etc...
args: args.slice(1),
2020-07-03 06:56:30 -05:00
cwd: runnable.args.workspaceRoot || ".",
env: prepareEnv(runnable, config.runnablesExtraEnv),
overrideCargo: runnable.args.overrideCargo,
2018-10-07 15:59:02 -05:00
};
2018-10-07 15:44:25 -05:00
2021-02-07 12:36:16 -06:00
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
const target = vscode.workspace.workspaceFolders![0]; // safe, see main activate()
const cargoTask = await tasks.buildCargoTask(
target,
definition,
runnable.label,
args,
config.problemMatcher,
config.cargoRunner,
2023-07-11 08:35:10 -05:00
true,
);
2020-06-18 14:20:13 -05:00
cargoTask.presentationOptions.clear = true;
// Sadly, this doesn't prevent focus stealing if the terminal is currently
// hidden, and will become revealed due to task execution.
cargoTask.presentationOptions.focus = false;
2020-06-18 14:20:13 -05:00
return cargoTask;
2018-10-07 15:44:25 -05:00
}
export function createArgs(runnable: ra.Runnable): string[] {
const args = [...runnable.args.cargoArgs]; // should be a copy!
if (runnable.args.cargoExtraArgs) {
args.push(...runnable.args.cargoExtraArgs); // Append user-specified cargo options.
}
if (runnable.args.executableArgs.length > 0) {
args.push("--", ...runnable.args.executableArgs);
}
return args;
}