[Linux进程间通信]FIFO

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Linux进程间通信]FIFO相关的知识,希望对你有一定的参考价值。

参考技术A

作用: 用于在不相关的进程间交换数据

创建FIFO

当打开一个FIFO时,非阻塞标志(O_NONBLOK)产生下列影响:

FIFO有下面两种用途

常量PIPE_BUF说明了一次性写到FIFO的最大数据量,以确保操作的原子性

linux系统编程:进程间通信-fifo

                          进程间通信-fifo

进程间通信的还有一种方式是fifo。

fifo是还有一种管道:有名管道。从名字能够看出。它也是队列。

使用fifo通信前,得先创建fifo

$ mkfifo myfifo


随后仅仅需对myfifo像文件一样使用即可。

fifo_w.c

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/fcntl.h>
struct stu
{
	int id;
	char name[20];
};
int main(int argc, char **argv)
{
	if(argc != 2)
	{
		fprintf(stderr, "usage:./app fifo\n");
		exit(1);
	}
	int fd;
	if((fd = open(argv[1], O_WRONLY)) < 0)
	{
		fprintf(stderr, "open:can not open file:%s\n", argv[1]);
		exit(1);
	}
	struct stu zx = {0, "zhangxiang"};
	int id = 0;
	while(1)
	{
		id++;
		zx.id = id;
		write(fd, &zx, sizeof(zx));	
		sleep(1);
	}
	close(fd);
	return 0;
}

fifo_r.c

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/fcntl.h>
struct stu
{
	int id;
	char name[20];
};
int main(int argc, char **argv)
{
	if(argc != 2)
	{
		fprintf(stderr, "usage:./app fifo");
		exit(1);
	}
	int fd;
	if((fd = open(argv[1], O_RDONLY)) < 0)
	{
		fprintf(stderr, "open:can not open file:%s", argv[1]);
		exit(1);
	}
	struct stu zx;
	while(1)
	{
		read(fd, &zx, sizeof(zx));	
		printf("id=%d,name=%s\n", zx.id, zx.name);
		sleep(1);
	}
	close(fd);
	return 0;
}


測试

$ gcc fifo_w.c -o fifo_w
$ gcc fifo_r.c -o fifo_r
$ fifo_w myfifo
//另开一终端
$ fifo_r myfifo
id=1,name=zhangxiang
id=2,name=zhangxiang
id=3,name=zhangxiang
id=4,name=zhangxiang
id=5,name=zhangxiang
id=6,name=zhangxiang
id=7,name=zhangxiang
id=8,name=zhangxiang
^c 



以上演示样例中,一个进程不断地向fifo中写入结构体类型的数据。还有一个进程不断地从fifo中读出数据。从而达到进程间的通信。



CCPP Blog 文件夹











以上是关于[Linux进程间通信]FIFO的主要内容,如果未能解决你的问题,请参考以下文章

linux系统编程:进程间通信-fifo

Linux系统编程——进程间通信:命名管道(FIFO)

简述Linux进程间通信之命名管道FIFO

[Linux进程间通信]FIFO

Linux 进程间通信之管道(pipe),(fifo)

linux 进程间通信 命名管道FIFO的原理与使用