rust/editors/code/src/config.ts

141 lines
4.6 KiB
TypeScript
Raw Normal View History

2018-10-07 15:59:02 -05:00
import * as vscode from 'vscode';
import { log } from "./util";
export type UpdatesChannel = "stable" | "nightly";
2020-03-09 12:57:13 -05:00
export const NIGHTLY_TAG = "nightly";
2020-03-23 18:00:57 -05:00
2018-10-07 15:59:02 -05:00
export class Config {
2020-03-09 12:57:13 -05:00
readonly extensionId = "matklad.rust-analyzer";
readonly rootSection = "rust-analyzer";
2020-03-09 12:57:13 -05:00
private readonly requiresReloadOpts = [
"serverPath",
"cargo",
2020-04-12 11:05:33 -05:00
"procMacro",
"files",
2020-03-19 16:56:32 -05:00
"highlighting",
"updates.channel",
2020-06-03 06:15:54 -05:00
"lens", // works as lens.*
"hoverActions", // works as hoverActions.*
]
2020-03-09 12:57:13 -05:00
.map(opt => `${this.rootSection}.${opt}`);
readonly package: {
version: string;
releaseTag: string | null;
enableProposedApi: boolean | undefined;
} = vscode.extensions.getExtension(this.extensionId)!.packageJSON;
2020-03-23 18:00:57 -05:00
readonly globalStoragePath: string;
2020-03-23 18:00:57 -05:00
constructor(ctx: vscode.ExtensionContext) {
this.globalStoragePath = ctx.globalStoragePath;
vscode.workspace.onDidChangeConfiguration(this.onDidChangeConfiguration, this, ctx.subscriptions);
this.refreshLogging();
}
2020-03-23 18:00:57 -05:00
private refreshLogging() {
log.setEnabled(this.traceExtension);
log.debug(
"Extension version:", this.package.version,
"using configuration:", this.cfg
);
}
2020-03-23 18:00:57 -05:00
private async onDidChangeConfiguration(event: vscode.ConfigurationChangeEvent) {
this.refreshLogging();
2020-03-09 12:57:13 -05:00
const requiresReloadOpt = this.requiresReloadOpts.find(
opt => event.affectsConfiguration(opt)
);
2018-10-07 15:59:02 -05:00
if (!requiresReloadOpt) return;
const userResponse = await vscode.window.showInformationMessage(
`Changing "${requiresReloadOpt}" requires a reload`,
"Reload now"
);
if (userResponse === "Reload now") {
await vscode.commands.executeCommand("workbench.action.reloadWindow");
}
}
// We don't do runtime config validation here for simplicity. More on stackoverflow:
// https://stackoverflow.com/questions/60135780/what-is-the-best-way-to-type-check-the-configuration-for-vscode-extension
2020-03-23 18:00:57 -05:00
private get cfg(): vscode.WorkspaceConfiguration {
return vscode.workspace.getConfiguration(this.rootSection);
}
2020-04-11 07:23:07 -05:00
/**
* Beware that postfix `!` operator erases both `null` and `undefined`.
* This is why the following doesn't work as expected:
*
* ```ts
* const nullableNum = vscode
* .workspace
* .getConfiguration
* .getConfiguration("rust-analyer")
* .get<number | null>(path)!;
*
* // What happens is that type of `nullableNum` is `number` but not `null | number`:
* const fullFledgedNum: number = nullableNum;
* ```
* So this getter handles this quirk by not requiring the caller to use postfix `!`
*/
private get<T>(path: string): T {
return this.cfg.get<T>(path)!;
}
get serverPath() { return this.get<null | string>("serverPath"); }
get channel() { return this.get<UpdatesChannel>("updates.channel"); }
get askBeforeDownload() { return this.get<boolean>("updates.askBeforeDownload"); }
get traceExtension() { return this.get<boolean>("trace.extension"); }
2020-03-23 18:00:57 -05:00
get inlayHints() {
return {
enable: this.get<boolean>("inlayHints.enable"),
2020-04-11 07:23:07 -05:00
typeHints: this.get<boolean>("inlayHints.typeHints"),
parameterHints: this.get<boolean>("inlayHints.parameterHints"),
chainingHints: this.get<boolean>("inlayHints.chainingHints"),
maxLength: this.get<null | number>("inlayHints.maxLength"),
};
}
2020-02-17 16:42:25 -06:00
get checkOnSave() {
return {
2020-04-11 07:23:07 -05:00
command: this.get<string>("checkOnSave.command"),
};
2018-10-07 15:59:02 -05:00
}
get debug() {
// "/rustc/<id>" used by suggestions only.
const { ["/rustc/<id>"]: _, ...sourceFileMap } = this.get<Record<string, string>>("debug.sourceFileMap");
return {
2020-04-29 06:13:57 -05:00
engine: this.get<string>("debug.engine"),
2020-05-07 09:07:58 -05:00
engineSettings: this.get<object>("debug.engineSettings"),
openDebugPane: this.get<boolean>("debug.openDebugPane"),
sourceFileMap: sourceFileMap
};
}
2020-05-17 11:51:44 -05:00
get lens() {
return {
2020-05-18 02:27:00 -05:00
enable: this.get<boolean>("lens.enable"),
2020-05-17 11:51:44 -05:00
run: this.get<boolean>("lens.run"),
debug: this.get<boolean>("lens.debug"),
implementations: this.get<boolean>("lens.implementations"),
};
}
2020-06-03 06:15:54 -05:00
get hoverActions() {
return {
enable: this.get<boolean>("hoverActions.enable"),
implementations: this.get<boolean>("hoverActions.implementations"),
};
}
2018-10-07 15:59:02 -05:00
}