aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/config.ts')
-rw-r--r--editors/code/src/config.ts271
1 files changed, 72 insertions, 199 deletions
diff --git a/editors/code/src/config.ts b/editors/code/src/config.ts
index 418845436..8cd89e119 100644
--- a/editors/code/src/config.ts
+++ b/editors/code/src/config.ts
@@ -16,45 +16,49 @@ export interface CargoFeatures {
16 allFeatures: boolean; 16 allFeatures: boolean;
17 features: string[]; 17 features: string[];
18} 18}
19
20export class Config { 19export class Config {
21 langServerSource!: null | BinarySource; 20 private static readonly rootSection = "rust-analyzer";
21 private static readonly requiresReloadOpts = [
22 "cargoFeatures",
23 "cargo-watch",
24 ]
25 .map(opt => `${Config.rootSection}.${opt}`);
26
27 private cfg!: vscode.WorkspaceConfiguration;
28
29 constructor(private readonly ctx: vscode.ExtensionContext) {
30 vscode.workspace.onDidChangeConfiguration(this.onConfigChange, this, ctx.subscriptions);
31 this.refreshConfig();
32 }
22 33
23 highlightingOn = true;
24 rainbowHighlightingOn = false;
25 enableEnhancedTyping = true;
26 lruCapacity: null | number = null;
27 displayInlayHints = true;
28 maxInlayHintLength: null | number = null;
29 excludeGlobs: string[] = [];
30 useClientWatching = true;
31 featureFlags: Record<string, boolean> = {};
32 // for internal use
33 withSysroot: null | boolean = null;
34 cargoWatchOptions: CargoWatchOptions = {
35 enable: true,
36 arguments: [],
37 command: '',
38 allTargets: true,
39 };
40 cargoFeatures: CargoFeatures = {
41 noDefaultFeatures: false,
42 allFeatures: true,
43 features: [],
44 };
45 34
46 private prevEnhancedTyping: null | boolean = null; 35 private refreshConfig() {
47 private prevCargoFeatures: null | CargoFeatures = null; 36 this.cfg = vscode.workspace.getConfiguration(Config.rootSection);
48 private prevCargoWatchOptions: null | CargoWatchOptions = null; 37 console.log("Using configuration:", this.cfg);
38 }
39
40 private async onConfigChange(event: vscode.ConfigurationChangeEvent) {
41 this.refreshConfig();
42
43 const requiresReloadOpt = Config.requiresReloadOpts.find(
44 opt => event.affectsConfiguration(opt)
45 );
46
47 if (!requiresReloadOpt) return;
49 48
50 constructor(ctx: vscode.ExtensionContext) { 49 const userResponse = await vscode.window.showInformationMessage(
51 vscode.workspace.onDidChangeConfiguration(_ => this.refresh(ctx), null, ctx.subscriptions); 50 `Changing "${requiresReloadOpt}" requires a reload`,
52 this.refresh(ctx); 51 "Reload now"
52 );
53
54 if (userResponse === "Reload now") {
55 vscode.commands.executeCommand("workbench.action.reloadWindow");
56 }
53 } 57 }
54 58
55 private static expandPathResolving(path: string) { 59 private static replaceTildeWithHomeDir(path: string) {
56 if (path.startsWith('~/')) { 60 if (path.startsWith("~/")) {
57 return path.replace('~', os.homedir()); 61 return os.homedir() + path.slice("~".length);
58 } 62 }
59 return path; 63 return path;
60 } 64 }
@@ -64,17 +68,14 @@ export class Config {
64 * `platform` on GitHub releases. (It is also stored under the same name when 68 * `platform` on GitHub releases. (It is also stored under the same name when
65 * downloaded by the extension). 69 * downloaded by the extension).
66 */ 70 */
67 private static prebuiltLangServerFileName( 71 get prebuiltLangServerFileName(): null | string {
68 platform: NodeJS.Platform,
69 arch: string
70 ): null | string {
71 // See possible `arch` values here: 72 // See possible `arch` values here:
72 // https://nodejs.org/api/process.html#process_process_arch 73 // https://nodejs.org/api/process.html#process_process_arch
73 74
74 switch (platform) { 75 switch (process.platform) {
75 76
76 case "linux": { 77 case "linux": {
77 switch (arch) { 78 switch (process.arch) {
78 case "arm": 79 case "arm":
79 case "arm64": return null; 80 case "arm64": return null;
80 81
@@ -97,28 +98,23 @@ export class Config {
97 } 98 }
98 } 99 }
99 100
100 private static langServerBinarySource( 101 get langServerBinarySource(): null | BinarySource {
101 ctx: vscode.ExtensionContext, 102 const langServerPath = RA_LSP_DEBUG ?? this.cfg.get<null | string>("raLspServerPath");
102 config: vscode.WorkspaceConfiguration
103 ): null | BinarySource {
104 const langServerPath = RA_LSP_DEBUG ?? config.get<null | string>("raLspServerPath");
105 103
106 if (langServerPath) { 104 if (langServerPath) {
107 return { 105 return {
108 type: BinarySource.Type.ExplicitPath, 106 type: BinarySource.Type.ExplicitPath,
109 path: Config.expandPathResolving(langServerPath) 107 path: Config.replaceTildeWithHomeDir(langServerPath)
110 }; 108 };
111 } 109 }
112 110
113 const prebuiltBinaryName = Config.prebuiltLangServerFileName( 111 const prebuiltBinaryName = this.prebuiltLangServerFileName;
114 process.platform, process.arch
115 );
116 112
117 if (!prebuiltBinaryName) return null; 113 if (!prebuiltBinaryName) return null;
118 114
119 return { 115 return {
120 type: BinarySource.Type.GithubRelease, 116 type: BinarySource.Type.GithubRelease,
121 dir: ctx.globalStoragePath, 117 dir: this.ctx.globalStoragePath,
122 file: prebuiltBinaryName, 118 file: prebuiltBinaryName,
123 repo: { 119 repo: {
124 name: "rust-analyzer", 120 name: "rust-analyzer",
@@ -127,158 +123,35 @@ export class Config {
127 }; 123 };
128 } 124 }
129 125
126 // We don't do runtime config validation here for simplicity. More on stackoverflow:
127 // https://stackoverflow.com/questions/60135780/what-is-the-best-way-to-type-check-the-configuration-for-vscode-extension
130 128
131 // FIXME: revisit the logic for `if (.has(...)) config.get(...)` set default 129 get highlightingOn() { return this.cfg.get("highlightingOn") as boolean; }
132 // values only in one place (i.e. remove default values from non-readonly members declarations) 130 get rainbowHighlightingOn() { return this.cfg.get("rainbowHighlightingOn") as boolean; }
133 private refresh(ctx: vscode.ExtensionContext) { 131 get lruCapacity() { return this.cfg.get("lruCapacity") as null | number; }
134 const config = vscode.workspace.getConfiguration('rust-analyzer'); 132 get displayInlayHints() { return this.cfg.get("displayInlayHints") as boolean; }
135 133 get maxInlayHintLength() { return this.cfg.get("maxInlayHintLength") as number; }
136 let requireReloadMessage = null; 134 get excludeGlobs() { return this.cfg.get("excludeGlobs") as string[]; }
137 135 get useClientWatching() { return this.cfg.get("useClientWatching") as boolean; }
138 if (config.has('highlightingOn')) { 136 get featureFlags() { return this.cfg.get("featureFlags") as Record<string, boolean>; }
139 this.highlightingOn = config.get('highlightingOn') as boolean;
140 }
141 137
142 if (config.has('rainbowHighlightingOn')) { 138 get cargoWatchOptions(): CargoWatchOptions {
143 this.rainbowHighlightingOn = config.get( 139 return {
144 'rainbowHighlightingOn', 140 enable: this.cfg.get("cargo-watch.enable") as boolean,
145 ) as boolean; 141 arguments: this.cfg.get("cargo-watch.arguments") as string[],
146 } 142 allTargets: this.cfg.get("cargo-watch.allTargets") as boolean,
147 143 command: this.cfg.get("cargo-watch.command") as string,
148 if (config.has('enableEnhancedTyping')) { 144 };
149 this.enableEnhancedTyping = config.get( 145 }
150 'enableEnhancedTyping',
151 ) as boolean;
152
153 if (this.prevEnhancedTyping === null) {
154 this.prevEnhancedTyping = this.enableEnhancedTyping;
155 }
156 } else if (this.prevEnhancedTyping === null) {
157 this.prevEnhancedTyping = this.enableEnhancedTyping;
158 }
159
160 if (this.prevEnhancedTyping !== this.enableEnhancedTyping) {
161 requireReloadMessage =
162 'Changing enhanced typing setting requires a reload';
163 this.prevEnhancedTyping = this.enableEnhancedTyping;
164 }
165
166 this.langServerSource = Config.langServerBinarySource(ctx, config);
167
168 if (config.has('cargo-watch.enable')) {
169 this.cargoWatchOptions.enable = config.get<boolean>(
170 'cargo-watch.enable',
171 true,
172 );
173 }
174
175 if (config.has('cargo-watch.arguments')) {
176 this.cargoWatchOptions.arguments = config.get<string[]>(
177 'cargo-watch.arguments',
178 [],
179 );
180 }
181
182 if (config.has('cargo-watch.command')) {
183 this.cargoWatchOptions.command = config.get<string>(
184 'cargo-watch.command',
185 '',
186 );
187 }
188
189 if (config.has('cargo-watch.allTargets')) {
190 this.cargoWatchOptions.allTargets = config.get<boolean>(
191 'cargo-watch.allTargets',
192 true,
193 );
194 }
195
196 if (config.has('lruCapacity')) {
197 this.lruCapacity = config.get('lruCapacity') as number;
198 }
199
200 if (config.has('displayInlayHints')) {
201 this.displayInlayHints = config.get('displayInlayHints') as boolean;
202 }
203 if (config.has('maxInlayHintLength')) {
204 this.maxInlayHintLength = config.get(
205 'maxInlayHintLength',
206 ) as number;
207 }
208 if (config.has('excludeGlobs')) {
209 this.excludeGlobs = config.get('excludeGlobs') || [];
210 }
211 if (config.has('useClientWatching')) {
212 this.useClientWatching = config.get('useClientWatching') || true;
213 }
214 if (config.has('featureFlags')) {
215 this.featureFlags = config.get('featureFlags') || {};
216 }
217 if (config.has('withSysroot')) {
218 this.withSysroot = config.get('withSysroot') || false;
219 }
220
221 if (config.has('cargoFeatures.noDefaultFeatures')) {
222 this.cargoFeatures.noDefaultFeatures = config.get(
223 'cargoFeatures.noDefaultFeatures',
224 false,
225 );
226 }
227 if (config.has('cargoFeatures.allFeatures')) {
228 this.cargoFeatures.allFeatures = config.get(
229 'cargoFeatures.allFeatures',
230 true,
231 );
232 }
233 if (config.has('cargoFeatures.features')) {
234 this.cargoFeatures.features = config.get(
235 'cargoFeatures.features',
236 [],
237 );
238 }
239
240 if (
241 this.prevCargoFeatures !== null &&
242 (this.cargoFeatures.allFeatures !==
243 this.prevCargoFeatures.allFeatures ||
244 this.cargoFeatures.noDefaultFeatures !==
245 this.prevCargoFeatures.noDefaultFeatures ||
246 this.cargoFeatures.features.length !==
247 this.prevCargoFeatures.features.length ||
248 this.cargoFeatures.features.some(
249 (v, i) => v !== this.prevCargoFeatures!.features[i],
250 ))
251 ) {
252 requireReloadMessage = 'Changing cargo features requires a reload';
253 }
254 this.prevCargoFeatures = { ...this.cargoFeatures };
255
256 if (this.prevCargoWatchOptions !== null) {
257 const changed =
258 this.cargoWatchOptions.enable !== this.prevCargoWatchOptions.enable ||
259 this.cargoWatchOptions.command !== this.prevCargoWatchOptions.command ||
260 this.cargoWatchOptions.allTargets !== this.prevCargoWatchOptions.allTargets ||
261 this.cargoWatchOptions.arguments.length !== this.prevCargoWatchOptions.arguments.length ||
262 this.cargoWatchOptions.arguments.some(
263 (v, i) => v !== this.prevCargoWatchOptions!.arguments[i],
264 );
265 if (changed) {
266 requireReloadMessage = 'Changing cargo-watch options requires a reload';
267 }
268 }
269 this.prevCargoWatchOptions = { ...this.cargoWatchOptions };
270 146
271 if (requireReloadMessage !== null) { 147 get cargoFeatures(): CargoFeatures {
272 const reloadAction = 'Reload now'; 148 return {
273 vscode.window 149 noDefaultFeatures: this.cfg.get("cargoFeatures.noDefaultFeatures") as boolean,
274 .showInformationMessage(requireReloadMessage, reloadAction) 150 allFeatures: this.cfg.get("cargoFeatures.allFeatures") as boolean,
275 .then(selectedAction => { 151 features: this.cfg.get("cargoFeatures.features") as string[],
276 if (selectedAction === reloadAction) { 152 };
277 vscode.commands.executeCommand(
278 'workbench.action.reloadWindow',
279 );
280 }
281 });
282 }
283 } 153 }
154
155 // for internal use
156 get withSysroot() { return this.cfg.get("withSysroot", false); }
284} 157}