进程通信之fifo

  1. 目的
    1. 进程通信是比较常用的一种场景,当一个进程在运行中,可以通过另一个进程,发送控制命令到该进程。
  2. 含义
    1. fifo格式的文件,和管道类似,只是它是作为文件系统的一部分被访问。
    2. 一个fifo文件可以被多个进程读或者写,当进程通过fifo交互数据,内核直接将数据端到端传输,而不会写入到文件系统。因此,fifo类型的文件在文件系统里并没有内容。
    3. fifo只有在读和写进程端都被打开,才能传输数据。
    4. 进程可以以非阻塞方式打开fifo,通常是默认的阻塞方式。
  3. 方法
    1. 判断是否已经有fifo
    2. 创建fifo
    3. 打开fifo
    4. 读fifo,将内容打印出来
    5. #include <unistd.h>
      #include <signal.h>
      #include <sys/types.h>
      #include <sys/stat.h>
      #include <fcntl.h>           /* Definition of AT_* constants */
      #include <sys/stat.h>
      #include <errno.h>
      
      static int quit_flag = 0;
      char buf[1024];
      char *fn="nod";
      int fd = 0;
      
      void sig(int x)
      {
          printf("%s\n", __func__);
          quit_flag = 1;
          write(fd, buf, 2);
      }
      
      int main(char argc, char **argv)
      {
          signal(SIGINT, sig);
      
          if(access(fn, F_OK|R_OK|W_OK) != 0){
              unlink(fn);
          }
      
          if(mkfifo(fn, S_IWUSR|S_IRUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH) < 0){
              printf("failed to create fifo\n");
          }
      
          if ((fd = open(fn, O_RDWR)) < 0){
              printf("failed to open\n");
          }
      
          while(!quit_flag){
              int len = read(fd, buf, sizeof(buf));
              printf("len:%d buf:%s\n", len, buf);
          }
      }
  4. 运行结果
    1. 另外打开一个终端:echo 1 > nod
    2. 在执行程序的终端,打印: len:2 buf:1
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值