2018-10-07 20:44:25 +00:00
|
|
|
import * as vscode from 'vscode';
|
2018-10-07 20:59:02 +00:00
|
|
|
import * as lc from 'vscode-languageclient';
|
2020-05-25 12:56:26 +00:00
|
|
|
import * as ra from './lsp_ext';
|
2020-05-31 02:13:08 +00:00
|
|
|
import * as toolchain from "./toolchain";
|
2019-03-18 21:30:23 +00:00
|
|
|
|
2020-06-02 12:33:47 +00:00
|
|
|
import { Ctx } from './ctx';
|
|
|
|
import { makeDebugConfig } from './debug';
|
2020-05-11 13:06:57 +00:00
|
|
|
|
2020-05-14 10:22:52 +00:00
|
|
|
const quickPickButtons = [{ iconPath: new vscode.ThemeIcon("save"), tooltip: "Save as a launch.json configurtation." }];
|
|
|
|
|
2020-05-25 10:02:30 +00:00
|
|
|
export async function selectRunnable(ctx: Ctx, prevRunnable?: RunnableQuickPick, debuggeeOnly = false, showButtons: boolean = true): Promise<RunnableQuickPick | undefined> {
|
2020-05-11 13:06:57 +00:00
|
|
|
const editor = ctx.activeRustEditor;
|
|
|
|
const client = ctx.client;
|
|
|
|
if (!editor || !client) return;
|
|
|
|
|
|
|
|
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 17:29:59 +00:00
|
|
|
|
|
|
|
if (debuggeeOnly && (r.label.startsWith('doctest') || r.label.startsWith('cargo'))) {
|
|
|
|
continue;
|
|
|
|
}
|
2020-05-11 13:06:57 +00:00
|
|
|
items.push(new RunnableQuickPick(r));
|
|
|
|
}
|
2020-05-14 10:22:52 +00:00
|
|
|
|
2020-05-17 17:38:50 +00:00
|
|
|
if (items.length === 0) {
|
2020-05-17 17:29:59 +00:00
|
|
|
// it is the debug case, run always has at least 'cargo check ...'
|
|
|
|
// see crates\rust-analyzer\src\main_loop\handlers.rs, handle_runnables
|
|
|
|
vscode.window.showErrorMessage("There's no debug target!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-14 10:22:52 +00: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])),
|
|
|
|
quickPick.onDidTriggerButton((_button) => {
|
2020-06-02 12:33:47 +00:00
|
|
|
(async () => await makeDebugConfig(ctx, quickPick.activeItems[0].runnable))();
|
2020-05-14 10:22:52 +00:00
|
|
|
close();
|
|
|
|
}),
|
|
|
|
quickPick.onDidChangeActive((active) => {
|
|
|
|
if (showButtons && active.length > 0) {
|
|
|
|
if (active[0].label.startsWith('cargo')) {
|
|
|
|
// save button makes no sense for `cargo test` or `cargo check`
|
|
|
|
quickPick.buttons = [];
|
|
|
|
} else if (quickPick.buttons.length === 0) {
|
|
|
|
quickPick.buttons = quickPickButtons;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
quickPick
|
|
|
|
);
|
|
|
|
quickPick.show();
|
|
|
|
});
|
2020-05-11 13:06:57 +00:00
|
|
|
}
|
2019-12-30 18:58:44 +00:00
|
|
|
|
2020-05-25 10:02:30 +00:00
|
|
|
export class RunnableQuickPick implements vscode.QuickPickItem {
|
2018-10-07 20:59:02 +00:00
|
|
|
public label: string;
|
|
|
|
public description?: string | undefined;
|
|
|
|
public detail?: string | undefined;
|
|
|
|
public picked?: boolean | undefined;
|
2018-10-07 20:44:25 +00:00
|
|
|
|
2020-02-24 22:56:38 +00:00
|
|
|
constructor(public runnable: ra.Runnable) {
|
2018-10-07 20:59:02 +00:00
|
|
|
this.label = runnable.label;
|
2018-10-07 20:44:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
interface CargoTaskDefinition extends vscode.TaskDefinition {
|
|
|
|
type: 'cargo';
|
|
|
|
label: string;
|
|
|
|
command: string;
|
2018-10-07 20:59:02 +00:00
|
|
|
args: string[];
|
2018-10-07 20:44:25 +00:00
|
|
|
env?: { [key: string]: string };
|
|
|
|
}
|
|
|
|
|
2020-06-02 15:22:23 +00:00
|
|
|
export function createTask(runnable: ra.Runnable): vscode.Task {
|
2018-10-07 20:44:25 +00:00
|
|
|
const TASK_SOURCE = 'Rust';
|
2020-06-02 15:22:23 +00:00
|
|
|
|
|
|
|
let command;
|
|
|
|
switch (runnable.kind) {
|
|
|
|
case "cargo": command = toolchain.getPathForExecutable("cargo");
|
|
|
|
}
|
|
|
|
const args = runnable.args.cargoArgs;
|
|
|
|
if (runnable.args.executableArgs.length > 0) {
|
|
|
|
args.push('--', ...runnable.args.executableArgs);
|
|
|
|
}
|
2018-10-07 20:59:02 +00:00
|
|
|
const definition: CargoTaskDefinition = {
|
2018-10-07 20:44:25 +00:00
|
|
|
type: 'cargo',
|
2020-06-02 15:22:23 +00:00
|
|
|
label: runnable.label,
|
|
|
|
command,
|
|
|
|
args,
|
|
|
|
env: Object.assign({}, process.env as { [key: string]: string }, { "RUST_BACKTRACE": "short" }),
|
2018-10-07 20:59:02 +00:00
|
|
|
};
|
2018-10-07 20:44:25 +00:00
|
|
|
|
2018-10-07 20:59:02 +00:00
|
|
|
const execOption: vscode.ShellExecutionOptions = {
|
2020-06-02 15:22:23 +00:00
|
|
|
cwd: runnable.args.workspaceRoot || '.',
|
2019-12-09 18:57:55 +00:00
|
|
|
env: definition.env,
|
2018-10-07 20:44:25 +00:00
|
|
|
};
|
2019-01-12 23:49:07 +00:00
|
|
|
const exec = new vscode.ShellExecution(
|
|
|
|
definition.command,
|
|
|
|
definition.args,
|
2019-12-09 18:57:55 +00:00
|
|
|
execOption,
|
2019-01-12 23:49:07 +00:00
|
|
|
);
|
2018-10-07 20:44:25 +00:00
|
|
|
|
2018-10-07 20:59:02 +00:00
|
|
|
const f = vscode.workspace.workspaceFolders![0];
|
2018-10-08 21:38:33 +00:00
|
|
|
const t = new vscode.Task(
|
|
|
|
definition,
|
|
|
|
f,
|
|
|
|
definition.label,
|
|
|
|
TASK_SOURCE,
|
|
|
|
exec,
|
2019-12-09 18:57:55 +00:00
|
|
|
['$rustc'],
|
2018-10-08 21:38:33 +00:00
|
|
|
);
|
2019-01-12 23:49:07 +00:00
|
|
|
t.presentationOptions.clear = true;
|
2018-10-07 20:44:25 +00:00
|
|
|
return t;
|
|
|
|
}
|