-
Notifications
You must be signed in to change notification settings - Fork 29.2k
/
shellIntegrationAddon.ts
208 lines (189 loc) · 7.4 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
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { ITerminalAddon, Terminal } from 'xterm';
import { IShellIntegration } from 'vs/workbench/contrib/terminal/common/terminal';
import { Disposable } from 'vs/base/common/lifecycle';
import { TerminalCapabilityStore } from 'vs/workbench/contrib/terminal/common/capabilities/terminalCapabilityStore';
import { CommandDetectionCapability } from 'vs/workbench/contrib/terminal/browser/capabilities/commandDetectionCapability';
import { IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
import { CwdDetectionCapability } from 'vs/workbench/contrib/terminal/common/capabilities/cwdDetectionCapability';
import { ICommandDetectionCapability, TerminalCapability } from 'vs/workbench/contrib/terminal/common/capabilities/capabilities';
import { PartialCommandDetectionCapability } from 'vs/workbench/contrib/terminal/browser/capabilities/partialCommandDetectionCapability';
/**
* 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.
*/
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
}
/**
* VS Code-specific shell integration sequences. Some of these are based on 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.
*/
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 problems with conpty not having a
* passthrough mode by providing an option on Windows to send the command that was run. With
* this sequence there's no need for the guessing based on the unreliable cursor positions that
* would otherwise be required.
*/
CommandLine = 'E',
/**
* Similar to prompt start but for line continuations.
*/
ContinuationStart = 'F',
/**
* Similar to command start but for line continuations.
*/
ContinuationEnd = 'G',
/**
* Set an arbitrary property: `OSC 633 ; P ; <Property>=<Value> ST`, only known properties will
* be handled.
*/
Property = 'P'
}
/**
* 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 = new TerminalCapabilityStore();
constructor(
@IInstantiationService private readonly _instantiationService: IInstantiationService
) {
super();
}
activate(xterm: Terminal) {
this._terminal = xterm;
this.capabilities.add(TerminalCapability.PartialCommandDetection, new PartialCommandDetectionCapability(this._terminal));
this._register(xterm.parser.registerOscHandler(ShellIntegrationOscPs.VSCode, data => this._handleVSCodeSequence(data)));
}
private _handleVSCodeSequence(data: string): boolean {
if (!this._terminal) {
return false;
}
// Pass the sequence along to the capability
const [command, ...args] = data.split(';');
switch (command) {
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 exitCode = args.length === 1 ? parseInt(args[0]) : undefined;
this._createOrGetCommandDetection(this._terminal).handleCommandFinished(exitCode);
return true;
}
case VSCodeOscPt.CommandLine: {
let commandLine: string;
if (args.length === 1) {
commandLine = (args[0]
.replace(/<LF>/g, '\n')
.replace(/<CL>/g, ';'));
} else {
commandLine = '';
}
this._createOrGetCommandDetection(this._terminal).setCommandLine(commandLine);
return true;
}
case VSCodeOscPt.ContinuationStart: {
this._createOrGetCommandDetection(this._terminal).handleContinuationStart();
return true;
}
case VSCodeOscPt.ContinuationEnd: {
this._createOrGetCommandDetection(this._terminal).handleContinuationEnd();
return true;
}
case VSCodeOscPt.Property: {
const [key, value] = args[0].split('=');
switch (key) {
case 'Cwd': {
this._createOrGetCwdDetection().updateCwd(value);
const commandDetection = this.capabilities.get(TerminalCapability.CommandDetection);
if (commandDetection) {
commandDetection.setCwd(value);
}
return true;
}
case 'IsWindows': {
this._createOrGetCommandDetection(this._terminal).setIsWindowsPty(value === 'True' ? true : false);
return true;
}
}
}
}
// Unrecognized sequence
return false;
}
protected _createOrGetCwdDetection(): CwdDetectionCapability {
let cwdDetection = this.capabilities.get(TerminalCapability.CwdDetection);
if (!cwdDetection) {
cwdDetection = 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._instantiationService.createInstance(CommandDetectionCapability, terminal);
this.capabilities.add(TerminalCapability.CommandDetection, commandDetection);
}
return commandDetection;
}
}