codeam-cli 2.4.29 → 2.4.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/index.js +132 -114
- package/dist/vendor/node-pty/lib/conpty_console_list_agent.js +16 -0
- package/dist/vendor/node-pty/lib/eventEmitter2.js +47 -0
- package/dist/vendor/node-pty/lib/index.js +52 -0
- package/dist/vendor/node-pty/lib/interfaces.js +7 -0
- package/dist/vendor/node-pty/lib/shared/conout.js +11 -0
- package/dist/vendor/node-pty/lib/terminal.js +190 -0
- package/dist/vendor/node-pty/lib/types.js +7 -0
- package/dist/vendor/node-pty/lib/unixTerminal.js +346 -0
- package/dist/vendor/node-pty/lib/utils.js +39 -0
- package/dist/vendor/node-pty/lib/windowsConoutConnection.js +125 -0
- package/dist/vendor/node-pty/lib/windowsPtyAgent.js +320 -0
- package/dist/vendor/node-pty/lib/windowsTerminal.js +199 -0
- package/dist/vendor/node-pty/lib/worker/conoutSocketWorker.js +22 -0
- package/dist/vendor/node-pty/package.json +64 -0
- package/dist/vendor/node-pty/prebuilds/win32-arm64/conpty/OpenConsole.exe +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-arm64/conpty/conpty.dll +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-arm64/conpty.node +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-arm64/conpty_console_list.node +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-arm64/pty.node +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-arm64/winpty-agent.exe +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-arm64/winpty.dll +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-x64/conpty/OpenConsole.exe +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-x64/conpty/conpty.dll +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-x64/conpty.node +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-x64/conpty_console_list.node +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-x64/pty.node +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-x64/winpty-agent.exe +0 -0
- package/dist/vendor/node-pty/prebuilds/win32-x64/winpty.dll +0 -0
- package/package.json +3 -5
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) 2017, Daniel Imms (MIT License).
|
|
4
|
+
* Copyright (c) 2018, Microsoft Corporation (MIT License).
|
|
5
|
+
*/
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
exports.loadNativeModule = exports.assign = void 0;
|
|
8
|
+
function assign(target) {
|
|
9
|
+
var sources = [];
|
|
10
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
11
|
+
sources[_i - 1] = arguments[_i];
|
|
12
|
+
}
|
|
13
|
+
sources.forEach(function (source) { return Object.keys(source).forEach(function (key) { return target[key] = source[key]; }); });
|
|
14
|
+
return target;
|
|
15
|
+
}
|
|
16
|
+
exports.assign = assign;
|
|
17
|
+
function loadNativeModule(name) {
|
|
18
|
+
// Check build, debug, and then prebuilds.
|
|
19
|
+
var dirs = ['build/Release', 'build/Debug', "prebuilds/" + process.platform + "-" + process.arch];
|
|
20
|
+
// Check relative to the parent dir for unbundled and then the current dir for bundled
|
|
21
|
+
var relative = ['..', '.'];
|
|
22
|
+
var lastError;
|
|
23
|
+
for (var _i = 0, dirs_1 = dirs; _i < dirs_1.length; _i++) {
|
|
24
|
+
var d = dirs_1[_i];
|
|
25
|
+
for (var _a = 0, relative_1 = relative; _a < relative_1.length; _a++) {
|
|
26
|
+
var r = relative_1[_a];
|
|
27
|
+
var dir = r + "/" + d + "/";
|
|
28
|
+
try {
|
|
29
|
+
return { dir: dir, module: require(dir + "/" + name + ".node") };
|
|
30
|
+
}
|
|
31
|
+
catch (e) {
|
|
32
|
+
lastError = e;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
throw new Error("Failed to load native module: " + name + ".node, checked: " + dirs.join(', ') + ": " + lastError);
|
|
37
|
+
}
|
|
38
|
+
exports.loadNativeModule = loadNativeModule;
|
|
39
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) 2020, Microsoft Corporation (MIT License).
|
|
4
|
+
*/
|
|
5
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
6
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
7
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
8
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
9
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
10
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
11
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
12
|
+
});
|
|
13
|
+
};
|
|
14
|
+
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
15
|
+
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
16
|
+
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
17
|
+
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
18
|
+
function step(op) {
|
|
19
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
20
|
+
while (_) try {
|
|
21
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
22
|
+
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
23
|
+
switch (op[0]) {
|
|
24
|
+
case 0: case 1: t = op; break;
|
|
25
|
+
case 4: _.label++; return { value: op[1], done: false };
|
|
26
|
+
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
27
|
+
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
28
|
+
default:
|
|
29
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
30
|
+
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
31
|
+
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
32
|
+
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
33
|
+
if (t[2]) _.ops.pop();
|
|
34
|
+
_.trys.pop(); continue;
|
|
35
|
+
}
|
|
36
|
+
op = body.call(thisArg, _);
|
|
37
|
+
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
38
|
+
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42
|
+
exports.ConoutConnection = void 0;
|
|
43
|
+
var worker_threads_1 = require("worker_threads");
|
|
44
|
+
var conout_1 = require("./shared/conout");
|
|
45
|
+
var path_1 = require("path");
|
|
46
|
+
var eventEmitter2_1 = require("./eventEmitter2");
|
|
47
|
+
/**
|
|
48
|
+
* The amount of time to wait for additional data after the conpty shell process has exited before
|
|
49
|
+
* shutting down the worker and sockets. The timer will be reset if a new data event comes in after
|
|
50
|
+
* the timer has started.
|
|
51
|
+
*/
|
|
52
|
+
var FLUSH_DATA_INTERVAL = 1000;
|
|
53
|
+
/**
|
|
54
|
+
* Connects to and manages the lifecycle of the conout socket. This socket must be drained on
|
|
55
|
+
* another thread in order to avoid deadlocks where Conpty waits for the out socket to drain
|
|
56
|
+
* when `ClosePseudoConsole` is called. This happens when data is being written to the terminal when
|
|
57
|
+
* the pty is closed.
|
|
58
|
+
*
|
|
59
|
+
* See also:
|
|
60
|
+
* - https://github.com/microsoft/node-pty/issues/375
|
|
61
|
+
* - https://github.com/microsoft/vscode/issues/76548
|
|
62
|
+
* - https://github.com/microsoft/terminal/issues/1810
|
|
63
|
+
* - https://docs.microsoft.com/en-us/windows/console/closepseudoconsole
|
|
64
|
+
*/
|
|
65
|
+
var ConoutConnection = /** @class */ (function () {
|
|
66
|
+
function ConoutConnection(_conoutPipeName, _useConptyDll) {
|
|
67
|
+
var _this = this;
|
|
68
|
+
this._conoutPipeName = _conoutPipeName;
|
|
69
|
+
this._useConptyDll = _useConptyDll;
|
|
70
|
+
this._isDisposed = false;
|
|
71
|
+
this._onReady = new eventEmitter2_1.EventEmitter2();
|
|
72
|
+
var workerData = {
|
|
73
|
+
conoutPipeName: _conoutPipeName
|
|
74
|
+
};
|
|
75
|
+
var scriptPath = __dirname.replace('node_modules.asar', 'node_modules.asar.unpacked');
|
|
76
|
+
this._worker = new worker_threads_1.Worker(path_1.join(scriptPath, 'worker/conoutSocketWorker.js'), { workerData: workerData });
|
|
77
|
+
this._worker.on('message', function (message) {
|
|
78
|
+
switch (message) {
|
|
79
|
+
case 1 /* READY */:
|
|
80
|
+
_this._onReady.fire();
|
|
81
|
+
return;
|
|
82
|
+
default:
|
|
83
|
+
console.warn('Unexpected ConoutWorkerMessage', message);
|
|
84
|
+
}
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
Object.defineProperty(ConoutConnection.prototype, "onReady", {
|
|
88
|
+
get: function () { return this._onReady.event; },
|
|
89
|
+
enumerable: false,
|
|
90
|
+
configurable: true
|
|
91
|
+
});
|
|
92
|
+
ConoutConnection.prototype.dispose = function () {
|
|
93
|
+
if (!this._useConptyDll && this._isDisposed) {
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
this._isDisposed = true;
|
|
97
|
+
// Drain all data from the socket before closing
|
|
98
|
+
this._drainDataAndClose();
|
|
99
|
+
};
|
|
100
|
+
ConoutConnection.prototype.connectSocket = function (socket) {
|
|
101
|
+
socket.connect(conout_1.getWorkerPipeName(this._conoutPipeName));
|
|
102
|
+
};
|
|
103
|
+
ConoutConnection.prototype._drainDataAndClose = function () {
|
|
104
|
+
var _this = this;
|
|
105
|
+
if (this._drainTimeout) {
|
|
106
|
+
clearTimeout(this._drainTimeout);
|
|
107
|
+
}
|
|
108
|
+
this._drainTimeout = setTimeout(function () { return _this._destroySocket(); }, FLUSH_DATA_INTERVAL);
|
|
109
|
+
};
|
|
110
|
+
ConoutConnection.prototype._destroySocket = function () {
|
|
111
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
112
|
+
return __generator(this, function (_a) {
|
|
113
|
+
switch (_a.label) {
|
|
114
|
+
case 0: return [4 /*yield*/, this._worker.terminate()];
|
|
115
|
+
case 1:
|
|
116
|
+
_a.sent();
|
|
117
|
+
return [2 /*return*/];
|
|
118
|
+
}
|
|
119
|
+
});
|
|
120
|
+
});
|
|
121
|
+
};
|
|
122
|
+
return ConoutConnection;
|
|
123
|
+
}());
|
|
124
|
+
exports.ConoutConnection = ConoutConnection;
|
|
125
|
+
//# sourceMappingURL=windowsConoutConnection.js.map
|
|
@@ -0,0 +1,320 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) 2012-2015, Christopher Jeffrey, Peter Sunde (MIT License)
|
|
4
|
+
* Copyright (c) 2016, Daniel Imms (MIT License).
|
|
5
|
+
* Copyright (c) 2018, Microsoft Corporation (MIT License).
|
|
6
|
+
*/
|
|
7
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
+
exports.argsToCommandLine = exports.WindowsPtyAgent = void 0;
|
|
9
|
+
var fs = require("fs");
|
|
10
|
+
var os = require("os");
|
|
11
|
+
var path = require("path");
|
|
12
|
+
var child_process_1 = require("child_process");
|
|
13
|
+
var net_1 = require("net");
|
|
14
|
+
var windowsConoutConnection_1 = require("./windowsConoutConnection");
|
|
15
|
+
var utils_1 = require("./utils");
|
|
16
|
+
var conptyNative;
|
|
17
|
+
var winptyNative;
|
|
18
|
+
/**
|
|
19
|
+
* The amount of time to wait for additional data after the conpty shell process has exited before
|
|
20
|
+
* shutting down the socket. The timer will be reset if a new data event comes in after the timer
|
|
21
|
+
* has started.
|
|
22
|
+
*/
|
|
23
|
+
var FLUSH_DATA_INTERVAL = 1000;
|
|
24
|
+
/**
|
|
25
|
+
* This agent sits between the WindowsTerminal class and provides a common interface for both conpty
|
|
26
|
+
* and winpty.
|
|
27
|
+
*/
|
|
28
|
+
var WindowsPtyAgent = /** @class */ (function () {
|
|
29
|
+
function WindowsPtyAgent(file, args, env, cwd, cols, rows, debug, _useConpty, _useConptyDll, conptyInheritCursor) {
|
|
30
|
+
var _this = this;
|
|
31
|
+
if (_useConptyDll === void 0) { _useConptyDll = false; }
|
|
32
|
+
if (conptyInheritCursor === void 0) { conptyInheritCursor = false; }
|
|
33
|
+
this._useConpty = _useConpty;
|
|
34
|
+
this._useConptyDll = _useConptyDll;
|
|
35
|
+
this._pid = 0;
|
|
36
|
+
this._innerPid = 0;
|
|
37
|
+
if (this._useConpty === undefined || this._useConpty === true) {
|
|
38
|
+
this._useConpty = this._getWindowsBuildNumber() >= 18309;
|
|
39
|
+
}
|
|
40
|
+
if (this._useConpty) {
|
|
41
|
+
if (!conptyNative) {
|
|
42
|
+
conptyNative = utils_1.loadNativeModule('conpty').module;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
else {
|
|
46
|
+
if (!winptyNative) {
|
|
47
|
+
winptyNative = utils_1.loadNativeModule('pty').module;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
this._ptyNative = this._useConpty ? conptyNative : winptyNative;
|
|
51
|
+
// Sanitize input variable.
|
|
52
|
+
cwd = path.resolve(cwd);
|
|
53
|
+
// Compose command line
|
|
54
|
+
var commandLine = argsToCommandLine(file, args);
|
|
55
|
+
// Open pty session.
|
|
56
|
+
var term;
|
|
57
|
+
if (this._useConpty) {
|
|
58
|
+
term = this._ptyNative.startProcess(file, cols, rows, debug, this._generatePipeName(), conptyInheritCursor, this._useConptyDll);
|
|
59
|
+
}
|
|
60
|
+
else {
|
|
61
|
+
term = this._ptyNative.startProcess(file, commandLine, env, cwd, cols, rows, debug);
|
|
62
|
+
this._pid = term.pid;
|
|
63
|
+
this._innerPid = term.innerPid;
|
|
64
|
+
}
|
|
65
|
+
// Not available on windows.
|
|
66
|
+
this._fd = term.fd;
|
|
67
|
+
// Generated incremental number that has no real purpose besides using it
|
|
68
|
+
// as a terminal id.
|
|
69
|
+
this._pty = term.pty;
|
|
70
|
+
// Create terminal pipe IPC channel and forward to a local unix socket.
|
|
71
|
+
this._outSocket = new net_1.Socket();
|
|
72
|
+
this._outSocket.setEncoding('utf8');
|
|
73
|
+
// The conout socket must be ready out on another thread to avoid deadlocks
|
|
74
|
+
this._conoutSocketWorker = new windowsConoutConnection_1.ConoutConnection(term.conout, this._useConptyDll);
|
|
75
|
+
this._conoutSocketWorker.onReady(function () {
|
|
76
|
+
_this._conoutSocketWorker.connectSocket(_this._outSocket);
|
|
77
|
+
});
|
|
78
|
+
this._outSocket.on('connect', function () {
|
|
79
|
+
_this._outSocket.emit('ready_datapipe');
|
|
80
|
+
});
|
|
81
|
+
var inSocketFD = fs.openSync(term.conin, 'w');
|
|
82
|
+
this._inSocket = new net_1.Socket({
|
|
83
|
+
fd: inSocketFD,
|
|
84
|
+
readable: false,
|
|
85
|
+
writable: true
|
|
86
|
+
});
|
|
87
|
+
this._inSocket.setEncoding('utf8');
|
|
88
|
+
if (this._useConpty) {
|
|
89
|
+
var connect = this._ptyNative.connect(this._pty, commandLine, cwd, env, this._useConptyDll, function (c) { return _this._$onProcessExit(c); });
|
|
90
|
+
this._innerPid = connect.pid;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
Object.defineProperty(WindowsPtyAgent.prototype, "inSocket", {
|
|
94
|
+
get: function () { return this._inSocket; },
|
|
95
|
+
enumerable: false,
|
|
96
|
+
configurable: true
|
|
97
|
+
});
|
|
98
|
+
Object.defineProperty(WindowsPtyAgent.prototype, "outSocket", {
|
|
99
|
+
get: function () { return this._outSocket; },
|
|
100
|
+
enumerable: false,
|
|
101
|
+
configurable: true
|
|
102
|
+
});
|
|
103
|
+
Object.defineProperty(WindowsPtyAgent.prototype, "fd", {
|
|
104
|
+
get: function () { return this._fd; },
|
|
105
|
+
enumerable: false,
|
|
106
|
+
configurable: true
|
|
107
|
+
});
|
|
108
|
+
Object.defineProperty(WindowsPtyAgent.prototype, "innerPid", {
|
|
109
|
+
get: function () { return this._innerPid; },
|
|
110
|
+
enumerable: false,
|
|
111
|
+
configurable: true
|
|
112
|
+
});
|
|
113
|
+
Object.defineProperty(WindowsPtyAgent.prototype, "pty", {
|
|
114
|
+
get: function () { return this._pty; },
|
|
115
|
+
enumerable: false,
|
|
116
|
+
configurable: true
|
|
117
|
+
});
|
|
118
|
+
WindowsPtyAgent.prototype.resize = function (cols, rows) {
|
|
119
|
+
if (this._useConpty) {
|
|
120
|
+
if (this._exitCode !== undefined) {
|
|
121
|
+
throw new Error('Cannot resize a pty that has already exited');
|
|
122
|
+
}
|
|
123
|
+
this._ptyNative.resize(this._pty, cols, rows, this._useConptyDll);
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
this._ptyNative.resize(this._pid, cols, rows);
|
|
127
|
+
};
|
|
128
|
+
WindowsPtyAgent.prototype.clear = function () {
|
|
129
|
+
if (this._useConpty) {
|
|
130
|
+
this._ptyNative.clear(this._pty, this._useConptyDll);
|
|
131
|
+
}
|
|
132
|
+
};
|
|
133
|
+
WindowsPtyAgent.prototype.kill = function () {
|
|
134
|
+
var _this = this;
|
|
135
|
+
// Tell the agent to kill the pty, this releases handles to the process
|
|
136
|
+
if (this._useConpty) {
|
|
137
|
+
if (!this._useConptyDll) {
|
|
138
|
+
this._inSocket.readable = false;
|
|
139
|
+
this._outSocket.readable = false;
|
|
140
|
+
this._getConsoleProcessList().then(function (consoleProcessList) {
|
|
141
|
+
consoleProcessList.forEach(function (pid) {
|
|
142
|
+
try {
|
|
143
|
+
process.kill(pid);
|
|
144
|
+
}
|
|
145
|
+
catch (e) {
|
|
146
|
+
// Ignore if process cannot be found (kill ESRCH error)
|
|
147
|
+
}
|
|
148
|
+
});
|
|
149
|
+
});
|
|
150
|
+
this._ptyNative.kill(this._pty, this._useConptyDll);
|
|
151
|
+
this._conoutSocketWorker.dispose();
|
|
152
|
+
}
|
|
153
|
+
else {
|
|
154
|
+
// Close the input write handle to signal the end of session.
|
|
155
|
+
this._inSocket.destroy();
|
|
156
|
+
this._ptyNative.kill(this._pty, this._useConptyDll);
|
|
157
|
+
this._outSocket.on('data', function () {
|
|
158
|
+
_this._conoutSocketWorker.dispose();
|
|
159
|
+
});
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
else {
|
|
163
|
+
// Because pty.kill closes the handle, it will kill most processes by itself.
|
|
164
|
+
// Process IDs can be reused as soon as all handles to them are
|
|
165
|
+
// dropped, so we want to immediately kill the entire console process list.
|
|
166
|
+
// If we do not force kill all processes here, node servers in particular
|
|
167
|
+
// seem to become detached and remain running (see
|
|
168
|
+
// Microsoft/vscode#26807).
|
|
169
|
+
var processList = this._ptyNative.getProcessList(this._pid);
|
|
170
|
+
this._ptyNative.kill(this._pid, this._innerPid);
|
|
171
|
+
processList.forEach(function (pid) {
|
|
172
|
+
try {
|
|
173
|
+
process.kill(pid);
|
|
174
|
+
}
|
|
175
|
+
catch (e) {
|
|
176
|
+
// Ignore if process cannot be found (kill ESRCH error)
|
|
177
|
+
}
|
|
178
|
+
});
|
|
179
|
+
}
|
|
180
|
+
};
|
|
181
|
+
WindowsPtyAgent.prototype._getConsoleProcessList = function () {
|
|
182
|
+
var _this = this;
|
|
183
|
+
return new Promise(function (resolve) {
|
|
184
|
+
var agent = child_process_1.fork(path.join(__dirname, 'conpty_console_list_agent'), [_this._innerPid.toString()]);
|
|
185
|
+
agent.on('message', function (message) {
|
|
186
|
+
clearTimeout(timeout);
|
|
187
|
+
resolve(message.consoleProcessList);
|
|
188
|
+
});
|
|
189
|
+
var timeout = setTimeout(function () {
|
|
190
|
+
// Something went wrong, just send back the shell PID
|
|
191
|
+
agent.kill();
|
|
192
|
+
resolve([_this._innerPid]);
|
|
193
|
+
}, 5000);
|
|
194
|
+
});
|
|
195
|
+
};
|
|
196
|
+
Object.defineProperty(WindowsPtyAgent.prototype, "exitCode", {
|
|
197
|
+
get: function () {
|
|
198
|
+
if (this._useConpty) {
|
|
199
|
+
return this._exitCode;
|
|
200
|
+
}
|
|
201
|
+
var winptyExitCode = this._ptyNative.getExitCode(this._innerPid);
|
|
202
|
+
return winptyExitCode === -1 ? undefined : winptyExitCode;
|
|
203
|
+
},
|
|
204
|
+
enumerable: false,
|
|
205
|
+
configurable: true
|
|
206
|
+
});
|
|
207
|
+
WindowsPtyAgent.prototype._getWindowsBuildNumber = function () {
|
|
208
|
+
var osVersion = (/(\d+)\.(\d+)\.(\d+)/g).exec(os.release());
|
|
209
|
+
var buildNumber = 0;
|
|
210
|
+
if (osVersion && osVersion.length === 4) {
|
|
211
|
+
buildNumber = parseInt(osVersion[3]);
|
|
212
|
+
}
|
|
213
|
+
return buildNumber;
|
|
214
|
+
};
|
|
215
|
+
WindowsPtyAgent.prototype._generatePipeName = function () {
|
|
216
|
+
return "conpty-" + Math.random() * 10000000;
|
|
217
|
+
};
|
|
218
|
+
/**
|
|
219
|
+
* Triggered from the native side when a contpy process exits.
|
|
220
|
+
*/
|
|
221
|
+
WindowsPtyAgent.prototype._$onProcessExit = function (exitCode) {
|
|
222
|
+
var _this = this;
|
|
223
|
+
this._exitCode = exitCode;
|
|
224
|
+
if (!this._useConptyDll) {
|
|
225
|
+
this._flushDataAndCleanUp();
|
|
226
|
+
this._outSocket.on('data', function () { return _this._flushDataAndCleanUp(); });
|
|
227
|
+
}
|
|
228
|
+
};
|
|
229
|
+
WindowsPtyAgent.prototype._flushDataAndCleanUp = function () {
|
|
230
|
+
var _this = this;
|
|
231
|
+
if (this._useConptyDll) {
|
|
232
|
+
return;
|
|
233
|
+
}
|
|
234
|
+
if (this._closeTimeout) {
|
|
235
|
+
clearTimeout(this._closeTimeout);
|
|
236
|
+
}
|
|
237
|
+
this._closeTimeout = setTimeout(function () { return _this._cleanUpProcess(); }, FLUSH_DATA_INTERVAL);
|
|
238
|
+
};
|
|
239
|
+
WindowsPtyAgent.prototype._cleanUpProcess = function () {
|
|
240
|
+
if (this._useConptyDll) {
|
|
241
|
+
return;
|
|
242
|
+
}
|
|
243
|
+
this._inSocket.readable = false;
|
|
244
|
+
this._outSocket.readable = false;
|
|
245
|
+
this._outSocket.destroy();
|
|
246
|
+
};
|
|
247
|
+
return WindowsPtyAgent;
|
|
248
|
+
}());
|
|
249
|
+
exports.WindowsPtyAgent = WindowsPtyAgent;
|
|
250
|
+
// Convert argc/argv into a Win32 command-line following the escaping convention
|
|
251
|
+
// documented on MSDN (e.g. see CommandLineToArgvW documentation). Copied from
|
|
252
|
+
// winpty project.
|
|
253
|
+
function argsToCommandLine(file, args) {
|
|
254
|
+
if (isCommandLine(args)) {
|
|
255
|
+
if (args.length === 0) {
|
|
256
|
+
return file;
|
|
257
|
+
}
|
|
258
|
+
return argsToCommandLine(file, []) + " " + args;
|
|
259
|
+
}
|
|
260
|
+
var argv = [file];
|
|
261
|
+
Array.prototype.push.apply(argv, args);
|
|
262
|
+
var result = '';
|
|
263
|
+
for (var argIndex = 0; argIndex < argv.length; argIndex++) {
|
|
264
|
+
if (argIndex > 0) {
|
|
265
|
+
result += ' ';
|
|
266
|
+
}
|
|
267
|
+
var arg = argv[argIndex];
|
|
268
|
+
// if it is empty or it contains whitespace and is not already quoted
|
|
269
|
+
var hasLopsidedEnclosingQuote = xOr((arg[0] !== '"'), (arg[arg.length - 1] !== '"'));
|
|
270
|
+
var hasNoEnclosingQuotes = ((arg[0] !== '"') && (arg[arg.length - 1] !== '"'));
|
|
271
|
+
var quote = arg === '' ||
|
|
272
|
+
(arg.indexOf(' ') !== -1 ||
|
|
273
|
+
arg.indexOf('\t') !== -1) &&
|
|
274
|
+
((arg.length > 1) &&
|
|
275
|
+
(hasLopsidedEnclosingQuote || hasNoEnclosingQuotes));
|
|
276
|
+
if (quote) {
|
|
277
|
+
result += '\"';
|
|
278
|
+
}
|
|
279
|
+
var bsCount = 0;
|
|
280
|
+
for (var i = 0; i < arg.length; i++) {
|
|
281
|
+
var p = arg[i];
|
|
282
|
+
if (p === '\\') {
|
|
283
|
+
bsCount++;
|
|
284
|
+
}
|
|
285
|
+
else if (p === '"') {
|
|
286
|
+
result += repeatText('\\', bsCount * 2 + 1);
|
|
287
|
+
result += '"';
|
|
288
|
+
bsCount = 0;
|
|
289
|
+
}
|
|
290
|
+
else {
|
|
291
|
+
result += repeatText('\\', bsCount);
|
|
292
|
+
bsCount = 0;
|
|
293
|
+
result += p;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
if (quote) {
|
|
297
|
+
result += repeatText('\\', bsCount * 2);
|
|
298
|
+
result += '\"';
|
|
299
|
+
}
|
|
300
|
+
else {
|
|
301
|
+
result += repeatText('\\', bsCount);
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
return result;
|
|
305
|
+
}
|
|
306
|
+
exports.argsToCommandLine = argsToCommandLine;
|
|
307
|
+
function isCommandLine(args) {
|
|
308
|
+
return typeof args === 'string';
|
|
309
|
+
}
|
|
310
|
+
function repeatText(text, count) {
|
|
311
|
+
var result = '';
|
|
312
|
+
for (var i = 0; i < count; i++) {
|
|
313
|
+
result += text;
|
|
314
|
+
}
|
|
315
|
+
return result;
|
|
316
|
+
}
|
|
317
|
+
function xOr(arg1, arg2) {
|
|
318
|
+
return ((arg1 && !arg2) || (!arg1 && arg2));
|
|
319
|
+
}
|
|
320
|
+
//# sourceMappingURL=windowsPtyAgent.js.map
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Copyright (c) 2012-2015, Christopher Jeffrey, Peter Sunde (MIT License)
|
|
4
|
+
* Copyright (c) 2016, Daniel Imms (MIT License).
|
|
5
|
+
* Copyright (c) 2018, Microsoft Corporation (MIT License).
|
|
6
|
+
*/
|
|
7
|
+
var __extends = (this && this.__extends) || (function () {
|
|
8
|
+
var extendStatics = function (d, b) {
|
|
9
|
+
extendStatics = Object.setPrototypeOf ||
|
|
10
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
11
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
12
|
+
return extendStatics(d, b);
|
|
13
|
+
};
|
|
14
|
+
return function (d, b) {
|
|
15
|
+
extendStatics(d, b);
|
|
16
|
+
function __() { this.constructor = d; }
|
|
17
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
18
|
+
};
|
|
19
|
+
})();
|
|
20
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
|
+
exports.WindowsTerminal = void 0;
|
|
22
|
+
var terminal_1 = require("./terminal");
|
|
23
|
+
var windowsPtyAgent_1 = require("./windowsPtyAgent");
|
|
24
|
+
var utils_1 = require("./utils");
|
|
25
|
+
var DEFAULT_FILE = 'cmd.exe';
|
|
26
|
+
var DEFAULT_NAME = 'Windows Shell';
|
|
27
|
+
var WindowsTerminal = /** @class */ (function (_super) {
|
|
28
|
+
__extends(WindowsTerminal, _super);
|
|
29
|
+
function WindowsTerminal(file, args, opt) {
|
|
30
|
+
var _this = _super.call(this, opt) || this;
|
|
31
|
+
_this._checkType('args', args, 'string', true);
|
|
32
|
+
// Initialize arguments
|
|
33
|
+
args = args || [];
|
|
34
|
+
file = file || DEFAULT_FILE;
|
|
35
|
+
opt = opt || {};
|
|
36
|
+
opt.env = opt.env || process.env;
|
|
37
|
+
if (opt.encoding) {
|
|
38
|
+
console.warn('Setting encoding on Windows is not supported');
|
|
39
|
+
}
|
|
40
|
+
var env = utils_1.assign({}, opt.env);
|
|
41
|
+
_this._cols = opt.cols || terminal_1.DEFAULT_COLS;
|
|
42
|
+
_this._rows = opt.rows || terminal_1.DEFAULT_ROWS;
|
|
43
|
+
var cwd = opt.cwd || process.cwd();
|
|
44
|
+
var name = opt.name || env.TERM || DEFAULT_NAME;
|
|
45
|
+
var parsedEnv = _this._parseEnv(env);
|
|
46
|
+
// If the terminal is ready
|
|
47
|
+
_this._isReady = false;
|
|
48
|
+
// Functions that need to run after `ready` event is emitted.
|
|
49
|
+
_this._deferreds = [];
|
|
50
|
+
// Create new termal.
|
|
51
|
+
_this._agent = new windowsPtyAgent_1.WindowsPtyAgent(file, args, parsedEnv, cwd, _this._cols, _this._rows, false, opt.useConpty, opt.useConptyDll, opt.conptyInheritCursor);
|
|
52
|
+
_this._socket = _this._agent.outSocket;
|
|
53
|
+
// Not available until `ready` event emitted.
|
|
54
|
+
_this._pid = _this._agent.innerPid;
|
|
55
|
+
_this._fd = _this._agent.fd;
|
|
56
|
+
_this._pty = _this._agent.pty;
|
|
57
|
+
// The forked windows terminal is not available until `ready` event is
|
|
58
|
+
// emitted.
|
|
59
|
+
_this._socket.on('ready_datapipe', function () {
|
|
60
|
+
// Run deferreds and set ready state once the first data event is received.
|
|
61
|
+
_this._socket.once('data', function () {
|
|
62
|
+
// Wait until the first data event is fired then we can run deferreds.
|
|
63
|
+
if (!_this._isReady) {
|
|
64
|
+
// Terminal is now ready and we can avoid having to defer method
|
|
65
|
+
// calls.
|
|
66
|
+
_this._isReady = true;
|
|
67
|
+
// Execute all deferred methods
|
|
68
|
+
_this._deferreds.forEach(function (fn) {
|
|
69
|
+
// NB! In order to ensure that `this` has all its references
|
|
70
|
+
// updated any variable that need to be available in `this` before
|
|
71
|
+
// the deferred is run has to be declared above this forEach
|
|
72
|
+
// statement.
|
|
73
|
+
fn.run();
|
|
74
|
+
});
|
|
75
|
+
// Reset
|
|
76
|
+
_this._deferreds = [];
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
// Shutdown if `error` event is emitted.
|
|
80
|
+
_this._socket.on('error', function (err) {
|
|
81
|
+
// Close terminal session.
|
|
82
|
+
_this._close();
|
|
83
|
+
// EIO, happens when someone closes our child process: the only process
|
|
84
|
+
// in the terminal.
|
|
85
|
+
// node < 0.6.14: errno 5
|
|
86
|
+
// node >= 0.6.14: read EIO
|
|
87
|
+
if (err.code) {
|
|
88
|
+
if (~err.code.indexOf('errno 5') || ~err.code.indexOf('EIO'))
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
// Throw anything else.
|
|
92
|
+
if (_this.listeners('error').length < 2) {
|
|
93
|
+
throw err;
|
|
94
|
+
}
|
|
95
|
+
});
|
|
96
|
+
// Cleanup after the socket is closed.
|
|
97
|
+
_this._socket.on('close', function () {
|
|
98
|
+
_this.emit('exit', _this._agent.exitCode);
|
|
99
|
+
_this._close();
|
|
100
|
+
});
|
|
101
|
+
});
|
|
102
|
+
_this._file = file;
|
|
103
|
+
_this._name = name;
|
|
104
|
+
_this._readable = true;
|
|
105
|
+
_this._writable = true;
|
|
106
|
+
_this._forwardEvents();
|
|
107
|
+
return _this;
|
|
108
|
+
}
|
|
109
|
+
WindowsTerminal.prototype._write = function (data) {
|
|
110
|
+
this._defer(this._doWrite, data);
|
|
111
|
+
};
|
|
112
|
+
WindowsTerminal.prototype._doWrite = function (data) {
|
|
113
|
+
this._agent.inSocket.write(data);
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* openpty
|
|
117
|
+
*/
|
|
118
|
+
WindowsTerminal.open = function (options) {
|
|
119
|
+
throw new Error('open() not supported on windows, use Fork() instead.');
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* TTY
|
|
123
|
+
*/
|
|
124
|
+
WindowsTerminal.prototype.resize = function (cols, rows) {
|
|
125
|
+
var _this = this;
|
|
126
|
+
if (cols <= 0 || rows <= 0 || isNaN(cols) || isNaN(rows) || cols === Infinity || rows === Infinity) {
|
|
127
|
+
throw new Error('resizing must be done using positive cols and rows');
|
|
128
|
+
}
|
|
129
|
+
this._deferNoArgs(function () {
|
|
130
|
+
_this._agent.resize(cols, rows);
|
|
131
|
+
_this._cols = cols;
|
|
132
|
+
_this._rows = rows;
|
|
133
|
+
});
|
|
134
|
+
};
|
|
135
|
+
WindowsTerminal.prototype.clear = function () {
|
|
136
|
+
var _this = this;
|
|
137
|
+
this._deferNoArgs(function () {
|
|
138
|
+
_this._agent.clear();
|
|
139
|
+
});
|
|
140
|
+
};
|
|
141
|
+
WindowsTerminal.prototype.destroy = function () {
|
|
142
|
+
var _this = this;
|
|
143
|
+
this._deferNoArgs(function () {
|
|
144
|
+
_this.kill();
|
|
145
|
+
});
|
|
146
|
+
};
|
|
147
|
+
WindowsTerminal.prototype.kill = function (signal) {
|
|
148
|
+
var _this = this;
|
|
149
|
+
this._deferNoArgs(function () {
|
|
150
|
+
if (signal) {
|
|
151
|
+
throw new Error('Signals not supported on windows.');
|
|
152
|
+
}
|
|
153
|
+
_this._close();
|
|
154
|
+
_this._agent.kill();
|
|
155
|
+
});
|
|
156
|
+
};
|
|
157
|
+
WindowsTerminal.prototype._deferNoArgs = function (deferredFn) {
|
|
158
|
+
var _this = this;
|
|
159
|
+
// If the terminal is ready, execute.
|
|
160
|
+
if (this._isReady) {
|
|
161
|
+
deferredFn.call(this);
|
|
162
|
+
return;
|
|
163
|
+
}
|
|
164
|
+
// Queue until terminal is ready.
|
|
165
|
+
this._deferreds.push({
|
|
166
|
+
run: function () { return deferredFn.call(_this); }
|
|
167
|
+
});
|
|
168
|
+
};
|
|
169
|
+
WindowsTerminal.prototype._defer = function (deferredFn, arg) {
|
|
170
|
+
var _this = this;
|
|
171
|
+
// If the terminal is ready, execute.
|
|
172
|
+
if (this._isReady) {
|
|
173
|
+
deferredFn.call(this, arg);
|
|
174
|
+
return;
|
|
175
|
+
}
|
|
176
|
+
// Queue until terminal is ready.
|
|
177
|
+
this._deferreds.push({
|
|
178
|
+
run: function () { return deferredFn.call(_this, arg); }
|
|
179
|
+
});
|
|
180
|
+
};
|
|
181
|
+
Object.defineProperty(WindowsTerminal.prototype, "process", {
|
|
182
|
+
get: function () { return this._name; },
|
|
183
|
+
enumerable: false,
|
|
184
|
+
configurable: true
|
|
185
|
+
});
|
|
186
|
+
Object.defineProperty(WindowsTerminal.prototype, "master", {
|
|
187
|
+
get: function () { throw new Error('master is not supported on Windows'); },
|
|
188
|
+
enumerable: false,
|
|
189
|
+
configurable: true
|
|
190
|
+
});
|
|
191
|
+
Object.defineProperty(WindowsTerminal.prototype, "slave", {
|
|
192
|
+
get: function () { throw new Error('slave is not supported on Windows'); },
|
|
193
|
+
enumerable: false,
|
|
194
|
+
configurable: true
|
|
195
|
+
});
|
|
196
|
+
return WindowsTerminal;
|
|
197
|
+
}(terminal_1.Terminal));
|
|
198
|
+
exports.WindowsTerminal = WindowsTerminal;
|
|
199
|
+
//# sourceMappingURL=windowsTerminal.js.map
|