-
Notifications
You must be signed in to change notification settings - Fork 30k
/
shellIntegrationAddon.ts
603 lines (546 loc) · 21.3 KB
/
shellIntegrationAddon.ts
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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { IShellIntegration, ShellIntegrationStatus } from 'vs/platform/terminal/common/terminal';
import { Disposable, dispose, IDisposable, toDisposable } from 'vs/base/common/lifecycle';
import { TerminalCapabilityStore } from 'vs/platform/terminal/common/capabilities/terminalCapabilityStore';
import { CommandDetectionCapability } from 'vs/platform/terminal/common/capabilities/commandDetectionCapability';
import { CwdDetectionCapability } from 'vs/platform/terminal/common/capabilities/cwdDetectionCapability';
import { IBufferMarkCapability, ICommandDetectionCapability, ICwdDetectionCapability, ISerializedCommandDetectionCapability, TerminalCapability } from 'vs/platform/terminal/common/capabilities/capabilities';
import { PartialCommandDetectionCapability } from 'vs/platform/terminal/common/capabilities/partialCommandDetectionCapability';
import { ILogService } from 'vs/platform/log/common/log';
// Importing types is safe in any layer
// eslint-disable-next-line local/code-import-patterns
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
import { Emitter } from 'vs/base/common/event';
import { BufferMarkCapability } from 'vs/platform/terminal/common/capabilities/bufferMarkCapability';
// Importing types is safe in any layer
// eslint-disable-next-line local/code-import-patterns
import type { ITerminalAddon, Terminal } from '@xterm/headless';
import { URI } from 'vs/base/common/uri';
import { sanitizeCwd } from 'vs/platform/terminal/common/terminalEnvironment';
import { removeAnsiEscapeCodesFromPrompt } from 'vs/base/common/strings';
/**
* Shell integration is a feature that enhances the terminal's understanding of what's happening
* in the shell by injecting special sequences into the shell's prompt using the "Set Text
* Parameters" sequence (`OSC Ps ; Pt ST`).
*
* Definitions:
* - OSC: `\x1b]`
* - Ps: A single (usually optional) numeric parameter, composed of one or more digits.
* - Pt: A text parameter composed of printable characters.
* - ST: `\x7`
*
* This is inspired by a feature of the same name in the FinalTerm, iTerm2 and kitty terminals.
*/
/**
* The identifier for the first numeric parameter (`Ps`) for OSC commands used by shell integration.
*/
export const enum ShellIntegrationOscPs {
/**
* Sequences pioneered by FinalTerm.
*/
FinalTerm = 133,
/**
* Sequences pioneered by VS Code. The number is derived from the least significant digit of
* "VSC" when encoded in hex ("VSC" = 0x56, 0x53, 0x43).
*/
VSCode = 633,
/**
* Sequences pioneered by iTerm.
*/
ITerm = 1337,
SetCwd = 7,
SetWindowsFriendlyCwd = 9
}
/**
* VS Code-specific shell integration sequences. Some of these are based on more common alternatives
* like those pioneered in FinalTerm. The decision to move to entirely custom sequences was to try
* to improve reliability and prevent the possibility of applications confusing the terminal. If
* multiple shell integration scripts run, VS Code will prioritize the VS Code-specific ones.
*
* It's recommended that authors of shell integration scripts use the common sequences (eg. 133)
* when building general purpose scripts and the VS Code-specific (633) when targeting only VS Code
* or when there are no other alternatives.
*/
const enum VSCodeOscPt {
/**
* The start of the prompt, this is expected to always appear at the start of a line.
* Based on FinalTerm's `OSC 133 ; A ST`.
*/
PromptStart = 'A',
/**
* The start of a command, ie. where the user inputs their command.
* Based on FinalTerm's `OSC 133 ; B ST`.
*/
CommandStart = 'B',
/**
* Sent just before the command output begins.
* Based on FinalTerm's `OSC 133 ; C ST`.
*/
CommandExecuted = 'C',
/**
* Sent just after a command has finished. The exit code is optional, when not specified it
* means no command was run (ie. enter on empty prompt or ctrl+c).
* Based on FinalTerm's `OSC 133 ; D [; <ExitCode>] ST`.
*/
CommandFinished = 'D',
/**
* Explicitly set the command line. This helps workaround performance and reliability problems
* with parsing out the command, such as conpty not guaranteeing the position of the sequence or
* the shell not guaranteeing that the entire command is even visible. Ideally this is called
* immediately before {@link CommandExecuted}, immediately before {@link CommandFinished} will
* also work but that means terminal will only know the accurate command line when the command is
* finished.
*
* The command line can escape ascii characters using the `\xAB` format, where AB are the
* hexadecimal representation of the character code (case insensitive), and escape the `\`
* character using `\\`. It's required to escape semi-colon (`0x3b`) and characters 0x20 and
* below, this is particularly important for new line and semi-colon.
*
* Some examples:
*
* ```
* "\" -> "\\"
* "\n" -> "\x0a"
* ";" -> "\x3b"
* ```
*
* An optional nonce can be provided which is may be required by the terminal in order enable
* some features. This helps ensure no malicious command injection has occurred.
*
* Format: `OSC 633 ; E [; <CommandLine> [; <Nonce>]] ST`.
*/
CommandLine = 'E',
/**
* Similar to prompt start but for line continuations.
*
* WARNING: This sequence is unfinalized, DO NOT use this in your shell integration script.
*/
ContinuationStart = 'F',
/**
* Similar to command start but for line continuations.
*
* WARNING: This sequence is unfinalized, DO NOT use this in your shell integration script.
*/
ContinuationEnd = 'G',
/**
* The start of the right prompt.
*
* WARNING: This sequence is unfinalized, DO NOT use this in your shell integration script.
*/
RightPromptStart = 'H',
/**
* The end of the right prompt.
*
* WARNING: This sequence is unfinalized, DO NOT use this in your shell integration script.
*/
RightPromptEnd = 'I',
/**
* Set an arbitrary property: `OSC 633 ; P ; <Property>=<Value> ST`, only known properties will
* be handled.
*
* Known properties:
*
* - `Cwd` - Reports the current working directory to the terminal.
* - `IsWindows` - Indicates whether the terminal is using a Windows backend like winpty or
* conpty. This may be used to enable additional heuristics as the positioning of the shell
* integration sequences are not guaranteed to be correct. Valid values: `True`, `False`.
* - `ContinuationPrompt` - Reports the continuation prompt that is printed at the start of
* multi-line inputs.
*
* WARNING: Any other properties may be changed and are not guaranteed to work in the future.
*/
Property = 'P',
/**
* Sets a mark/point-of-interest in the buffer. `OSC 633 ; SetMark [; Id=<string>] [; Hidden]`
* `Id` - The identifier of the mark that can be used to reference it
* `Hidden` - When set, the mark will be available to reference internally but will not visible
*
* WARNING: This sequence is unfinalized, DO NOT use this in your shell integration script.
*/
SetMark = 'SetMark',
}
/**
* ITerm sequences
*/
const enum ITermOscPt {
/**
* Sets a mark/point-of-interest in the buffer. `OSC 1337 ; SetMark`
*/
SetMark = 'SetMark',
/**
* Reports current working directory (CWD). `OSC 1337 ; CurrentDir=<Cwd> ST`
*/
CurrentDir = 'CurrentDir'
}
/**
* The shell integration addon extends xterm by reading shell integration sequences and creating
* capabilities and passing along relevant sequences to the capabilities. This is meant to
* encapsulate all handling/parsing of sequences so the capabilities don't need to.
*/
export class ShellIntegrationAddon extends Disposable implements IShellIntegration, ITerminalAddon {
private _terminal?: Terminal;
readonly capabilities = this._register(new TerminalCapabilityStore());
private _hasUpdatedTelemetry: boolean = false;
private _activationTimeout: any;
private _commonProtocolDisposables: IDisposable[] = [];
private _status: ShellIntegrationStatus = ShellIntegrationStatus.Off;
get status(): ShellIntegrationStatus { return this._status; }
private readonly _onDidChangeStatus = new Emitter<ShellIntegrationStatus>();
readonly onDidChangeStatus = this._onDidChangeStatus.event;
constructor(
private _nonce: string,
private readonly _disableTelemetry: boolean | undefined,
private readonly _telemetryService: ITelemetryService | undefined,
private readonly _logService: ILogService
) {
super();
this._register(toDisposable(() => {
this._clearActivationTimeout();
this._disposeCommonProtocol();
}));
}
private _disposeCommonProtocol(): void {
dispose(this._commonProtocolDisposables);
this._commonProtocolDisposables.length = 0;
}
activate(xterm: Terminal) {
this._terminal = xterm;
this.capabilities.add(TerminalCapability.PartialCommandDetection, this._register(new PartialCommandDetectionCapability(this._terminal)));
this._register(xterm.parser.registerOscHandler(ShellIntegrationOscPs.VSCode, data => this._handleVSCodeSequence(data)));
this._register(xterm.parser.registerOscHandler(ShellIntegrationOscPs.ITerm, data => this._doHandleITermSequence(data)));
this._commonProtocolDisposables.push(
xterm.parser.registerOscHandler(ShellIntegrationOscPs.FinalTerm, data => this._handleFinalTermSequence(data))
);
this._register(xterm.parser.registerOscHandler(ShellIntegrationOscPs.SetCwd, data => this._doHandleSetCwd(data)));
this._register(xterm.parser.registerOscHandler(ShellIntegrationOscPs.SetWindowsFriendlyCwd, data => this._doHandleSetWindowsFriendlyCwd(data)));
this._ensureCapabilitiesOrAddFailureTelemetry();
}
getMarkerId(terminal: Terminal, vscodeMarkerId: string) {
this._createOrGetBufferMarkDetection(terminal).getMark(vscodeMarkerId);
}
private _handleFinalTermSequence(data: string): boolean {
const didHandle = this._doHandleFinalTermSequence(data);
if (this._status === ShellIntegrationStatus.Off) {
this._status = ShellIntegrationStatus.FinalTerm;
this._onDidChangeStatus.fire(this._status);
}
return didHandle;
}
private _doHandleFinalTermSequence(data: string): boolean {
if (!this._terminal) {
return false;
}
// Pass the sequence along to the capability
// It was considered to disable the common protocol in order to not confuse the VS Code
// shell integration if both happen for some reason. This doesn't work for powerlevel10k
// when instant prompt is enabled though. If this does end up being a problem we could pass
// a type flag through the capability calls
const [command, ...args] = data.split(';');
switch (command) {
case 'A':
this._createOrGetCommandDetection(this._terminal).handlePromptStart();
return true;
case 'B':
// Ignore the command line for these sequences as it's unreliable for example in powerlevel10k
this._createOrGetCommandDetection(this._terminal).handleCommandStart({ ignoreCommandLine: true });
return true;
case 'C':
this._createOrGetCommandDetection(this._terminal).handleCommandExecuted();
return true;
case 'D': {
const exitCode = args.length === 1 ? parseInt(args[0]) : undefined;
this._createOrGetCommandDetection(this._terminal).handleCommandFinished(exitCode);
return true;
}
}
return false;
}
private _handleVSCodeSequence(data: string): boolean {
const didHandle = this._doHandleVSCodeSequence(data);
if (!this._hasUpdatedTelemetry && didHandle) {
this._telemetryService?.publicLog2<{}, { owner: 'meganrogge'; comment: 'Indicates shell integration was activated' }>('terminal/shellIntegrationActivationSucceeded');
this._hasUpdatedTelemetry = true;
this._clearActivationTimeout();
}
if (this._status !== ShellIntegrationStatus.VSCode) {
this._status = ShellIntegrationStatus.VSCode;
this._onDidChangeStatus.fire(this._status);
}
return didHandle;
}
private async _ensureCapabilitiesOrAddFailureTelemetry(): Promise<void> {
if (!this._telemetryService || this._disableTelemetry) {
return;
}
this._activationTimeout = setTimeout(() => {
if (!this.capabilities.get(TerminalCapability.CommandDetection) && !this.capabilities.get(TerminalCapability.CwdDetection)) {
this._telemetryService?.publicLog2<{ classification: 'SystemMetaData'; purpose: 'FeatureInsight' }>('terminal/shellIntegrationActivationTimeout');
this._logService.warn('Shell integration failed to add capabilities within 10 seconds');
}
this._hasUpdatedTelemetry = true;
}, 10000);
}
private _clearActivationTimeout(): void {
if (this._activationTimeout !== undefined) {
clearTimeout(this._activationTimeout);
this._activationTimeout = undefined;
}
}
private _doHandleVSCodeSequence(data: string): boolean {
if (!this._terminal) {
return false;
}
// Pass the sequence along to the capability
const argsIndex = data.indexOf(';');
const sequenceCommand = argsIndex === -1 ? data : data.substring(0, argsIndex);
// Cast to strict checked index access
const args: (string | undefined)[] = argsIndex === -1 ? [] : data.substring(argsIndex + 1).split(';');
switch (sequenceCommand) {
case VSCodeOscPt.PromptStart:
this._createOrGetCommandDetection(this._terminal).handlePromptStart();
return true;
case VSCodeOscPt.CommandStart:
this._createOrGetCommandDetection(this._terminal).handleCommandStart();
return true;
case VSCodeOscPt.CommandExecuted:
this._createOrGetCommandDetection(this._terminal).handleCommandExecuted();
return true;
case VSCodeOscPt.CommandFinished: {
const arg0 = args[0];
const exitCode = arg0 !== undefined ? parseInt(arg0) : undefined;
this._createOrGetCommandDetection(this._terminal).handleCommandFinished(exitCode);
return true;
}
case VSCodeOscPt.CommandLine: {
const arg0 = args[0];
const arg1 = args[1];
let commandLine: string;
if (arg0 !== undefined) {
commandLine = deserializeMessage(arg0);
} else {
commandLine = '';
}
this._createOrGetCommandDetection(this._terminal).setCommandLine(commandLine, arg1 === this._nonce);
return true;
}
case VSCodeOscPt.ContinuationStart: {
this._createOrGetCommandDetection(this._terminal).handleContinuationStart();
return true;
}
case VSCodeOscPt.ContinuationEnd: {
this._createOrGetCommandDetection(this._terminal).handleContinuationEnd();
return true;
}
case VSCodeOscPt.RightPromptStart: {
this._createOrGetCommandDetection(this._terminal).handleRightPromptStart();
return true;
}
case VSCodeOscPt.RightPromptEnd: {
this._createOrGetCommandDetection(this._terminal).handleRightPromptEnd();
return true;
}
case VSCodeOscPt.Property: {
const arg0 = args[0];
const deserialized = arg0 !== undefined ? deserializeMessage(arg0) : '';
const { key, value } = parseKeyValueAssignment(deserialized);
if (value === undefined) {
return true;
}
switch (key) {
case 'ContinuationPrompt': {
this._updateContinuationPrompt(removeAnsiEscapeCodesFromPrompt(value));
return true;
}
case 'Cwd': {
this._updateCwd(value);
return true;
}
case 'IsWindows': {
this._createOrGetCommandDetection(this._terminal).setIsWindowsPty(value === 'True' ? true : false);
return true;
}
case 'Prompt': {
// Remove escape sequences from the user's prompt
const sanitizedValue = value.replace(/\x1b\[[0-9;]*m/g, '');
this._updatePromptTerminator(sanitizedValue);
return true;
}
case 'Task': {
this._createOrGetBufferMarkDetection(this._terminal);
this.capabilities.get(TerminalCapability.CommandDetection)?.setIsCommandStorageDisabled();
return true;
}
}
}
case VSCodeOscPt.SetMark: {
this._createOrGetBufferMarkDetection(this._terminal).addMark(parseMarkSequence(args));
return true;
}
}
// Unrecognized sequence
return false;
}
private _updateContinuationPrompt(value: string) {
if (!this._terminal) {
return;
}
this._createOrGetCommandDetection(this._terminal).setContinuationPrompt(value);
}
private _updatePromptTerminator(prompt: string) {
if (!this._terminal) {
return;
}
const lastPromptLine = prompt.substring(prompt.lastIndexOf('\n')).trim();
const promptTerminator = lastPromptLine.substring(lastPromptLine.lastIndexOf(' ')).trim();
if (promptTerminator) {
this._createOrGetCommandDetection(this._terminal).setPromptTerminator(promptTerminator);
}
}
private _updateCwd(value: string) {
value = sanitizeCwd(value);
this._createOrGetCwdDetection().updateCwd(value);
const commandDetection = this.capabilities.get(TerminalCapability.CommandDetection);
commandDetection?.setCwd(value);
}
private _doHandleITermSequence(data: string): boolean {
if (!this._terminal) {
return false;
}
const [command] = data.split(';');
switch (command) {
case ITermOscPt.SetMark: {
this._createOrGetBufferMarkDetection(this._terminal).addMark();
}
default: {
// Checking for known `<key>=<value>` pairs.
// Note that unlike `VSCodeOscPt.Property`, iTerm2 does not interpret backslash or hex-escape sequences.
// See: https://github.com/gnachman/iTerm2/blob/bb0882332cec5196e4de4a4225978d746e935279/sources/VT100Terminal.m#L2089-L2105
const { key, value } = parseKeyValueAssignment(command);
if (value === undefined) {
// No '=' was found, so it's not a property assignment.
return true;
}
switch (key) {
case ITermOscPt.CurrentDir:
// Encountered: `OSC 1337 ; CurrentDir=<Cwd> ST`
this._updateCwd(value);
return true;
}
}
}
// Unrecognized sequence
return false;
}
private _doHandleSetWindowsFriendlyCwd(data: string): boolean {
if (!this._terminal) {
return false;
}
const [command, ...args] = data.split(';');
switch (command) {
case '9':
// Encountered `OSC 9 ; 9 ; <cwd> ST`
if (args.length) {
this._updateCwd(args[0]);
}
return true;
}
// Unrecognized sequence
return false;
}
/**
* Handles the sequence: `OSC 7 ; scheme://cwd ST`
*/
private _doHandleSetCwd(data: string): boolean {
if (!this._terminal) {
return false;
}
const [command] = data.split(';');
if (command.match(/^file:\/\/.*\//)) {
const uri = URI.parse(command);
if (uri.path && uri.path.length > 0) {
this._updateCwd(uri.path);
return true;
}
}
// Unrecognized sequence
return false;
}
serialize(): ISerializedCommandDetectionCapability {
if (!this._terminal || !this.capabilities.has(TerminalCapability.CommandDetection)) {
return {
isWindowsPty: false,
commands: []
};
}
const result = this._createOrGetCommandDetection(this._terminal).serialize();
return result;
}
deserialize(serialized: ISerializedCommandDetectionCapability): void {
if (!this._terminal) {
throw new Error('Cannot restore commands before addon is activated');
}
this._createOrGetCommandDetection(this._terminal).deserialize(serialized);
}
protected _createOrGetCwdDetection(): ICwdDetectionCapability {
let cwdDetection = this.capabilities.get(TerminalCapability.CwdDetection);
if (!cwdDetection) {
cwdDetection = this._register(new CwdDetectionCapability());
this.capabilities.add(TerminalCapability.CwdDetection, cwdDetection);
}
return cwdDetection;
}
protected _createOrGetCommandDetection(terminal: Terminal): ICommandDetectionCapability {
let commandDetection = this.capabilities.get(TerminalCapability.CommandDetection);
if (!commandDetection) {
commandDetection = this._register(new CommandDetectionCapability(terminal, this._logService));
this.capabilities.add(TerminalCapability.CommandDetection, commandDetection);
}
return commandDetection;
}
protected _createOrGetBufferMarkDetection(terminal: Terminal): IBufferMarkCapability {
let bufferMarkDetection = this.capabilities.get(TerminalCapability.BufferMarkDetection);
if (!bufferMarkDetection) {
bufferMarkDetection = this._register(new BufferMarkCapability(terminal));
this.capabilities.add(TerminalCapability.BufferMarkDetection, bufferMarkDetection);
}
return bufferMarkDetection;
}
}
export function deserializeMessage(message: string): string {
return message.replaceAll(
// Backslash ('\') followed by an escape operator: either another '\', or 'x' and two hex chars.
/\\(\\|x([0-9a-f]{2}))/gi,
// If it's a hex value, parse it to a character.
// Otherwise the operator is '\', which we return literally, now unescaped.
(_match: string, op: string, hex?: string) => hex ? String.fromCharCode(parseInt(hex, 16)) : op);
}
export function parseKeyValueAssignment(message: string): { key: string; value: string | undefined } {
const separatorIndex = message.indexOf('=');
if (separatorIndex === -1) {
return { key: message, value: undefined }; // No '=' was found.
}
return {
key: message.substring(0, separatorIndex),
value: message.substring(1 + separatorIndex)
};
}
export function parseMarkSequence(sequence: (string | undefined)[]): { id?: string; hidden?: boolean } {
let id = undefined;
let hidden = false;
for (const property of sequence) {
// Sanity check, this shouldn't happen in practice
if (property === undefined) {
continue;
}
if (property === 'Hidden') {
hidden = true;
}
if (property.startsWith('Id=')) {
id = property.substring(3);
}
}
return { id, hidden };
}