vote up 2 vote down star

If I have a windows console program written with c++, is it possible to retrieve that program's standard output, while the program is running? And if not, what would be the best way to rewrite the program? I know I could output to files and continuously check those files for updates. Is there another way? Is there a better way?

flag
Retrieve it into where? Into another program or a log file? – zebrabox Nov 6 at 12:22
into another program – blindley Nov 6 at 12:24
And that other program is also written in c++? – zebrabox Nov 6 at 12:26
Most likely. But a non-language specific solution would be best. – blindley Nov 6 at 12:35

5 Answers

vote up 0 vote down

You'd most likely need to use pipes to achieve this, and since you're using Windows, here's a link to MSDN article with an example that seems to do exactly what you wanted.

link|flag
vote up 0 vote down

If you are only interested in the program's stdout, popen() makes this pretty simple:

FILE* program_output = popen("command line to start the other program");
//read from program_output as you would read a "normal" file
//...
pclose(program_output);
link|flag
vote up 0 vote down

Yes, if you start the program yourself:

in CreateProcess, you pass a STARTUPINFO where you can specify handles for SDIN, STDOUT and STDERR. Note that oyu need to supply all three once you specify the STARTF_USESTDHANDLES flag.

Also, the handles need to be inheritable (otherwise, the child process can't access them), so the SECURITY_ATTRIBUTES basically need to look at least like this:

SECURITY_ATTRIBUTES secattr = { sizeof(SECURITY_ATTRIBUTES), NULL, TRUE };

You could open handles to disk files that contain input and receive output. Alternatively, this can be Pipes that can be read / written incrementally while the console app is running.

link|flag
vote up 1 vote down

There are some interesting articles in Code Project:

link|flag
vote up 1 vote down

If it is a ready console executable you can allways redirect it output in a file like this:

c:> echo Some text > file

or

c:> program > file

If you mean this? As your question is not exactly clear.

\\ into another program

Oh, Ok
But my first answer is also used to it. As there is also another possibility like:

c:> program1 | program2

its make a "pipe" between console programs
program2 receive on it stdin what program1 throws to stdout
Its common old-aged Unix-way practice in console programs.
And in such way NO need to rewrite programs to specifically support it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.