@lydell/node-pty-win32-x64 1.0.3 → 1.2.0-beta.2

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/LICENSE ADDED
@@ -0,0 +1,69 @@
1
+ Copyright (c) 2012-2015, Christopher Jeffrey (https://github.com/chjj/)
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
20
+
21
+
22
+
23
+ The MIT License (MIT)
24
+
25
+ Copyright (c) 2016, Daniel Imms (http://www.growingwiththeweb.com)
26
+
27
+ Permission is hereby granted, free of charge, to any person obtaining a copy
28
+ of this software and associated documentation files (the "Software"), to deal
29
+ in the Software without restriction, including without limitation the rights
30
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
31
+ copies of the Software, and to permit persons to whom the Software is
32
+ furnished to do so, subject to the following conditions:
33
+
34
+ The above copyright notice and this permission notice shall be included in all
35
+ copies or substantial portions of the Software.
36
+
37
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
38
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
39
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
40
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
41
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
42
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
43
+ SOFTWARE.
44
+
45
+
46
+
47
+ MIT License
48
+
49
+ Copyright (c) 2018 - present Microsoft Corporation
50
+
51
+ All rights reserved.
52
+
53
+ Permission is hereby granted, free of charge, to any person obtaining a copy
54
+ of this software and associated documentation files (the "Software"), to deal
55
+ in the Software without restriction, including without limitation the rights
56
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
57
+ copies of the Software, and to permit persons to whom the Software is
58
+ furnished to do so, subject to the following conditions:
59
+
60
+ The above copyright notice and this permission notice shall be included in all
61
+ copies or substantial portions of the Software.
62
+
63
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
64
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
65
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
66
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
67
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
68
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
69
+ SOFTWARE.
package/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # @lydell/node-pty-win32-x64
2
2
 
3
- Prebuilt win32-x64 binaries for node-pty.
3
+ The node-pty package, stripped down only for win32-x64.
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright (c) 2019, Microsoft Corporation (MIT License).
4
+ *
5
+ * This module fetches the console process list for a particular PID. It must be
6
+ * called from a different process (child_process.fork) as there can only be a
7
+ * single console attached to a process.
8
+ */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ var utils_1 = require("./utils");
11
+ var getConsoleProcessList = utils_1.loadNativeModule('conpty_console_list').module.getConsoleProcessList;
12
+ var shellPid = parseInt(process.argv[2], 10);
13
+ var consoleProcessList = getConsoleProcessList(shellPid);
14
+ process.send({ consoleProcessList: consoleProcessList });
15
+ process.exit(0);
16
+ //# sourceMappingURL=conpty_console_list_agent.js.map
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright (c) 2019, Microsoft Corporation (MIT License).
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.EventEmitter2 = void 0;
7
+ var EventEmitter2 = /** @class */ (function () {
8
+ function EventEmitter2() {
9
+ this._listeners = [];
10
+ }
11
+ Object.defineProperty(EventEmitter2.prototype, "event", {
12
+ get: function () {
13
+ var _this = this;
14
+ if (!this._event) {
15
+ this._event = function (listener) {
16
+ _this._listeners.push(listener);
17
+ var disposable = {
18
+ dispose: function () {
19
+ for (var i = 0; i < _this._listeners.length; i++) {
20
+ if (_this._listeners[i] === listener) {
21
+ _this._listeners.splice(i, 1);
22
+ return;
23
+ }
24
+ }
25
+ }
26
+ };
27
+ return disposable;
28
+ };
29
+ }
30
+ return this._event;
31
+ },
32
+ enumerable: false,
33
+ configurable: true
34
+ });
35
+ EventEmitter2.prototype.fire = function (data) {
36
+ var queue = [];
37
+ for (var i = 0; i < this._listeners.length; i++) {
38
+ queue.push(this._listeners[i]);
39
+ }
40
+ for (var i = 0; i < queue.length; i++) {
41
+ queue[i].call(undefined, data);
42
+ }
43
+ };
44
+ return EventEmitter2;
45
+ }());
46
+ exports.EventEmitter2 = EventEmitter2;
47
+ //# sourceMappingURL=eventEmitter2.js.map
package/lib/index.js ADDED
@@ -0,0 +1,52 @@
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.native = exports.open = exports.createTerminal = exports.fork = exports.spawn = void 0;
9
+ var utils_1 = require("./utils");
10
+ var terminalCtor;
11
+ if (process.platform === 'win32') {
12
+ terminalCtor = require('./windowsTerminal').WindowsTerminal;
13
+ }
14
+ else {
15
+ terminalCtor = require('./unixTerminal').UnixTerminal;
16
+ }
17
+ /**
18
+ * Forks a process as a pseudoterminal.
19
+ * @param file The file to launch.
20
+ * @param args The file's arguments as argv (string[]) or in a pre-escaped
21
+ * CommandLine format (string). Note that the CommandLine option is only
22
+ * available on Windows and is expected to be escaped properly.
23
+ * @param options The options of the terminal.
24
+ * @throws When the file passed to spawn with does not exists.
25
+ * @see CommandLineToArgvW https://msdn.microsoft.com/en-us/library/windows/desktop/bb776391(v=vs.85).aspx
26
+ * @see Parsing C++ Comamnd-Line Arguments https://msdn.microsoft.com/en-us/library/17w5ykft.aspx
27
+ * @see GetCommandLine https://msdn.microsoft.com/en-us/library/windows/desktop/ms683156.aspx
28
+ */
29
+ function spawn(file, args, opt) {
30
+ return new terminalCtor(file, args, opt);
31
+ }
32
+ exports.spawn = spawn;
33
+ /** @deprecated */
34
+ function fork(file, args, opt) {
35
+ return new terminalCtor(file, args, opt);
36
+ }
37
+ exports.fork = fork;
38
+ /** @deprecated */
39
+ function createTerminal(file, args, opt) {
40
+ return new terminalCtor(file, args, opt);
41
+ }
42
+ exports.createTerminal = createTerminal;
43
+ function open(options) {
44
+ return terminalCtor.open(options);
45
+ }
46
+ exports.open = open;
47
+ /**
48
+ * Expose the native API when not Windows, note that this is not public API and
49
+ * could be removed at any time.
50
+ */
51
+ exports.native = (process.platform !== 'win32' ? utils_1.loadNativeModule('pty').module : null);
52
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright (c) 2016, Daniel Imms (MIT License).
4
+ * Copyright (c) 2018, Microsoft Corporation (MIT License).
5
+ */
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ //# sourceMappingURL=interfaces.js.map
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright (c) 2020, Microsoft Corporation (MIT License).
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.getWorkerPipeName = void 0;
7
+ function getWorkerPipeName(conoutPipeName) {
8
+ return conoutPipeName + "-worker";
9
+ }
10
+ exports.getWorkerPipeName = getWorkerPipeName;
11
+ //# sourceMappingURL=conout.js.map
@@ -0,0 +1,190 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright (c) 2012-2015, Christopher Jeffrey (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.Terminal = exports.DEFAULT_ROWS = exports.DEFAULT_COLS = void 0;
9
+ var events_1 = require("events");
10
+ var eventEmitter2_1 = require("./eventEmitter2");
11
+ exports.DEFAULT_COLS = 80;
12
+ exports.DEFAULT_ROWS = 24;
13
+ /**
14
+ * Default messages to indicate PAUSE/RESUME for automatic flow control.
15
+ * To avoid conflicts with rebound XON/XOFF control codes (such as on-my-zsh),
16
+ * the sequences can be customized in `IPtyForkOptions`.
17
+ */
18
+ var FLOW_CONTROL_PAUSE = '\x13'; // defaults to XOFF
19
+ var FLOW_CONTROL_RESUME = '\x11'; // defaults to XON
20
+ var Terminal = /** @class */ (function () {
21
+ function Terminal(opt) {
22
+ this._pid = 0;
23
+ this._fd = 0;
24
+ this._cols = 0;
25
+ this._rows = 0;
26
+ this._readable = false;
27
+ this._writable = false;
28
+ this._onData = new eventEmitter2_1.EventEmitter2();
29
+ this._onExit = new eventEmitter2_1.EventEmitter2();
30
+ // for 'close'
31
+ this._internalee = new events_1.EventEmitter();
32
+ // setup flow control handling
33
+ this.handleFlowControl = !!(opt === null || opt === void 0 ? void 0 : opt.handleFlowControl);
34
+ this._flowControlPause = (opt === null || opt === void 0 ? void 0 : opt.flowControlPause) || FLOW_CONTROL_PAUSE;
35
+ this._flowControlResume = (opt === null || opt === void 0 ? void 0 : opt.flowControlResume) || FLOW_CONTROL_RESUME;
36
+ if (!opt) {
37
+ return;
38
+ }
39
+ // Do basic type checks here in case node-pty is being used within JavaScript. If the wrong
40
+ // types go through to the C++ side it can lead to hard to diagnose exceptions.
41
+ this._checkType('name', opt.name ? opt.name : undefined, 'string');
42
+ this._checkType('cols', opt.cols ? opt.cols : undefined, 'number');
43
+ this._checkType('rows', opt.rows ? opt.rows : undefined, 'number');
44
+ this._checkType('cwd', opt.cwd ? opt.cwd : undefined, 'string');
45
+ this._checkType('env', opt.env ? opt.env : undefined, 'object');
46
+ this._checkType('uid', opt.uid ? opt.uid : undefined, 'number');
47
+ this._checkType('gid', opt.gid ? opt.gid : undefined, 'number');
48
+ this._checkType('encoding', opt.encoding ? opt.encoding : undefined, 'string');
49
+ }
50
+ Object.defineProperty(Terminal.prototype, "onData", {
51
+ get: function () { return this._onData.event; },
52
+ enumerable: false,
53
+ configurable: true
54
+ });
55
+ Object.defineProperty(Terminal.prototype, "onExit", {
56
+ get: function () { return this._onExit.event; },
57
+ enumerable: false,
58
+ configurable: true
59
+ });
60
+ Object.defineProperty(Terminal.prototype, "pid", {
61
+ get: function () { return this._pid; },
62
+ enumerable: false,
63
+ configurable: true
64
+ });
65
+ Object.defineProperty(Terminal.prototype, "cols", {
66
+ get: function () { return this._cols; },
67
+ enumerable: false,
68
+ configurable: true
69
+ });
70
+ Object.defineProperty(Terminal.prototype, "rows", {
71
+ get: function () { return this._rows; },
72
+ enumerable: false,
73
+ configurable: true
74
+ });
75
+ Terminal.prototype.write = function (data) {
76
+ if (this.handleFlowControl) {
77
+ // PAUSE/RESUME messages are not forwarded to the pty
78
+ if (data === this._flowControlPause) {
79
+ this.pause();
80
+ return;
81
+ }
82
+ if (data === this._flowControlResume) {
83
+ this.resume();
84
+ return;
85
+ }
86
+ }
87
+ // everything else goes to the real pty
88
+ this._write(data);
89
+ };
90
+ Terminal.prototype._forwardEvents = function () {
91
+ var _this = this;
92
+ this.on('data', function (e) { return _this._onData.fire(e); });
93
+ this.on('exit', function (exitCode, signal) { return _this._onExit.fire({ exitCode: exitCode, signal: signal }); });
94
+ };
95
+ Terminal.prototype._checkType = function (name, value, type, allowArray) {
96
+ if (allowArray === void 0) { allowArray = false; }
97
+ if (value === undefined) {
98
+ return;
99
+ }
100
+ if (allowArray) {
101
+ if (Array.isArray(value)) {
102
+ value.forEach(function (v, i) {
103
+ if (typeof v !== type) {
104
+ throw new Error(name + "[" + i + "] must be a " + type + " (not a " + typeof v[i] + ")");
105
+ }
106
+ });
107
+ return;
108
+ }
109
+ }
110
+ if (typeof value !== type) {
111
+ throw new Error(name + " must be a " + type + " (not a " + typeof value + ")");
112
+ }
113
+ };
114
+ /** See net.Socket.end */
115
+ Terminal.prototype.end = function (data) {
116
+ this._socket.end(data);
117
+ };
118
+ /** See stream.Readable.pipe */
119
+ Terminal.prototype.pipe = function (dest, options) {
120
+ return this._socket.pipe(dest, options);
121
+ };
122
+ /** See net.Socket.pause */
123
+ Terminal.prototype.pause = function () {
124
+ return this._socket.pause();
125
+ };
126
+ /** See net.Socket.resume */
127
+ Terminal.prototype.resume = function () {
128
+ return this._socket.resume();
129
+ };
130
+ /** See net.Socket.setEncoding */
131
+ Terminal.prototype.setEncoding = function (encoding) {
132
+ if (this._socket._decoder) {
133
+ delete this._socket._decoder;
134
+ }
135
+ if (encoding) {
136
+ this._socket.setEncoding(encoding);
137
+ }
138
+ };
139
+ Terminal.prototype.addListener = function (eventName, listener) { this.on(eventName, listener); };
140
+ Terminal.prototype.on = function (eventName, listener) {
141
+ if (eventName === 'close') {
142
+ this._internalee.on('close', listener);
143
+ return;
144
+ }
145
+ this._socket.on(eventName, listener);
146
+ };
147
+ Terminal.prototype.emit = function (eventName) {
148
+ var args = [];
149
+ for (var _i = 1; _i < arguments.length; _i++) {
150
+ args[_i - 1] = arguments[_i];
151
+ }
152
+ if (eventName === 'close') {
153
+ return this._internalee.emit.apply(this._internalee, arguments);
154
+ }
155
+ return this._socket.emit.apply(this._socket, arguments);
156
+ };
157
+ Terminal.prototype.listeners = function (eventName) {
158
+ return this._socket.listeners(eventName);
159
+ };
160
+ Terminal.prototype.removeListener = function (eventName, listener) {
161
+ this._socket.removeListener(eventName, listener);
162
+ };
163
+ Terminal.prototype.removeAllListeners = function (eventName) {
164
+ this._socket.removeAllListeners(eventName);
165
+ };
166
+ Terminal.prototype.once = function (eventName, listener) {
167
+ this._socket.once(eventName, listener);
168
+ };
169
+ Terminal.prototype._close = function () {
170
+ this._socket.readable = false;
171
+ this.write = function () { };
172
+ this.end = function () { };
173
+ this._writable = false;
174
+ this._readable = false;
175
+ };
176
+ Terminal.prototype._parseEnv = function (env) {
177
+ var keys = Object.keys(env || {});
178
+ var pairs = [];
179
+ for (var i = 0; i < keys.length; i++) {
180
+ if (keys[i] === undefined) {
181
+ continue;
182
+ }
183
+ pairs.push(keys[i] + '=' + env[keys[i]]);
184
+ }
185
+ return pairs;
186
+ };
187
+ return Terminal;
188
+ }());
189
+ exports.Terminal = Terminal;
190
+ //# sourceMappingURL=terminal.js.map
package/lib/types.js ADDED
@@ -0,0 +1,7 @@
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
+ //# sourceMappingURL=types.js.map
package/lib/utils.js ADDED
@@ -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
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright (c) 2020, Microsoft Corporation (MIT License).
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ var worker_threads_1 = require("worker_threads");
7
+ var net_1 = require("net");
8
+ var conout_1 = require("../shared/conout");
9
+ var conoutPipeName = worker_threads_1.workerData.conoutPipeName;
10
+ var conoutSocket = new net_1.Socket();
11
+ conoutSocket.setEncoding('utf8');
12
+ conoutSocket.connect(conoutPipeName, function () {
13
+ var server = net_1.createServer(function (workerSocket) {
14
+ conoutSocket.pipe(workerSocket);
15
+ });
16
+ server.listen(conout_1.getWorkerPipeName(conoutPipeName));
17
+ if (!worker_threads_1.parentPort) {
18
+ throw new Error('worker_threads parentPort is null');
19
+ }
20
+ worker_threads_1.parentPort.postMessage(1 /* READY */);
21
+ });
22
+ //# sourceMappingURL=conoutSocketWorker.js.map
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "@lydell/node-pty-win32-x64",
3
- "version": "1.0.3",
4
- "description": "Prebuilt win32-x64 binaries for node-pty.",
3
+ "version": "1.2.0-beta.2",
4
+ "description": "The node-pty package, stripped down only for win32-x64.",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git://github.com/lydell/node-pty.git"
8
8
  },
9
9
  "license": "MIT",
10
+ "type": "commonjs",
11
+ "exports": "./lib/index.js",
10
12
  "os": [
11
13
  "win32"
12
14
  ],
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/conpty.node DELETED
Binary file
package/conpty.pdb DELETED
Binary file
Binary file
Binary file