一.无名管道:
1.管道是半双工的,数据只能向一个方向流动;需要双方通信时,需要建立起两个管道;只能用于父子进程或者兄弟进程之间(具有亲缘关系的进程)。
单独构成一种独立的文件系统:管道对于管道两端的进程而言,就是一个文件,但它不是普通的文件,它不属于某种文件系统,而是自立门户,单独构成一种文件系统,并且只存在与内存中。数据的读出和写入:一个进程向管道中写的内容被管道另一端的进程读出。写入的内容每次都添加在管道缓冲区的末尾,并且每次都是从缓冲区的头部读出数据。
2.管道的创建
由pipe()函数创建
函数原型:int pipe(int filedis[2])
当管道建立时有两个文件描述符,filedis[0]用于读管道,filedis[1]用于写管道。关闭管道,仅需将两个文件描述符关闭即可。
返回值:成功返回0,出错-1
3.通常的通信做法是在父进程中创建管道,再创建子进程。由于子进程继承了父进程打开的文件描述符,所以父子进程就可以通过创建的管道进行通信。
<span style="font-size:14px;">/*****************************************************
copyright (C), 2014-2015, Lighting Studio. Co., Ltd.
File name:
Author:ryan_jian Version:0.1 Date:10.22
Description:
Funcion List:
*****************************************************/
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include <sys/wait.h>
int main()
{
int pipe_fd[2];
pid_t pid;
char r_buf[100];
int r_num;
memset(r_buf,0,sizeof(r_buf));
if(pipe(pipe_fd) < 0)
{
printf("pipe creat error\n");
return -1;
}
if((pid = fork()) == 0)
{
printf("\n");
close(pipe_fd[1]);
sleep(3);
if(write(pipe_fd[1],"10086",5) != -1)
printf("write3 10086\n");
if((r_num = read(pipe_fd[0],r_buf,100)) > 0)
{
printf("1. %d numbers read from the pipe is %s\n",r_num,r_buf);
}
close(pipe_fd[0]);
exit(0);
}
else if(pid > 0)
{
close(pipe_fd[0]);
if(write(pipe_fd[1],"hello",5) != -1)
printf("parent write1 hello\n");
if(write(pipe_fd[1],"pipe",5) != -1)
printf("parent write2 pipe\n");
close(pipe_fd[1]);
sleep(3);
waitpid(pid,NULL,0);/*等待子进程结束*/
exit(0);
}
return 0;
}</span>
二.有名管道
1.不同于管道之处在于它提供一个路径名与之关联,以FIFO的文件形式存在于文件系统中。这样,即使与FIFO的创建进程不存在亲缘关系的进程,只要可以访问该路径,就能够彼此通过FIFO相互通信(能够访问该路径的进程以及FIFO的创建进程之间),因此,通过FIFO不相关的进程也能交换数据。值得注意的是,FIFO严格遵循先进先出(first in first out),对管道及FIFO的读总是从开始处返回数据,对它们的写则把数据添加到末尾。它们不支持诸如lseek()等文件定位操作。
2.函数原型:int mkfifo(const char *pathname, mode_t mode)
pathname: FIFO文件名
mode: 属性
一旦创建了了FIFO,就可open去打开它,可以使用open,read,close等去操作FIFO
当打开FIFO时,非阻塞标志(O_NONBLOCK)将会对读写产生如下影响:
1、没有使用O_NONBLOCK:访问要求无法满足时进程将阻塞。如试图读取空的FIFO,将导致进程阻塞;
2、使用O_NONBLOCK:访问要求无法满足时不阻塞,立即出错返回,errno是ENXIO;
/*****************************************************
copyright (C), 2014-2015, Lighting Studio. Co., Ltd.
File name:
Author:ryan_jian Version:0.1 Date: 10.22
Description:
Funcion List:
*****************************************************/
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#define FIFO "/root/1022/myfifo"
int main(int argc,char **argv)
{
int fd;
char r_buf[100];
int nread;
if((mkfifo(FIFO,O_CREAT|O_EXCL)) < 0 && (errno != EEXIST))
printf("creat error\n");
printf("preparing for reading types\n");
memset(r_buf,0,sizeof(r_buf));
fd = open(FIFO,O_RDONLY|O_NONBLOCK,0);
if(fd == -1)
{
perror("open");
exit(1);
}
while(1)
{
memset(r_buf,0,sizeof(r_buf));
if(nread = read(fd,r_buf,100) == -1)
{
if(errno == EAGAIN)
printf("no data yet\n");
}
printf("read %s from FIFO\n",r_buf);
sleep(1);
}
pause();
unlink(FIFO);
}
/*****************************************************
copyright (C), 2014-2015, Lighting Studio. Co., Ltd.
File name:
Author:ryan_jian Version:0.1 Date:10.22
Funcion List:
*****************************************************/
#include <stdio.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <fcntl.h>
#include <string.h>
#define FIFO_SERVER "/root/1022/myfifo"
main(int argc,char **argv)
{
int fd;
char w_buf[100];
int nwrite;
fd = open(FIFO_SERVER,O_WRONLY|O_NONBLOCK,0);
if(argc == 1)
{
printf("please send sth\n");
exit(-1);
}
strcpy(w_buf,argv[1]);
if(nwrite = write(fd,w_buf,100) == -1)
{
if(errno == EAGAIN)
printf("The fifo has not been read yet,please try later\n");
}
else
printf("write %s to FIFO\n",w_buf);
return 0;
}
。