QProcess无法触发sigal readyRead / readyReadStandardOutput / readyReadStandardError

时间:2019-01-13 15:13:00

标签: c++ qt

为什么当我运行以下命令时我永远都没有得到readyRead / readyReadStandardOutput / readyReadStandardError信号?我在console中得到所有输出。我正在使用Qt4.8应用程序在lubuntu 16.04 64bit中调用子进程。这个问题困扰了我很长时间。我曾经在win7上尝试过相同的代码效果很好。

主窗口头文件:

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QProcess>
namespace Ui {
    class MainWindow;
}

class MainWindow : public QMainWindow
{
        Q_OBJECT

    public:
        explicit MainWindow(QWidget *parent = 0);
        ~MainWindow();
        QProcess* process;
    private slots:
        void on_pushButton_clicked();
        void OnRead();
    private:
        Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H

主窗口源:

#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QProcess>
#include <QDebug>
MainWindow::MainWindow(QWidget* parent)
    : QMainWindow(parent)
    , ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    process = new QProcess(this);
    bool result = connect(process, SIGNAL(readyRead()), SLOT(OnRead()));
    qDebug() << result;
    connect(process, SIGNAL(readyReadStandardOutput()), this, SLOT(OnRead()));
    connect(process, SIGNAL(readyReadStandardError()), this, SLOT(OnRead()));
    process->setProcessChannelMode(QProcess::ForwardedChannels);
    process->start("/home/albert/test");
}

MainWindow::~MainWindow()
{
    delete ui;
}

void MainWindow::on_pushButton_clicked()
{
}
void MainWindow::OnRead()
{
    qDebug() << "can read";
}

测试代码在这里:

#include <sys/timerfd.h>
#include <time.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h> /* Definition of uint64_t */
#include <iostream>

int main(int argc, char* argv[])
{
    while (1) {
        std::cout << "hello world!0";
        printf("hello world!\n");
        fprintf(stderr, "hello world error!\n");
        fflush(stdout);
        sleep(1);
    }
    return 0;
}

1 个答案:

答案 0 :(得分:0)

根据我的评论,使用setProcessChannelMode(QProcess::ForwardedChannels)会导致以下behaviour ...

  

QProcess将正在运行的进程的输出转发到主进程上   处理。子进程写入其标准输出的所有内容,以及   标准错误将写入标准输出和标准   主要过程错误。

关于为什么它可能在Windows上生成各种readyRead*信号的原因,我只能猜测,如果父进程实际上没有任何与之关联的控制台(例如GUI进程),那么对{{ 1}}会被忽略,从而使您保留默认的频道模式setProcessChannelMode

关于输出中多余的双引号,这就是QProcess::SeparateChannels对某些类型(例如QByteArray, QString等)的作用。如果要删除引号,请尝试...

qDebug