Qt двусторонняя связь по каналу с исполняемым Linux - PullRequest
1 голос
/ 14 марта 2012

Я пытаюсь написать приложение Qt GUI, которое может связываться с созданным мной исполняемым файлом, который обрабатывает информацию из приложения Qt GUI.

Я понимаю и смог реализовать односторонний конвейер popen (), который позволяет мне отправлять информацию только в утилиту командной строки, но вывод появляется только в окне вывода приложения в нижней части окна Qt .

Я искал в интернете и думаю, что мне нужно использовать два канала с fork () и exec ().

Мой вопрос: кто-нибудь знает, где хороший учебник для этого или несколько примеров, или кто-нибудь может показать мне код для достижения этой цели.

Спасибо.

EDIT ::

У меня есть этот код здесь, но я не понимаю, куда мне его поместить. Если я вставлю в свое приложение Qt GUI, закрывающие каналы возвращают ошибки.

ИЗМЕНИТЬ СНОВА ::

Это событие нажатия моей кнопки в Qt GUI. Однако я получаю много ошибок, говорящих, что что-то не так с закрытыми деталями трубы.

mainwindow.cpp:85: error: no matching function for call to ‘MainWindow::close(int&)’

что не так с закрытыми деталями трубы?

void MainWindow::on_pushButton_clicked()
{
    QString stringURL = ui->lineEdit->text();

    ui->labelError->clear();
    if(stringURL.isEmpty() || stringURL.isNull()) {
        ui->labelError->setText("You have not entered a URL.");
        stringURL.clear();
        return;
    }

    std::string cppString = stringURL.toStdString();
    const char* cString = cppString.c_str();

    char* output;

    //These arrays will hold the file id of each end of two pipes
    int fidOut[2];
    int fidIn[2];

    //Create two uni-directional pipes
    int p1 = pipe(fidOut);                  //populates the array fidOut with read/write fid
    int p2 = pipe(fidIn);                   //populates the array fidIn  with read/write fid
    if ((p1 == -1) || (p2 == -1)) {
        printf("Error\n");
        return 0;
    }

    //To make this more readable - I'm going to copy each fileid
    //into a semantically more meaningful name
    int parentRead  = fidIn[0];
    int parentWrite = fidOut[1];
    int childRead   = fidOut[0];
    int childWrite  = fidIn[1];

    //////////////////////////
    //Fork into two processes/
    //////////////////////////
    pid_t processId = fork();

    //Which process am I?
    if (processId == 0) {
        /////////////////////////////////////////////////
        //CHILD PROCESS - inherits file id's from parent/
        /////////////////////////////////////////////////
        close(parentRead);      //Don't need these
        close(parentWrite);     //

        //Map stdin and stdout to pipes
        dup2(childRead,  STDIN_FILENO);
        dup2(childWrite, STDOUT_FILENO);

        //Exec - turn child into sort (and inherit file id's)
        execlp("htmlstrip", "htmlstrip", "-n", NULL);

    } else {
        /////////////////
        //PARENT PROCESS/
        /////////////////
        close(childRead);       //Don't need this
        close(childWrite);      //

        //Write data to child process
        char strMessage[] = cString;
        write(parentWrite, strMessage, strlen(strMessage));
        close(parentWrite);     //this will send an EOF and prompt sort to run

        //Read data back from child
        char charIn;
        while ( read(parentRead, &charIn, 1) > 0 ) {
            output = output + (charIn);
        }
        close(parentRead);      //This will prompt the child process to quit
    }

    return 0;
}

1 Ответ

1 голос
/ 14 марта 2012

Для IPC-ч / б приложений Qt вы можете выбрать общую память или локальные сокеты / сервер.

Посмотрите на пример общей памяти здесь:

http://www.developer.nokia.com/info/sw.nokia.com/id/ad9f51ff-c18f-4bd7-8bb8-cd9681704783/Qt_QSharedMemory_Example_v1_2_en.zip.html

...