rust-analyzer/editors/code/src/ctx.ts

107 lines
3.4 KiB
TypeScript
Raw Normal View History

2019-12-30 13:42:59 +00:00
import * as vscode from 'vscode';
import * as lc from 'vscode-languageclient';
2020-07-02 10:37:04 +00:00
import * as ra from './lsp_ext';
2020-02-02 21:23:01 +00:00
2019-12-30 19:46:14 +00:00
import { Config } from './config';
import { createClient } from './client';
2020-03-07 12:07:44 +00:00
import { isRustEditor, RustEditor } from './util';
2020-07-02 10:37:04 +00:00
import { Status } from './lsp_ext';
2019-12-30 13:42:59 +00:00
export class Ctx {
2020-02-17 13:21:50 +00:00
private constructor(
readonly config: Config,
private readonly extCtx: vscode.ExtensionContext,
readonly client: lc.LanguageClient,
readonly serverPath: string,
2020-07-02 10:37:04 +00:00
readonly statusBar: vscode.StatusBarItem,
2020-02-17 13:21:50 +00:00
) {
}
2019-12-30 13:42:59 +00:00
static async create(
config: Config,
extCtx: vscode.ExtensionContext,
serverPath: string,
cwd: string,
): Promise<Ctx> {
const client = createClient(serverPath, cwd);
2020-07-02 10:37:04 +00:00
const statusBar = vscode.window.createStatusBarItem(vscode.StatusBarAlignment.Left);
extCtx.subscriptions.push(statusBar);
statusBar.text = "rust-analyzer";
statusBar.tooltip = "ready";
statusBar.show();
const res = new Ctx(config, extCtx, client, serverPath, statusBar);
2020-02-17 13:11:01 +00:00
res.pushCleanup(client.start());
2019-12-31 17:14:00 +00:00
await client.onReady();
2020-07-02 10:37:04 +00:00
client.onNotification(ra.status, (status) => res.setStatus(status));
2020-02-17 13:11:01 +00:00
return res;
}
2019-12-31 17:14:00 +00:00
2020-03-07 12:07:44 +00:00
get activeRustEditor(): RustEditor | undefined {
2019-12-30 14:20:13 +00:00
const editor = vscode.window.activeTextEditor;
2020-03-07 12:07:44 +00:00
return editor && isRustEditor(editor)
2019-12-30 14:20:13 +00:00
? editor
: undefined;
}
2020-03-07 12:07:44 +00:00
get visibleRustEditors(): RustEditor[] {
return vscode.window.visibleTextEditors.filter(isRustEditor);
}
2019-12-30 14:11:30 +00:00
registerCommand(name: string, factory: (ctx: Ctx) => Cmd) {
const fullName = `rust-analyzer.${name}`;
2019-12-30 13:42:59 +00:00
const cmd = factory(this);
const d = vscode.commands.registerCommand(fullName, cmd);
this.pushCleanup(d);
}
get globalState(): vscode.Memento {
return this.extCtx.globalState;
}
2020-02-02 21:23:01 +00:00
get subscriptions(): Disposable[] {
2019-12-30 18:05:41 +00:00
return this.extCtx.subscriptions;
}
2020-07-02 10:37:04 +00:00
setStatus(status: Status) {
switch (status) {
case "loading":
this.statusBar.text = "$(sync~spin) rust-analyzer";
this.statusBar.tooltip = "Loading the project";
this.statusBar.command = undefined;
this.statusBar.color = undefined;
break;
case "ready":
this.statusBar.text = "rust-analyzer";
this.statusBar.tooltip = "Ready";
this.statusBar.command = undefined;
this.statusBar.color = undefined;
break;
case "invalid":
this.statusBar.text = "$(error) rust-analyzer";
this.statusBar.tooltip = "Failed to load the project";
this.statusBar.command = undefined;
this.statusBar.color = new vscode.ThemeColor("notificationsErrorIcon.foreground");
break;
case "needsReload":
this.statusBar.text = "$(warning) rust-analyzer";
this.statusBar.tooltip = "Click to reload";
this.statusBar.command = "rust-analyzer.reloadWorkspace";
this.statusBar.color = new vscode.ThemeColor("notificationsWarningIcon.foreground");
break;
}
}
2020-02-02 21:23:01 +00:00
pushCleanup(d: Disposable) {
2019-12-30 14:11:30 +00:00
this.extCtx.subscriptions.push(d);
2019-12-30 13:42:59 +00:00
}
}
2019-12-30 13:53:43 +00:00
2020-02-02 21:23:01 +00:00
export interface Disposable {
dispose(): void;
}
export type Cmd = (...args: any[]) => unknown;