Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get STDOUT from a QProcess?

I thought I was going to get the output from a QProcess using the following code:

// Start the process
process.start(tr("php-cgi www/test.php"),QIODevice::ReadWrite);

// Wait for it to start
if(!process.waitForStarted())
    return 0;

// Continue reading the data until EOF reached
QByteArray data;

while(process.waitForReadyRead())
    data.append(process.readAll());

// Output the data
qDebug(data.data());
qDebug("Done!");

What I am expecting is to see the output from the program printed to the debug console, but all I see is:

Done!

I know that:

  • The program is started fine, because the message at the end is printed.
  • The program does print output because running the exact same command in the terminal produces a long string of text as expected.

What am I doing wrong here?

like image 836
Nathan Osman Avatar asked Oct 04 '10 03:10

Nathan Osman


2 Answers

Before starting your process call:

process.setProcessChannelMode(QProcess::MergedChannels);

It will cause printing everything (even STDERR output) to STDOUT output.

like image 168
Kamil Klimek Avatar answered Nov 16 '22 02:11

Kamil Klimek


Here is some clarification:

According to http://doc.qt.io/qt-5/qprocess.html#ProcessChannelMode-enum,

  • QProcess::MergedChannels: QProcess merges the output of the running process into the standard output channel (stdout). The standard error channel (stderr) will not receive any data.[...]

but

  • QProcess::ForwardedChannels: QProcess forwards the output of the running process onto the main process. Anything the child process writes to its standard output and standard error will be written to the standard output and standard error of the main process.
like image 23
Michel L Avatar answered Nov 16 '22 03:11

Michel L