@shitiandmw/node-pty 1.1.0-agent.0
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 +69 -0
- package/README.md +170 -0
- package/binding.gyp +111 -0
- package/deps/.editorconfig +2 -0
- package/deps/winpty/.drone.yml +17 -0
- package/deps/winpty/.gitattributes +19 -0
- package/deps/winpty/LICENSE +21 -0
- package/deps/winpty/Makefile +166 -0
- package/deps/winpty/README.md +151 -0
- package/deps/winpty/RELEASES.md +280 -0
- package/deps/winpty/VERSION.txt +1 -0
- package/deps/winpty/configure +167 -0
- package/deps/winpty/misc/BufferResizeTests.cc +90 -0
- package/deps/winpty/misc/ChangeScreenBuffer.cc +53 -0
- package/deps/winpty/misc/ClearConsole.cc +72 -0
- package/deps/winpty/misc/ConinMode.cc +117 -0
- package/deps/winpty/misc/ConinMode.ps1 +116 -0
- package/deps/winpty/misc/ConoutMode.cc +113 -0
- package/deps/winpty/misc/DebugClient.py +42 -0
- package/deps/winpty/misc/DebugServer.py +63 -0
- package/deps/winpty/misc/DumpLines.py +5 -0
- package/deps/winpty/misc/EnableExtendedFlags.txt +46 -0
- package/deps/winpty/misc/Font-Report-June2016/CP437-Consolas.txt +528 -0
- package/deps/winpty/misc/Font-Report-June2016/CP437-Lucida.txt +633 -0
- package/deps/winpty/misc/Font-Report-June2016/CP932.txt +630 -0
- package/deps/winpty/misc/Font-Report-June2016/CP936.txt +630 -0
- package/deps/winpty/misc/Font-Report-June2016/CP949.txt +630 -0
- package/deps/winpty/misc/Font-Report-June2016/CP950.txt +630 -0
- package/deps/winpty/misc/Font-Report-June2016/MinimumWindowWidths.txt +16 -0
- package/deps/winpty/misc/Font-Report-June2016/Results.txt +4 -0
- package/deps/winpty/misc/Font-Report-June2016/Windows10SetFontBugginess.txt +144 -0
- package/deps/winpty/misc/FontSurvey.cc +100 -0
- package/deps/winpty/misc/FormatChar.h +21 -0
- package/deps/winpty/misc/FreezePerfTest.cc +62 -0
- package/deps/winpty/misc/GetCh.cc +20 -0
- package/deps/winpty/misc/GetConsolePos.cc +41 -0
- package/deps/winpty/misc/GetFont.cc +261 -0
- package/deps/winpty/misc/IdentifyConsoleWindow.ps1 +51 -0
- package/deps/winpty/misc/IsNewConsole.cc +87 -0
- package/deps/winpty/misc/MouseInputNotes.txt +90 -0
- package/deps/winpty/misc/MoveConsoleWindow.cc +34 -0
- package/deps/winpty/misc/Notes.txt +219 -0
- package/deps/winpty/misc/OSVersion.cc +27 -0
- package/deps/winpty/misc/ScreenBufferFreezeInactive.cc +101 -0
- package/deps/winpty/misc/ScreenBufferTest.cc +671 -0
- package/deps/winpty/misc/ScreenBufferTest2.cc +151 -0
- package/deps/winpty/misc/SelectAllTest.cc +45 -0
- package/deps/winpty/misc/SetBufferSize.cc +32 -0
- package/deps/winpty/misc/SetCursorPos.cc +10 -0
- package/deps/winpty/misc/SetFont.cc +145 -0
- package/deps/winpty/misc/SetWindowRect.cc +36 -0
- package/deps/winpty/misc/ShowArgv.cc +12 -0
- package/deps/winpty/misc/ShowConsoleInput.cc +40 -0
- package/deps/winpty/misc/Spew.py +5 -0
- package/deps/winpty/misc/TestUtil.cc +172 -0
- package/deps/winpty/misc/UnicodeDoubleWidthTest.cc +102 -0
- package/deps/winpty/misc/UnicodeWideTest1.cc +246 -0
- package/deps/winpty/misc/UnicodeWideTest2.cc +130 -0
- package/deps/winpty/misc/UnixEcho.cc +89 -0
- package/deps/winpty/misc/Utf16Echo.cc +46 -0
- package/deps/winpty/misc/VeryLargeRead.cc +122 -0
- package/deps/winpty/misc/VkEscapeTest.cc +56 -0
- package/deps/winpty/misc/Win10ResizeWhileFrozen.cc +52 -0
- package/deps/winpty/misc/Win10WrapTest1.cc +57 -0
- package/deps/winpty/misc/Win10WrapTest2.cc +30 -0
- package/deps/winpty/misc/Win32Echo1.cc +26 -0
- package/deps/winpty/misc/Win32Echo2.cc +19 -0
- package/deps/winpty/misc/Win32Test1.cc +46 -0
- package/deps/winpty/misc/Win32Test2.cc +70 -0
- package/deps/winpty/misc/Win32Test3.cc +78 -0
- package/deps/winpty/misc/Win32Write1.cc +44 -0
- package/deps/winpty/misc/WindowsBugCrashReader.cc +27 -0
- package/deps/winpty/misc/WriteConsole.cc +106 -0
- package/deps/winpty/misc/build32.sh +9 -0
- package/deps/winpty/misc/build64.sh +9 -0
- package/deps/winpty/misc/color-test.sh +212 -0
- package/deps/winpty/misc/font-notes.txt +300 -0
- package/deps/winpty/misc/winbug-15048.cc +201 -0
- package/deps/winpty/ship/build-pty4j-libpty.bat +36 -0
- package/deps/winpty/ship/common_ship.py +53 -0
- package/deps/winpty/ship/make_msvc_package.py +165 -0
- package/deps/winpty/ship/ship.py +108 -0
- package/deps/winpty/src/agent/Agent.cc +613 -0
- package/deps/winpty/src/agent/Agent.h +103 -0
- package/deps/winpty/src/agent/AgentCreateDesktop.cc +84 -0
- package/deps/winpty/src/agent/AgentCreateDesktop.h +28 -0
- package/deps/winpty/src/agent/ConsoleFont.cc +632 -0
- package/deps/winpty/src/agent/ConsoleFont.h +28 -0
- package/deps/winpty/src/agent/ConsoleInput.cc +852 -0
- package/deps/winpty/src/agent/ConsoleInput.h +109 -0
- package/deps/winpty/src/agent/ConsoleInputReencoding.cc +121 -0
- package/deps/winpty/src/agent/ConsoleInputReencoding.h +36 -0
- package/deps/winpty/src/agent/ConsoleLine.cc +152 -0
- package/deps/winpty/src/agent/ConsoleLine.h +41 -0
- package/deps/winpty/src/agent/Coord.h +87 -0
- package/deps/winpty/src/agent/DebugShowInput.cc +239 -0
- package/deps/winpty/src/agent/DebugShowInput.h +32 -0
- package/deps/winpty/src/agent/DefaultInputMap.cc +422 -0
- package/deps/winpty/src/agent/DefaultInputMap.h +28 -0
- package/deps/winpty/src/agent/DsrSender.h +30 -0
- package/deps/winpty/src/agent/EventLoop.cc +99 -0
- package/deps/winpty/src/agent/EventLoop.h +47 -0
- package/deps/winpty/src/agent/InputMap.cc +246 -0
- package/deps/winpty/src/agent/InputMap.h +114 -0
- package/deps/winpty/src/agent/LargeConsoleRead.cc +71 -0
- package/deps/winpty/src/agent/LargeConsoleRead.h +68 -0
- package/deps/winpty/src/agent/NamedPipe.cc +378 -0
- package/deps/winpty/src/agent/NamedPipe.h +125 -0
- package/deps/winpty/src/agent/Scraper.cc +699 -0
- package/deps/winpty/src/agent/Scraper.h +103 -0
- package/deps/winpty/src/agent/SimplePool.h +75 -0
- package/deps/winpty/src/agent/SmallRect.h +143 -0
- package/deps/winpty/src/agent/Terminal.cc +535 -0
- package/deps/winpty/src/agent/Terminal.h +69 -0
- package/deps/winpty/src/agent/UnicodeEncoding.h +157 -0
- package/deps/winpty/src/agent/UnicodeEncodingTest.cc +189 -0
- package/deps/winpty/src/agent/Win32Console.cc +107 -0
- package/deps/winpty/src/agent/Win32Console.h +67 -0
- package/deps/winpty/src/agent/Win32ConsoleBuffer.cc +193 -0
- package/deps/winpty/src/agent/Win32ConsoleBuffer.h +99 -0
- package/deps/winpty/src/agent/main.cc +114 -0
- package/deps/winpty/src/agent/subdir.mk +61 -0
- package/deps/winpty/src/configurations.gypi +60 -0
- package/deps/winpty/src/debugserver/DebugServer.cc +117 -0
- package/deps/winpty/src/debugserver/subdir.mk +41 -0
- package/deps/winpty/src/include/winpty.h +242 -0
- package/deps/winpty/src/include/winpty_constants.h +131 -0
- package/deps/winpty/src/libwinpty/AgentLocation.cc +75 -0
- package/deps/winpty/src/libwinpty/AgentLocation.h +28 -0
- package/deps/winpty/src/libwinpty/LibWinptyException.h +54 -0
- package/deps/winpty/src/libwinpty/WinptyInternal.h +72 -0
- package/deps/winpty/src/libwinpty/subdir.mk +46 -0
- package/deps/winpty/src/libwinpty/winpty.cc +970 -0
- package/deps/winpty/src/shared/AgentMsg.h +38 -0
- package/deps/winpty/src/shared/BackgroundDesktop.cc +122 -0
- package/deps/winpty/src/shared/BackgroundDesktop.h +73 -0
- package/deps/winpty/src/shared/Buffer.cc +103 -0
- package/deps/winpty/src/shared/Buffer.h +102 -0
- package/deps/winpty/src/shared/DebugClient.cc +187 -0
- package/deps/winpty/src/shared/DebugClient.h +38 -0
- package/deps/winpty/src/shared/GenRandom.cc +138 -0
- package/deps/winpty/src/shared/GenRandom.h +55 -0
- package/deps/winpty/src/shared/GetCommitHash.bat +13 -0
- package/deps/winpty/src/shared/Mutex.h +54 -0
- package/deps/winpty/src/shared/OsModule.h +63 -0
- package/deps/winpty/src/shared/OwnedHandle.cc +36 -0
- package/deps/winpty/src/shared/OwnedHandle.h +45 -0
- package/deps/winpty/src/shared/PrecompiledHeader.h +43 -0
- package/deps/winpty/src/shared/StringBuilder.h +227 -0
- package/deps/winpty/src/shared/StringBuilderTest.cc +114 -0
- package/deps/winpty/src/shared/StringUtil.cc +55 -0
- package/deps/winpty/src/shared/StringUtil.h +80 -0
- package/deps/winpty/src/shared/TimeMeasurement.h +63 -0
- package/deps/winpty/src/shared/UnixCtrlChars.h +45 -0
- package/deps/winpty/src/shared/UpdateGenVersion.bat +20 -0
- package/deps/winpty/src/shared/WindowsSecurity.cc +460 -0
- package/deps/winpty/src/shared/WindowsSecurity.h +104 -0
- package/deps/winpty/src/shared/WindowsVersion.cc +252 -0
- package/deps/winpty/src/shared/WindowsVersion.h +29 -0
- package/deps/winpty/src/shared/WinptyAssert.cc +55 -0
- package/deps/winpty/src/shared/WinptyAssert.h +64 -0
- package/deps/winpty/src/shared/WinptyException.cc +57 -0
- package/deps/winpty/src/shared/WinptyException.h +43 -0
- package/deps/winpty/src/shared/WinptyVersion.cc +42 -0
- package/deps/winpty/src/shared/WinptyVersion.h +27 -0
- package/deps/winpty/src/shared/winpty_snprintf.h +99 -0
- package/deps/winpty/src/subdir.mk +5 -0
- package/deps/winpty/src/tests/subdir.mk +28 -0
- package/deps/winpty/src/tests/trivial_test.cc +158 -0
- package/deps/winpty/src/unix-adapter/InputHandler.cc +114 -0
- package/deps/winpty/src/unix-adapter/InputHandler.h +56 -0
- package/deps/winpty/src/unix-adapter/OutputHandler.cc +80 -0
- package/deps/winpty/src/unix-adapter/OutputHandler.h +53 -0
- package/deps/winpty/src/unix-adapter/Util.cc +86 -0
- package/deps/winpty/src/unix-adapter/Util.h +31 -0
- package/deps/winpty/src/unix-adapter/WakeupFd.cc +70 -0
- package/deps/winpty/src/unix-adapter/WakeupFd.h +42 -0
- package/deps/winpty/src/unix-adapter/main.cc +729 -0
- package/deps/winpty/src/unix-adapter/subdir.mk +41 -0
- package/deps/winpty/src/winpty.gyp +234 -0
- package/deps/winpty/vcbuild.bat +83 -0
- package/lib/conpty_console_list_agent.js +16 -0
- package/lib/conpty_console_list_agent.js.map +1 -0
- package/lib/eventEmitter2.js +47 -0
- package/lib/eventEmitter2.js.map +1 -0
- package/lib/eventEmitter2.test.js +30 -0
- package/lib/eventEmitter2.test.js.map +1 -0
- package/lib/index.js +52 -0
- package/lib/index.js.map +1 -0
- package/lib/interfaces.js +7 -0
- package/lib/interfaces.js.map +1 -0
- package/lib/shared/conout.js +11 -0
- package/lib/shared/conout.js.map +1 -0
- package/lib/terminal.js +190 -0
- package/lib/terminal.js.map +1 -0
- package/lib/terminal.test.js +139 -0
- package/lib/terminal.test.js.map +1 -0
- package/lib/testUtils.test.js +28 -0
- package/lib/testUtils.test.js.map +1 -0
- package/lib/types.js +7 -0
- package/lib/types.js.map +1 -0
- package/lib/unixTerminal.js +346 -0
- package/lib/unixTerminal.js.map +1 -0
- package/lib/unixTerminal.test.js +351 -0
- package/lib/unixTerminal.test.js.map +1 -0
- package/lib/utils.js +39 -0
- package/lib/utils.js.map +1 -0
- package/lib/windowsConoutConnection.js +125 -0
- package/lib/windowsConoutConnection.js.map +1 -0
- package/lib/windowsPtyAgent.js +320 -0
- package/lib/windowsPtyAgent.js.map +1 -0
- package/lib/windowsPtyAgent.test.js +90 -0
- package/lib/windowsPtyAgent.test.js.map +1 -0
- package/lib/windowsTerminal.js +199 -0
- package/lib/windowsTerminal.js.map +1 -0
- package/lib/windowsTerminal.test.js +219 -0
- package/lib/windowsTerminal.test.js.map +1 -0
- package/lib/worker/conoutSocketWorker.js +22 -0
- package/lib/worker/conoutSocketWorker.js.map +1 -0
- package/package.json +68 -0
- package/prebuilds/darwin-arm64/pty.node +0 -0
- package/prebuilds/darwin-arm64/spawn-helper +0 -0
- package/prebuilds/darwin-x64/pty.node +0 -0
- package/prebuilds/darwin-x64/spawn-helper +0 -0
- package/prebuilds/win32-arm64/conpty/OpenConsole.exe +0 -0
- package/prebuilds/win32-arm64/conpty/conpty.dll +0 -0
- package/prebuilds/win32-arm64/conpty.node +0 -0
- package/prebuilds/win32-arm64/conpty.pdb +0 -0
- package/prebuilds/win32-arm64/conpty_console_list.node +0 -0
- package/prebuilds/win32-arm64/conpty_console_list.pdb +0 -0
- package/prebuilds/win32-arm64/pty.node +0 -0
- package/prebuilds/win32-arm64/pty.pdb +0 -0
- package/prebuilds/win32-arm64/winpty-agent.exe +0 -0
- package/prebuilds/win32-arm64/winpty-agent.pdb +0 -0
- package/prebuilds/win32-arm64/winpty.dll +0 -0
- package/prebuilds/win32-arm64/winpty.pdb +0 -0
- package/prebuilds/win32-x64/conpty/OpenConsole.exe +0 -0
- package/prebuilds/win32-x64/conpty/conpty.dll +0 -0
- package/prebuilds/win32-x64/conpty.node +0 -0
- package/prebuilds/win32-x64/conpty.pdb +0 -0
- package/prebuilds/win32-x64/conpty_console_list.node +0 -0
- package/prebuilds/win32-x64/conpty_console_list.pdb +0 -0
- package/prebuilds/win32-x64/pty.node +0 -0
- package/prebuilds/win32-x64/pty.pdb +0 -0
- package/prebuilds/win32-x64/winpty-agent.exe +0 -0
- package/prebuilds/win32-x64/winpty-agent.pdb +0 -0
- package/prebuilds/win32-x64/winpty.dll +0 -0
- package/prebuilds/win32-x64/winpty.pdb +0 -0
- package/scripts/gen-compile-commands.js +8 -0
- package/scripts/increment-version.js +54 -0
- package/scripts/post-install.js +99 -0
- package/scripts/prebuild.js +39 -0
- package/scripts/sync-prebuild.js +31 -0
- package/scripts/verify-darwin-fd-leak.js +63 -0
- package/src/conpty_console_list_agent.ts +15 -0
- package/src/eventEmitter2.test.ts +30 -0
- package/src/eventEmitter2.ts +48 -0
- package/src/index.ts +52 -0
- package/src/interfaces.ts +130 -0
- package/src/native.d.ts +54 -0
- package/src/shared/conout.ts +15 -0
- package/src/terminal.test.ts +119 -0
- package/src/terminal.ts +211 -0
- package/src/testUtils.test.ts +23 -0
- package/src/tsconfig.json +22 -0
- package/src/types.ts +15 -0
- package/src/unix/pty.cc +808 -0
- package/src/unix/spawn-helper.cc +23 -0
- package/src/unixTerminal.test.ts +367 -0
- package/src/unixTerminal.ts +388 -0
- package/src/utils.ts +29 -0
- package/src/win/conpty.cc +583 -0
- package/src/win/conpty.h +41 -0
- package/src/win/conpty_console_list.cc +44 -0
- package/src/win/path_util.cc +95 -0
- package/src/win/path_util.h +26 -0
- package/src/win/winpty.cc +333 -0
- package/src/windowsConoutConnection.ts +82 -0
- package/src/windowsPtyAgent.test.ts +94 -0
- package/src/windowsPtyAgent.ts +321 -0
- package/src/windowsTerminal.test.ts +229 -0
- package/src/windowsTerminal.ts +203 -0
- package/src/worker/conoutSocketWorker.ts +22 -0
- package/third_party/conpty/1.23.251008001/win10-arm64/OpenConsole.exe +0 -0
- package/third_party/conpty/1.23.251008001/win10-arm64/conpty.dll +0 -0
- package/third_party/conpty/1.23.251008001/win10-x64/OpenConsole.exe +0 -0
- package/third_party/conpty/1.23.251008001/win10-x64/conpty.dll +0 -0
- package/typings/node-pty.d.ts +211 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2013-2015, Christopher Jeffrey, Peter Sunde (MIT License)
|
|
3
|
+
* Copyright (c) 2016, Daniel Imms (MIT License).
|
|
4
|
+
* Copyright (c) 2018, Microsoft Corporation (MIT License).
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
#include <stdexcept>
|
|
8
|
+
#include <Shlwapi.h> // PathCombine
|
|
9
|
+
#include <Windows.h>
|
|
10
|
+
#include "path_util.h"
|
|
11
|
+
|
|
12
|
+
namespace path_util {
|
|
13
|
+
|
|
14
|
+
std::wstring to_wstring(const Napi::String& str) {
|
|
15
|
+
const std::u16string & u16 = str.Utf16Value();
|
|
16
|
+
return std::wstring(u16.begin(), u16.end());
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
std::string wstring_to_string(const std::wstring &wide_string) {
|
|
20
|
+
if (wide_string.empty()) {
|
|
21
|
+
return "";
|
|
22
|
+
}
|
|
23
|
+
const auto size_needed = WideCharToMultiByte(CP_UTF8, 0, &wide_string.at(0), (int)wide_string.size(), nullptr, 0, nullptr, nullptr);
|
|
24
|
+
if (size_needed <= 0) {
|
|
25
|
+
return "";
|
|
26
|
+
}
|
|
27
|
+
std::string result(size_needed, 0);
|
|
28
|
+
WideCharToMultiByte(CP_UTF8, 0, &wide_string.at(0), (int)wide_string.size(), &result.at(0), size_needed, nullptr, nullptr);
|
|
29
|
+
return result;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const char* from_wstring(const wchar_t* wstr) {
|
|
33
|
+
int bufferSize = WideCharToMultiByte(CP_UTF8, 0, wstr, -1, NULL, 0, NULL, NULL);
|
|
34
|
+
if (bufferSize <= 0) {
|
|
35
|
+
return "";
|
|
36
|
+
}
|
|
37
|
+
char *output = new char[bufferSize];
|
|
38
|
+
int status = WideCharToMultiByte(CP_UTF8, 0, wstr, -1, output, bufferSize, NULL, NULL);
|
|
39
|
+
if (status == 0) {
|
|
40
|
+
return "";
|
|
41
|
+
}
|
|
42
|
+
return output;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
bool file_exists(std::wstring filename) {
|
|
46
|
+
DWORD attr = ::GetFileAttributesW(filename.c_str());
|
|
47
|
+
if (attr == INVALID_FILE_ATTRIBUTES || (attr & FILE_ATTRIBUTE_DIRECTORY)) {
|
|
48
|
+
return false;
|
|
49
|
+
}
|
|
50
|
+
return true;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// cmd.exe -> C:\Windows\system32\cmd.exe
|
|
54
|
+
std::wstring get_shell_path(std::wstring filename) {
|
|
55
|
+
std::wstring shellpath;
|
|
56
|
+
|
|
57
|
+
if (file_exists(filename)) {
|
|
58
|
+
return shellpath;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
wchar_t* buffer_ = new wchar_t[MAX_ENV];
|
|
62
|
+
int read = ::GetEnvironmentVariableW(L"Path", buffer_, MAX_ENV);
|
|
63
|
+
if (read) {
|
|
64
|
+
std::wstring delimiter = L";";
|
|
65
|
+
size_t pos = 0;
|
|
66
|
+
std::vector<std::wstring> paths;
|
|
67
|
+
std::wstring buffer(buffer_);
|
|
68
|
+
while ((pos = buffer.find(delimiter)) != std::wstring::npos) {
|
|
69
|
+
paths.push_back(buffer.substr(0, pos));
|
|
70
|
+
buffer.erase(0, pos + delimiter.length());
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const wchar_t *filename_ = filename.c_str();
|
|
74
|
+
|
|
75
|
+
for (size_t i = 0; i < paths.size(); ++i) {
|
|
76
|
+
std::wstring path = paths[i];
|
|
77
|
+
wchar_t searchPath[MAX_PATH];
|
|
78
|
+
::PathCombineW(searchPath, const_cast<wchar_t*>(path.c_str()), filename_);
|
|
79
|
+
|
|
80
|
+
if (searchPath == NULL) {
|
|
81
|
+
continue;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
if (file_exists(searchPath)) {
|
|
85
|
+
shellpath = searchPath;
|
|
86
|
+
break;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
delete[] buffer_;
|
|
92
|
+
return shellpath;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
} // namespace path_util
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2013-2015, Christopher Jeffrey, Peter Sunde (MIT License)
|
|
3
|
+
* Copyright (c) 2016, Daniel Imms (MIT License).
|
|
4
|
+
* Copyright (c) 2018, Microsoft Corporation (MIT License).
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
#ifndef NODE_PTY_PATH_UTIL_H_
|
|
8
|
+
#define NODE_PTY_PATH_UTIL_H_
|
|
9
|
+
|
|
10
|
+
#define NODE_ADDON_API_DISABLE_DEPRECATED
|
|
11
|
+
#include <napi.h>
|
|
12
|
+
#include <string>
|
|
13
|
+
|
|
14
|
+
#define MAX_ENV 65536
|
|
15
|
+
|
|
16
|
+
namespace path_util {
|
|
17
|
+
|
|
18
|
+
std::wstring to_wstring(const Napi::String& str);
|
|
19
|
+
std::string wstring_to_string(const std::wstring &wide_string);
|
|
20
|
+
const char* from_wstring(const wchar_t* wstr);
|
|
21
|
+
bool file_exists(std::wstring filename);
|
|
22
|
+
std::wstring get_shell_path(std::wstring filename);
|
|
23
|
+
|
|
24
|
+
} // namespace path_util
|
|
25
|
+
|
|
26
|
+
#endif // NODE_PTY_PATH_UTIL_H_
|
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2013-2015, Christopher Jeffrey, Peter Sunde (MIT License)
|
|
3
|
+
* Copyright (c) 2016, Daniel Imms (MIT License).
|
|
4
|
+
* Copyright (c) 2018, Microsoft Corporation (MIT License).
|
|
5
|
+
*
|
|
6
|
+
* pty.cc:
|
|
7
|
+
* This file is responsible for starting processes
|
|
8
|
+
* with pseudo-terminal file descriptors.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
#define NODE_ADDON_API_DISABLE_DEPRECATED
|
|
12
|
+
#include <napi.h>
|
|
13
|
+
#include <iostream>
|
|
14
|
+
#include <assert.h>
|
|
15
|
+
#include <map>
|
|
16
|
+
#include <Shlwapi.h> // PathCombine, PathIsRelative
|
|
17
|
+
#include <sstream>
|
|
18
|
+
#include <stdlib.h>
|
|
19
|
+
#include <string.h>
|
|
20
|
+
#include <string>
|
|
21
|
+
#include <vector>
|
|
22
|
+
#include <winpty.h>
|
|
23
|
+
|
|
24
|
+
#include "path_util.h"
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Misc
|
|
28
|
+
*/
|
|
29
|
+
#define WINPTY_DBG_VARIABLE TEXT("WINPTYDBG")
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* winpty
|
|
33
|
+
*/
|
|
34
|
+
static std::vector<winpty_t *> ptyHandles;
|
|
35
|
+
static volatile LONG ptyCounter;
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Helpers
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
/** Keeps track of the handles created by PtyStartProcess */
|
|
42
|
+
static std::map<DWORD, HANDLE> createdHandles;
|
|
43
|
+
|
|
44
|
+
static winpty_t *get_pipe_handle(DWORD pid) {
|
|
45
|
+
for (size_t i = 0; i < ptyHandles.size(); ++i) {
|
|
46
|
+
winpty_t *ptyHandle = ptyHandles[i];
|
|
47
|
+
HANDLE current = winpty_agent_process(ptyHandle);
|
|
48
|
+
if (GetProcessId(current) == pid) {
|
|
49
|
+
return ptyHandle;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
return nullptr;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
static bool remove_pipe_handle(DWORD pid) {
|
|
56
|
+
for (size_t i = 0; i < ptyHandles.size(); ++i) {
|
|
57
|
+
winpty_t *ptyHandle = ptyHandles[i];
|
|
58
|
+
HANDLE current = winpty_agent_process(ptyHandle);
|
|
59
|
+
if (GetProcessId(current) == pid) {
|
|
60
|
+
winpty_free(ptyHandle);
|
|
61
|
+
ptyHandles.erase(ptyHandles.begin() + i);
|
|
62
|
+
ptyHandle = nullptr;
|
|
63
|
+
return true;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
return false;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
Napi::Error error_with_winpty_msg(const char *generalMsg, winpty_error_ptr_t error_ptr, Napi::Env env) {
|
|
70
|
+
std::string why;
|
|
71
|
+
why += generalMsg;
|
|
72
|
+
why += ": ";
|
|
73
|
+
why += path_util::wstring_to_string(winpty_error_msg(error_ptr));
|
|
74
|
+
winpty_error_free(error_ptr);
|
|
75
|
+
return Napi::Error::New(env, why);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
static Napi::Value PtyGetExitCode(const Napi::CallbackInfo& info) {
|
|
79
|
+
Napi::Env env(info.Env());
|
|
80
|
+
Napi::HandleScope scope(env);
|
|
81
|
+
|
|
82
|
+
if (info.Length() != 1 ||
|
|
83
|
+
!info[0].IsNumber()) {
|
|
84
|
+
throw Napi::Error::New(env, "Usage: pty.getExitCode(pid)");
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
DWORD pid = info[0].As<Napi::Number>().Uint32Value();
|
|
88
|
+
HANDLE handle = OpenProcess(PROCESS_QUERY_INFORMATION, FALSE, pid);
|
|
89
|
+
if (handle == NULL) {
|
|
90
|
+
return Napi::Number::New(env, -1);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
DWORD exitCode = 0;
|
|
94
|
+
BOOL success = GetExitCodeProcess(handle, &exitCode);
|
|
95
|
+
if (success == FALSE) {
|
|
96
|
+
exitCode = -1;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
CloseHandle(handle);
|
|
100
|
+
return Napi::Number::New(env, exitCode);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
static Napi::Value PtyGetProcessList(const Napi::CallbackInfo& info) {
|
|
104
|
+
Napi::Env env(info.Env());
|
|
105
|
+
Napi::HandleScope scope(env);
|
|
106
|
+
|
|
107
|
+
if (info.Length() != 1 ||
|
|
108
|
+
!info[0].IsNumber()) {
|
|
109
|
+
throw Napi::Error::New(env, "Usage: pty.getProcessList(pid)");
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
DWORD pid = info[0].As<Napi::Number>().Uint32Value();
|
|
113
|
+
winpty_t *pc = get_pipe_handle(pid);
|
|
114
|
+
if (pc == nullptr) {
|
|
115
|
+
return Napi::Number::New(env, 0);
|
|
116
|
+
}
|
|
117
|
+
int processList[64];
|
|
118
|
+
const int processCount = 64;
|
|
119
|
+
int actualCount = winpty_get_console_process_list(pc, processList, processCount, nullptr);
|
|
120
|
+
if (actualCount <= 0) {
|
|
121
|
+
return Napi::Number::New(env, 0);
|
|
122
|
+
}
|
|
123
|
+
Napi::Array result = Napi::Array::New(env, actualCount);
|
|
124
|
+
for (int i = 0; i < actualCount; i++) {
|
|
125
|
+
result.Set(i, Napi::Number::New(env, processList[i]));
|
|
126
|
+
}
|
|
127
|
+
return result;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
static Napi::Value PtyStartProcess(const Napi::CallbackInfo& info) {
|
|
131
|
+
Napi::Env env(info.Env());
|
|
132
|
+
Napi::HandleScope scope(env);
|
|
133
|
+
|
|
134
|
+
if (info.Length() != 7 ||
|
|
135
|
+
!info[0].IsString() ||
|
|
136
|
+
!info[1].IsString() ||
|
|
137
|
+
!info[2].IsArray() ||
|
|
138
|
+
!info[3].IsString() ||
|
|
139
|
+
!info[4].IsNumber() ||
|
|
140
|
+
!info[5].IsNumber() ||
|
|
141
|
+
!info[6].IsBoolean()) {
|
|
142
|
+
throw Napi::Error::New(env, "Usage: pty.startProcess(file, cmdline, env, cwd, cols, rows, debug)");
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
std::wstring filename(path_util::to_wstring(info[0].As<Napi::String>()));
|
|
146
|
+
std::wstring cmdline(path_util::to_wstring(info[1].As<Napi::String>()));
|
|
147
|
+
std::wstring cwd(path_util::to_wstring(info[3].As<Napi::String>()));
|
|
148
|
+
|
|
149
|
+
// create environment block
|
|
150
|
+
std::wstring envStr;
|
|
151
|
+
const Napi::Array envValues = info[2].As<Napi::Array>();
|
|
152
|
+
if (!envValues.IsEmpty()) {
|
|
153
|
+
std::wstring envBlock;
|
|
154
|
+
for(uint32_t i = 0; i < envValues.Length(); i++) {
|
|
155
|
+
envBlock += path_util::to_wstring(envValues.Get(i).As<Napi::String>());
|
|
156
|
+
envBlock += L'\0';
|
|
157
|
+
}
|
|
158
|
+
envStr = std::move(envBlock);
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
// use environment 'Path' variable to determine location of
|
|
162
|
+
// the relative path that we have recieved (e.g cmd.exe)
|
|
163
|
+
std::wstring shellpath;
|
|
164
|
+
if (::PathIsRelativeW(filename.c_str())) {
|
|
165
|
+
shellpath = path_util::get_shell_path(filename);
|
|
166
|
+
} else {
|
|
167
|
+
shellpath = filename;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
if (shellpath.empty() || !path_util::file_exists(shellpath)) {
|
|
171
|
+
std::string why;
|
|
172
|
+
why += "File not found: ";
|
|
173
|
+
why += path_util::wstring_to_string(shellpath);
|
|
174
|
+
throw Napi::Error::New(env, why);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
int cols = info[4].As<Napi::Number>().Int32Value();
|
|
178
|
+
int rows = info[5].As<Napi::Number>().Int32Value();
|
|
179
|
+
bool debug = info[6].As<Napi::Boolean>().Value();
|
|
180
|
+
|
|
181
|
+
// Enable/disable debugging
|
|
182
|
+
SetEnvironmentVariable(WINPTY_DBG_VARIABLE, debug ? "1" : NULL); // NULL = deletes variable
|
|
183
|
+
|
|
184
|
+
// Create winpty config
|
|
185
|
+
winpty_error_ptr_t error_ptr = nullptr;
|
|
186
|
+
winpty_config_t* winpty_config = winpty_config_new(0, &error_ptr);
|
|
187
|
+
if (winpty_config == nullptr) {
|
|
188
|
+
throw error_with_winpty_msg("Error creating WinPTY config", error_ptr, env);
|
|
189
|
+
}
|
|
190
|
+
winpty_error_free(error_ptr);
|
|
191
|
+
|
|
192
|
+
// Set pty size on config
|
|
193
|
+
winpty_config_set_initial_size(winpty_config, cols, rows);
|
|
194
|
+
|
|
195
|
+
// Start the pty agent
|
|
196
|
+
winpty_t *pc = winpty_open(winpty_config, &error_ptr);
|
|
197
|
+
winpty_config_free(winpty_config);
|
|
198
|
+
if (pc == nullptr) {
|
|
199
|
+
throw error_with_winpty_msg("Error launching WinPTY agent", error_ptr, env);
|
|
200
|
+
}
|
|
201
|
+
winpty_error_free(error_ptr);
|
|
202
|
+
|
|
203
|
+
// Create winpty spawn config
|
|
204
|
+
winpty_spawn_config_t* config = winpty_spawn_config_new(WINPTY_SPAWN_FLAG_AUTO_SHUTDOWN, shellpath.c_str(), cmdline.c_str(), cwd.c_str(), envStr.c_str(), &error_ptr);
|
|
205
|
+
if (config == nullptr) {
|
|
206
|
+
winpty_free(pc);
|
|
207
|
+
throw error_with_winpty_msg("Error creating WinPTY spawn config", error_ptr, env);
|
|
208
|
+
}
|
|
209
|
+
winpty_error_free(error_ptr);
|
|
210
|
+
|
|
211
|
+
// Spawn the new process
|
|
212
|
+
HANDLE handle = nullptr;
|
|
213
|
+
BOOL spawnSuccess = winpty_spawn(pc, config, &handle, nullptr, nullptr, &error_ptr);
|
|
214
|
+
winpty_spawn_config_free(config);
|
|
215
|
+
if (!spawnSuccess) {
|
|
216
|
+
if (handle) {
|
|
217
|
+
CloseHandle(handle);
|
|
218
|
+
}
|
|
219
|
+
winpty_free(pc);
|
|
220
|
+
throw error_with_winpty_msg("Unable to start terminal process", error_ptr, env);
|
|
221
|
+
}
|
|
222
|
+
winpty_error_free(error_ptr);
|
|
223
|
+
|
|
224
|
+
LPCWSTR coninPipeName = winpty_conin_name(pc);
|
|
225
|
+
std::string coninPipeNameStr(path_util::from_wstring(coninPipeName));
|
|
226
|
+
if (coninPipeNameStr.empty()) {
|
|
227
|
+
CloseHandle(handle);
|
|
228
|
+
winpty_free(pc);
|
|
229
|
+
throw Napi::Error::New(env, "Failed to initialize winpty conin");
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
LPCWSTR conoutPipeName = winpty_conout_name(pc);
|
|
233
|
+
std::string conoutPipeNameStr(path_util::from_wstring(conoutPipeName));
|
|
234
|
+
if (conoutPipeNameStr.empty()) {
|
|
235
|
+
CloseHandle(handle);
|
|
236
|
+
winpty_free(pc);
|
|
237
|
+
throw Napi::Error::New(env, "Failed to initialize winpty conout");
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
DWORD innerPid = GetProcessId(handle);
|
|
241
|
+
if (createdHandles[innerPid]) {
|
|
242
|
+
CloseHandle(handle);
|
|
243
|
+
winpty_free(pc);
|
|
244
|
+
std::stringstream why;
|
|
245
|
+
why << "There is already a process with innerPid " << innerPid;
|
|
246
|
+
throw Napi::Error::New(env, why.str());
|
|
247
|
+
}
|
|
248
|
+
createdHandles[innerPid] = handle;
|
|
249
|
+
|
|
250
|
+
// Save pty struct for later use
|
|
251
|
+
ptyHandles.push_back(pc);
|
|
252
|
+
|
|
253
|
+
DWORD pid = GetProcessId(winpty_agent_process(pc));
|
|
254
|
+
Napi::Object marshal = Napi::Object::New(env);
|
|
255
|
+
marshal.Set("innerPid", Napi::Number::New(env, (int)innerPid));
|
|
256
|
+
marshal.Set("pid", Napi::Number::New(env, (int)pid));
|
|
257
|
+
marshal.Set("pty", Napi::Number::New(env, InterlockedIncrement(&ptyCounter)));
|
|
258
|
+
marshal.Set("fd", Napi::Number::New(env, -1));
|
|
259
|
+
marshal.Set("conin", Napi::String::New(env, coninPipeNameStr));
|
|
260
|
+
marshal.Set("conout", Napi::String::New(env, conoutPipeNameStr));
|
|
261
|
+
|
|
262
|
+
return marshal;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
static Napi::Value PtyResize(const Napi::CallbackInfo& info) {
|
|
266
|
+
Napi::Env env(info.Env());
|
|
267
|
+
Napi::HandleScope scope(env);
|
|
268
|
+
|
|
269
|
+
if (info.Length() != 3 ||
|
|
270
|
+
!info[0].IsNumber() ||
|
|
271
|
+
!info[1].IsNumber() ||
|
|
272
|
+
!info[2].IsNumber()) {
|
|
273
|
+
throw Napi::Error::New(env, "Usage: pty.resize(pid, cols, rows)");
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
DWORD pid = info[0].As<Napi::Number>().Uint32Value();
|
|
277
|
+
int cols = info[1].As<Napi::Number>().Int32Value();
|
|
278
|
+
int rows = info[2].As<Napi::Number>().Int32Value();
|
|
279
|
+
|
|
280
|
+
winpty_t *pc = get_pipe_handle(pid);
|
|
281
|
+
|
|
282
|
+
if (pc == nullptr) {
|
|
283
|
+
throw Napi::Error::New(env, "The pty doesn't appear to exist");
|
|
284
|
+
}
|
|
285
|
+
BOOL success = winpty_set_size(pc, cols, rows, nullptr);
|
|
286
|
+
if (!success) {
|
|
287
|
+
throw Napi::Error::New(env, "The pty could not be resized");
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
return env.Undefined();
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
static Napi::Value PtyKill(const Napi::CallbackInfo& info) {
|
|
294
|
+
Napi::Env env(info.Env());
|
|
295
|
+
Napi::HandleScope scope(env);
|
|
296
|
+
|
|
297
|
+
if (info.Length() != 2 ||
|
|
298
|
+
!info[0].IsNumber() ||
|
|
299
|
+
!info[1].IsNumber()) {
|
|
300
|
+
throw Napi::Error::New(env, "Usage: pty.kill(pid, innerPid)");
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
DWORD pid = info[0].As<Napi::Number>().Uint32Value();
|
|
304
|
+
DWORD innerPid = info[1].As<Napi::Number>().Uint32Value();
|
|
305
|
+
|
|
306
|
+
winpty_t *pc = get_pipe_handle(pid);
|
|
307
|
+
if (pc == nullptr) {
|
|
308
|
+
throw Napi::Error::New(env, "Pty seems to have been killed already");
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
assert(remove_pipe_handle(pid));
|
|
312
|
+
|
|
313
|
+
HANDLE innerPidHandle = createdHandles[innerPid];
|
|
314
|
+
createdHandles.erase(innerPid);
|
|
315
|
+
CloseHandle(innerPidHandle);
|
|
316
|
+
|
|
317
|
+
return env.Undefined();
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
/**
|
|
321
|
+
* Init
|
|
322
|
+
*/
|
|
323
|
+
|
|
324
|
+
Napi::Object init(Napi::Env env, Napi::Object exports) {
|
|
325
|
+
exports.Set("startProcess", Napi::Function::New(env, PtyStartProcess));
|
|
326
|
+
exports.Set("resize", Napi::Function::New(env, PtyResize));
|
|
327
|
+
exports.Set("kill", Napi::Function::New(env, PtyKill));
|
|
328
|
+
exports.Set("getExitCode", Napi::Function::New(env, PtyGetExitCode));
|
|
329
|
+
exports.Set("getProcessList", Napi::Function::New(env, PtyGetProcessList));
|
|
330
|
+
return exports;
|
|
331
|
+
};
|
|
332
|
+
|
|
333
|
+
NODE_API_MODULE(NODE_GYP_MODULE_NAME, init);
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020, Microsoft Corporation (MIT License).
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import { Worker } from 'worker_threads';
|
|
6
|
+
import { Socket } from 'net';
|
|
7
|
+
import { IDisposable } from './types';
|
|
8
|
+
import { IWorkerData, ConoutWorkerMessage, getWorkerPipeName } from './shared/conout';
|
|
9
|
+
import { join } from 'path';
|
|
10
|
+
import { IEvent, EventEmitter2 } from './eventEmitter2';
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* The amount of time to wait for additional data after the conpty shell process has exited before
|
|
14
|
+
* shutting down the worker and sockets. The timer will be reset if a new data event comes in after
|
|
15
|
+
* the timer has started.
|
|
16
|
+
*/
|
|
17
|
+
const FLUSH_DATA_INTERVAL = 1000;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Connects to and manages the lifecycle of the conout socket. This socket must be drained on
|
|
21
|
+
* another thread in order to avoid deadlocks where Conpty waits for the out socket to drain
|
|
22
|
+
* when `ClosePseudoConsole` is called. This happens when data is being written to the terminal when
|
|
23
|
+
* the pty is closed.
|
|
24
|
+
*
|
|
25
|
+
* See also:
|
|
26
|
+
* - https://github.com/microsoft/node-pty/issues/375
|
|
27
|
+
* - https://github.com/microsoft/vscode/issues/76548
|
|
28
|
+
* - https://github.com/microsoft/terminal/issues/1810
|
|
29
|
+
* - https://docs.microsoft.com/en-us/windows/console/closepseudoconsole
|
|
30
|
+
*/
|
|
31
|
+
export class ConoutConnection implements IDisposable {
|
|
32
|
+
private _worker: Worker;
|
|
33
|
+
private _drainTimeout: NodeJS.Timeout | undefined;
|
|
34
|
+
private _isDisposed: boolean = false;
|
|
35
|
+
|
|
36
|
+
private _onReady = new EventEmitter2<void>();
|
|
37
|
+
public get onReady(): IEvent<void> { return this._onReady.event; }
|
|
38
|
+
|
|
39
|
+
constructor(
|
|
40
|
+
private _conoutPipeName: string,
|
|
41
|
+
private _useConptyDll: boolean
|
|
42
|
+
) {
|
|
43
|
+
const workerData: IWorkerData = {
|
|
44
|
+
conoutPipeName: _conoutPipeName
|
|
45
|
+
};
|
|
46
|
+
const scriptPath = __dirname.replace('node_modules.asar', 'node_modules.asar.unpacked');
|
|
47
|
+
this._worker = new Worker(join(scriptPath, 'worker/conoutSocketWorker.js'), { workerData });
|
|
48
|
+
this._worker.on('message', (message: ConoutWorkerMessage) => {
|
|
49
|
+
switch (message) {
|
|
50
|
+
case ConoutWorkerMessage.READY:
|
|
51
|
+
this._onReady.fire();
|
|
52
|
+
return;
|
|
53
|
+
default:
|
|
54
|
+
console.warn('Unexpected ConoutWorkerMessage', message);
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
dispose(): void {
|
|
60
|
+
if (!this._useConptyDll && this._isDisposed) {
|
|
61
|
+
return;
|
|
62
|
+
}
|
|
63
|
+
this._isDisposed = true;
|
|
64
|
+
// Drain all data from the socket before closing
|
|
65
|
+
this._drainDataAndClose();
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
connectSocket(socket: Socket): void {
|
|
69
|
+
socket.connect(getWorkerPipeName(this._conoutPipeName));
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
private _drainDataAndClose(): void {
|
|
73
|
+
if (this._drainTimeout) {
|
|
74
|
+
clearTimeout(this._drainTimeout);
|
|
75
|
+
}
|
|
76
|
+
this._drainTimeout = setTimeout(() => this._destroySocket(), FLUSH_DATA_INTERVAL);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
private async _destroySocket(): Promise<void> {
|
|
80
|
+
await this._worker.terminate();
|
|
81
|
+
}
|
|
82
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2017, Daniel Imms (MIT License).
|
|
3
|
+
* Copyright (c) 2018, Microsoft Corporation (MIT License).
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import * as assert from 'assert';
|
|
7
|
+
import { argsToCommandLine } from './windowsPtyAgent';
|
|
8
|
+
|
|
9
|
+
function check(file: string, args: string | string[], expected: string): void {
|
|
10
|
+
assert.equal(argsToCommandLine(file, args), expected);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
if (process.platform === 'win32') {
|
|
14
|
+
describe('argsToCommandLine', () => {
|
|
15
|
+
describe('Plain strings', () => {
|
|
16
|
+
it('doesn\'t quote plain string', () => {
|
|
17
|
+
check('asdf', [], 'asdf');
|
|
18
|
+
});
|
|
19
|
+
it('doesn\'t escape backslashes', () => {
|
|
20
|
+
check('\\asdf\\qwer\\', [], '\\asdf\\qwer\\');
|
|
21
|
+
});
|
|
22
|
+
it('doesn\'t escape multiple backslashes', () => {
|
|
23
|
+
check('asdf\\\\qwer', [], 'asdf\\\\qwer');
|
|
24
|
+
});
|
|
25
|
+
it('adds backslashes before quotes', () => {
|
|
26
|
+
check('"asdf"qwer"', [], '\\"asdf\\"qwer\\"');
|
|
27
|
+
});
|
|
28
|
+
it('escapes backslashes before quotes', () => {
|
|
29
|
+
check('asdf\\"qwer', [], 'asdf\\\\\\"qwer');
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
describe('Quoted strings', () => {
|
|
34
|
+
it('quotes string with spaces', () => {
|
|
35
|
+
check('asdf qwer', [], '"asdf qwer"');
|
|
36
|
+
});
|
|
37
|
+
it('quotes empty string', () => {
|
|
38
|
+
check('', [], '""');
|
|
39
|
+
});
|
|
40
|
+
it('quotes string with tabs', () => {
|
|
41
|
+
check('asdf\tqwer', [], '"asdf\tqwer"');
|
|
42
|
+
});
|
|
43
|
+
it('escapes only the last backslash', () => {
|
|
44
|
+
check('\\asdf \\qwer\\', [], '"\\asdf \\qwer\\\\"');
|
|
45
|
+
});
|
|
46
|
+
it('doesn\'t escape multiple backslashes', () => {
|
|
47
|
+
check('asdf \\\\qwer', [], '"asdf \\\\qwer"');
|
|
48
|
+
});
|
|
49
|
+
it('escapes backslashes before quotes', () => {
|
|
50
|
+
check('asdf \\"qwer', [], '"asdf \\\\\\"qwer"');
|
|
51
|
+
});
|
|
52
|
+
it('escapes multiple backslashes at the end', () => {
|
|
53
|
+
check('asdf qwer\\\\', [], '"asdf qwer\\\\\\\\"');
|
|
54
|
+
});
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
describe('Multiple arguments', () => {
|
|
58
|
+
it('joins arguments with spaces', () => {
|
|
59
|
+
check('asdf', ['qwer zxcv', '', '"'], 'asdf "qwer zxcv" "" \\"');
|
|
60
|
+
});
|
|
61
|
+
it('array argument all in quotes', () => {
|
|
62
|
+
check('asdf', ['"surounded by quotes"'], 'asdf \\"surounded by quotes\\"');
|
|
63
|
+
});
|
|
64
|
+
it('array argument quotes in the middle', () => {
|
|
65
|
+
check('asdf', ['quotes "in the" middle'], 'asdf "quotes \\"in the\\" middle"');
|
|
66
|
+
});
|
|
67
|
+
it('array argument quotes near start', () => {
|
|
68
|
+
check('asdf', ['"quotes" near start'], 'asdf "\\"quotes\\" near start"');
|
|
69
|
+
});
|
|
70
|
+
it('array argument quotes near end', () => {
|
|
71
|
+
check('asdf', ['quotes "near end"'], 'asdf "quotes \\"near end\\""');
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
describe('Args as CommandLine', () => {
|
|
76
|
+
it('should handle empty string', () => {
|
|
77
|
+
check('file', '', 'file');
|
|
78
|
+
});
|
|
79
|
+
it('should not change args', () => {
|
|
80
|
+
check('file', 'foo bar baz', 'file foo bar baz');
|
|
81
|
+
check('file', 'foo \\ba"r \baz', 'file foo \\ba"r \baz');
|
|
82
|
+
});
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
describe('Real-world cases', () => {
|
|
86
|
+
it('quotes within quotes', () => {
|
|
87
|
+
check('cmd.exe', ['/c', 'powershell -noexit -command \'Set-location \"C:\\user\"\''], 'cmd.exe /c "powershell -noexit -command \'Set-location \\\"C:\\user\\"\'"');
|
|
88
|
+
});
|
|
89
|
+
it('space within quotes', () => {
|
|
90
|
+
check('cmd.exe', ['/k', '"C:\\Users\\alros\\Desktop\\test script.bat"'], 'cmd.exe /k \\"C:\\Users\\alros\\Desktop\\test script.bat\\"');
|
|
91
|
+
});
|
|
92
|
+
});
|
|
93
|
+
});
|
|
94
|
+
}
|