我是靠谱客的博主 勤劳冥王星,最近开发中收集的这篇文章主要介绍Linux系统编程--命名管道,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

上一节我谈到匿名管道,适合在有亲缘的进程上使用,这节我们谈及一下命名管道(FIFO)。

命名管道定义

命名管道是一个设备文件,因此即使两个进程不存在亲缘关系, 可以访问该路径,就能通过FIFO相互通讯。

FIFO先进先出,是半双工通讯。

下面就聊聊命名管道相关函数

函数名作用返回值注意 
mkfifo创建管道

0:成功

-1:失败

  
open打开管道成功返回文件描述符,失败则返回-1  
write写入管道成功返回写入字节数,失败返回0或者-1  
read读管道成功返回读取字节数,失败返回0或者-1  

下面我们直接看demo代码。

首先我们创建一个pipe1.c代码,用来创建管道和写入

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
int main(){
    int ret = mkfifo("./fifo",S_IFIFO|644);//创建管道
    if(ret < 0){
        perror("mkfifo error");
        exit(1);
    }
    int fd = open("./fifo",O_WRONLY);//打开管道
    if(fd <  0){
        perror("open error");
        exit(1);
    }
    char buf[BUFSIZ]="HELLO WORLD";
    while(1){
        ret = write(fd,buf,strlen(buf));//写入管道
        sleep(1);
    }
    
}

然后我们创建一个pipe2.c文件,用来读取管道

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

int main(){
    int fd = open("./fifo",O_RDONLY);
    if (fd < 0){
        perror("open error");
        exit(1);
    }
    while(1){
        char buf[BUFSIZ]={0};
        int ret = read(fd,buf,sizeof(buf));
        if(ret>0){
            printf("read buffer =%srn",buf);
        }
    }
    
}

执行以上代码,发现执行pipe2.c代码,会收到pipe1.c代码发来的数据。在文件夹下也找到"fifo"文件,说明命名管道其实是文件操作。

最后

以上就是勤劳冥王星为你收集整理的Linux系统编程--命名管道的全部内容,希望文章能够帮你解决Linux系统编程--命名管道所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部