Click here to Skip to main content
15,881,516 members
Articles / Desktop Programming / MFC

Redirecting an Arbitrary Console's Input/Output

Rate me:
Please Sign up or sign in to vote.
4.91/5 (62 votes)
27 Nov 20033 min read 434.6K   15.4K   128   75
How to redirect an arbitrary console's input/output in a simple, graceful way

Sample Image - redir.gif

Introduction

To redirect the input/output of a console application is interesting and useful. You can display the child's output in a window (just like Visual Studio's output window), or search some keywords in the output string to determine if the child process has completed its work successfully. An old, 'ugly' DOS program could become a useful component of your fancy Win32 GUI program.

My idea is to develop a simple, easy to use redirector class which can redirect an arbitrary console, and won't be affected by the behavior of the child process.

Background

The technique of redirecting the input/output of a console process is very simple: The CreateProcess() API through the STARTUPINFO structure enables us to redirect the standard handles of a child console based process. So we can set these handles to either a pipe handle, file handle, or any handle that we can read and write. The detail of this technique has been described clearly in MSDN: HOWTO: Spawn Console Processes with Redirected Standard Handles.

However, MSDN's sample code has two big problems. First, it assumes the child process will send output at first, then wait for input, then flush the output buffer and exit. If the child process doesn't behave like that, the parent process will be hung up. The reason of this is the ReadFile() function remains blocked until the child process sends some output, or exits.

Second, it has a problem to redirect a 16-bit console (including console based MS-DOS applications.) On Windows 9x, ReadFile remains blocked even after the child process has terminated; On Windows NT/XP, ReadFile always returns FALSE with error code set to ERROR_BROKEN_PIPE if the child process is a DOS application.

Solving the Block Problem of ReadFile

To prevent the parent process from being blocked by ReadFile, we can simply pass a file handle as stdout to the child process, then monitor this file. A simpler way is to call PeekNamedPipe() function before calling ReadFile(). The PeekNamedPipe function checks information about data in the pipe, then returns immediately. If there's no data available in the pipe, don't call ReadFile.

By calling PeekNamedPipe before ReadFile, we also solve the block problem of redirecting a 16-bit console on Windows 9x.

The class CRedirector creates pipes and launches the child process at first, then creates a listener thread to monitor the output of the child process. This is the main loop of the listener thread:

C++
for (;;)
{
    // redirect stdout till there's no more data.
    nRet = pRedir->RedirectStdout();
    if (nRet <= 0)
        break;

    // check if the child process has terminated.
    DWORD dwRc = ::WaitForMultipleObjects(
        2, aHandles, FALSE, pRedir->m_dwWaitTime);
    if (WAIT_OBJECT_0 == dwRc)      // the child process ended
    {
        ...
        break;
    }
    if (WAIT_OBJECT_0+1 == dwRc)    // m_hEvtStop was signalled, exit
    {
        ...
        break;
    }
}

This is the main loop of the RedirectStdout() function:

C++
for (;;)
{
    DWORD dwAvail = 0;
    if (!::PeekNamedPipe(m_hStdoutRead, NULL, 0, NULL,
        &dwAvail, NULL))    // error, the child process might ended
        break;

    if (!dwAvail)           // no data available, return
        return 1;

    char szOutput[256];
    DWORD dwRead = 0;
    if (!::ReadFile(m_hStdoutRead, szOutput, min(255, dwAvail),
        &dwRead, NULL) || !dwRead)
             // error, the child process might ended
        break;

    szOutput[dwRead] = 0;
    WriteStdOut(szOutput);          // display the output
}

WriteStdOut is a virtual member function. It does nothing in CRedirector class. However, it can be overridden to achieve our specific target, like I did in the demo project:

C++
int nSize = m_pWnd->GetWindowTextLength();
         // m_pWnd points to a multiline Edit control
m_pWnd->SetSel(nSize, nSize);
m_pWnd->ReplaceSel(pszOutput);
       // add the message to the end of Edit control

To Redirect DOS Console Based Applications on NT/2000/XP

MSDN's solution is to launch an intermediate Win32 Console application as a stub process between the Win32 parent and the 16-bit console based child. In fact, the DOS prompt program (on NT/XP, it's cmd.exe, on 9x it's command.com) is a natural stub process we just need. We can test this in RedirDemo.exe:

  1. Input 'cmd.exe' in Command Editbox, then press Run button.
  2. Input the name of the 16-bit console based application (dosapp.exe for example) in the Input Editbox, then press Input button. Now we can see the output of the 16-bit console.
  3. Input 'exit' in the Input Editbox, then press Input button to terminate cmd.exe.

Apparently, this is not a good solution because it's too complicated. A more effective way is to use a batch file as the stub. Edit stub.bat file like this:

%1 %2 %3 %4 %5 %6 %7 %8 %9

Then, run a command like 'stub.bat dosapp.exe', then the 16-bit DOS console application runs OK.

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below. A list of licenses authors might use can be found here.


Written By
Web Developer
Canada Canada
Nick Adams is one of my favorite figures in Hemingway's stories. I use it because Jeff Lee has been occupied on Codeproject.

Comments and Discussions

 
QuestionAdapting To Windows Powershell? Pin
Robert T.25-Oct-06 9:33
Robert T.25-Oct-06 9:33 
AnswerRe: Adapting To Windows Powershell? Pin
Anne Jan Beeks31-Jan-07 3:22
Anne Jan Beeks31-Jan-07 3:22 
GeneralRe: Adapting To Windows Powershell? Pin
Robert T.26-Mar-07 6:07
Robert T.26-Mar-07 6:07 
GeneralRe: Adapting To Windows Powershell? Pin
Anne Jan Beeks26-Mar-07 6:32
Anne Jan Beeks26-Mar-07 6:32 
GeneralRe: Adapting To Windows Powershell? Pin
Jake G16-Jan-17 22:11
Jake G16-Jan-17 22:11 
QuestionHow to avoid using fflush(); ? Pin
q.sa1-Oct-06 8:10
q.sa1-Oct-06 8:10 
QuestionAsking for help, Unexpected behavior with my client app Pin
gemex9-Aug-06 22:18
gemex9-Aug-06 22:18 
GeneralCalling CRedirector::Close() in output thread problem ! Pin
Reivax7214-Jun-06 0:26
Reivax7214-Jun-06 0:26 
GeneralPlease Help me VB Pin
WolverineSoft2-May-06 13:15
WolverineSoft2-May-06 13:15 
General::SetConsoleCtrlHandler(CRedirector::CtrlHandler, TRUE); Pin
Tcpip200525-Apr-06 22:06
Tcpip200525-Apr-06 22:06 
GeneralRe: ::SetConsoleCtrlHandler(CRedirector::CtrlHandler, TRUE); Pin
Motorcure17-Sep-08 15:33
Motorcure17-Sep-08 15:33 
QuestionHow can i flush the clild's data? Pin
Galterian20-Feb-06 1:34
Galterian20-Feb-06 1:34 
QuestionWhy the telnet doesn't work with it? Pin
iamtony3-May-05 16:27
iamtony3-May-05 16:27 
AnswerRe: Why the telnet doesn't work with it? Pin
nickadams4-May-05 4:01
nickadams4-May-05 4:01 
GeneralRe: Why the telnet doesn't work with it? Pin
osirisgothra6-Sep-07 7:07
osirisgothra6-Sep-07 7:07 
GeneralRedirecting Cygwin Console Pin
sars14-Mar-05 14:35
sars14-Mar-05 14:35 
Generalprintf problem is not solved.... Pin
Monk_10-Dec-04 1:18
Monk_10-Dec-04 1:18 
GeneralRe: printf problem is not solved.... Pin
Anonymous10-Dec-04 11:31
Anonymous10-Dec-04 11:31 
GeneralNot all stdout or stderr is printed Pin
J.Ru19-Nov-04 8:16
J.Ru19-Nov-04 8:16 
Generalredirecting output of console application consisting of several threads Pin
Luft Waffe12-Nov-04 3:13
Luft Waffe12-Nov-04 3:13 
GeneralRe: redirecting output of console application consisting of several threads Pin
nickadams17-Nov-04 16:28
nickadams17-Nov-04 16:28 
QuestionHow can i stop the running Process ? Pin
Sick@work28-Jul-04 2:02
Sick@work28-Jul-04 2:02 
AnswerRe: How can i stop the running Process ? Pin
nickadams29-Jul-04 4:10
nickadams29-Jul-04 4:10 
GeneralRe: How can i stop the running Process ? Pin
Sick@work4-Aug-04 0:12
Sick@work4-Aug-04 0:12 
GeneralRe: How can i stop the running Process ? Pin
nickadams5-Aug-04 3:16
nickadams5-Aug-04 3:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.