forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathrawProcessApis.ts
321 lines (297 loc) · 11.9 KB
/
rawProcessApis.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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import { exec, execSync, spawn } from 'child_process';
import { Readable } from 'stream';
import { Observable } from 'rxjs/Observable';
import { IDisposable } from '../types';
import { createDeferred } from '../utils/async';
import { EnvironmentVariables } from '../variables/types';
import { DEFAULT_ENCODING } from './constants';
import { ExecutionResult, ObservableExecutionResult, Output, ShellOptions, SpawnOptions, StdErrError } from './types';
import { noop } from '../utils/misc';
import { decodeBuffer } from './decoder';
import { traceVerbose } from '../../logging';
import { WorkspaceService } from '../application/workspace';
import { ProcessLogger } from './logger';
const PS_ERROR_SCREEN_BOGUS = /your [0-9]+x[0-9]+ screen size is bogus\. expect trouble/;
function getDefaultOptions<T extends ShellOptions | SpawnOptions>(options: T, defaultEnv?: EnvironmentVariables): T {
const defaultOptions = { ...options };
const execOptions = defaultOptions as SpawnOptions;
if (execOptions) {
execOptions.encoding =
typeof execOptions.encoding === 'string' && execOptions.encoding.length > 0
? execOptions.encoding
: DEFAULT_ENCODING;
const { encoding } = execOptions;
delete execOptions.encoding;
execOptions.encoding = encoding;
}
if (!defaultOptions.env || Object.keys(defaultOptions.env).length === 0) {
const env = defaultEnv || process.env;
defaultOptions.env = { ...env };
} else {
defaultOptions.env = { ...defaultOptions.env };
}
if (execOptions && execOptions.extraVariables) {
defaultOptions.env = { ...defaultOptions.env, ...execOptions.extraVariables };
}
// Always ensure we have unbuffered output.
defaultOptions.env.PYTHONUNBUFFERED = '1';
if (!defaultOptions.env.PYTHONIOENCODING) {
defaultOptions.env.PYTHONIOENCODING = 'utf-8';
}
return defaultOptions;
}
export function shellExec(
command: string,
options: ShellOptions & { doNotLog?: boolean } = {},
defaultEnv?: EnvironmentVariables,
disposables?: Set<IDisposable>,
): Promise<ExecutionResult<string>> {
const shellOptions = getDefaultOptions(options, defaultEnv);
if (!options.doNotLog) {
const processLogger = new ProcessLogger(new WorkspaceService());
processLogger.logProcess(command, undefined, shellOptions);
}
return new Promise((resolve, reject) => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const callback = (e: any, stdout: any, stderr: any) => {
if (e && e !== null) {
reject(e);
} else if (shellOptions.throwOnStdErr && stderr && stderr.length) {
reject(new Error(stderr));
} else {
stdout = filterOutputUsingCondaRunMarkers(stdout);
// Make sure stderr is undefined if we actually had none. This is checked
// elsewhere because that's how exec behaves.
resolve({ stderr: stderr && stderr.length > 0 ? stderr : undefined, stdout });
}
};
let procExited = false;
const proc = exec(command, shellOptions, callback); // NOSONAR
proc.once('close', () => {
procExited = true;
});
proc.once('exit', () => {
procExited = true;
});
proc.once('error', () => {
procExited = true;
});
const disposable: IDisposable = {
dispose: () => {
// If process has not exited nor killed, force kill it.
if (!procExited && !proc.killed) {
if (proc.pid) {
killPid(proc.pid);
} else {
proc.kill();
}
}
},
};
if (disposables) {
disposables.add(disposable);
}
});
}
export function plainExec(
file: string,
args: string[],
options: SpawnOptions & { doNotLog?: boolean } = {},
defaultEnv?: EnvironmentVariables,
disposables?: Set<IDisposable>,
): Promise<ExecutionResult<string>> {
const spawnOptions = getDefaultOptions(options, defaultEnv);
const encoding = spawnOptions.encoding ? spawnOptions.encoding : 'utf8';
if (!options.doNotLog) {
const processLogger = new ProcessLogger(new WorkspaceService());
processLogger.logProcess(file, args, options);
}
const proc = spawn(file, args, spawnOptions);
// Listen to these errors (unhandled errors in streams tears down the process).
// Errors will be bubbled up to the `error` event in `proc`, hence no need to log.
proc.stdout?.on('error', noop);
proc.stderr?.on('error', noop);
const deferred = createDeferred<ExecutionResult<string>>();
const disposable: IDisposable = {
dispose: () => {
// If process has not exited nor killed, force kill it.
if (!proc.killed && !deferred.completed) {
if (proc.pid) {
killPid(proc.pid);
} else {
proc.kill();
}
}
},
};
disposables?.add(disposable);
const internalDisposables: IDisposable[] = [];
// eslint-disable-next-line @typescript-eslint/ban-types
const on = (ee: Readable | null, name: string, fn: Function) => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
ee?.on(name, fn as any);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
internalDisposables.push({ dispose: () => ee?.removeListener(name, fn as any) as any });
};
if (options.token) {
internalDisposables.push(options.token.onCancellationRequested(disposable.dispose));
}
const stdoutBuffers: Buffer[] = [];
on(proc.stdout, 'data', (data: Buffer) => {
stdoutBuffers.push(data);
options.outputChannel?.append(data.toString());
});
const stderrBuffers: Buffer[] = [];
on(proc.stderr, 'data', (data: Buffer) => {
if (options.mergeStdOutErr) {
stdoutBuffers.push(data);
stderrBuffers.push(data);
} else {
stderrBuffers.push(data);
}
options.outputChannel?.append(data.toString());
});
proc.once('close', () => {
if (deferred.completed) {
return;
}
const stderr: string | undefined =
stderrBuffers.length === 0 ? undefined : decodeBuffer(stderrBuffers, encoding);
if (
stderr &&
stderr.length > 0 &&
options.throwOnStdErr &&
// ignore this specific error silently; see this issue for context: https://github.com/microsoft/vscode/issues/75932
!(PS_ERROR_SCREEN_BOGUS.test(stderr) && stderr.replace(PS_ERROR_SCREEN_BOGUS, '').trim().length === 0)
) {
deferred.reject(new StdErrError(stderr));
} else {
let stdout = decodeBuffer(stdoutBuffers, encoding);
stdout = filterOutputUsingCondaRunMarkers(stdout);
deferred.resolve({ stdout, stderr });
}
internalDisposables.forEach((d) => d.dispose());
disposable.dispose();
});
proc.once('error', (ex) => {
deferred.reject(ex);
internalDisposables.forEach((d) => d.dispose());
disposable.dispose();
});
return deferred.promise;
}
function filterOutputUsingCondaRunMarkers(stdout: string) {
// These markers are added if conda run is used or `interpreterInfo.py` is
// run, see `get_output_via_markers.py`.
const regex = />>>PYTHON-EXEC-OUTPUT([\s\S]*)<<<PYTHON-EXEC-OUTPUT/;
const match = stdout.match(regex);
const filteredOut = match !== null && match.length >= 2 ? match[1].trim() : undefined;
return filteredOut !== undefined ? filteredOut : stdout;
}
function removeCondaRunMarkers(out: string) {
out = out.replace('>>>PYTHON-EXEC-OUTPUT\r\n', '').replace('>>>PYTHON-EXEC-OUTPUT\n', '');
return out.replace('<<<PYTHON-EXEC-OUTPUT\r\n', '').replace('<<<PYTHON-EXEC-OUTPUT\n', '');
}
export function execObservable(
file: string,
args: string[],
options: SpawnOptions & { doNotLog?: boolean } = {},
defaultEnv?: EnvironmentVariables,
disposables?: Set<IDisposable>,
): ObservableExecutionResult<string> {
const spawnOptions = getDefaultOptions(options, defaultEnv);
const encoding = spawnOptions.encoding ? spawnOptions.encoding : 'utf8';
if (!options.doNotLog) {
const processLogger = new ProcessLogger(new WorkspaceService());
processLogger.logProcess(file, args, options);
}
const proc = spawn(file, args, spawnOptions);
let procExited = false;
const disposable: IDisposable = {
dispose() {
if (proc && proc.pid && !proc.killed && !procExited) {
killPid(proc.pid);
}
if (proc) {
proc.unref();
}
},
};
disposables?.add(disposable);
const output = new Observable<Output<string>>((subscriber) => {
const internalDisposables: IDisposable[] = [];
// eslint-disable-next-line @typescript-eslint/ban-types
const on = (ee: Readable | null, name: string, fn: Function) => {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
ee?.on(name, fn as any);
// eslint-disable-next-line @typescript-eslint/no-explicit-any
internalDisposables.push({ dispose: () => ee?.removeListener(name, fn as any) as any });
};
if (options.token) {
internalDisposables.push(
options.token.onCancellationRequested(() => {
if (!procExited && !proc.killed) {
if (proc.pid) {
killPid(proc.pid);
} else {
proc.kill();
}
procExited = true;
}
}),
);
}
const sendOutput = (source: 'stdout' | 'stderr', data: Buffer) => {
let out = decodeBuffer([data], encoding);
if (source === 'stderr' && options.throwOnStdErr) {
subscriber.error(new StdErrError(out));
} else {
// Because all of output is not retrieved at once, filtering out the
// actual output using markers is not possible. Hence simply remove
// the markers and return original output.
out = removeCondaRunMarkers(out);
subscriber.next({ source, out });
}
};
on(proc.stdout, 'data', (data: Buffer) => sendOutput('stdout', data));
on(proc.stderr, 'data', (data: Buffer) => sendOutput('stderr', data));
proc.once('close', () => {
procExited = true;
subscriber.complete();
internalDisposables.forEach((d) => d.dispose());
});
proc.once('exit', () => {
procExited = true;
subscriber.complete();
internalDisposables.forEach((d) => d.dispose());
});
proc.once('error', (ex) => {
procExited = true;
subscriber.error(ex);
internalDisposables.forEach((d) => d.dispose());
});
if (options.stdinStr !== undefined) {
proc.stdin?.write(options.stdinStr);
proc.stdin?.end();
}
});
return {
proc,
out: output,
dispose: disposable.dispose,
};
}
export function killPid(pid: number): void {
try {
if (process.platform === 'win32') {
// Windows doesn't support SIGTERM, so execute taskkill to kill the process
execSync(`taskkill /pid ${pid} /T /F`); // NOSONAR
} else {
process.kill(pid);
}
} catch {
traceVerbose('Unable to kill process with pid', pid);
}
}