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
|
/* Terminal emulator - commented because node-pty is causing problems. */
import * as vscode from "vscode";
import os = require("os");
import stripAnsi from "strip-ansi";
function loadNativeModule<T>(id: string): T | null {
try {
return require(`${vscode.env.appRoot}/node_modules.asar/${id}`);
} catch (err) {
// ignore
}
try {
return require(`${vscode.env.appRoot}/node_modules/${id}`);
} catch (err) {
// ignore
}
return null;
}
const pty = loadNativeModule<any>("node-pty");
function getDefaultShell(): string {
if (process.platform !== "win32") {
return os.userInfo().shell;
}
switch (process.platform) {
case "win32":
return process.env.COMSPEC || "cmd.exe";
// case "darwin":
// return process.env.SHELL || "/bin/zsh";
// default:
// return process.env.SHELL || "/bin/sh";
}
}
function getRootDir(): string | undefined {
const isWindows = os.platform() === "win32";
let cwd = isWindows ? process.env.USERPROFILE : process.env.HOME;
if (
vscode.workspace.workspaceFolders &&
vscode.workspace.workspaceFolders.length > 0
) {
cwd = vscode.workspace.workspaceFolders[0].uri.fsPath;
}
return cwd;
}
export class CapturedTerminal {
private readonly terminal: vscode.Terminal;
private readonly shellCmd: string;
private readonly ptyProcess: any;
private shellPrompt: string | undefined = undefined;
private dataBuffer: string = "";
private onDataListeners: ((data: string) => void)[] = [];
show() {
this.terminal.show();
}
isClosed(): boolean {
return this.terminal.exitStatus !== undefined;
}
private commandQueue: [string, (output: string) => void][] = [];
private hasRunCommand: boolean = false;
private dataEndsInPrompt(strippedData: string): boolean {
const lines = this.dataBuffer.split("\n");
return (
lines.length > 0 &&
(lines[lines.length - 1].includes("bash-") ||
lines[lines.length - 1].includes(") $ ")) &&
lines[lines.length - 1].includes("$")
);
}
private async waitForCommandToFinish() {
return new Promise<string>((resolve, reject) => {
this.onDataListeners.push((data: any) => {
const strippedData = stripAnsi(data);
this.dataBuffer += strippedData;
if (this.dataEndsInPrompt(strippedData)) {
resolve(this.dataBuffer);
this.dataBuffer = "";
this.onDataListeners = [];
}
});
});
}
async runCommand(command: string): Promise<string> {
if (!this.hasRunCommand) {
this.hasRunCommand = true;
// Let the first bash- prompt appear and let python env be opened
await this.waitForCommandToFinish();
}
if (this.commandQueue.length === 0) {
return new Promise(async (resolve, reject) => {
this.commandQueue.push([command, resolve]);
while (this.commandQueue.length > 0) {
const [command, resolve] = this.commandQueue.shift()!;
this.terminal.sendText(command);
resolve(await this.waitForCommandToFinish());
}
});
} else {
return new Promise((resolve, reject) => {
this.commandQueue.push([command, resolve]);
});
}
}
private readonly writeEmitter: vscode.EventEmitter<string>;
private splitByCommandsBuffer: string = "";
private readonly onCommandOutput: ((output: string) => void) | undefined;
splitByCommandsListener(data: string) {
// Split the output by commands so it can be sent to Continue Server
const strippedData = stripAnsi(data);
this.splitByCommandsBuffer += strippedData;
if (this.dataEndsInPrompt(strippedData)) {
if (this.onCommandOutput) {
this.onCommandOutput(this.splitByCommandsBuffer);
}
this.dataBuffer = "";
}
}
constructor(
options: { name: string } & Partial<vscode.ExtensionTerminalOptions>,
onCommandOutput?: (output: string) => void
) {
this.onCommandOutput = onCommandOutput;
// this.shellCmd = "bash"; // getDefaultShell();
this.shellCmd = getDefaultShell();
const env = { ...(process.env as any) };
if (os.platform() !== "win32") {
env.PATH += `:${["/opt/homebrew/bin", "/opt/homebrew/sbin"].join(":")}`;
}
// Create the pseudo terminal
this.ptyProcess = pty.spawn(this.shellCmd, [], {
name: "xterm-256color",
cols: 160, // TODO: Get size of vscode terminal, and change with resize
rows: 26,
cwd: getRootDir(),
env,
useConpty: true,
});
this.writeEmitter = new vscode.EventEmitter<string>();
this.ptyProcess.onData((data: any) => {
// Pass data through to terminal
this.writeEmitter.fire(data);
for (let listener of this.onDataListeners) {
listener(data);
}
});
process.on("exit", () => this.ptyProcess.kill());
const newPty: vscode.Pseudoterminal = {
onDidWrite: this.writeEmitter.event,
open: () => {},
close: () => {},
handleInput: (data) => {
this.ptyProcess.write(data);
},
};
// Create and clear the terminal
this.terminal = vscode.window.createTerminal({
...options,
pty: newPty,
});
this.terminal.show();
}
}
|