codexui-android 0.1.93 → 0.1.95
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/dist-cli/index.js +67 -13
- package/dist-cli/index.js.map +1 -1
- package/package.json +25 -17
- package/vendor/node_modules/nan/.github/workflows/ci.yml +52 -0
- package/vendor/node_modules/nan/.pre-commit-config.yaml +8 -0
- package/vendor/node_modules/nan/CHANGELOG.md +599 -0
- package/vendor/node_modules/nan/CMakeLists.txt +138 -0
- package/vendor/node_modules/nan/LICENSE.md +9 -0
- package/vendor/node_modules/nan/README.md +456 -0
- package/vendor/node_modules/nan/doc/asyncworker.md +146 -0
- package/vendor/node_modules/nan/doc/buffers.md +54 -0
- package/vendor/node_modules/nan/doc/callback.md +76 -0
- package/vendor/node_modules/nan/doc/converters.md +41 -0
- package/vendor/node_modules/nan/doc/errors.md +226 -0
- package/vendor/node_modules/nan/doc/json.md +62 -0
- package/vendor/node_modules/nan/doc/maybe_types.md +583 -0
- package/vendor/node_modules/nan/doc/methods.md +689 -0
- package/vendor/node_modules/nan/doc/new.md +147 -0
- package/vendor/node_modules/nan/doc/node_misc.md +123 -0
- package/vendor/node_modules/nan/doc/object_wrappers.md +263 -0
- package/vendor/node_modules/nan/doc/persistent.md +296 -0
- package/vendor/node_modules/nan/doc/scopes.md +73 -0
- package/vendor/node_modules/nan/doc/script.md +58 -0
- package/vendor/node_modules/nan/doc/string_bytes.md +81 -0
- package/vendor/node_modules/nan/doc/v8_internals.md +199 -0
- package/vendor/node_modules/nan/doc/v8_misc.md +85 -0
- package/vendor/node_modules/nan/include_dirs.js +1 -0
- package/vendor/node_modules/nan/nan.h +3202 -0
- package/vendor/node_modules/nan/nan_callbacks.h +141 -0
- package/vendor/node_modules/nan/nan_callbacks_12_inl.h +690 -0
- package/vendor/node_modules/nan/nan_callbacks_pre_12_inl.h +524 -0
- package/vendor/node_modules/nan/nan_converters.h +72 -0
- package/vendor/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/vendor/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/vendor/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/vendor/node_modules/nan/nan_implementation_12_inl.h +430 -0
- package/vendor/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/vendor/node_modules/nan/nan_json.h +166 -0
- package/vendor/node_modules/nan/nan_maybe_43_inl.h +360 -0
- package/vendor/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/vendor/node_modules/nan/nan_new.h +340 -0
- package/vendor/node_modules/nan/nan_object_wrap.h +156 -0
- package/vendor/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/vendor/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/vendor/node_modules/nan/nan_private.h +73 -0
- package/vendor/node_modules/nan/nan_scriptorigin.h +97 -0
- package/vendor/node_modules/nan/nan_string_bytes.h +305 -0
- package/vendor/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/vendor/node_modules/nan/nan_weak.h +453 -0
- package/vendor/node_modules/nan/package.json +38 -0
- package/vendor/node_modules/nan/tools/1to2.js +412 -0
- package/vendor/node_modules/nan/tools/README.md +14 -0
- package/vendor/node_modules/nan/tools/package.json +19 -0
- package/vendor/node_modules/node-addon-api/LICENSE.md +9 -0
- package/vendor/node_modules/node-addon-api/README.md +319 -0
- package/vendor/node_modules/node-addon-api/common.gypi +20 -0
- package/vendor/node_modules/node-addon-api/except.gypi +25 -0
- package/vendor/node_modules/node-addon-api/index.js +12 -0
- package/vendor/node_modules/node-addon-api/napi-inl.deprecated.h +186 -0
- package/vendor/node_modules/node-addon-api/napi-inl.h +6607 -0
- package/vendor/node_modules/node-addon-api/napi.h +3201 -0
- package/vendor/node_modules/node-addon-api/node_addon_api.gyp +32 -0
- package/vendor/node_modules/node-addon-api/node_api.gyp +9 -0
- package/vendor/node_modules/node-addon-api/noexcept.gypi +26 -0
- package/vendor/node_modules/node-addon-api/nothing.c +0 -0
- package/vendor/node_modules/node-addon-api/package-support.json +21 -0
- package/vendor/node_modules/node-addon-api/package.json +480 -0
- package/vendor/node_modules/node-addon-api/tools/README.md +73 -0
- package/vendor/node_modules/node-addon-api/tools/check-napi.js +99 -0
- package/vendor/node_modules/node-addon-api/tools/clang-format.js +71 -0
- package/vendor/node_modules/node-addon-api/tools/conversion.js +301 -0
- package/vendor/node_modules/node-addon-api/tools/eslint-format.js +79 -0
- package/vendor/node_modules/node-pty/LICENSE +69 -0
- package/vendor/node_modules/node-pty/README.md +165 -0
- package/vendor/node_modules/node-pty/binding.gyp +111 -0
- package/vendor/node_modules/node-pty/deps/.editorconfig +2 -0
- package/vendor/node_modules/node-pty/deps/winpty/.drone.yml +17 -0
- package/vendor/node_modules/node-pty/deps/winpty/.gitattributes +19 -0
- package/vendor/node_modules/node-pty/deps/winpty/LICENSE +21 -0
- package/vendor/node_modules/node-pty/deps/winpty/Makefile +166 -0
- package/vendor/node_modules/node-pty/deps/winpty/README.md +151 -0
- package/vendor/node_modules/node-pty/deps/winpty/RELEASES.md +280 -0
- package/vendor/node_modules/node-pty/deps/winpty/VERSION.txt +1 -0
- package/vendor/node_modules/node-pty/deps/winpty/configure +167 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/BufferResizeTests.cc +90 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/ChangeScreenBuffer.cc +53 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/ClearConsole.cc +72 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/ConinMode.cc +117 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/ConinMode.ps1 +116 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/ConoutMode.cc +113 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/DebugClient.py +42 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/DebugServer.py +63 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/DumpLines.py +5 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/EnableExtendedFlags.txt +46 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP437-Consolas.txt +528 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP437-Lucida.txt +633 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP932.txt +630 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP936.txt +630 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP949.txt +630 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP950.txt +630 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/MinimumWindowWidths.txt +16 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/Results.txt +4 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/Windows10SetFontBugginess.txt +144 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/FontSurvey.cc +100 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/FormatChar.h +21 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/FreezePerfTest.cc +62 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/GetCh.cc +20 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/GetConsolePos.cc +41 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/GetFont.cc +261 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/IdentifyConsoleWindow.ps1 +51 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/IsNewConsole.cc +87 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/MouseInputNotes.txt +90 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/MoveConsoleWindow.cc +34 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Notes.txt +219 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/OSVersion.cc +27 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/ScreenBufferFreezeInactive.cc +101 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/ScreenBufferTest.cc +671 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/ScreenBufferTest2.cc +151 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/SelectAllTest.cc +45 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/SetBufferSize.cc +32 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/SetCursorPos.cc +10 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/SetFont.cc +145 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/SetWindowRect.cc +36 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/ShowArgv.cc +12 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/ShowConsoleInput.cc +40 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Spew.py +5 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/TestUtil.cc +172 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/UnicodeDoubleWidthTest.cc +102 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/UnicodeWideTest1.cc +246 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/UnicodeWideTest2.cc +130 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/UnixEcho.cc +89 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Utf16Echo.cc +46 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/VeryLargeRead.cc +122 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/VkEscapeTest.cc +56 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Win10ResizeWhileFrozen.cc +52 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Win10WrapTest1.cc +57 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Win10WrapTest2.cc +30 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Win32Echo1.cc +26 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Win32Echo2.cc +19 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Win32Test1.cc +46 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Win32Test2.cc +70 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Win32Test3.cc +78 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/Win32Write1.cc +44 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/WindowsBugCrashReader.cc +27 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/WriteConsole.cc +106 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/build32.sh +9 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/build64.sh +9 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/color-test.sh +212 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/font-notes.txt +300 -0
- package/vendor/node_modules/node-pty/deps/winpty/misc/winbug-15048.cc +201 -0
- package/vendor/node_modules/node-pty/deps/winpty/ship/build-pty4j-libpty.bat +36 -0
- package/vendor/node_modules/node-pty/deps/winpty/ship/common_ship.py +53 -0
- package/vendor/node_modules/node-pty/deps/winpty/ship/make_msvc_package.py +165 -0
- package/vendor/node_modules/node-pty/deps/winpty/ship/ship.py +108 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Agent.cc +613 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Agent.h +103 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/AgentCreateDesktop.cc +84 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/AgentCreateDesktop.h +28 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/ConsoleFont.cc +632 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/ConsoleFont.h +28 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/ConsoleInput.cc +852 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/ConsoleInput.h +109 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/ConsoleInputReencoding.cc +121 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/ConsoleInputReencoding.h +36 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/ConsoleLine.cc +152 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/ConsoleLine.h +41 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Coord.h +87 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/DebugShowInput.cc +239 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/DebugShowInput.h +32 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/DefaultInputMap.cc +422 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/DefaultInputMap.h +28 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/DsrSender.h +30 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/EventLoop.cc +99 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/EventLoop.h +47 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/InputMap.cc +246 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/InputMap.h +114 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/LargeConsoleRead.cc +71 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/LargeConsoleRead.h +68 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/NamedPipe.cc +378 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/NamedPipe.h +125 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Scraper.cc +699 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Scraper.h +103 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/SimplePool.h +75 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/SmallRect.h +143 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Terminal.cc +535 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Terminal.h +69 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/UnicodeEncoding.h +157 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/UnicodeEncodingTest.cc +189 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Win32Console.cc +107 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Win32Console.h +67 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Win32ConsoleBuffer.cc +193 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/Win32ConsoleBuffer.h +99 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/main.cc +114 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/agent/subdir.mk +61 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/configurations.gypi +60 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/debugserver/DebugServer.cc +117 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/debugserver/subdir.mk +41 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/include/winpty.h +242 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/include/winpty_constants.h +131 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/libwinpty/AgentLocation.cc +75 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/libwinpty/AgentLocation.h +28 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/libwinpty/LibWinptyException.h +54 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/libwinpty/WinptyInternal.h +72 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/libwinpty/subdir.mk +46 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/libwinpty/winpty.cc +970 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/AgentMsg.h +38 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/BackgroundDesktop.cc +122 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/BackgroundDesktop.h +73 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/Buffer.cc +103 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/Buffer.h +102 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/DebugClient.cc +187 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/DebugClient.h +38 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/GenRandom.cc +138 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/GenRandom.h +55 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/GetCommitHash.bat +13 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/Mutex.h +54 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/OsModule.h +63 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/OwnedHandle.cc +36 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/OwnedHandle.h +45 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/PrecompiledHeader.h +43 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/StringBuilder.h +227 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/StringBuilderTest.cc +114 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/StringUtil.cc +55 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/StringUtil.h +80 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/TimeMeasurement.h +63 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/UnixCtrlChars.h +45 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/UpdateGenVersion.bat +20 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/WindowsSecurity.cc +460 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/WindowsSecurity.h +104 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/WindowsVersion.cc +252 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/WindowsVersion.h +29 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/WinptyAssert.cc +55 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/WinptyAssert.h +64 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/WinptyException.cc +57 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/WinptyException.h +43 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/WinptyVersion.cc +42 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/WinptyVersion.h +27 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/shared/winpty_snprintf.h +99 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/subdir.mk +5 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/tests/subdir.mk +28 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/tests/trivial_test.cc +158 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/unix-adapter/InputHandler.cc +114 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/unix-adapter/InputHandler.h +56 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/unix-adapter/OutputHandler.cc +80 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/unix-adapter/OutputHandler.h +53 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/unix-adapter/Util.cc +86 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/unix-adapter/Util.h +31 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/unix-adapter/WakeupFd.cc +70 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/unix-adapter/WakeupFd.h +42 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/unix-adapter/main.cc +729 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/unix-adapter/subdir.mk +41 -0
- package/vendor/node_modules/node-pty/deps/winpty/src/winpty.gyp +234 -0
- package/vendor/node_modules/node-pty/deps/winpty/vcbuild.bat +83 -0
- package/vendor/node_modules/node-pty/lib/conpty_console_list_agent.js +16 -0
- package/vendor/node_modules/node-pty/lib/conpty_console_list_agent.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/eventEmitter2.js +47 -0
- package/vendor/node_modules/node-pty/lib/eventEmitter2.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/eventEmitter2.test.js +30 -0
- package/vendor/node_modules/node-pty/lib/eventEmitter2.test.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/index.js +52 -0
- package/vendor/node_modules/node-pty/lib/index.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/interfaces.js +7 -0
- package/vendor/node_modules/node-pty/lib/interfaces.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/shared/conout.js +11 -0
- package/vendor/node_modules/node-pty/lib/shared/conout.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/terminal.js +190 -0
- package/vendor/node_modules/node-pty/lib/terminal.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/terminal.test.js +139 -0
- package/vendor/node_modules/node-pty/lib/terminal.test.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/testUtils.test.js +28 -0
- package/vendor/node_modules/node-pty/lib/testUtils.test.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/types.js +7 -0
- package/vendor/node_modules/node-pty/lib/types.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/unixTerminal.js +346 -0
- package/vendor/node_modules/node-pty/lib/unixTerminal.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/unixTerminal.test.js +351 -0
- package/vendor/node_modules/node-pty/lib/unixTerminal.test.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/utils.js +39 -0
- package/vendor/node_modules/node-pty/lib/utils.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/windowsConoutConnection.js +125 -0
- package/vendor/node_modules/node-pty/lib/windowsConoutConnection.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/windowsPtyAgent.js +320 -0
- package/vendor/node_modules/node-pty/lib/windowsPtyAgent.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/windowsPtyAgent.test.js +90 -0
- package/vendor/node_modules/node-pty/lib/windowsPtyAgent.test.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/windowsTerminal.js +199 -0
- package/vendor/node_modules/node-pty/lib/windowsTerminal.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/windowsTerminal.test.js +219 -0
- package/vendor/node_modules/node-pty/lib/windowsTerminal.test.js.map +1 -0
- package/vendor/node_modules/node-pty/lib/worker/conoutSocketWorker.js +22 -0
- package/vendor/node_modules/node-pty/lib/worker/conoutSocketWorker.js.map +1 -0
- package/vendor/node_modules/node-pty/package.json +64 -0
- package/vendor/node_modules/node-pty/prebuilds/darwin-arm64/pty.node +0 -0
- package/vendor/node_modules/node-pty/prebuilds/darwin-arm64/spawn-helper +0 -0
- package/vendor/node_modules/node-pty/prebuilds/darwin-x64/pty.node +0 -0
- package/vendor/node_modules/node-pty/prebuilds/darwin-x64/spawn-helper +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/conpty/OpenConsole.exe +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/conpty/conpty.dll +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/conpty.node +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/conpty.pdb +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/conpty_console_list.node +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/conpty_console_list.pdb +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/pty.node +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/pty.pdb +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/winpty-agent.exe +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/winpty-agent.pdb +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/winpty.dll +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-arm64/winpty.pdb +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/conpty/OpenConsole.exe +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/conpty/conpty.dll +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/conpty.node +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/conpty.pdb +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/conpty_console_list.node +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/conpty_console_list.pdb +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/pty.node +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/pty.pdb +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/winpty-agent.exe +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/winpty-agent.pdb +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/winpty.dll +0 -0
- package/vendor/node_modules/node-pty/prebuilds/win32-x64/winpty.pdb +0 -0
- package/vendor/node_modules/node-pty/scripts/gen-compile-commands.js +8 -0
- package/vendor/node_modules/node-pty/scripts/increment-version.js +54 -0
- package/vendor/node_modules/node-pty/scripts/post-install.js +80 -0
- package/vendor/node_modules/node-pty/scripts/prebuild.js +34 -0
- package/vendor/node_modules/node-pty/src/conpty_console_list_agent.ts +15 -0
- package/vendor/node_modules/node-pty/src/eventEmitter2.test.ts +30 -0
- package/vendor/node_modules/node-pty/src/eventEmitter2.ts +48 -0
- package/vendor/node_modules/node-pty/src/index.ts +52 -0
- package/vendor/node_modules/node-pty/src/interfaces.ts +130 -0
- package/vendor/node_modules/node-pty/src/native.d.ts +54 -0
- package/vendor/node_modules/node-pty/src/shared/conout.ts +15 -0
- package/vendor/node_modules/node-pty/src/terminal.test.ts +119 -0
- package/vendor/node_modules/node-pty/src/terminal.ts +211 -0
- package/vendor/node_modules/node-pty/src/testUtils.test.ts +23 -0
- package/vendor/node_modules/node-pty/src/tsconfig.json +22 -0
- package/vendor/node_modules/node-pty/src/types.ts +15 -0
- package/vendor/node_modules/node-pty/src/unix/pty.cc +799 -0
- package/vendor/node_modules/node-pty/src/unix/spawn-helper.cc +23 -0
- package/vendor/node_modules/node-pty/src/unixTerminal.test.ts +367 -0
- package/vendor/node_modules/node-pty/src/unixTerminal.ts +388 -0
- package/vendor/node_modules/node-pty/src/utils.ts +29 -0
- package/vendor/node_modules/node-pty/src/win/conpty.cc +583 -0
- package/vendor/node_modules/node-pty/src/win/conpty.h +41 -0
- package/vendor/node_modules/node-pty/src/win/conpty_console_list.cc +44 -0
- package/vendor/node_modules/node-pty/src/win/path_util.cc +95 -0
- package/vendor/node_modules/node-pty/src/win/path_util.h +26 -0
- package/vendor/node_modules/node-pty/src/win/winpty.cc +333 -0
- package/vendor/node_modules/node-pty/src/windowsConoutConnection.ts +82 -0
- package/vendor/node_modules/node-pty/src/windowsPtyAgent.test.ts +94 -0
- package/vendor/node_modules/node-pty/src/windowsPtyAgent.ts +321 -0
- package/vendor/node_modules/node-pty/src/windowsTerminal.test.ts +229 -0
- package/vendor/node_modules/node-pty/src/windowsTerminal.ts +203 -0
- package/vendor/node_modules/node-pty/src/worker/conoutSocketWorker.ts +22 -0
- package/vendor/node_modules/node-pty/third_party/conpty/1.23.251008001/win10-arm64/OpenConsole.exe +0 -0
- package/vendor/node_modules/node-pty/third_party/conpty/1.23.251008001/win10-arm64/conpty.dll +0 -0
- package/vendor/node_modules/node-pty/third_party/conpty/1.23.251008001/win10-x64/OpenConsole.exe +0 -0
- package/vendor/node_modules/node-pty/third_party/conpty/1.23.251008001/win10-x64/conpty.dll +0 -0
- package/vendor/node_modules/node-pty/typings/node-pty.d.ts +211 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/LICENSE +69 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/README.md +39 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/binding.gyp +78 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/.editorconfig +2 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/.drone.yml +17 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/.gitattributes +19 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/LICENSE +21 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/Makefile +166 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/README.md +151 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/RELEASES.md +280 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/VERSION.txt +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/configure +167 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/BufferResizeTests.cc +90 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/ChangeScreenBuffer.cc +53 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/ClearConsole.cc +72 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/ConinMode.cc +117 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/ConinMode.ps1 +116 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/ConoutMode.cc +113 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/DebugClient.py +42 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/DebugServer.py +63 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/DumpLines.py +5 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/EnableExtendedFlags.txt +46 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Font-Report-June2016/CP437-Consolas.txt +528 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Font-Report-June2016/CP437-Lucida.txt +633 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Font-Report-June2016/CP932.txt +630 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Font-Report-June2016/CP936.txt +630 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Font-Report-June2016/CP949.txt +630 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Font-Report-June2016/CP950.txt +630 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Font-Report-June2016/MinimumWindowWidths.txt +16 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Font-Report-June2016/Results.txt +4 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Font-Report-June2016/Windows10SetFontBugginess.txt +144 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/FontSurvey.cc +100 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/FormatChar.h +21 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/FreezePerfTest.cc +62 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/GetCh.cc +20 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/GetConsolePos.cc +41 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/GetFont.cc +261 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/IdentifyConsoleWindow.ps1 +51 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/IsNewConsole.cc +87 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/MouseInputNotes.txt +90 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/MoveConsoleWindow.cc +34 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Notes.txt +219 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/OSVersion.cc +27 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/ScreenBufferFreezeInactive.cc +101 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/ScreenBufferTest.cc +671 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/ScreenBufferTest2.cc +151 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/SelectAllTest.cc +45 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/SetBufferSize.cc +32 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/SetCursorPos.cc +10 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/SetFont.cc +145 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/SetWindowRect.cc +36 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/ShowArgv.cc +12 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/ShowConsoleInput.cc +40 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Spew.py +5 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/TestUtil.cc +172 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/UnicodeDoubleWidthTest.cc +102 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/UnicodeWideTest1.cc +246 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/UnicodeWideTest2.cc +130 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/UnixEcho.cc +89 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Utf16Echo.cc +46 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/VeryLargeRead.cc +122 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/VkEscapeTest.cc +56 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Win10ResizeWhileFrozen.cc +52 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Win10WrapTest1.cc +57 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Win10WrapTest2.cc +30 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Win32Echo1.cc +26 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Win32Echo2.cc +19 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Win32Test1.cc +46 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Win32Test2.cc +70 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Win32Test3.cc +78 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/Win32Write1.cc +44 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/WindowsBugCrashReader.cc +27 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/WriteConsole.cc +106 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/build32.sh +9 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/build64.sh +9 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/color-test.sh +212 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/font-notes.txt +300 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/misc/winbug-15048.cc +201 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/ship/build-pty4j-libpty.bat +36 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/ship/common_ship.py +53 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/ship/make_msvc_package.py +165 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/ship/ship.py +108 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Agent.cc +605 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Agent.h +103 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/AgentCreateDesktop.cc +84 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/AgentCreateDesktop.h +28 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/ConsoleFont.cc +632 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/ConsoleFont.h +28 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/ConsoleInput.cc +852 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/ConsoleInput.h +109 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/ConsoleInputReencoding.cc +121 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/ConsoleInputReencoding.h +36 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/ConsoleLine.cc +152 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/ConsoleLine.h +41 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Coord.h +87 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/DebugShowInput.cc +239 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/DebugShowInput.h +32 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/DefaultInputMap.cc +422 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/DefaultInputMap.h +28 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/DsrSender.h +30 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/EventLoop.cc +99 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/EventLoop.h +47 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/InputMap.cc +246 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/InputMap.h +114 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/LargeConsoleRead.cc +71 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/LargeConsoleRead.h +68 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/NamedPipe.cc +378 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/NamedPipe.h +125 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Scraper.cc +699 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Scraper.h +103 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/SimplePool.h +75 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/SmallRect.h +143 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Terminal.cc +535 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Terminal.h +69 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/UnicodeEncoding.h +157 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/UnicodeEncodingTest.cc +189 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Win32Console.cc +107 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Win32Console.h +67 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Win32ConsoleBuffer.cc +193 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/Win32ConsoleBuffer.h +99 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/main.cc +114 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/agent/subdir.mk +61 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/configurations.gypi +60 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/debugserver/DebugServer.cc +117 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/debugserver/subdir.mk +41 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/include/winpty.h +242 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/include/winpty_constants.h +131 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/libwinpty/AgentLocation.cc +75 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/libwinpty/AgentLocation.h +28 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/libwinpty/LibWinptyException.h +54 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/libwinpty/WinptyInternal.h +72 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/libwinpty/subdir.mk +46 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/libwinpty/winpty.cc +970 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/AgentMsg.h +38 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/BackgroundDesktop.cc +122 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/BackgroundDesktop.h +73 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/Buffer.cc +103 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/Buffer.h +102 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/DebugClient.cc +187 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/DebugClient.h +38 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/GenRandom.cc +138 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/GenRandom.h +55 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/GetCommitHash.bat +13 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/Mutex.h +54 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/OsModule.h +63 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/OwnedHandle.cc +36 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/OwnedHandle.h +45 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/PrecompiledHeader.h +43 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/StringBuilder.h +227 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/StringBuilderTest.cc +114 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/StringUtil.cc +55 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/StringUtil.h +80 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/TimeMeasurement.h +63 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/UnixCtrlChars.h +45 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/UpdateGenVersion.bat +20 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/WindowsSecurity.cc +460 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/WindowsSecurity.h +104 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/WindowsVersion.cc +252 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/WindowsVersion.h +29 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/WinptyAssert.cc +55 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/WinptyAssert.h +64 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/WinptyException.cc +57 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/WinptyException.h +43 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/WinptyVersion.cc +42 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/WinptyVersion.h +27 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/shared/winpty_snprintf.h +99 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/subdir.mk +5 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/tests/subdir.mk +28 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/tests/trivial_test.cc +158 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/unix-adapter/InputHandler.cc +114 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/unix-adapter/InputHandler.h +56 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/unix-adapter/OutputHandler.cc +80 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/unix-adapter/OutputHandler.h +53 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/unix-adapter/Util.cc +86 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/unix-adapter/Util.h +31 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/unix-adapter/WakeupFd.cc +70 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/unix-adapter/WakeupFd.h +42 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/unix-adapter/main.cc +729 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/unix-adapter/subdir.mk +41 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/src/winpty.gyp +206 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/deps/winpty/vcbuild.bat +83 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/conpty_console_list_agent.js +20 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/conpty_console_list_agent.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/eventEmitter2.js +47 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/eventEmitter2.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/eventEmitter2.test.js +30 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/eventEmitter2.test.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/index.js +51 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/index.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/interfaces.js +7 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/interfaces.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/prebuild-file-path.js +18 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/prebuild-file-path.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/prebuild-loader.js +19 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/prebuild-loader.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/terminal.js +182 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/terminal.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/terminal.test.js +136 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/terminal.test.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/testUtils.test.js +28 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/testUtils.test.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/types.js +7 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/types.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/unixTerminal.js +265 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/unixTerminal.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/unixTerminal.test.js +201 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/unixTerminal.test.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/utils.js +17 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/utils.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/windowsPtyAgent.js +311 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/windowsPtyAgent.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/windowsPtyAgent.test.js +90 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/windowsPtyAgent.test.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/windowsTerminal.js +183 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/windowsTerminal.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/windowsTerminal.test.js +195 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/lib/windowsTerminal.test.js.map +1 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/package.json +69 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-arm64/node.abi102.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-arm64/node.abi108.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-arm64/node.abi64.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-arm64/node.abi67.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-arm64/node.abi72.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-arm64/node.abi79.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-arm64/node.abi83.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-arm64/node.abi88.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-arm64/node.abi93.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-x64/node.abi102.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-x64/node.abi108.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-x64/node.abi64.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-x64/node.abi67.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-x64/node.abi72.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-x64/node.abi79.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-x64/node.abi83.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-x64/node.abi88.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/darwin-x64/node.abi93.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi102.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi102.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi108.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi108.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi64.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi64.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi67.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi67.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi72.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi72.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi79.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi79.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi83.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi83.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi88.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi88.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi93.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm/node.abi93.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi102.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi102.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi108.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi108.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi64.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi64.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi67.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi67.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi72.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi72.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi79.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi79.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi83.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi83.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi88.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi88.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi93.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-arm64/node.abi93.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-ia32/node.abi102.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-ia32/node.abi108.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-ia32/node.abi64.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-ia32/node.abi67.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-ia32/node.abi72.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-ia32/node.abi79.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-ia32/node.abi83.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-ia32/node.abi88.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-ia32/node.abi93.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi102.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi102.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi108.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi108.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi64.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi64.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi67.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi67.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi72.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi72.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi79.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi79.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi83.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi83.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi88.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi88.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi93.musl.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/prebuilds/linux-x64/node.abi93.node +0 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/scripts/check-prebuild.js +15 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/scripts/install.js +18 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/scripts/post-install.js +41 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/scripts/publish.js +62 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/conpty_console_list_agent.ts +19 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/eventEmitter2.test.ts +30 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/eventEmitter2.ts +48 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/index.ts +52 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/interfaces.ts +125 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/native.d.ts +54 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/prebuild-file-path.ts +21 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/prebuild-loader.ts +17 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/terminal.test.ts +116 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/terminal.ts +208 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/testUtils.test.ts +23 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/tsconfig.json +24 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/types.ts +15 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/unix/pty.cc +734 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/unixTerminal.test.ts +243 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/unixTerminal.ts +288 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/utils.ts +9 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/win/conpty.cc +455 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/win/conpty_console_list.cc +43 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/win/path_util.cc +73 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/win/path_util.h +22 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/win/winpty.cc +312 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/windowsPtyAgent.test.ts +94 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/windowsPtyAgent.ts +312 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/windowsTerminal.test.ts +205 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/src/windowsTerminal.ts +189 -0
- package/vendor/node_modules/node-pty-prebuilt-multiarch/typings/node-pty.d.ts +212 -0
|
@@ -0,0 +1,632 @@
|
|
|
1
|
+
// Copyright (c) 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 "ConsoleFont.h"
|
|
22
|
+
|
|
23
|
+
#include <windows.h>
|
|
24
|
+
#include <stdio.h>
|
|
25
|
+
#include <string.h>
|
|
26
|
+
#include <wchar.h>
|
|
27
|
+
|
|
28
|
+
#include <algorithm>
|
|
29
|
+
#include <string>
|
|
30
|
+
#include <tuple>
|
|
31
|
+
#include <utility>
|
|
32
|
+
#include <vector>
|
|
33
|
+
|
|
34
|
+
#include "../shared/DebugClient.h"
|
|
35
|
+
#include "../shared/OsModule.h"
|
|
36
|
+
#include "../shared/StringUtil.h"
|
|
37
|
+
#include "../shared/WindowsVersion.h"
|
|
38
|
+
#include "../shared/WinptyAssert.h"
|
|
39
|
+
#include "../shared/winpty_snprintf.h"
|
|
40
|
+
|
|
41
|
+
namespace {
|
|
42
|
+
|
|
43
|
+
#define COUNT_OF(x) (sizeof(x) / sizeof((x)[0]))
|
|
44
|
+
|
|
45
|
+
// See https://en.wikipedia.org/wiki/List_of_CJK_fonts
|
|
46
|
+
const wchar_t kLucidaConsole[] = L"Lucida Console";
|
|
47
|
+
const wchar_t kMSGothic[] = { 0xff2d, 0xff33, 0x0020, 0x30b4, 0x30b7, 0x30c3, 0x30af, 0 }; // 932, Japanese
|
|
48
|
+
const wchar_t kNSimSun[] = { 0x65b0, 0x5b8b, 0x4f53, 0 }; // 936, Chinese Simplified
|
|
49
|
+
const wchar_t kGulimChe[] = { 0xad74, 0xb9bc, 0xccb4, 0 }; // 949, Korean
|
|
50
|
+
const wchar_t kMingLight[] = { 0x7d30, 0x660e, 0x9ad4, 0 }; // 950, Chinese Traditional
|
|
51
|
+
|
|
52
|
+
struct FontSize {
|
|
53
|
+
short size;
|
|
54
|
+
int width;
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
struct Font {
|
|
58
|
+
const wchar_t *faceName;
|
|
59
|
+
unsigned int family;
|
|
60
|
+
short size;
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
// Ideographs in East Asian languages take two columns rather than one.
|
|
64
|
+
// In the console screen buffer, a "full-width" character will occupy two
|
|
65
|
+
// cells of the buffer, the first with attribute 0x100 and the second with
|
|
66
|
+
// attribute 0x200.
|
|
67
|
+
//
|
|
68
|
+
// Windows does not correctly identify code points as double-width in all
|
|
69
|
+
// configurations. It depends heavily on the code page, the font facename,
|
|
70
|
+
// and (somehow) even the font size. In the 437 code page (MS-DOS), for
|
|
71
|
+
// example, no codepoints are interpreted as double-width. When the console
|
|
72
|
+
// is in an East Asian code page (932, 936, 949, or 950), then sometimes
|
|
73
|
+
// selecting a "Western" facename like "Lucida Console" or "Consolas" doesn't
|
|
74
|
+
// register, or if the font *can* be chosen, then the console doesn't handle
|
|
75
|
+
// double-width correctly. I tested the double-width handling by writing
|
|
76
|
+
// several code points with WriteConsole and checking whether one or two cells
|
|
77
|
+
// were filled.
|
|
78
|
+
//
|
|
79
|
+
// In the Japanese code page (932), Microsoft's default font is MS Gothic.
|
|
80
|
+
// MS Gothic double-width handling seems to be broken with console versions
|
|
81
|
+
// prior to Windows 10 (including Windows 10's legacy mode), and it's
|
|
82
|
+
// especially broken in Windows 8 and 8.1.
|
|
83
|
+
//
|
|
84
|
+
// Test by running: misc/Utf16Echo A2 A3 2014 3044 30FC 4000
|
|
85
|
+
//
|
|
86
|
+
// The first three codepoints are always rendered as half-width with the
|
|
87
|
+
// Windows Japanese fonts. (Of these, the first two must be half-width,
|
|
88
|
+
// but U+2014 could be either.) The last three are rendered as full-width,
|
|
89
|
+
// and they are East_Asian_Width=Wide.
|
|
90
|
+
//
|
|
91
|
+
// Windows 7 fails by modeling all codepoints as full-width with font
|
|
92
|
+
// sizes 22 and above.
|
|
93
|
+
//
|
|
94
|
+
// Windows 8 gets U+00A2, U+00A3, U+2014, U+30FC, and U+4000 wrong, but
|
|
95
|
+
// using a point size not listed in the console properties dialog
|
|
96
|
+
// (e.g. "9") is less wrong:
|
|
97
|
+
//
|
|
98
|
+
// | code point |
|
|
99
|
+
// font | 00A2 00A3 2014 3044 30FC 4000 | cell size
|
|
100
|
+
// ------------+---------------------------------+----------
|
|
101
|
+
// 8 | F F F F H H | 4x8
|
|
102
|
+
// 9 | F F F F F F | 5x9
|
|
103
|
+
// 16 | F F F F H H | 8x16
|
|
104
|
+
// raster 6x13 | H H H F F H(*) | 6x13
|
|
105
|
+
//
|
|
106
|
+
// (*) The Raster Font renders U+4000 as a white box (i.e. an unsupported
|
|
107
|
+
// character).
|
|
108
|
+
//
|
|
109
|
+
|
|
110
|
+
// See:
|
|
111
|
+
// - misc/Font-Report-June2016 directory for per-size details
|
|
112
|
+
// - misc/font-notes.txt
|
|
113
|
+
// - misc/Utf16Echo.cc, misc/FontSurvey.cc, misc/SetFont.cc, misc/GetFont.cc
|
|
114
|
+
|
|
115
|
+
const FontSize kLucidaFontSizes[] = {
|
|
116
|
+
{ 5, 3 },
|
|
117
|
+
{ 6, 4 },
|
|
118
|
+
{ 8, 5 },
|
|
119
|
+
{ 10, 6 },
|
|
120
|
+
{ 12, 7 },
|
|
121
|
+
{ 14, 8 },
|
|
122
|
+
{ 16, 10 },
|
|
123
|
+
{ 18, 11 },
|
|
124
|
+
{ 20, 12 },
|
|
125
|
+
{ 36, 22 },
|
|
126
|
+
{ 48, 29 },
|
|
127
|
+
{ 60, 36 },
|
|
128
|
+
{ 72, 43 },
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
// Japanese. Used on Vista and Windows 7.
|
|
132
|
+
const FontSize k932GothicVista[] = {
|
|
133
|
+
{ 6, 3 },
|
|
134
|
+
{ 8, 4 },
|
|
135
|
+
{ 10, 5 },
|
|
136
|
+
{ 12, 6 },
|
|
137
|
+
{ 13, 7 },
|
|
138
|
+
{ 15, 8 },
|
|
139
|
+
{ 17, 9 },
|
|
140
|
+
{ 19, 10 },
|
|
141
|
+
{ 21, 11 },
|
|
142
|
+
// All larger fonts are more broken w.r.t. full-size East Asian characters.
|
|
143
|
+
};
|
|
144
|
+
|
|
145
|
+
// Japanese. Used on Windows 8, 8.1, and the legacy 10 console.
|
|
146
|
+
const FontSize k932GothicWin8[] = {
|
|
147
|
+
// All of these characters are broken w.r.t. full-size East Asian
|
|
148
|
+
// characters, but they're equally broken.
|
|
149
|
+
{ 5, 3 },
|
|
150
|
+
{ 7, 4 },
|
|
151
|
+
{ 9, 5 },
|
|
152
|
+
{ 11, 6 },
|
|
153
|
+
{ 13, 7 },
|
|
154
|
+
{ 15, 8 },
|
|
155
|
+
{ 17, 9 },
|
|
156
|
+
{ 20, 10 },
|
|
157
|
+
{ 22, 11 },
|
|
158
|
+
{ 24, 12 },
|
|
159
|
+
// include extra-large fonts for small terminals
|
|
160
|
+
{ 36, 18 },
|
|
161
|
+
{ 48, 24 },
|
|
162
|
+
{ 60, 30 },
|
|
163
|
+
{ 72, 36 },
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
// Japanese. Used on the new Windows 10 console.
|
|
167
|
+
const FontSize k932GothicWin10[] = {
|
|
168
|
+
{ 6, 3 },
|
|
169
|
+
{ 8, 4 },
|
|
170
|
+
{ 10, 5 },
|
|
171
|
+
{ 12, 6 },
|
|
172
|
+
{ 14, 7 },
|
|
173
|
+
{ 16, 8 },
|
|
174
|
+
{ 18, 9 },
|
|
175
|
+
{ 20, 10 },
|
|
176
|
+
{ 22, 11 },
|
|
177
|
+
{ 24, 12 },
|
|
178
|
+
// include extra-large fonts for small terminals
|
|
179
|
+
{ 36, 18 },
|
|
180
|
+
{ 48, 24 },
|
|
181
|
+
{ 60, 30 },
|
|
182
|
+
{ 72, 36 },
|
|
183
|
+
};
|
|
184
|
+
|
|
185
|
+
// Chinese Simplified.
|
|
186
|
+
const FontSize k936SimSun[] = {
|
|
187
|
+
{ 6, 3 },
|
|
188
|
+
{ 8, 4 },
|
|
189
|
+
{ 10, 5 },
|
|
190
|
+
{ 12, 6 },
|
|
191
|
+
{ 14, 7 },
|
|
192
|
+
{ 16, 8 },
|
|
193
|
+
{ 18, 9 },
|
|
194
|
+
{ 20, 10 },
|
|
195
|
+
{ 22, 11 },
|
|
196
|
+
{ 24, 12 },
|
|
197
|
+
// include extra-large fonts for small terminals
|
|
198
|
+
{ 36, 18 },
|
|
199
|
+
{ 48, 24 },
|
|
200
|
+
{ 60, 30 },
|
|
201
|
+
{ 72, 36 },
|
|
202
|
+
};
|
|
203
|
+
|
|
204
|
+
// Korean.
|
|
205
|
+
const FontSize k949GulimChe[] = {
|
|
206
|
+
{ 6, 3 },
|
|
207
|
+
{ 8, 4 },
|
|
208
|
+
{ 10, 5 },
|
|
209
|
+
{ 12, 6 },
|
|
210
|
+
{ 14, 7 },
|
|
211
|
+
{ 16, 8 },
|
|
212
|
+
{ 18, 9 },
|
|
213
|
+
{ 20, 10 },
|
|
214
|
+
{ 22, 11 },
|
|
215
|
+
{ 24, 12 },
|
|
216
|
+
// include extra-large fonts for small terminals
|
|
217
|
+
{ 36, 18 },
|
|
218
|
+
{ 48, 24 },
|
|
219
|
+
{ 60, 30 },
|
|
220
|
+
{ 72, 36 },
|
|
221
|
+
};
|
|
222
|
+
|
|
223
|
+
// Chinese Traditional.
|
|
224
|
+
const FontSize k950MingLight[] = {
|
|
225
|
+
{ 6, 3 },
|
|
226
|
+
{ 8, 4 },
|
|
227
|
+
{ 10, 5 },
|
|
228
|
+
{ 12, 6 },
|
|
229
|
+
{ 14, 7 },
|
|
230
|
+
{ 16, 8 },
|
|
231
|
+
{ 18, 9 },
|
|
232
|
+
{ 20, 10 },
|
|
233
|
+
{ 22, 11 },
|
|
234
|
+
{ 24, 12 },
|
|
235
|
+
// include extra-large fonts for small terminals
|
|
236
|
+
{ 36, 18 },
|
|
237
|
+
{ 48, 24 },
|
|
238
|
+
{ 60, 30 },
|
|
239
|
+
{ 72, 36 },
|
|
240
|
+
};
|
|
241
|
+
|
|
242
|
+
// Some of these types and functions are missing from the MinGW headers.
|
|
243
|
+
// Others are undocumented.
|
|
244
|
+
|
|
245
|
+
struct AGENT_CONSOLE_FONT_INFO {
|
|
246
|
+
DWORD nFont;
|
|
247
|
+
COORD dwFontSize;
|
|
248
|
+
};
|
|
249
|
+
|
|
250
|
+
struct AGENT_CONSOLE_FONT_INFOEX {
|
|
251
|
+
ULONG cbSize;
|
|
252
|
+
DWORD nFont;
|
|
253
|
+
COORD dwFontSize;
|
|
254
|
+
UINT FontFamily;
|
|
255
|
+
UINT FontWeight;
|
|
256
|
+
WCHAR FaceName[LF_FACESIZE];
|
|
257
|
+
};
|
|
258
|
+
|
|
259
|
+
// undocumented XP API
|
|
260
|
+
typedef BOOL WINAPI SetConsoleFont_t(
|
|
261
|
+
HANDLE hOutput,
|
|
262
|
+
DWORD dwFontIndex);
|
|
263
|
+
|
|
264
|
+
// undocumented XP API
|
|
265
|
+
typedef DWORD WINAPI GetNumberOfConsoleFonts_t();
|
|
266
|
+
|
|
267
|
+
// XP and up
|
|
268
|
+
typedef BOOL WINAPI GetCurrentConsoleFont_t(
|
|
269
|
+
HANDLE hOutput,
|
|
270
|
+
BOOL bMaximumWindow,
|
|
271
|
+
AGENT_CONSOLE_FONT_INFO *lpConsoleCurrentFont);
|
|
272
|
+
|
|
273
|
+
// XP and up
|
|
274
|
+
typedef COORD WINAPI GetConsoleFontSize_t(
|
|
275
|
+
HANDLE hConsoleOutput,
|
|
276
|
+
DWORD nFont);
|
|
277
|
+
|
|
278
|
+
// Vista and up
|
|
279
|
+
typedef BOOL WINAPI GetCurrentConsoleFontEx_t(
|
|
280
|
+
HANDLE hConsoleOutput,
|
|
281
|
+
BOOL bMaximumWindow,
|
|
282
|
+
AGENT_CONSOLE_FONT_INFOEX *lpConsoleCurrentFontEx);
|
|
283
|
+
|
|
284
|
+
// Vista and up
|
|
285
|
+
typedef BOOL WINAPI SetCurrentConsoleFontEx_t(
|
|
286
|
+
HANDLE hConsoleOutput,
|
|
287
|
+
BOOL bMaximumWindow,
|
|
288
|
+
AGENT_CONSOLE_FONT_INFOEX *lpConsoleCurrentFontEx);
|
|
289
|
+
|
|
290
|
+
#define GET_MODULE_PROC(mod, funcName) \
|
|
291
|
+
m_##funcName = reinterpret_cast<funcName##_t*>((mod).proc(#funcName)); \
|
|
292
|
+
|
|
293
|
+
#define DEFINE_ACCESSOR(funcName) \
|
|
294
|
+
funcName##_t &funcName() const { \
|
|
295
|
+
ASSERT(valid()); \
|
|
296
|
+
return *m_##funcName; \
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
class XPFontAPI {
|
|
300
|
+
public:
|
|
301
|
+
XPFontAPI() : m_kernel32(L"kernel32.dll") {
|
|
302
|
+
GET_MODULE_PROC(m_kernel32, GetCurrentConsoleFont);
|
|
303
|
+
GET_MODULE_PROC(m_kernel32, GetConsoleFontSize);
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
bool valid() const {
|
|
307
|
+
return m_GetCurrentConsoleFont != NULL &&
|
|
308
|
+
m_GetConsoleFontSize != NULL;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
DEFINE_ACCESSOR(GetCurrentConsoleFont)
|
|
312
|
+
DEFINE_ACCESSOR(GetConsoleFontSize)
|
|
313
|
+
|
|
314
|
+
private:
|
|
315
|
+
OsModule m_kernel32;
|
|
316
|
+
GetCurrentConsoleFont_t *m_GetCurrentConsoleFont;
|
|
317
|
+
GetConsoleFontSize_t *m_GetConsoleFontSize;
|
|
318
|
+
};
|
|
319
|
+
|
|
320
|
+
class VistaFontAPI : public XPFontAPI {
|
|
321
|
+
public:
|
|
322
|
+
VistaFontAPI() : m_kernel32(L"kernel32.dll") {
|
|
323
|
+
GET_MODULE_PROC(m_kernel32, GetCurrentConsoleFontEx);
|
|
324
|
+
GET_MODULE_PROC(m_kernel32, SetCurrentConsoleFontEx);
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
bool valid() const {
|
|
328
|
+
return this->XPFontAPI::valid() &&
|
|
329
|
+
m_GetCurrentConsoleFontEx != NULL &&
|
|
330
|
+
m_SetCurrentConsoleFontEx != NULL;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
DEFINE_ACCESSOR(GetCurrentConsoleFontEx)
|
|
334
|
+
DEFINE_ACCESSOR(SetCurrentConsoleFontEx)
|
|
335
|
+
|
|
336
|
+
private:
|
|
337
|
+
OsModule m_kernel32;
|
|
338
|
+
GetCurrentConsoleFontEx_t *m_GetCurrentConsoleFontEx;
|
|
339
|
+
SetCurrentConsoleFontEx_t *m_SetCurrentConsoleFontEx;
|
|
340
|
+
};
|
|
341
|
+
|
|
342
|
+
static std::vector<std::pair<DWORD, COORD> > readFontTable(
|
|
343
|
+
XPFontAPI &api, HANDLE conout, DWORD maxCount) {
|
|
344
|
+
std::vector<std::pair<DWORD, COORD> > ret;
|
|
345
|
+
for (DWORD i = 0; i < maxCount; ++i) {
|
|
346
|
+
COORD size = api.GetConsoleFontSize()(conout, i);
|
|
347
|
+
if (size.X == 0 && size.Y == 0) {
|
|
348
|
+
break;
|
|
349
|
+
}
|
|
350
|
+
ret.push_back(std::make_pair(i, size));
|
|
351
|
+
}
|
|
352
|
+
return ret;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
static void dumpFontTable(HANDLE conout, const char *prefix) {
|
|
356
|
+
const int kMaxCount = 1000;
|
|
357
|
+
if (!isTracingEnabled()) {
|
|
358
|
+
return;
|
|
359
|
+
}
|
|
360
|
+
XPFontAPI api;
|
|
361
|
+
if (!api.valid()) {
|
|
362
|
+
trace("dumpFontTable: cannot dump font table -- missing APIs");
|
|
363
|
+
return;
|
|
364
|
+
}
|
|
365
|
+
std::vector<std::pair<DWORD, COORD> > table =
|
|
366
|
+
readFontTable(api, conout, kMaxCount);
|
|
367
|
+
std::string line;
|
|
368
|
+
char tmp[128];
|
|
369
|
+
size_t first = 0;
|
|
370
|
+
while (first < table.size()) {
|
|
371
|
+
size_t last = std::min(table.size() - 1, first + 10 - 1);
|
|
372
|
+
winpty_snprintf(tmp, "%sfonts %02u-%02u:",
|
|
373
|
+
prefix, static_cast<unsigned>(first), static_cast<unsigned>(last));
|
|
374
|
+
line = tmp;
|
|
375
|
+
for (size_t i = first; i <= last; ++i) {
|
|
376
|
+
if (i % 10 == 5) {
|
|
377
|
+
line += " - ";
|
|
378
|
+
}
|
|
379
|
+
winpty_snprintf(tmp, " %2dx%-2d",
|
|
380
|
+
table[i].second.X, table[i].second.Y);
|
|
381
|
+
line += tmp;
|
|
382
|
+
}
|
|
383
|
+
trace("%s", line.c_str());
|
|
384
|
+
first = last + 1;
|
|
385
|
+
}
|
|
386
|
+
if (table.size() == kMaxCount) {
|
|
387
|
+
trace("%sfonts: ... stopped reading at %d fonts ...",
|
|
388
|
+
prefix, kMaxCount);
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
static std::string stringToCodePoints(const std::wstring &str) {
|
|
393
|
+
std::string ret = "(";
|
|
394
|
+
for (size_t i = 0; i < str.size(); ++i) {
|
|
395
|
+
char tmp[32];
|
|
396
|
+
winpty_snprintf(tmp, "%X", str[i]);
|
|
397
|
+
if (ret.size() > 1) {
|
|
398
|
+
ret.push_back(' ');
|
|
399
|
+
}
|
|
400
|
+
ret += tmp;
|
|
401
|
+
}
|
|
402
|
+
ret.push_back(')');
|
|
403
|
+
return ret;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
static void dumpFontInfoEx(
|
|
407
|
+
const AGENT_CONSOLE_FONT_INFOEX &infoex,
|
|
408
|
+
const char *prefix) {
|
|
409
|
+
if (!isTracingEnabled()) {
|
|
410
|
+
return;
|
|
411
|
+
}
|
|
412
|
+
std::wstring faceName(infoex.FaceName,
|
|
413
|
+
winpty_wcsnlen(infoex.FaceName, COUNT_OF(infoex.FaceName)));
|
|
414
|
+
trace("%snFont=%u dwFontSize=(%d,%d) "
|
|
415
|
+
"FontFamily=0x%x FontWeight=%u FaceName=%s %s",
|
|
416
|
+
prefix,
|
|
417
|
+
static_cast<unsigned>(infoex.nFont),
|
|
418
|
+
infoex.dwFontSize.X, infoex.dwFontSize.Y,
|
|
419
|
+
infoex.FontFamily, infoex.FontWeight, utf8FromWide(faceName).c_str(),
|
|
420
|
+
stringToCodePoints(faceName).c_str());
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
static void dumpVistaFont(VistaFontAPI &api, HANDLE conout, const char *prefix) {
|
|
424
|
+
if (!isTracingEnabled()) {
|
|
425
|
+
return;
|
|
426
|
+
}
|
|
427
|
+
AGENT_CONSOLE_FONT_INFOEX infoex = {0};
|
|
428
|
+
infoex.cbSize = sizeof(infoex);
|
|
429
|
+
if (!api.GetCurrentConsoleFontEx()(conout, FALSE, &infoex)) {
|
|
430
|
+
trace("GetCurrentConsoleFontEx call failed");
|
|
431
|
+
return;
|
|
432
|
+
}
|
|
433
|
+
dumpFontInfoEx(infoex, prefix);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
static void dumpXPFont(XPFontAPI &api, HANDLE conout, const char *prefix) {
|
|
437
|
+
if (!isTracingEnabled()) {
|
|
438
|
+
return;
|
|
439
|
+
}
|
|
440
|
+
AGENT_CONSOLE_FONT_INFO info = {0};
|
|
441
|
+
if (!api.GetCurrentConsoleFont()(conout, FALSE, &info)) {
|
|
442
|
+
trace("GetCurrentConsoleFont call failed");
|
|
443
|
+
return;
|
|
444
|
+
}
|
|
445
|
+
trace("%snFont=%u dwFontSize=(%d,%d)",
|
|
446
|
+
prefix,
|
|
447
|
+
static_cast<unsigned>(info.nFont),
|
|
448
|
+
info.dwFontSize.X, info.dwFontSize.Y);
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
static bool setFontVista(
|
|
452
|
+
VistaFontAPI &api,
|
|
453
|
+
HANDLE conout,
|
|
454
|
+
const Font &font) {
|
|
455
|
+
AGENT_CONSOLE_FONT_INFOEX infoex = {};
|
|
456
|
+
infoex.cbSize = sizeof(AGENT_CONSOLE_FONT_INFOEX);
|
|
457
|
+
infoex.dwFontSize.Y = font.size;
|
|
458
|
+
infoex.FontFamily = font.family;
|
|
459
|
+
infoex.FontWeight = 400;
|
|
460
|
+
winpty_wcsncpy_nul(infoex.FaceName, font.faceName);
|
|
461
|
+
dumpFontInfoEx(infoex, "setFontVista: setting font to: ");
|
|
462
|
+
if (!api.SetCurrentConsoleFontEx()(conout, FALSE, &infoex)) {
|
|
463
|
+
trace("setFontVista: SetCurrentConsoleFontEx call failed");
|
|
464
|
+
return false;
|
|
465
|
+
}
|
|
466
|
+
memset(&infoex, 0, sizeof(infoex));
|
|
467
|
+
infoex.cbSize = sizeof(infoex);
|
|
468
|
+
if (!api.GetCurrentConsoleFontEx()(conout, FALSE, &infoex)) {
|
|
469
|
+
trace("setFontVista: GetCurrentConsoleFontEx call failed");
|
|
470
|
+
return false;
|
|
471
|
+
}
|
|
472
|
+
if (wcsncmp(infoex.FaceName, font.faceName,
|
|
473
|
+
COUNT_OF(infoex.FaceName)) != 0) {
|
|
474
|
+
trace("setFontVista: face name was not set");
|
|
475
|
+
dumpFontInfoEx(infoex, "setFontVista: post-call font: ");
|
|
476
|
+
return false;
|
|
477
|
+
}
|
|
478
|
+
// We'd like to verify that the new font size is correct, but we can't
|
|
479
|
+
// predict what it will be, even though we just set it to `pxSize` through
|
|
480
|
+
// an apprently symmetric interface. For the Chinese and Korean fonts, the
|
|
481
|
+
// new `infoex.dwFontSize.Y` value can be slightly larger than the height
|
|
482
|
+
// we specified.
|
|
483
|
+
return true;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
static Font selectSmallFont(int codePage, int columns, bool isNewW10) {
|
|
487
|
+
// Iterate over a set of font sizes according to the code page, and select
|
|
488
|
+
// one.
|
|
489
|
+
|
|
490
|
+
const wchar_t *faceName = nullptr;
|
|
491
|
+
unsigned int fontFamily = 0;
|
|
492
|
+
const FontSize *table = nullptr;
|
|
493
|
+
size_t tableSize = 0;
|
|
494
|
+
|
|
495
|
+
switch (codePage) {
|
|
496
|
+
case 932: // Japanese
|
|
497
|
+
faceName = kMSGothic;
|
|
498
|
+
fontFamily = 0x36;
|
|
499
|
+
if (isNewW10) {
|
|
500
|
+
table = k932GothicWin10;
|
|
501
|
+
tableSize = COUNT_OF(k932GothicWin10);
|
|
502
|
+
} else if (isAtLeastWindows8()) {
|
|
503
|
+
table = k932GothicWin8;
|
|
504
|
+
tableSize = COUNT_OF(k932GothicWin8);
|
|
505
|
+
} else {
|
|
506
|
+
table = k932GothicVista;
|
|
507
|
+
tableSize = COUNT_OF(k932GothicVista);
|
|
508
|
+
}
|
|
509
|
+
break;
|
|
510
|
+
case 936: // Chinese Simplified
|
|
511
|
+
faceName = kNSimSun;
|
|
512
|
+
fontFamily = 0x36;
|
|
513
|
+
table = k936SimSun;
|
|
514
|
+
tableSize = COUNT_OF(k936SimSun);
|
|
515
|
+
break;
|
|
516
|
+
case 949: // Korean
|
|
517
|
+
faceName = kGulimChe;
|
|
518
|
+
fontFamily = 0x36;
|
|
519
|
+
table = k949GulimChe;
|
|
520
|
+
tableSize = COUNT_OF(k949GulimChe);
|
|
521
|
+
break;
|
|
522
|
+
case 950: // Chinese Traditional
|
|
523
|
+
faceName = kMingLight;
|
|
524
|
+
fontFamily = 0x36;
|
|
525
|
+
table = k950MingLight;
|
|
526
|
+
tableSize = COUNT_OF(k950MingLight);
|
|
527
|
+
break;
|
|
528
|
+
default:
|
|
529
|
+
faceName = kLucidaConsole;
|
|
530
|
+
fontFamily = 0x36;
|
|
531
|
+
table = kLucidaFontSizes;
|
|
532
|
+
tableSize = COUNT_OF(kLucidaFontSizes);
|
|
533
|
+
break;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
size_t bestIndex = static_cast<size_t>(-1);
|
|
537
|
+
std::tuple<int, int> bestScore = std::make_tuple(-1, -1);
|
|
538
|
+
|
|
539
|
+
// We might want to pick the smallest possible font, because we don't know
|
|
540
|
+
// how large the monitor is (and the monitor size can change). We might
|
|
541
|
+
// want to pick a larger font to accommodate console programs that resize
|
|
542
|
+
// the console on their own, like DOS edit.com, which tends to resize the
|
|
543
|
+
// console to 80 columns.
|
|
544
|
+
|
|
545
|
+
for (size_t i = 0; i < tableSize; ++i) {
|
|
546
|
+
const int width = table[i].width * columns;
|
|
547
|
+
|
|
548
|
+
// In general, we'd like to pick a font size where cutting the number
|
|
549
|
+
// of columns in half doesn't immediately violate the minimum width
|
|
550
|
+
// constraint. (e.g. To run DOS edit.com, a user might resize their
|
|
551
|
+
// terminal to ~100 columns so it's big enough to show the 80 columns
|
|
552
|
+
// post-resize.) To achieve this, give priority to fonts that allow
|
|
553
|
+
// this halving. We don't want to encourage *very* large fonts,
|
|
554
|
+
// though, so disable the effect as the number of columns scales from
|
|
555
|
+
// 80 to 40.
|
|
556
|
+
const int halfColumns = std::min(columns, std::max(40, columns / 2));
|
|
557
|
+
const int halfWidth = table[i].width * halfColumns;
|
|
558
|
+
|
|
559
|
+
std::tuple<int, int> thisScore = std::make_tuple(-1, -1);
|
|
560
|
+
if (width >= 160 && halfWidth >= 160) {
|
|
561
|
+
// Both sizes are good. Prefer the smaller fonts.
|
|
562
|
+
thisScore = std::make_tuple(2, -width);
|
|
563
|
+
} else if (width >= 160) {
|
|
564
|
+
// Prefer the smaller fonts.
|
|
565
|
+
thisScore = std::make_tuple(1, -width);
|
|
566
|
+
} else {
|
|
567
|
+
// Otherwise, prefer the largest font in our table.
|
|
568
|
+
thisScore = std::make_tuple(0, width);
|
|
569
|
+
}
|
|
570
|
+
if (thisScore > bestScore) {
|
|
571
|
+
bestIndex = i;
|
|
572
|
+
bestScore = thisScore;
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
ASSERT(bestIndex != static_cast<size_t>(-1));
|
|
577
|
+
return Font { faceName, fontFamily, table[bestIndex].size };
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
static void setSmallFontVista(VistaFontAPI &api, HANDLE conout,
|
|
581
|
+
int columns, bool isNewW10) {
|
|
582
|
+
int codePage = GetConsoleOutputCP();
|
|
583
|
+
const auto font = selectSmallFont(codePage, columns, isNewW10);
|
|
584
|
+
if (setFontVista(api, conout, font)) {
|
|
585
|
+
trace("setSmallFontVista: success");
|
|
586
|
+
return;
|
|
587
|
+
}
|
|
588
|
+
if (codePage == 932 || codePage == 936 ||
|
|
589
|
+
codePage == 949 || codePage == 950) {
|
|
590
|
+
trace("setSmallFontVista: falling back to default codepage font instead");
|
|
591
|
+
const auto fontFB = selectSmallFont(0, columns, isNewW10);
|
|
592
|
+
if (setFontVista(api, conout, fontFB)) {
|
|
593
|
+
trace("setSmallFontVista: fallback was successful");
|
|
594
|
+
return;
|
|
595
|
+
}
|
|
596
|
+
}
|
|
597
|
+
trace("setSmallFontVista: failure");
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
struct FontSizeComparator {
|
|
601
|
+
bool operator()(const std::pair<DWORD, COORD> &obj1,
|
|
602
|
+
const std::pair<DWORD, COORD> &obj2) const {
|
|
603
|
+
int score1 = obj1.second.X + obj1.second.Y;
|
|
604
|
+
int score2 = obj2.second.X + obj2.second.Y;
|
|
605
|
+
return score1 < score2;
|
|
606
|
+
}
|
|
607
|
+
};
|
|
608
|
+
|
|
609
|
+
} // anonymous namespace
|
|
610
|
+
|
|
611
|
+
// A Windows console window can never be larger than the desktop window. To
|
|
612
|
+
// maximize the possible size of the console in rows*cols, try to configure
|
|
613
|
+
// the console with a small font. Unfortunately, we cannot make the font *too*
|
|
614
|
+
// small, because there is also a minimum window size in pixels.
|
|
615
|
+
void setSmallFont(HANDLE conout, int columns, bool isNewW10) {
|
|
616
|
+
trace("setSmallFont: attempting to set a small font for %d columns "
|
|
617
|
+
"(CP=%u OutputCP=%u)",
|
|
618
|
+
columns,
|
|
619
|
+
static_cast<unsigned>(GetConsoleCP()),
|
|
620
|
+
static_cast<unsigned>(GetConsoleOutputCP()));
|
|
621
|
+
VistaFontAPI vista;
|
|
622
|
+
if (vista.valid()) {
|
|
623
|
+
dumpVistaFont(vista, conout, "previous font: ");
|
|
624
|
+
dumpFontTable(conout, "previous font table: ");
|
|
625
|
+
setSmallFontVista(vista, conout, columns, isNewW10);
|
|
626
|
+
dumpVistaFont(vista, conout, "new font: ");
|
|
627
|
+
dumpFontTable(conout, "new font table: ");
|
|
628
|
+
return;
|
|
629
|
+
}
|
|
630
|
+
trace("setSmallFont: neither Vista nor XP APIs detected -- giving up");
|
|
631
|
+
dumpFontTable(conout, "font table: ");
|
|
632
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// Copyright (c) 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
|
+
#ifndef CONSOLEFONT_H
|
|
22
|
+
#define CONSOLEFONT_H
|
|
23
|
+
|
|
24
|
+
#include <windows.h>
|
|
25
|
+
|
|
26
|
+
void setSmallFont(HANDLE conout, int columns, bool isNewW10);
|
|
27
|
+
|
|
28
|
+
#endif // CONSOLEFONT_H
|