winpty/agent
Ryan Prichard d4640890cf Rewrite resize logic, introduce "direct mode", and tweak scroll scraping.
* Unfreeze the console while changing the buffer size.  Changing the
   buffer size hangs conhost.exe.  See:
    - https://github.com/rprichard/winpty/issues/31
    - https://wpdev.uservoice.com/forums/266908-command-prompt/suggestions/9941292-conhost-exe-hangs-in-win10-if-setconsolescreenbuff

 * Detect buffer size changes and switch to a "direct mode".  Direct mode
   makes no attempt to track incremental console changes.  Instead, the
   content of the current console window is printed.  This mode is
   intended for full-screen apps that resize the console.

 * Reopen CONOUT$, which detects apps that change the active screen buffer.
   Fixes https://github.com/rprichard/winpty/issues/34.

 * In the scroll scraping (scrollingScrapeOutput), consider a line changed
   if the new content is truncated relative to the content previously
   output.  Previously, we only compared against the line-buffer up to the
   current console width.  e.g.

   If this:
      |C:\Program|

   turns into:
      |C:\Prog|
      |ram    |

   we previously left |C:\Program| in the line-buffer for the first line
   and did not re-output the first line.

   We *should* reoutput the first line at this point so that, if the line
   scrolls upward, and the terminal is later expanded, we will have
   output an "Erase in Line" CSI command to clear the obscured "ram" text.

   We need to update the line-buffer for the sake of Windows 10 combined
   with terminals like xterm and putty.  On such a terminal, if the
   terminal later widened, Windows 10 will restore the console to the
   first state.  At that point, we need to reoutput the line, because
   xterm and putty do not save and restore truncated line content extending
   past the current terminal width.
2015-09-29 02:32:49 -05:00
..
Agent.cc Rewrite resize logic, introduce "direct mode", and tweak scroll scraping. 2015-09-29 02:32:49 -05:00
Agent.h Rewrite resize logic, introduce "direct mode", and tweak scroll scraping. 2015-09-29 02:32:49 -05:00
AgentAssert.cc Rename Shared to shared and Misc to misc. 2012-04-01 02:13:21 -07:00
AgentAssert.h Add an MIT copyright notice to all the source files. 2012-03-23 03:11:34 -07:00
ConsoleInput.cc Rewrite resize logic, introduce "direct mode", and tweak scroll scraping. 2015-09-29 02:32:49 -05:00
ConsoleInput.h Rewrite resize logic, introduce "direct mode", and tweak scroll scraping. 2015-09-29 02:32:49 -05:00
Coord.cc Add an MIT copyright notice to all the source files. 2012-03-23 03:11:34 -07:00
Coord.h Add an MIT copyright notice to all the source files. 2012-03-23 03:11:34 -07:00
DsrSender.h Add an MIT copyright notice to all the source files. 2012-03-23 03:11:34 -07:00
EventLoop.cc Rename Shared to shared and Misc to misc. 2012-04-01 02:13:21 -07:00
EventLoop.h Add an MIT copyright notice to all the source files. 2012-03-23 03:11:34 -07:00
main.cc In winpty-agent, print an error message if the arguments are invalid. 2012-12-20 04:20:10 -08:00
Makefile MSVC compatibility: Remove the {Agent,WinPty}DebugClient.cc hack. 2012-12-20 04:07:57 -08:00
NamedPipe.cc Include <algorithm> for std::min and std::max 2014-08-07 21:20:16 -04:00
NamedPipe.h Add an MIT copyright notice to all the source files. 2012-03-23 03:11:34 -07:00
SmallRect.cc Add an MIT copyright notice to all the source files. 2012-03-23 03:11:34 -07:00
SmallRect.h Rewrite resize logic, introduce "direct mode", and tweak scroll scraping. 2015-09-29 02:32:49 -05:00
Terminal.cc Rewrite resize logic, introduce "direct mode", and tweak scroll scraping. 2015-09-29 02:32:49 -05:00
Terminal.h Add support for a non-terminal console mode 2013-12-06 15:32:23 +01:00
Win32Console.cc Rewrite resize logic, introduce "direct mode", and tweak scroll scraping. 2015-09-29 02:32:49 -05:00
Win32Console.h Rewrite resize logic, introduce "direct mode", and tweak scroll scraping. 2015-09-29 02:32:49 -05:00