FIFO(先进先出)命名管道,用于无关系进程间的通信,因为Linux中所有事物都是文件,它在文件系统中以文件名的形式存在。
创建管道用函数(const char * pathname,mode_t mode);函数说明:pathname参数为创建实名文件的绝对地址。参数mode为该文件的权限。
1、当使用O_NONBLOCK 旗标时,打开FIFO 文件来读取的操作会立刻返回,但是若还没有其他进程打开FIFO 文件来读取,则写入的操作会返回ENXIO 错误代码。
2、没有使用O_NONBLOCK 旗标时,打开FIFO 来读取的操作会等到其他进程打开FIFO文件来写入才正常返回。同样地,打开FIFO文件来写入的操作会等到其他进程打开FIFO 文件来读取后才正常返回。
该函数返回值为0表示成功,返回-1表示错误,错误原因存在于error中
错误代码:
EACCESS 参数pathname所指定的目录路径无可执行的权限
EEXIST 参数pathname所指定的文件已存在。
ENAMETOOLONG 参数pathname的路径名称太长。
ENOENT 参数pathname包含的目录不存在
ENOSPC 文件系统的剩余空间不足
ENOTDIR 参数pathname路径中的目录存在但却非真正的目录。
EROFS 参数pathname指定的文件存在于只读文件系统内。
实例如下:
//ReadClient
#include <iostream>
#include "stdio.h"
#include "sys/types.h"
#include "sys/stat.h"
#include "fcntl.h"
#include "string.h"
#define FIFO "/home/flc/srvfifo1.tmp1"//文件的绝对路径
using namespace std;
int main() {
int fd;
char buff[48];
unlink(FIFO);
if (mkfifo(FIFO, 0666) < 0)/*新创建的FIFO模式*/
{
printf("create error!\n");
return -1;
}
fd = open(FIFO, O_RDONLY); //设为阻塞模式
if (fd == -1) {
printf("open error!\n");
return -1;
}
while(1){
memset(buff, 0, sizeof(buff));
if(read(fd, buff, sizeof(buff))>0)
{
printf("read data is %s\n", buff);
}
}
return 0;
}
//client
#include <iostream>
#include "stdio.h"
#include "sys/types.h"
#include "sys/stat.h"
#include "fcntl.h"
#include "string.h"
#define FIFO "/home/flc/srvfifo1.tmp1"
using namespace std;
int main() {
int fd;
char buff[32];
fd = open(FIFO, O_WRONLY); //设为阻塞模式
if (fd == -1) {
printf("open error!\n");
return -1;
}
while(1)
{
memset(buff, 0, sizeof(buff));
cout<<"请输入数据:"<<endl;
cin>>buff;
if (write(fd, buff, strlen(buff)) == -1) {
printf("open error!\n");
return -1;
}
}
return 0;
}
编译ReadClient和Client ,先运行ReadClient,然后运行Client。