服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Linux - linux 命名管道实例详解

linux 命名管道实例详解

2022-01-24 17:12魏尔肖 Linux

这篇文章主要介绍了linux 命名管道实例详解的相关资料,需要的朋友可以参考下

linux进程间通信——命名管道

  fifo(命名管道)不同于匿名管道之处在于它提供⼀个路径名与之关联,以fifo的⽂件形式存储于⽂件系统中。命名管道是⼀个设备⽂件,因此,即使进程与创建fifo的进程不存在亲缘关系,只要可以访问该路径,就能够通过fifo相互通信。值得注意的是,fifo(first input first output)总是按照先进先出的原则⼯作,第⼀个被写⼊的数据将⾸先从管道中读出。

  创建命名管道的系统函数有两个:mknod和mkfifo。两个函数均定义在头⽂件sys/stat.h,函数原型如下:

?
1
2
3
4
#include <sys/types.h>
#include <sys/stat.h>
int mknod(const char *path,mode_t mod,dev_t dev);
int mkfifo(const char *path,mode_t mode);

   函数mknod参数中path为创建的命名管道的全路径名:mod为创建的命名管道的模式,指明其存取权限;dev为设备值,该值取决于⽂件创建的种类,它只在创建设备⽂件时才会⽤到。这两个函数调⽤成功都返回0,失败都返回-1。下⾯使⽤mknod函数创建了⼀个命名管道:

?
1
2
3
4
5
6
7
8
9
10
11
umask(0);
 
if (mknod("/tmp/fifo",s_ififo | 0666) == -1)
 
{
 
perror("mkfifo error");
 
exit(1);
 
}

 函数mkfifo前两个参数的含义和mknod相同。下⾯是使⽤mkfifo的⽰例代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
umask(0);
 
if (mkfifo("/tmp/fifo",s_ififo|0666) == -1)
 
{
 
 
perror("mkfifo error!");
 
exit(1);
 
}

下面为一个试例:

read端

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include<stdlib.h>
#include<stdio.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<fcntl.h>
#include<errno.h>
#define path "./fifo"
#define size 128
int main()
{
 umask(0);
 if (mkfifo (path,0666|s_ififo) == -1)
 {
 perror ("mkefifo error");
 exit(0);
 }
 int fd = open (path,o_rdonly);
 if (fd<0)
 {
  printf("open fd is error\n");
  return 0;
 }
 
 char buf[size];
 while(1){
 ssize_t s = read(fd,buf,sizeof(buf));
 if (s<0)
 {
  perror("read error");
  exit(1);
 }
 else if (s == 0)
 {
  printf("client quit! i shoud quit!\n");
  break;
 }
 else
 {
  buf[s] = '\0';
  printf("client# %s ",buf);
  fflush(stdout);
 }
 }
 close (fd);
 return 3;
}

下面为weite端:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include<stdlib.h>
#include<stdio.h>
#include<unistd.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<string.h>
#include<errno.h>
#include<fcntl.h>
 
#define path "./fifo"
#define size 128
int main()
{
 int fd = open(path,o_wronly);
 if (fd < 0)
 {
  perror("open error");
  exit(0);
 }
 
 char buf[size];
 while(1)
 {
  printf("please enter#:");
  fflush(stdout);
  ssize_t s = read(0,buf,sizeof(buf));
  if (s<0)
  {
   perror("read is failed");
   exit(1);
  }
  else if(s==0)
  {
   printf("read is closed!");
   return 1;
  }
  else{
   buf[s]= '\0';
   write(fd,buf,strlen(buf));
  }
 }
 return 0;
}

打开两个终端:

 linux 命名管道实例详解linux 命名管道实例详解

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

原文链接:http://blog.csdn.net/qq_35116353/article/details/59117339

延伸 · 阅读

精彩推荐
  • Linuxlinux top命令详解

    linux top命令详解

    这篇文章主要介绍了linux top命令详解,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    sparkdev5622022-03-01
  • Linux将 Linux 终端与 Nautilus 文件管理器结合起来

    将 Linux 终端与 Nautilus 文件管理器结合起来

    Nautilus 是 GNOME 桌面环境中的图形化文件浏览器。你可以使用它来访问和管理系统中的文件和文件夹。 尽管并非所有人都喜欢使用终端来管理文件和目录,...

    未知812023-08-08
  • Linuxlinux驱动程序开发详细介绍

    linux驱动程序开发详细介绍

    前提,一般来说内核代码的错误可能会引起一个用户进程的死亡,或者整个系统的瘫痪,更严重的后果,可能导致磁盘损伤~因此建议最好有一台实验机进行...

    Linux教程网5392019-12-17
  • Linuxlinux设置tomcat自启动的方法

    linux设置tomcat自启动的方法

    这篇文章主要介绍了linux设置tomcat自启动的方法,需要的朋友可以参考下...

    Linux教程网8512021-10-10
  • Linuxssh 登录很慢该如何解决

    ssh 登录很慢该如何解决

    这篇文章主要介绍了ssh 登录很慢该如何解决的相关资料,这里提供了两种方法,DNS反向解析及关闭ssh的gssapi认证的解决办法,需要的朋友可以参考下...

    linuxeye9922021-12-16
  • Linux在Linux系统中创建新的亚马逊AWS访问密钥的方法

    在Linux系统中创建新的亚马逊AWS访问密钥的方法

    如何在Linux系统中创建新的亚马逊AWS访问密钥?我在配置一个需要访问我的亚马逊AWS帐号的应用时被要求提供AWS访问密钥ID和秘密访问密钥,我怎样创建一个...

    Linux教程网6182019-10-30
  • Linux理解 Linux/Unix 登录脚本的技巧

    理解 Linux/Unix 登录脚本的技巧

    有一些常见的情况,例如从Debian的包管理程序到Iaas的管理中,很多任务需要设置环境变量才能正常运行。 有时,程序通常只需要在 登陆时运行一次,例如...

    未知1042023-05-12
  • LinuxLinux系统下无法卸载挂载的目录怎么办?

    Linux系统下无法卸载挂载的目录怎么办?

    我们在日常运维中经常性会遇到需要进行磁盘的扩容、卸载、挂载等操作,但是有时候这个系统上跑的应用并没有停止或者有其他的运维同事在操作这个目...

    今日头条10302020-12-30