使用多进程的方式改写聊天程序(有名管道)

1、思路

在这里插入图片描述

2 、步骤

步骤1:创建两个管道

makefifo fifo1 fifo2

步骤2:编写talkA.c文件

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<unistd.h>
#include<fcntl.h>

#define SIZE 128

int main(){
    int fdr=-1;
    int fdw=-1;
    int ret=-1;
    char buf[SIZE];
    //1.只读方式打开管道fifo1
    fdr=open("fifo1",O_RDONLY);
    if(-1==fdr){
        perror("open");
        return 1;
    }
    printf("以只读方式打开管道fifo1 ok...\n");

    //2.只写方式打开管道fifo2
    fdw=open("fifo2",O_WRONLY);
    if(-1==fdw){
        perror("open");
        return 1;
    }
    printf("以只写方式打开管道fifo1 ok...\n");

    //3.循环读写
    while(1){
        //读管道1
        memset(buf,0,SIZE);
        ret=read(fdr,buf,SIZE);
        if(ret<=0){
            perror("read");
            break;
        }
        printf("read:%s\n",buf);
        //写管道2
        memset(buf,0,SIZE);
        fgets(buf,SIZE,stdin);
        //去掉最后一个换行符
        if('\n'==buf[strlen(buf)-1])
            buf[strlen(buf)-1]='\0';
        ret=write(fdw,buf,strlen(buf));
        if(ret<=0){
            perror("write");
            break;
        }
    }

    //4.关闭文件描述符
    close(fdw);
    close(fdr);
    return 0;
}                                           

步骤3:编写talkB.c文件

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<unistd.h>
#include<fcntl.h>

#define SIZE 128


int main(){
    int fdr=-1;
    int fdw=-1;
    int ret=-1;
    char buf[SIZE];

    //1.只写方式打开管道fifo1
    fdw=open("fifo1",O_WRONLY);
    if(-1==fdw){
        perror("open");
        return 1;
    }
    printf("以只写方式打开管道fifo1 ok...\n");

    //2.只读方式打开管道fifo2
    fdr=open("fifo2",O_RDONLY);
    if(-1==fdr){
        perror("open");
        return 1;
    }
    printf("以只读方式打开管道fifo2 ok...\n");

    //3.循环读写
    while(1){
        //写管道fifo1
        memset(buf,0,SIZE);
        fgets(buf,SIZE,stdin);
        //去掉最后一个换行符
        if('\n'==buf[strlen(buf)-1])
            buf[strlen(buf)-1]='\0';
        ret=write(fdw,buf,strlen(buf));
        if(ret<=0){
            perror("write");
            break;
        }

        //读管道fifo2
        memset(buf,0,SIZE);
        ret=read(fdr,buf,SIZE);
        if(ret<=0){
            perror("read");
            break;
        }
        printf("read:%s\n",buf);
    }
    
    //4.关闭文件描述符
    close(fdr);
    close(fdw);
    return 0;
}
                                                    

步骤四:编写makefile同时执行talkA.c和talkB.c

 all: talkA talkB
 
 talkA:talkA.c
     gcc $< -o $@

 talkB:talkB.c
     gcc $< -o $@
 
 .PHONY:clean
 clean:
     rm -rf talkA talkB                         

在这里插入图片描述
执行结果

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值