我正在尝试编写一个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;
}
答案 0 :(得分:1)
对于IPC b / w Qt应用程序,您可以使用共享内存或本地套接字/服务器。
请查看此处的共享内存示例: