我使用以下程序写入fifo:
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
using namespace std;
int main() {
unlink("fifo1");
if (mkfifo("fifo1", 0666) != 0) {
cout << "Error while creating fifo" << endl;
return 1;
}
else {
cout << "Fifo created" << endl;
}
int fd = open("fifo1", O_WRONLY);
if(fd == -1) {
cout << "Could not open file" << endl;
return 1;
}
else {
cout << "Fifo opened" << endl;
}
int i=0;
char* buffer = new char[20];
while(true) {
sprintf(buffer, "look: %i\n", i++);
int r = write(fd, buffer, strlen(buffer));
if(r == -1) {
cout << "Fifo Error:" << fd << endl;
}
else {
cout << "Wrote: " << i << "(" << r << "B)"<< endl;
}
sleep(1);
}
return 0;
}
如果我启动此程序,请启动另一个shell并键入
cat < fifo1
我可以看到程序向管道写入了一些内容,我可以在阅读shell中看到输出。如果我用CTRL ^ C停止cat命令,FIFO Writer也会终止,没有错误消息。这是什么原因?为什么没有抛出错误?
奇怪的是,如果我用Eclipse CDT启动上面的代码并且用CTRL ^ C关闭了阅读shell,程序将继续打印“Error:3”。
期待您的想法, 海因里希·
答案 0 :(得分:3)
如果在管道另一端关闭时写入管道,SIGPIPE将被传送到您的流程。如果没有安装信号处理程序,这将立即终止您的进程。通常这是输出,我不知道为什么看不到这一点。
如果您更喜欢检查写入的错误代码而不是代码建议的获取SIGPIPE,则必须忽略SIGPIPE:
#include <signal.h>
signal( SIGPIPE, SIG_IGN );