Linux系统编程——进程间通信:管道(pipe)

目录(?)[+]

管道的概述

管道也叫无名管道,它是是 UNIX 系统 IPC(进程间通信) 的最古老形式,所有的 UNIX 系统都支持这种通信机制。


无名管道有如下特点:

1、半双工,数据在同一时刻只能在一个方向上流动。

2、数据只能从管道的一端写入,从另一端读出。

3、写入管道中的数据遵循先入先出的规则。

4、管道所传送的数据是无格式的,这要求管道的读出方与写入方必须事先约定好数据的格式,如多少字节算一个消息等。

5、管道不是普通的文件,不属于某个文件系统,其只存在于内存中。

6、管道在内存中对应一个缓冲区。不同的系统其大小不一定相同。

7、从管道读数据是一次性操作,数据一旦被读走,它就从管道中被抛弃,释放空间以便写更多的数据。

8、管道没有名字,只能在具有公共祖先的进程(父进程与子进程,或者两个兄弟进程,具有亲缘关系)之间使用。 


对于无名管道特点的理解,我们可以类比现实生活中管子,管子的一端塞东西,管子的另一端取东西。


无名管道是一种特殊类型的文件,在应用层体现为两个打开的文件描述符。



管道的操作

所需头文件:

#include <unistd.h>


int pipe(int filedes[2]);

功能:

创建无名管道。

参数:

filedes: 为 int 型数组的首地址,其存放了管道的文件描述符 filedes[0]、filedes[1]。


当一个管道建立时,它会创建两个文件描述符 fd[0] 和 fd[1]。其中 fd[0] 固定用于读管道,而 fd[1] 固定用于写管道。一般文件 I/O 的函数都可以用来操作管道( lseek() 除外)。

返回值:

成功:0

失败:-1


下面我们写这个一个例子,子进程通过无名管道给父进程传递一个字符串数据:

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #include <stdio.h>  
  2. #include <string.h>  
  3. #include <unistd.h>  
  4. #include <stdlib.h>  
  5. #include <sys/types.h>  
  6. #include <sys/wait.h>  
  7.   
  8. int main(int argc, char *argv[])  
  9. {  
  10.     int fd_pipe[2] = {0};  
  11.     pid_t pid;  
  12.       
  13.     if( pipe(fd_pipe) < 0 ){// 创建无名管道  
  14.         perror("pipe");  
  15.     }  
  16.       
  17.     pid = fork(); // 创建进程  
  18.     if( pid < 0 ){ // 出错  
  19.         perror("fork");  
  20.         exit(-1);  
  21.     }  
  22.       
  23.     if( pid == 0 ){ // 子进程  
  24.         char buf[] = "I am mike";  
  25.         // 往管道写端写数据  
  26.         write(fd_pipe[1], buf, strlen(buf));  
  27.           
  28.         _exit(0);  
  29.     }else if( pid > 0){// 父进程  
  30.         wait(NULL); // 等待子进程结束,回收其资源  
  31.           
  32.         char str[50] = {0};  
  33.           
  34.         // 从管道里读数据  
  35.         read(fd_pipe[0], str, sizeof(str));  
  36.           
  37.         printf("str=[%s]\n", str); // 打印数据  
  38.     }  
  39.       
  40.     return 0;  
  41. }  

运行结果如下:



管道的特点

每个管道只有一个页面作为缓冲区,该页面是按照环形缓冲区的方式来使用的。这种访问方式是典型的“生产者——消费者”模型。当“生产者”进程有大量的数据需要写时,而且每当写满一个页面就需要进行睡眠等待,等待“消费者”从管道中读走一些数据,为其腾出一些空间。相应的,如果管道中没有可读数据,“消费者” 进程就要睡眠等待,具体过程如下图所示:


默认的情况下,从管道中读写数据,最主要的特点就是阻塞问题(这一特点应该记住)当管道里没有数据,另一个进程默认用 read() 函数从管道中读数据是阻塞的


测试代码如下:

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #include <stdio.h>  
  2. #include <string.h>  
  3. #include <unistd.h>  
  4. #include <stdlib.h>  
  5. #include <sys/types.h>  
  6. #include <sys/wait.h>  
  7.   
  8. int main(int argc, char *argv[])  
  9. {  
  10.     int fd_pipe[2] = {0};  
  11.     pid_t pid;  
  12.       
  13.     if( pipe(fd_pipe) < 0 ){// 创建无名管道  
  14.         perror("pipe");  
  15.     }  
  16.       
  17.     pid = fork(); // 创建进程  
  18.     if( pid < 0 ){ // 出错  
  19.         perror("fork");  
  20.         exit(-1);  
  21.     }  
  22.       
  23.     if( pid == 0 ){ // 子进程  
  24.           
  25.         _exit(0);  
  26.     }else if( pid > 0){// 父进程  
  27.       
  28.         wait(NULL); // 等待子进程结束,回收其资源  
  29.           
  30.         char str[50] = {0};  
  31.           
  32.         printf("before read\n");  
  33.           
  34.         // 从管道里读数据,如果管道没有数据, read()会阻塞  
  35.         read(fd_pipe[0], str, sizeof(str));  
  36.           
  37.         printf("after read\n");  
  38.           
  39.         printf("str=[%s]\n", str); // 打印数据  
  40.     }  
  41.       
  42.     return 0;  
  43. }  

运行结果如下:


当然,我们编程时可通过 fcntl() 函数设置文件的阻塞特性。

设置为阻塞:fcntl(fd, F_SETFL, 0);

设置为非阻塞:fcntl(fd, F_SETFL, O_NONBLOCK);


测试代码如下:

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #include <stdio.h>  
  2. #include <string.h>  
  3. #include <unistd.h>  
  4. #include <stdlib.h>  
  5. #include <sys/types.h>  
  6. #include <sys/wait.h>  
  7. #include <fcntl.h>  
  8.   
  9. int main(int argc, char *argv[])  
  10. {  
  11.     int fd_pipe[2] = {0};  
  12.     pid_t pid;  
  13.       
  14.     if( pipe(fd_pipe) < 0 ){// 创建无名管道  
  15.         perror("pipe");  
  16.     }  
  17.       
  18.     pid = fork(); // 创建进程  
  19.     if( pid < 0 ){ // 出错  
  20.         perror("fork");  
  21.         exit(-1);  
  22.     }  
  23.       
  24.     if( pid == 0 ){ // 子进程  
  25.           
  26.         sleep(3);  
  27.           
  28.         char buf[] = "hello, mike";  
  29.         write(fd_pipe[1], buf, strlen(buf)); // 写数据  
  30.           
  31.         _exit(0);  
  32.     }else if( pid > 0){// 父进程  
  33.       
  34.         fcntl(fd_pipe[0], F_SETFL, O_NONBLOCK); // 非阻塞  
  35.         //fcntl(fd_pipe[0], F_SETFL, 0); // 阻塞  
  36.           
  37.         while(1){  
  38.             char str[50] = {0};  
  39.             read( fd_pipe[0], str, sizeof(str) );//读数据  
  40.               
  41.             printf("str=[%s]\n", str);  
  42.             sleep(1);  
  43.         }  
  44.     }  
  45.       
  46.     return 0;  
  47. }  

运行结果如下:



默认的情况下,从管道中读写数据,还有如下特点(知道有这么回事就够了,不用刻意去记这些特点):

1)调用 write() 函数向管道里写数据,当缓冲区已满时 write() 也会阻塞。


测试代码如下:

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #include <stdio.h>  
  2. #include <string.h>  
  3. #include <unistd.h>  
  4. #include <stdlib.h>  
  5. #include <sys/types.h>  
  6. #include <sys/wait.h>  
  7.   
  8. int main(int argc, char *argv[])  
  9. {  
  10.     int fd_pipe[2] = {0};  
  11.     pid_t pid;  
  12.       
  13.     char buf[1024] = {0};  
  14.     memset(buf, 'a'sizeof(buf)); // 往管道写的内容  
  15.     int i = 0;  
  16.       
  17.     if( pipe(fd_pipe) < 0 ){// 创建无名管道  
  18.         perror("pipe");  
  19.     }  
  20.       
  21.     pid = fork(); // 创建进程  
  22.     if( pid < 0 ){ // 出错  
  23.         perror("fork");  
  24.         exit(-1);  
  25.     }  
  26.       
  27.     if( pid == 0 ){ // 子进程  
  28.         while(1){  
  29.             write(fd_pipe[1], buf, sizeof(buf));  
  30.             i++;  
  31.             printf("i ======== %d\n", i);  
  32.         }  
  33.           
  34.         _exit(0);  
  35.     }else if( pid > 0){// 父进程  
  36.       
  37.         wait(NULL); // 等待子进程结束,回收其资源  
  38.     }  
  39.       
  40.     return 0;  
  41. }  

运行结果如下:



2)通信过程中,别的进程先结束后,当前进程读端口关闭后,向管道内写数据时,write() 所在进程会(收到 SIGPIPE 信号)退出,收到 SIGPIPE 默认动作为中断当前进程。


测试代码如下:

[cpp]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #include <stdio.h>  
  2. #include <string.h>  
  3. #include <unistd.h>  
  4. #include <stdlib.h>  
  5. #include <sys/types.h>  
  6. #include <sys/wait.h>  
  7.   
  8. int main(int argc, char *argv[])  
  9. {  
  10.     int fd_pipe[2] = {0};  
  11.     pid_t pid;  
  12.       
  13.     if( pipe(fd_pipe) < 0 ){// 创建无名管道  
  14.         perror("pipe");  
  15.     }  
  16.       
  17.     pid = fork(); // 创建进程  
  18.     if( pid < 0 ){ // 出错  
  19.         perror("fork");  
  20.         exit(-1);  
  21.     }  
  22.       
  23.     if( pid == 0 ){ // 子进程  
  24.         //close(fd_pipe[0]);  
  25.           
  26.         _exit(0);  
  27.     }else if( pid > 0 ){// 父进程  
  28.       
  29.         wait(NULL); // 等待子进程结束,回收其资源  
  30.           
  31.         close(fd_pipe[0]); // 当前进程读端口关闭  
  32.           
  33.         char buf[50] = "12345";  
  34.           
  35.         // 当前进程读端口关闭  
  36.         // write()会收到 SIGPIPE 信号,默认动作为中断当前进程  
  37.         write(fd_pipe[1], buf, strlen(buf));  
  38.           
  39.         while(1);   // 阻塞  
  40.     }  
  41.       
  42.     return 0;  
  43. }  

运行结果如下:



本教程示例代码下载请点此处。


转自:http://blog.csdn.net/tennysonsky/article/details/46315517

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值