题目
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>
int main(int argc, const char *argv[])
{
//创建一个有名管道文件
if(mkfifo("./FIFO",0664)<0)
{
//当管道文件存在时,不报错退出
if(errno!=17)
{
perror("mkfifo");
return -1;
}
}
//创建一个有名管道文件
if(mkfifo("./FIFF",0664)<0)
{
//当管道文件存在时,不报错退出
if(errno!=17)
{
perror("mkfifo");
return -1;
}
}
printf("mkfifo success\n");
int fd1 = open("./FIFO",O_RDONLY);
int fd2 = open("./FIFF",O_WRONLY);
if(fd1<0)
{
perror("open");
return-1;
}
if(fd2<0)
{
perror("open");
return-1;
}
char buf[128];
ssize_t res;
while(1)
{
/********获取进程A写入管道1中的数据**************/
bzero(buf,sizeof(buf));
res = read(fd1,buf,sizeof(buf));
if(res<0)
{
perror("read");
return -1;
}
else if(res == 0)
{
printf("写关闭,管道中没有数据\n");
break;
}
printf("%ld : %s\n",res,buf);
/***************进程B将数据写入管道2中*****************************/
char str[100];
fgets(str,sizeof(str),stdin);
str[strlen(str)-1]='\0';
if(write(fd2,str,sizeof(str))<0)
{
perror("write");
return-1;
}
if(0 == strcmp(str,"quit"))
{
break;
}
}
return 0;
}
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
int main(int argc, const char *argv[])
{
//创建一个有名管道文件
if(mkfifo("./FIFO",0664)<0)
{
//当管道文件存在时,不报错退出
if(errno!=17)
{
perror("mkfifo");
return -1;
}
}
//创建一个有名管道文件
if(mkfifo("./FIFF",0664)<0)
{
//当管道文件存在时,不报错退出
if(errno!=17)
{
perror("mkfifo");
return -1;
}
}
printf("mkfifo success\n");
int fd1 = open("./FIFO",O_WRONLY);
int fd2 = open("./FIFF",O_RDONLY);
if(fd1<0)
{
perror("open");
return-1;
}
if(fd2<0)
{
perror("open");
return-1;
}
printf("open success\n");
char buf[128]="";
ssize_t res;
while(1)
{
/****************进程A写入管道1的数据******************/
fgets(buf,sizeof(buf),stdin);
buf[strlen(buf)-1]='\0';
if(write(fd1,buf,sizeof(buf))<0)
{
perror("write");
return -1;
}
if(0 == strcmp(buf,"quit"))
{
break;
}
/************获取进程B写入管道2中的数据**************/
char str[100];
bzero(str,sizeof(str));
res = read(fd2,str,sizeof(str));
if(res<0)
{
perror("read");
return -1;
}
else if(res == 0)
{
printf("管道2中没有数据!\n");
break;
}
printf("%ld : %s\n",res,str);
}
return 0;
}