(二十七)进程间通信——fifo有名管道

  上一篇博客已经介绍了一种进程间通信的方式,但是那只是针对于有血缘关系的进程,即父子进程间的通信,那对于没有血缘关系的进程,那要怎么通信呢?
  这就要创建一个有名管道,来解决无血缘关系的进程通信, fifo:

book@ubuntu:~$ mkfifo xwp
book@ubuntu:~$ ls -l myfifo 
prw-rw-r-- 1 book book 0 Feb  6  2016 myfifo

mkfifo 既有命令也有函数

#include <sys/types.h>
#include <sys/stat.h>

int mkfifo(const char *pathname, mode_t mode);

举例:

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

void sys_err(char *str, int exitno)
{
    perror(str);
    exit(exitno);
}

int main(int argc,char *argv[])
{
    int fd, len;
    char buf[1024] = "hello world\n";
    if(argc < 2)
    {
        printf("./app myfifo\n");
        exit(1);
    }

    fd = open(argv[1],O_WRONLY);
    if(fd < 0)
        sys_err("open",1);

    write(fd, buf, strlen(buf));
    close(fd);

    return 0;
}




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

void sys_err(char *str, int exitno)
{
    perror(str);
    exit(exitno);
}

int main(int argc,char *argv[])
{
    int fd, len;
    char buf[1024] = {0};
    if(argc < 2)
    {
        printf("./app myfifo\n");
        exit(1);
    }

    fd = open(argv[1],O_RDONLY);
    if(fd < 0)
        sys_err("open",1);

    read(fd, buf, sizeof(buf));
    write(STDOUT_FILENO, buf, strlen(buf));
    close(fd);

    return 0;
}


操作方法:
分别编译成可执行程序:fifo_write 和 fifo_read 
在一个终端下输入    ./fifo_write myfifo
在另一个终端下输入  ./fifo_read myfifo
即可观察到结果

注:

  • 当只写打开FIFO管道时,该FIFO没有读端打开,则open写打开会阻塞
  • FIFO内核实现时可以支持双向通信。(pipe单向通信,因为父子进程共享同一个file结构体)
  • FIFO可以一个读端,多个写端;也可以一个写端,多个读端。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值