linux 命名管道

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

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

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

#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函数创建了⼀个命名管道:

umask(0);

if (mknod("/tmp/fifo",S_IFIFO | 0666) == -1)

{

perror("mkfifo error");

exit(1);

}   

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

umask(0);

if (mkfifo("/tmp/fifo",S_IFIFO|0666) == -1)

{

perror("mkfifo error!");

exit(1);

}

下面为一个试例:

read端

#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端:

#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;
}
打开两个终端:

 




  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值