-
Notifications
You must be signed in to change notification settings - Fork 454
Expand file tree
/
Copy pathextension.ts
More file actions
605 lines (526 loc) · 22.1 KB
/
Copy pathextension.ts
File metadata and controls
605 lines (526 loc) · 22.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
/*---------------------------------------------------------------------------------------------
* Licensed to the .NET Foundation under one or more agreements.
* The .NET Foundation licenses this file to you under the MIT license.
*--------------------------------------------------------------------------------------------*/
import * as cp from 'child_process';
import * as path from 'path';
import * as vscode from 'vscode';
// import * as runtimeExtension from 'vscode-dotnet-runtime'; // comment this out when packing the extension
import
{
DotnetInstallMode,
DotnetVersionSpecRequirement,
IDotnetAcquireContext,
IDotnetAcquireResult,
IDotnetEnsureDependenciesContext,
IDotnetFindPathContext,
IDotnetListVersionsResult,
IDotnetLogResult,
} from 'vscode-dotnet-runtime-library';
function parseEnsureDependenciesArguments(input: string): string[]
{
const trimmed = input.trim();
if (trimmed.startsWith('['))
{
const parsed = JSON.parse(trimmed);
if (!Array.isArray(parsed) || parsed.some(arg => typeof arg !== 'string'))
{
throw new Error('Custom arguments JSON must be an array of strings.');
}
return parsed;
}
return trimmed.length === 0 ? [] : trimmed.split(/\s+/);
}
export function activate(context: vscode.ExtensionContext)
{
// --------------------------------------------------------------------------
/*
NOTE: This sample should technically have the following in its package.json:
"extensionDependencies": [
"ms-dotnettools.vscode-dotnet-runtime",
]
This would enable the sample to require the vscode-dotnet-runtime extension
*/
const requestingExtensionId = 'ms-dotnettools.sample-extension';
// runtimeExtension.activate(context); // comment this out when packing the extension
// --------------------------------------------------------------------------
// -------------------runtime extension registrations------------------------
const sampleHelloWorldRegistration = vscode.commands.registerCommand('sample.helloworld', async () =>
{
try
{
await vscode.commands.executeCommand('dotnet.showAcquisitionLog');
// Console app requires .NET 10.
const commandRes = await vscode.commands.executeCommand<IDotnetAcquireResult>('dotnet.acquire', { version: '10.0', requestingExtensionId });
const dotnetPath = commandRes!.dotnetPath;
if (!dotnetPath)
{
throw new Error('Could not resolve the dotnet path!');
}
const sampleExtension = vscode.extensions.getExtension('ms-dotnettools.sample-extension');
if (!sampleExtension)
{
throw new Error('Could not find sample extension.');
}
const helloWorldLocation = path.join(sampleExtension.extensionPath, 'HelloWorldConsoleApp', 'HelloWorldConsoleApp.dll');
const helloWorldArgs = [helloWorldLocation];
// This will install any missing Linux dependencies.
await vscode.commands.executeCommand('dotnet.ensureDotnetDependencies', { command: dotnetPath, arguments: helloWorldArgs });
const result = cp.spawnSync(dotnetPath, helloWorldArgs);
const stderr = result?.stderr?.toString();
if ((stderr?.length ?? 0) > 0)
{
vscode.window.showErrorMessage(`Failed to run Hello World:
${stderr}`);
return;
}
const appOutput = result?.stdout?.toString();
vscode.window.showInformationMessage(`.NET Output: ${appOutput}`);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
async function callAcquireAPI(version: string | undefined, installMode: DotnetInstallMode | undefined, forceUpdates = true)
{
if (!version)
{
version = await vscode.window.showInputBox({
placeHolder: '3.1',
value: '3.1',
prompt: '.NET version, i.e. 3.1',
});
}
try
{
await vscode.commands.executeCommand('dotnet.showAcquisitionLog');
await vscode.commands.executeCommand('dotnet.acquire', { version, requestingExtensionId, mode: installMode, forceUpdate: forceUpdates });
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
}
const sampleAcquireRegistration = vscode.commands.registerCommand('sample.dotnet.acquire', async (version: string | undefined) =>
{
await callAcquireAPI(version, undefined);
});
const sampleAcquireASPNETRegistration = vscode.commands.registerCommand('sample.dotnet.acquireASPNET', async (version: string | undefined) =>
{
await callAcquireAPI(version, 'aspnetcore');
});
const sampleAcquireNoForceRegistration = vscode.commands.registerCommand('sample.dotnet.acquireNoForce', async (version: string | undefined) =>
{
const mode = await vscode.window.showInputBox({
placeHolder: 'runtime',
value: 'runtime',
prompt: '.NET mode to acquire, e.g. runtime or aspnetcore',
});
await callAcquireAPI(undefined, mode as DotnetInstallMode, false);
});
const sampleAcquireStatusRegistration = vscode.commands.registerCommand('sample.dotnet.acquireStatus', async (version: string | undefined) =>
{
if (!version)
{
version = await vscode.window.showInputBox({
placeHolder: '3.1',
value: '3.1',
prompt: '.NET version, i.e. 3.1',
});
}
try
{
await vscode.commands.executeCommand('dotnet.showAcquisitionLog');
const status = await vscode.commands.executeCommand<IDotnetAcquireResult>('dotnet.acquireStatus', { version, requestingExtensionId });
vscode.window.showInformationMessage(status === undefined ? '.NET is not installed' : `.NET version ${version} installed at ${status.dotnetPath}`);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleDotnetUninstallAllRegistration = vscode.commands.registerCommand('sample.dotnet.uninstallAll', async () =>
{
try
{
await vscode.commands.executeCommand('dotnet.uninstallAll');
vscode.window.showInformationMessage('.NET runtimes uninstalled.');
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleResetUpdateSuccessTime = vscode.commands.registerCommand('sample.dotnet.resetUpdateTimer', async () =>
{
try
{
const resetResult = await vscode.commands.executeCommand<Date | undefined>('dotnet._resetUpdateTimer');
const resetDisplay = resetResult ? new Date(resetResult).toString() : 'undefined';
vscode.window.showInformationMessage(`.NET update timer reset to: ${resetDisplay}`);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
async function acquireConcurrent(versions: [string, string, string], installMode?: DotnetInstallMode)
{
try
{
vscode.commands.executeCommand('dotnet.showAcquisitionLog');
const promises = [
vscode.commands.executeCommand('dotnet.acquire', { version: versions[0], requestingExtensionId, mode: installMode }),
vscode.commands.executeCommand('dotnet.acquire', { version: versions[1], requestingExtensionId, mode: installMode }),
vscode.commands.executeCommand('dotnet.acquire', { version: versions[2], requestingExtensionId, mode: installMode })];
for (const promise of promises)
{
// Await here so we can detect errors
await promise;
}
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
}
const sampleConcurrentTest = vscode.commands.registerCommand('sample.dotnet.concurrentTest', async () =>
{
await acquireConcurrent(['8.0', '9.0', '10.0'], 'runtime');
});
const sampleConcurrentASPNETTest = vscode.commands.registerCommand('sample.dotnet.concurrentASPNETTest', async () =>
{
acquireConcurrent(['8.0', '9.0', '10.0'], 'runtime') // start this so we test concurrent types of runtime installs
await acquireConcurrent(['8.0', '9.0', '10.0'], 'aspnetcore');
});
const sampleShowAcquisitionLogRegistration = vscode.commands.registerCommand('sample.dotnet.showAcquisitionLog', async () =>
{
try
{
await vscode.commands.executeCommand('dotnet.showAcquisitionLog');
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleGetAcquisitionLogRegistration = vscode.commands.registerCommand('sample.dotnet.getAcquisitionLog', async () =>
{
try
{
const result = await vscode.commands.executeCommand<IDotnetLogResult>('dotnet.getAcquisitionLog');
vscode.window.showInformationMessage(`.NET acquisition log path: ${result?.logPath ?? 'undefined'}`);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleEnsureDependenciesRegistration = vscode.commands.registerCommand('sample.dotnet.ensureDependencies', async () =>
{
const dotnetPath = await vscode.window.showInputBox({
placeHolder: process.platform === 'win32' ? 'C:\\Program Files\\dotnet\\dotnet.exe' : '/usr/bin/dotnet',
value: 'dotnet',
prompt: 'The dotnet command or executable path to run.',
});
if (!dotnetPath)
{
return;
}
const argumentMode = await vscode.window.showQuickPick(['DLL path', 'Custom arguments'], {
placeHolder: 'Choose the argument shape to pass to dotnet.ensureDotnetDependencies.'
});
if (!argumentMode)
{
return;
}
let args: string[];
if (argumentMode === 'DLL path')
{
const dllPath = await vscode.window.showInputBox({
placeHolder: '/path/to/LanguageServer.dll',
prompt: 'The DLL path to pass as the single dotnet argument.',
});
if (!dllPath)
{
return;
}
args = [dllPath];
}
else
{
const customArgs = await vscode.window.showInputBox({
placeHolder: '--info or ["/path/to/app.dll", "--flag"]',
value: '--info',
prompt: 'Arguments to pass to dotnet. Use JSON array syntax if an argument contains spaces.',
});
if (customArgs === undefined)
{
return;
}
args = parseEnsureDependenciesArguments(customArgs);
}
try
{
await vscode.commands.executeCommand('dotnet.showAcquisitionLog');
const commandContext: IDotnetEnsureDependenciesContext = { command: dotnetPath, arguments: args };
await vscode.commands.executeCommand('dotnet.ensureDotnetDependencies', commandContext);
vscode.window.showInformationMessage(`dotnet.ensureDotnetDependencies completed for: ${dotnetPath} ${args.join(' ')}`);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleGlobalSDKFromRuntimeRegistration = vscode.commands.registerCommand('sample.dotnet.acquireGlobalSDK', async (version: string | undefined) =>
{
if (!version)
{
version = await vscode.window.showInputBox({
placeHolder: '7.0.103',
value: '7.0.103',
prompt: 'The .NET SDK version. You can use different formats: 5, 3.1, 7.0.3xx, 6.0.201, etc.',
});
}
if (!version)
{
return;
}
try
{
await vscode.commands.executeCommand('dotnet.showAcquisitionLog');
let commandContext: IDotnetAcquireContext = { version: version, requestingExtensionId: requestingExtensionId, installType: 'global' };
await vscode.commands.executeCommand('dotnet.acquireGlobalSDK', commandContext);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleFindPathRegistration = vscode.commands.registerCommand('sample.dotnet.findPath', async () =>
{
const version = await vscode.window.showInputBox(
{
placeHolder: '8.0',
value: '8.0',
prompt: 'The .NET runtime version.',
});
let arch = await vscode.window.showInputBox({
placeHolder: 'x64',
value: 'x64',
prompt: 'The .NET runtime architecture.',
});
arch = arch?.toLowerCase();
let searchMode = await vscode.window.showInputBox({
placeHolder: 'runtime',
value: 'runtime',
prompt: 'look for an sdk, runtime, aspnetcore runtime, etc',
});
searchMode = searchMode?.toLowerCase() ?? 'runtime';
let requirement = await vscode.window.showInputBox({
placeHolder: 'greater_than_or_equal',
value: 'greater_than_or_equal',
prompt: 'The condition to search for a requirement.',
});
requirement = requirement?.toLowerCase();
let commandContext: IDotnetFindPathContext = {
acquireContext: { version: version, requestingExtensionId: requestingExtensionId, architecture: arch, mode: searchMode } as IDotnetAcquireContext,
versionSpecRequirement: requirement as DotnetVersionSpecRequirement
};
const result = await vscode.commands.executeCommand('dotnet.findPath', commandContext);
vscode.window.showInformationMessage(`.NET Path Discovered\n
${JSON.stringify(result) ?? 'undefined'}`);
});
const sampleAvailableInstallsRegistration = vscode.commands.registerCommand('sample.dotnet.availableInstalls', async (version: string | undefined) =>
{
let dotnetPath = await vscode.window.showInputBox({
placeHolder: 'undefined',
value: 'undefined',
prompt: 'The .NET Host Path to Scan.',
});
dotnetPath = dotnetPath === 'undefined' ? undefined : dotnetPath;
let arch = await vscode.window.showInputBox({
placeHolder: 'x64',
value: 'x64',
prompt: 'The .NET runtime architecture.',
});
arch = arch?.toLowerCase();
let searchMode = await vscode.window.showInputBox({
placeHolder: 'runtime',
value: 'runtime',
prompt: 'look for an sdk, runtime, aspnetcore runtime, etc',
});
try
{
const result = await vscode.commands.executeCommand<IDotnetAcquireResult>('dotnet.availableInstalls', { architecture: arch, requestingExtensionId: requestingExtensionId, mode: searchMode, dotnetExecutablePath: dotnetPath });
vscode.window.showInformationMessage(`.NET Discovered:\n
${JSON.stringify(result) ?? 'undefined'}`);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
context.subscriptions.push(
sampleHelloWorldRegistration,
sampleAcquireRegistration,
sampleAcquireASPNETRegistration,
sampleAcquireStatusRegistration,
sampleDotnetUninstallAllRegistration,
sampleConcurrentTest,
sampleConcurrentASPNETTest,
sampleShowAcquisitionLogRegistration,
sampleGetAcquisitionLogRegistration,
sampleEnsureDependenciesRegistration,
sampleFindPathRegistration,
sampleAvailableInstallsRegistration
);
// --------------------------------------------------------------------------
// ---------------------sdk extension registrations--------------------------
const sampleSDKAcquireRegistration = vscode.commands.registerCommand('sample.dotnet-sdk.acquire', async (version: string | undefined) =>
{
if (!version)
{
version = await vscode.window.showInputBox({
placeHolder: '5.0',
value: '5.0',
prompt: '.NET SDK version, i.e. 5.0',
});
}
try
{
await vscode.commands.executeCommand('dotnet-sdk.showAcquisitionLog');
await vscode.commands.executeCommand('dotnet-sdk.acquire', { version, requestingExtensionId });
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleSDKGlobalAcquireRegistration = vscode.commands.registerCommand('sample.dotnet-sdk.acquireGlobal', async (version: string | undefined) =>
{
if (!version)
{
version = await vscode.window.showInputBox({
placeHolder: '7.0.103',
value: '7.0.103',
prompt: 'The .NET SDK version. You can use different formats: 5, 3.1, 7.0.3xx, 6.0.201, etc.',
});
}
if (!version)
{
return;
}
try
{
await vscode.commands.executeCommand('dotnet-sdk.showAcquisitionLog');
let commandContext: IDotnetAcquireContext = { version: version, requestingExtensionId: requestingExtensionId, installType: 'global' };
await vscode.commands.executeCommand('dotnet-sdk.acquire', commandContext);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleSDKAcquireStatusRegistration = vscode.commands.registerCommand('sample.dotnet-sdk.acquireStatus', async (version: string | undefined) =>
{
if (!version)
{
version = await vscode.window.showInputBox({
placeHolder: '5.0',
value: '5.0',
prompt: '.NET SDK version, i.e. 5.0',
});
}
try
{
await vscode.commands.executeCommand('dotnet-sdk.showAcquisitionLog');
const status = await vscode.commands.executeCommand<IDotnetAcquireResult>('dotnet-sdk.acquireStatus', { version, requestingExtensionId });
vscode.window.showInformationMessage(status === undefined ? '.NET is not installed' : `.NET version ${version} installed at ${status.dotnetPath}`);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleSDKlistVersions = vscode.commands.registerCommand('sample.dotnet-sdk.listVersions', async (getRuntimes: boolean) =>
{
if (!getRuntimes)
{
getRuntimes = JSON.parse(await vscode.window.showInputBox({
placeHolder: 'false',
value: 'false',
prompt: 'Acquire Runtimes? Use `true` if so, else, give `false`.',
}) ?? 'false');
}
try
{
const result: IDotnetListVersionsResult | undefined = await vscode.commands.executeCommand('dotnet-sdk.listVersions', { listRuntimes: getRuntimes });
vscode.window.showInformationMessage(`Available ${getRuntimes == false ? 'SDKS' : 'Runtimes'}: ${result?.map((x: any) => x.version).join(", ")}`);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleSDKrecommendedVersion = vscode.commands.registerCommand('sample.dotnet-sdk.recommendedVersion', async (getRuntimes: boolean) =>
{
try
{
const result: IDotnetListVersionsResult | undefined = await vscode.commands.executeCommand('dotnet.recommendedVersion', { listRuntimes: getRuntimes });
vscode.window.showInformationMessage(`Recommended SDK Version to Install: ${result?.[0]?.version}`);
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleSDKDotnetUninstallAllRegistration = vscode.commands.registerCommand('sample.dotnet-sdk.uninstallAll', async () =>
{
try
{
await vscode.commands.executeCommand('dotnet-sdk.uninstallAll');
vscode.window.showInformationMessage('.NET SDKs uninstalled.');
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleSDKShowAcquisitionLogRegistration = vscode.commands.registerCommand('sample.dotnet-sdk.showAcquisitionLog', async () =>
{
try
{
await vscode.commands.executeCommand('dotnet-sdk.showAcquisitionLog');
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
const sampleForceUpdateRegistration = vscode.commands.registerCommand('sample.dotnet.forceUpdate', async () =>
{
try
{
// Call the forceUpdate command from the runtime extension
await vscode.commands.executeCommand('dotnet.forceUpdate', { requestingExtensionId });
}
catch (error)
{
vscode.window.showErrorMessage((error as Error).toString());
}
});
context.subscriptions.push(
sampleSDKAcquireRegistration,
sampleSDKGlobalAcquireRegistration,
sampleSDKAcquireStatusRegistration,
sampleSDKlistVersions,
sampleSDKrecommendedVersion,
sampleSDKDotnetUninstallAllRegistration,
sampleSDKShowAcquisitionLogRegistration,
sampleForceUpdateRegistration,
sampleGlobalSDKFromRuntimeRegistration,
sampleResetUpdateSuccessTime,
sampleAcquireNoForceRegistration);
}