用有名管道实现进程AB之间的对话

题目

#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;
 }
                                                                                                        

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值