@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,613 @@
|
|
|
1
|
+
// Copyright (c) 2011-2015 Ryan Prichard
|
|
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
|
|
5
|
+
// deal in the Software without restriction, including without limitation the
|
|
6
|
+
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
7
|
+
// sell 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
|
|
18
|
+
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
19
|
+
// IN THE SOFTWARE.
|
|
20
|
+
|
|
21
|
+
#include "Agent.h"
|
|
22
|
+
|
|
23
|
+
#include <windows.h>
|
|
24
|
+
|
|
25
|
+
#include <stdint.h>
|
|
26
|
+
#include <stdio.h>
|
|
27
|
+
#include <stdlib.h>
|
|
28
|
+
#include <string.h>
|
|
29
|
+
|
|
30
|
+
#include <string>
|
|
31
|
+
#include <utility>
|
|
32
|
+
#include <vector>
|
|
33
|
+
|
|
34
|
+
#include "../include/winpty_constants.h"
|
|
35
|
+
|
|
36
|
+
#include "../shared/AgentMsg.h"
|
|
37
|
+
#include "../shared/Buffer.h"
|
|
38
|
+
#include "../shared/DebugClient.h"
|
|
39
|
+
#include "../shared/GenRandom.h"
|
|
40
|
+
#include "../shared/StringBuilder.h"
|
|
41
|
+
#include "../shared/StringUtil.h"
|
|
42
|
+
#include "../shared/WindowsVersion.h"
|
|
43
|
+
#include "../shared/WinptyAssert.h"
|
|
44
|
+
|
|
45
|
+
#include "ConsoleFont.h"
|
|
46
|
+
#include "ConsoleInput.h"
|
|
47
|
+
#include "NamedPipe.h"
|
|
48
|
+
#include "Scraper.h"
|
|
49
|
+
#include "Terminal.h"
|
|
50
|
+
#include "Win32ConsoleBuffer.h"
|
|
51
|
+
|
|
52
|
+
namespace {
|
|
53
|
+
|
|
54
|
+
static BOOL WINAPI consoleCtrlHandler(DWORD dwCtrlType)
|
|
55
|
+
{
|
|
56
|
+
if (dwCtrlType == CTRL_C_EVENT) {
|
|
57
|
+
// Do nothing and claim to have handled the event.
|
|
58
|
+
return TRUE;
|
|
59
|
+
}
|
|
60
|
+
return FALSE;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// We can detect the new Windows 10 console by observing the effect of the
|
|
64
|
+
// Mark command. In older consoles, Mark temporarily moves the cursor to the
|
|
65
|
+
// top-left of the console window. In the new console, the cursor isn't
|
|
66
|
+
// initially moved.
|
|
67
|
+
//
|
|
68
|
+
// We might like to use Mark to freeze the console, but we can't, because when
|
|
69
|
+
// the Mark command ends, the console moves the cursor back to its starting
|
|
70
|
+
// point, even if the console application has moved it in the meantime.
|
|
71
|
+
static void detectNewWindows10Console(
|
|
72
|
+
Win32Console &console, Win32ConsoleBuffer &buffer)
|
|
73
|
+
{
|
|
74
|
+
if (!isAtLeastWindows8()) {
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
ConsoleScreenBufferInfo info = buffer.bufferInfo();
|
|
79
|
+
|
|
80
|
+
// Make sure the window isn't 1x1. AFAIK, this should never happen
|
|
81
|
+
// accidentally. It is difficult to make it happen deliberately.
|
|
82
|
+
if (info.srWindow.Left == info.srWindow.Right &&
|
|
83
|
+
info.srWindow.Top == info.srWindow.Bottom) {
|
|
84
|
+
trace("detectNewWindows10Console: Initial console window was 1x1 -- "
|
|
85
|
+
"expanding for test");
|
|
86
|
+
setSmallFont(buffer.conout(), 400, false);
|
|
87
|
+
buffer.moveWindow(SmallRect(0, 0, 1, 1));
|
|
88
|
+
buffer.resizeBuffer(Coord(400, 1));
|
|
89
|
+
buffer.moveWindow(SmallRect(0, 0, 2, 1));
|
|
90
|
+
// This use of GetLargestConsoleWindowSize ought to be unnecessary
|
|
91
|
+
// given the behavior I've seen from moveWindow(0, 0, 1, 1), but
|
|
92
|
+
// I'd like to be especially sure, considering that this code will
|
|
93
|
+
// rarely be tested.
|
|
94
|
+
const auto largest = GetLargestConsoleWindowSize(buffer.conout());
|
|
95
|
+
buffer.moveWindow(
|
|
96
|
+
SmallRect(0, 0, std::min(largest.X, buffer.bufferSize().X), 1));
|
|
97
|
+
info = buffer.bufferInfo();
|
|
98
|
+
ASSERT(info.srWindow.Right > info.srWindow.Left &&
|
|
99
|
+
"Could not expand console window from 1x1");
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// Test whether MARK moves the cursor.
|
|
103
|
+
const Coord initialPosition(info.srWindow.Right, info.srWindow.Bottom);
|
|
104
|
+
buffer.setCursorPosition(initialPosition);
|
|
105
|
+
ASSERT(!console.frozen());
|
|
106
|
+
console.setFreezeUsesMark(true);
|
|
107
|
+
console.setFrozen(true);
|
|
108
|
+
const bool isNewW10 = (buffer.cursorPosition() == initialPosition);
|
|
109
|
+
console.setFrozen(false);
|
|
110
|
+
buffer.setCursorPosition(Coord(0, 0));
|
|
111
|
+
|
|
112
|
+
trace("Attempting to detect new Windows 10 console using MARK: %s",
|
|
113
|
+
isNewW10 ? "detected" : "not detected");
|
|
114
|
+
console.setFreezeUsesMark(false);
|
|
115
|
+
console.setNewW10(isNewW10);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
static inline WriteBuffer newPacket() {
|
|
119
|
+
WriteBuffer packet;
|
|
120
|
+
packet.putRawValue<uint64_t>(0); // Reserve space for size.
|
|
121
|
+
return packet;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
static HANDLE duplicateHandle(HANDLE h) {
|
|
125
|
+
HANDLE ret = nullptr;
|
|
126
|
+
if (!DuplicateHandle(
|
|
127
|
+
GetCurrentProcess(), h,
|
|
128
|
+
GetCurrentProcess(), &ret,
|
|
129
|
+
0, FALSE, DUPLICATE_SAME_ACCESS)) {
|
|
130
|
+
ASSERT(false && "DuplicateHandle failed!");
|
|
131
|
+
}
|
|
132
|
+
return ret;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
// It's safe to truncate a handle from 64-bits to 32-bits, or to sign-extend it
|
|
136
|
+
// back to 64-bits. See the MSDN article, "Interprocess Communication Between
|
|
137
|
+
// 32-bit and 64-bit Applications".
|
|
138
|
+
// https://msdn.microsoft.com/en-us/library/windows/desktop/aa384203.aspx
|
|
139
|
+
static int64_t int64FromHandle(HANDLE h) {
|
|
140
|
+
return static_cast<int64_t>(reinterpret_cast<intptr_t>(h));
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
} // anonymous namespace
|
|
144
|
+
|
|
145
|
+
Agent::Agent(LPCWSTR controlPipeName,
|
|
146
|
+
uint64_t agentFlags,
|
|
147
|
+
int mouseMode,
|
|
148
|
+
int initialCols,
|
|
149
|
+
int initialRows) :
|
|
150
|
+
m_useConerr((agentFlags & WINPTY_FLAG_CONERR) != 0),
|
|
151
|
+
m_plainMode((agentFlags & WINPTY_FLAG_PLAIN_OUTPUT) != 0),
|
|
152
|
+
m_mouseMode(mouseMode)
|
|
153
|
+
{
|
|
154
|
+
trace("Agent::Agent entered");
|
|
155
|
+
|
|
156
|
+
ASSERT(initialCols >= 1 && initialRows >= 1);
|
|
157
|
+
initialCols = std::min(initialCols, MAX_CONSOLE_WIDTH);
|
|
158
|
+
initialRows = std::min(initialRows, MAX_CONSOLE_HEIGHT);
|
|
159
|
+
|
|
160
|
+
const bool outputColor =
|
|
161
|
+
!m_plainMode || (agentFlags & WINPTY_FLAG_COLOR_ESCAPES);
|
|
162
|
+
const Coord initialSize(initialCols, initialRows);
|
|
163
|
+
|
|
164
|
+
auto primaryBuffer = openPrimaryBuffer();
|
|
165
|
+
if (m_useConerr) {
|
|
166
|
+
m_errorBuffer = Win32ConsoleBuffer::createErrorBuffer();
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
detectNewWindows10Console(m_console, *primaryBuffer);
|
|
170
|
+
|
|
171
|
+
m_controlPipe = &connectToControlPipe(controlPipeName);
|
|
172
|
+
m_coninPipe = &createDataServerPipe(false, L"conin");
|
|
173
|
+
m_conoutPipe = &createDataServerPipe(true, L"conout");
|
|
174
|
+
if (m_useConerr) {
|
|
175
|
+
m_conerrPipe = &createDataServerPipe(true, L"conerr");
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// Send an initial response packet to winpty.dll containing pipe names.
|
|
179
|
+
{
|
|
180
|
+
auto setupPacket = newPacket();
|
|
181
|
+
setupPacket.putWString(m_coninPipe->name());
|
|
182
|
+
setupPacket.putWString(m_conoutPipe->name());
|
|
183
|
+
if (m_useConerr) {
|
|
184
|
+
setupPacket.putWString(m_conerrPipe->name());
|
|
185
|
+
}
|
|
186
|
+
writePacket(setupPacket);
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
std::unique_ptr<Terminal> primaryTerminal;
|
|
190
|
+
primaryTerminal.reset(new Terminal(*m_conoutPipe,
|
|
191
|
+
m_plainMode,
|
|
192
|
+
outputColor));
|
|
193
|
+
m_primaryScraper.reset(new Scraper(m_console,
|
|
194
|
+
*primaryBuffer,
|
|
195
|
+
std::move(primaryTerminal),
|
|
196
|
+
initialSize));
|
|
197
|
+
if (m_useConerr) {
|
|
198
|
+
std::unique_ptr<Terminal> errorTerminal;
|
|
199
|
+
errorTerminal.reset(new Terminal(*m_conerrPipe,
|
|
200
|
+
m_plainMode,
|
|
201
|
+
outputColor));
|
|
202
|
+
m_errorScraper.reset(new Scraper(m_console,
|
|
203
|
+
*m_errorBuffer,
|
|
204
|
+
std::move(errorTerminal),
|
|
205
|
+
initialSize));
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
m_console.setTitle(m_currentTitle);
|
|
209
|
+
|
|
210
|
+
const HANDLE conin = GetStdHandle(STD_INPUT_HANDLE);
|
|
211
|
+
m_consoleInput.reset(
|
|
212
|
+
new ConsoleInput(conin, m_mouseMode, *this, m_console));
|
|
213
|
+
|
|
214
|
+
// Setup Ctrl-C handling. First restore default handling of Ctrl-C. This
|
|
215
|
+
// attribute is inherited by child processes. Then register a custom
|
|
216
|
+
// Ctrl-C handler that does nothing. The handler will be called when the
|
|
217
|
+
// agent calls GenerateConsoleCtrlEvent.
|
|
218
|
+
SetConsoleCtrlHandler(NULL, FALSE);
|
|
219
|
+
SetConsoleCtrlHandler(consoleCtrlHandler, TRUE);
|
|
220
|
+
|
|
221
|
+
setPollInterval(25);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
Agent::~Agent()
|
|
225
|
+
{
|
|
226
|
+
trace("Agent::~Agent entered");
|
|
227
|
+
try {
|
|
228
|
+
agentShutdown();
|
|
229
|
+
if (m_childProcess != NULL) {
|
|
230
|
+
CloseHandle(m_childProcess);
|
|
231
|
+
}
|
|
232
|
+
} catch (const std::exception &e) {
|
|
233
|
+
// Log the exception or handle it as needed
|
|
234
|
+
trace("Exception in Agent::~Agent: %s", e.what());
|
|
235
|
+
} catch (...) {
|
|
236
|
+
// Catch any other types of exceptions
|
|
237
|
+
trace("Unknown exception in Agent::~Agent");
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
// Write a "Device Status Report" command to the terminal. The terminal will
|
|
242
|
+
// reply with a row+col escape sequence. Presumably, the DSR reply will not
|
|
243
|
+
// split a keypress escape sequence, so it should be safe to assume that the
|
|
244
|
+
// bytes before it are complete keypresses.
|
|
245
|
+
void Agent::sendDsr()
|
|
246
|
+
{
|
|
247
|
+
if (!m_plainMode && !m_conoutPipe->isClosed()) {
|
|
248
|
+
m_conoutPipe->write("\x1B[6n");
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
NamedPipe &Agent::connectToControlPipe(LPCWSTR pipeName)
|
|
253
|
+
{
|
|
254
|
+
NamedPipe &pipe = createNamedPipe();
|
|
255
|
+
pipe.connectToServer(pipeName, NamedPipe::OpenMode::Duplex);
|
|
256
|
+
pipe.setReadBufferSize(64 * 1024);
|
|
257
|
+
return pipe;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
// Returns a new server named pipe. It has not yet been connected.
|
|
261
|
+
NamedPipe &Agent::createDataServerPipe(bool write, const wchar_t *kind)
|
|
262
|
+
{
|
|
263
|
+
const auto name =
|
|
264
|
+
(WStringBuilder(128)
|
|
265
|
+
<< L"\\\\.\\pipe\\winpty-"
|
|
266
|
+
<< kind << L'-'
|
|
267
|
+
<< GenRandom().uniqueName()).str_moved();
|
|
268
|
+
NamedPipe &pipe = createNamedPipe();
|
|
269
|
+
pipe.openServerPipe(
|
|
270
|
+
name.c_str(),
|
|
271
|
+
write ? NamedPipe::OpenMode::Writing
|
|
272
|
+
: NamedPipe::OpenMode::Reading,
|
|
273
|
+
write ? 8192 : 0,
|
|
274
|
+
write ? 0 : 256);
|
|
275
|
+
if (!write) {
|
|
276
|
+
pipe.setReadBufferSize(64 * 1024);
|
|
277
|
+
}
|
|
278
|
+
return pipe;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
void Agent::onPipeIo(NamedPipe &namedPipe)
|
|
282
|
+
{
|
|
283
|
+
if (&namedPipe == m_conoutPipe || &namedPipe == m_conerrPipe) {
|
|
284
|
+
autoClosePipesForShutdown();
|
|
285
|
+
} else if (&namedPipe == m_coninPipe) {
|
|
286
|
+
pollConinPipe();
|
|
287
|
+
} else if (&namedPipe == m_controlPipe) {
|
|
288
|
+
pollControlPipe();
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
void Agent::pollControlPipe()
|
|
293
|
+
{
|
|
294
|
+
if (m_controlPipe->isClosed()) {
|
|
295
|
+
trace("Agent exiting (control pipe is closed)");
|
|
296
|
+
shutdown();
|
|
297
|
+
return;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
while (true) {
|
|
301
|
+
uint64_t packetSize = 0;
|
|
302
|
+
const auto amt1 =
|
|
303
|
+
m_controlPipe->peek(&packetSize, sizeof(packetSize));
|
|
304
|
+
if (amt1 < sizeof(packetSize)) {
|
|
305
|
+
break;
|
|
306
|
+
}
|
|
307
|
+
ASSERT(packetSize >= sizeof(packetSize) && packetSize <= SIZE_MAX);
|
|
308
|
+
if (m_controlPipe->bytesAvailable() < packetSize) {
|
|
309
|
+
if (m_controlPipe->readBufferSize() < packetSize) {
|
|
310
|
+
m_controlPipe->setReadBufferSize(packetSize);
|
|
311
|
+
}
|
|
312
|
+
break;
|
|
313
|
+
}
|
|
314
|
+
std::vector<char> packetData;
|
|
315
|
+
packetData.resize(packetSize);
|
|
316
|
+
const auto amt2 = m_controlPipe->read(packetData.data(), packetSize);
|
|
317
|
+
ASSERT(amt2 == packetSize);
|
|
318
|
+
try {
|
|
319
|
+
ReadBuffer buffer(std::move(packetData));
|
|
320
|
+
buffer.getRawValue<uint64_t>(); // Discard the size.
|
|
321
|
+
handlePacket(buffer);
|
|
322
|
+
} catch (const ReadBuffer::DecodeError&) {
|
|
323
|
+
ASSERT(false && "Decode error");
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
void Agent::handlePacket(ReadBuffer &packet)
|
|
329
|
+
{
|
|
330
|
+
const int type = packet.getInt32();
|
|
331
|
+
switch (type) {
|
|
332
|
+
case AgentMsg::StartProcess:
|
|
333
|
+
handleStartProcessPacket(packet);
|
|
334
|
+
break;
|
|
335
|
+
case AgentMsg::SetSize:
|
|
336
|
+
// TODO: I think it might make sense to collapse consecutive SetSize
|
|
337
|
+
// messages. i.e. The terminal process can probably generate SetSize
|
|
338
|
+
// messages faster than they can be processed, and some GUIs might
|
|
339
|
+
// generate a flood of them, so if we can read multiple SetSize packets
|
|
340
|
+
// at once, we can ignore the early ones.
|
|
341
|
+
handleSetSizePacket(packet);
|
|
342
|
+
break;
|
|
343
|
+
case AgentMsg::GetConsoleProcessList:
|
|
344
|
+
handleGetConsoleProcessListPacket(packet);
|
|
345
|
+
break;
|
|
346
|
+
default:
|
|
347
|
+
trace("Unrecognized message, id:%d", type);
|
|
348
|
+
}
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
void Agent::writePacket(WriteBuffer &packet)
|
|
352
|
+
{
|
|
353
|
+
const auto &bytes = packet.buf();
|
|
354
|
+
packet.replaceRawValue<uint64_t>(0, bytes.size());
|
|
355
|
+
m_controlPipe->write(bytes.data(), bytes.size());
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
void Agent::handleStartProcessPacket(ReadBuffer &packet)
|
|
359
|
+
{
|
|
360
|
+
ASSERT(m_childProcess == nullptr);
|
|
361
|
+
ASSERT(!m_closingOutputPipes);
|
|
362
|
+
|
|
363
|
+
const uint64_t spawnFlags = packet.getInt64();
|
|
364
|
+
const bool wantProcessHandle = packet.getInt32() != 0;
|
|
365
|
+
const bool wantThreadHandle = packet.getInt32() != 0;
|
|
366
|
+
const auto program = packet.getWString();
|
|
367
|
+
const auto cmdline = packet.getWString();
|
|
368
|
+
const auto cwd = packet.getWString();
|
|
369
|
+
const auto env = packet.getWString();
|
|
370
|
+
const auto desktop = packet.getWString();
|
|
371
|
+
packet.assertEof();
|
|
372
|
+
|
|
373
|
+
auto cmdlineV = vectorWithNulFromString(cmdline);
|
|
374
|
+
auto desktopV = vectorWithNulFromString(desktop);
|
|
375
|
+
auto envV = vectorFromString(env);
|
|
376
|
+
|
|
377
|
+
LPCWSTR programArg = program.empty() ? nullptr : program.c_str();
|
|
378
|
+
LPWSTR cmdlineArg = cmdline.empty() ? nullptr : cmdlineV.data();
|
|
379
|
+
LPCWSTR cwdArg = cwd.empty() ? nullptr : cwd.c_str();
|
|
380
|
+
LPWSTR envArg = env.empty() ? nullptr : envV.data();
|
|
381
|
+
|
|
382
|
+
STARTUPINFOW sui = {};
|
|
383
|
+
PROCESS_INFORMATION pi = {};
|
|
384
|
+
sui.cb = sizeof(sui);
|
|
385
|
+
sui.lpDesktop = desktop.empty() ? nullptr : desktopV.data();
|
|
386
|
+
BOOL inheritHandles = FALSE;
|
|
387
|
+
if (m_useConerr) {
|
|
388
|
+
inheritHandles = TRUE;
|
|
389
|
+
sui.dwFlags |= STARTF_USESTDHANDLES;
|
|
390
|
+
sui.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
|
|
391
|
+
sui.hStdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
|
|
392
|
+
sui.hStdError = m_errorBuffer->conout();
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
const BOOL success =
|
|
396
|
+
CreateProcessW(programArg, cmdlineArg, nullptr, nullptr,
|
|
397
|
+
/*bInheritHandles=*/inheritHandles,
|
|
398
|
+
/*dwCreationFlags=*/CREATE_UNICODE_ENVIRONMENT,
|
|
399
|
+
envArg, cwdArg, &sui, &pi);
|
|
400
|
+
const int lastError = success ? 0 : GetLastError();
|
|
401
|
+
|
|
402
|
+
trace("CreateProcess: %s %u",
|
|
403
|
+
(success ? "success" : "fail"),
|
|
404
|
+
static_cast<unsigned int>(pi.dwProcessId));
|
|
405
|
+
|
|
406
|
+
auto reply = newPacket();
|
|
407
|
+
if (success) {
|
|
408
|
+
int64_t replyProcess = 0;
|
|
409
|
+
int64_t replyThread = 0;
|
|
410
|
+
if (wantProcessHandle) {
|
|
411
|
+
replyProcess = int64FromHandle(duplicateHandle(pi.hProcess));
|
|
412
|
+
}
|
|
413
|
+
if (wantThreadHandle) {
|
|
414
|
+
replyThread = int64FromHandle(duplicateHandle(pi.hThread));
|
|
415
|
+
}
|
|
416
|
+
CloseHandle(pi.hThread);
|
|
417
|
+
m_childProcess = pi.hProcess;
|
|
418
|
+
m_autoShutdown = (spawnFlags & WINPTY_SPAWN_FLAG_AUTO_SHUTDOWN) != 0;
|
|
419
|
+
m_exitAfterShutdown = (spawnFlags & WINPTY_SPAWN_FLAG_EXIT_AFTER_SHUTDOWN) != 0;
|
|
420
|
+
reply.putInt32(static_cast<int32_t>(StartProcessResult::ProcessCreated));
|
|
421
|
+
reply.putInt64(replyProcess);
|
|
422
|
+
reply.putInt64(replyThread);
|
|
423
|
+
} else {
|
|
424
|
+
reply.putInt32(static_cast<int32_t>(StartProcessResult::CreateProcessFailed));
|
|
425
|
+
reply.putInt32(lastError);
|
|
426
|
+
}
|
|
427
|
+
writePacket(reply);
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
void Agent::handleSetSizePacket(ReadBuffer &packet)
|
|
431
|
+
{
|
|
432
|
+
const int cols = packet.getInt32();
|
|
433
|
+
const int rows = packet.getInt32();
|
|
434
|
+
packet.assertEof();
|
|
435
|
+
resizeWindow(cols, rows);
|
|
436
|
+
auto reply = newPacket();
|
|
437
|
+
writePacket(reply);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
void Agent::handleGetConsoleProcessListPacket(ReadBuffer &packet)
|
|
441
|
+
{
|
|
442
|
+
packet.assertEof();
|
|
443
|
+
|
|
444
|
+
auto processList = std::vector<DWORD>(64);
|
|
445
|
+
auto processCount = GetConsoleProcessList(&processList[0], processList.size());
|
|
446
|
+
if (processList.size() < processCount) {
|
|
447
|
+
processList.resize(processCount);
|
|
448
|
+
processCount = GetConsoleProcessList(&processList[0], processList.size());
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
if (processCount == 0) {
|
|
452
|
+
trace("GetConsoleProcessList failed");
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
auto reply = newPacket();
|
|
456
|
+
reply.putInt32(processCount);
|
|
457
|
+
for (DWORD i = 0; i < processCount; i++) {
|
|
458
|
+
reply.putInt32(processList[i]);
|
|
459
|
+
}
|
|
460
|
+
writePacket(reply);
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
void Agent::pollConinPipe()
|
|
464
|
+
{
|
|
465
|
+
const std::string newData = m_coninPipe->readAllToString();
|
|
466
|
+
if (hasDebugFlag("input_separated_bytes")) {
|
|
467
|
+
// This debug flag is intended to help with testing incomplete escape
|
|
468
|
+
// sequences and multibyte UTF-8 encodings. (I wonder if the normal
|
|
469
|
+
// code path ought to advance a state machine one byte at a time.)
|
|
470
|
+
for (size_t i = 0; i < newData.size(); ++i) {
|
|
471
|
+
m_consoleInput->writeInput(newData.substr(i, 1));
|
|
472
|
+
}
|
|
473
|
+
} else {
|
|
474
|
+
m_consoleInput->writeInput(newData);
|
|
475
|
+
}
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
void Agent::onPollTimeout()
|
|
479
|
+
{
|
|
480
|
+
m_consoleInput->updateInputFlags();
|
|
481
|
+
const bool enableMouseMode = m_consoleInput->shouldActivateTerminalMouse();
|
|
482
|
+
|
|
483
|
+
// Give the ConsoleInput object a chance to flush input from an incomplete
|
|
484
|
+
// escape sequence (e.g. pressing ESC).
|
|
485
|
+
m_consoleInput->flushIncompleteEscapeCode();
|
|
486
|
+
|
|
487
|
+
const bool shouldScrapeContent = !m_closingOutputPipes;
|
|
488
|
+
|
|
489
|
+
// Check if the child process has exited.
|
|
490
|
+
if (m_autoShutdown &&
|
|
491
|
+
m_childProcess != nullptr &&
|
|
492
|
+
WaitForSingleObject(m_childProcess, 0) == WAIT_OBJECT_0) {
|
|
493
|
+
CloseHandle(m_childProcess);
|
|
494
|
+
m_childProcess = nullptr;
|
|
495
|
+
|
|
496
|
+
// Close the data socket to signal to the client that the child
|
|
497
|
+
// process has exited. If there's any data left to send, send it
|
|
498
|
+
// before closing the socket.
|
|
499
|
+
m_closingOutputPipes = true;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
// Scrape for output *after* the above exit-check to ensure that we collect
|
|
503
|
+
// the child process's final output.
|
|
504
|
+
if (shouldScrapeContent) {
|
|
505
|
+
syncConsoleTitle();
|
|
506
|
+
scrapeBuffers();
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
// We must ensure that we disable mouse mode before closing the CONOUT
|
|
510
|
+
// pipe, so update the mouse mode here.
|
|
511
|
+
m_primaryScraper->terminal().enableMouseMode(
|
|
512
|
+
enableMouseMode && !m_closingOutputPipes);
|
|
513
|
+
|
|
514
|
+
autoClosePipesForShutdown();
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
void Agent::autoClosePipesForShutdown()
|
|
518
|
+
{
|
|
519
|
+
if (m_closingOutputPipes) {
|
|
520
|
+
// We don't want to close a pipe before it's connected! If we do, the
|
|
521
|
+
// libwinpty client may try to connect to a non-existent pipe. This
|
|
522
|
+
// case is important for short-lived programs.
|
|
523
|
+
if (m_conoutPipe->isConnected() &&
|
|
524
|
+
m_conoutPipe->bytesToSend() == 0) {
|
|
525
|
+
trace("Closing CONOUT pipe (auto-shutdown)");
|
|
526
|
+
m_conoutPipe->closePipe();
|
|
527
|
+
}
|
|
528
|
+
if (m_conerrPipe != nullptr &&
|
|
529
|
+
m_conerrPipe->isConnected() &&
|
|
530
|
+
m_conerrPipe->bytesToSend() == 0) {
|
|
531
|
+
trace("Closing CONERR pipe (auto-shutdown)");
|
|
532
|
+
m_conerrPipe->closePipe();
|
|
533
|
+
}
|
|
534
|
+
if (m_exitAfterShutdown &&
|
|
535
|
+
m_conoutPipe->isClosed() &&
|
|
536
|
+
(m_conerrPipe == nullptr || m_conerrPipe->isClosed())) {
|
|
537
|
+
trace("Agent exiting (exit-after-shutdown)");
|
|
538
|
+
shutdown();
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
std::unique_ptr<Win32ConsoleBuffer> Agent::openPrimaryBuffer()
|
|
544
|
+
{
|
|
545
|
+
// If we're using a separate buffer for stderr, and a program were to
|
|
546
|
+
// activate the stderr buffer, then we could accidentally scrape the same
|
|
547
|
+
// buffer twice. That probably shouldn't happen in ordinary use, but it
|
|
548
|
+
// can be avoided anyway by using the original console screen buffer in
|
|
549
|
+
// that mode.
|
|
550
|
+
if (!m_useConerr) {
|
|
551
|
+
return Win32ConsoleBuffer::openConout();
|
|
552
|
+
} else {
|
|
553
|
+
return Win32ConsoleBuffer::openStdout();
|
|
554
|
+
}
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
void Agent::resizeWindow(int cols, int rows)
|
|
558
|
+
{
|
|
559
|
+
ASSERT(cols >= 1 && rows >= 1);
|
|
560
|
+
cols = std::min(cols, MAX_CONSOLE_WIDTH);
|
|
561
|
+
rows = std::min(rows, MAX_CONSOLE_HEIGHT);
|
|
562
|
+
|
|
563
|
+
Win32Console::FreezeGuard guard(m_console, m_console.frozen());
|
|
564
|
+
const Coord newSize(cols, rows);
|
|
565
|
+
ConsoleScreenBufferInfo info;
|
|
566
|
+
auto primaryBuffer = openPrimaryBuffer();
|
|
567
|
+
m_primaryScraper->resizeWindow(*primaryBuffer, newSize, info);
|
|
568
|
+
m_consoleInput->setMouseWindowRect(info.windowRect());
|
|
569
|
+
if (m_errorScraper) {
|
|
570
|
+
m_errorScraper->resizeWindow(*m_errorBuffer, newSize, info);
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
// Synthesize a WINDOW_BUFFER_SIZE_EVENT event. Normally, Windows
|
|
574
|
+
// generates this event only when the buffer size changes, not when the
|
|
575
|
+
// window size changes. This behavior is undesirable in two ways:
|
|
576
|
+
// - When winpty expands the window horizontally, it must expand the
|
|
577
|
+
// buffer first, then the window. At least some programs (e.g. the WSL
|
|
578
|
+
// bash.exe wrapper) use the window width rather than the buffer width,
|
|
579
|
+
// so there is a short timespan during which they can read the wrong
|
|
580
|
+
// value.
|
|
581
|
+
// - If the window's vertical size is changed, no event is generated,
|
|
582
|
+
// even though a typical well-behaved console program cares about the
|
|
583
|
+
// *window* height, not the *buffer* height.
|
|
584
|
+
// This synthesization works around a design flaw in the console. It's probably
|
|
585
|
+
// harmless. See https://github.com/rprichard/winpty/issues/110.
|
|
586
|
+
INPUT_RECORD sizeEvent {};
|
|
587
|
+
sizeEvent.EventType = WINDOW_BUFFER_SIZE_EVENT;
|
|
588
|
+
sizeEvent.Event.WindowBufferSizeEvent.dwSize = primaryBuffer->bufferSize();
|
|
589
|
+
DWORD actual {};
|
|
590
|
+
WriteConsoleInputW(GetStdHandle(STD_INPUT_HANDLE), &sizeEvent, 1, &actual);
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
void Agent::scrapeBuffers()
|
|
594
|
+
{
|
|
595
|
+
Win32Console::FreezeGuard guard(m_console, m_console.frozen());
|
|
596
|
+
ConsoleScreenBufferInfo info;
|
|
597
|
+
m_primaryScraper->scrapeBuffer(*openPrimaryBuffer(), info);
|
|
598
|
+
m_consoleInput->setMouseWindowRect(info.windowRect());
|
|
599
|
+
if (m_errorScraper) {
|
|
600
|
+
m_errorScraper->scrapeBuffer(*m_errorBuffer, info);
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
void Agent::syncConsoleTitle()
|
|
605
|
+
{
|
|
606
|
+
std::wstring newTitle = m_console.title();
|
|
607
|
+
if (newTitle != m_currentTitle) {
|
|
608
|
+
std::string command = std::string("\x1b]0;") +
|
|
609
|
+
utf8FromWide(newTitle) + "\x07";
|
|
610
|
+
m_conoutPipe->write(command.c_str());
|
|
611
|
+
m_currentTitle = newTitle;
|
|
612
|
+
}
|
|
613
|
+
}
|