管道和FIFO 二
前面我们学习了一下进程,我们知道多,进程间的地址空间相对独立。进程与进程间不能像线程间通过全局变量通信。 如果想进程间通信,就需要其他机制。

1.2管道的创建
解释如下 :
- #include <stdio.h>
- #include <unistd.h>
- #include <stdlib.h>
- int main()
- {
- int n;
- int fd[2];
- int count = 0;
- char buf[100] = {0};
- if(pipe(fd) < 0)
- {
- perror("Fail to create pipe");
- exit(EXIT_FAILURE);
- }
- close(fd[1]);
- if((n = read(fd[0],buf,sizeof(buf))) < 0)
- {
- perror("Fail to read pipe");
- exit(EXIT_FAILURE);
- }
- printf("Rread %d bytes : %s.\n",n,buf);
- return 0;
- }
运行结果:
点击(此处)折叠或打开
- #include <stdio.h>
- #include <stdlib.h>
- #include <errno.h>
- #include <string.h>
- #define N 10
- #define MAX 100
- int child_read_pipe(int fd)
- {
- char buf[N];
- int n = 0;
- while(1)
- {
- n = read(fd,buf,sizeof(buf));
- buf[n] = '\0';
- printf("Read %d bytes : %s.\n",n,buf);
- if(strncmp(buf,"quit",4) == 0)
- break;
- }
- return 0;
- }
- int father_write_pipe(int fd)
- {
- char buf[MAX] = {0};
- while(1)
- {
- printf(">");
- fgets(buf,sizeof(buf),stdin);
- buf[strlen(buf)-1] = '\0';
- write(fd,buf,strlen(buf));
- usleep(500);
- if(strncmp(buf,"quit",4) == 0)
- break;
- }
- return 0;
- }
- int main()
- {
- int pid;
- int fd[2];
- if(pipe(fd) < 0)
- {
- perror("Fail to pipe");
- exit(EXIT_FAILURE);
- }
- if((pid = fork()) < 0)
- {
- perror("Fail to fork");
- exit(EXIT_FAILURE);
- }else if(pid == 0){
- close(fd[1]);
- child_read_pipe(fd[0]);
- }else{
- close(fd[0]);
- father_write_pipe(fd[1]);
- }
- exit(EXIT_SUCCESS);
- }
运行结果:
- #include <stdio.h>
- #include <stdlib.h>
- #include <errno.h>
- #include <string.h>
- int main()
- {
- int pid;
- int n;
- int fd[2];
- char buf[1000 * 6] = {0};
- if(pipe(fd) < 0)
- {
- perror("Fail to pipe");
- exit(EXIT_FAILURE);
- }
- if((pid = fork()) < 0)
- {
- perror("Fail to fork");
- exit(EXIT_FAILURE);
- }else if(pid == 0){
- close(fd[1]);
- sleep(5);
- close(fd[0]);
- printf("Read port close.\n");
- sleep(3);
- }else{
- close(fd[0]);
- while(1)
- {
- n = write(fd[1],buf,sizeof(buf));
- printf("Write %d bytes to pipe.\n",n);
- }
- }
- exit(EXIT_SUCCESS);
- }
运行结果:
点击(此处)折叠或打开
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
- #include <sys/stat.h>
- #include <sys/types.h>
- #include <fcntl.h>
- #define MAX 100
- int child_work(int pfd,char *fname)
- {
- int n,fd;
- char buf[MAX];
- if((fd = open(fname,O_WRONLY | O_CREAT | O_TRUNC,0666)) < 0)
- {
- fprintf(stderr,"Fail to open %s : %s.\n",fname,strerror(errno));
- return -1;
- }
- while( n = read(pfd,buf,sizeof(buf)) )
- {
- write(fd,buf,n);
- }
- close(pfd);
- return 0;
- }
- int father_work(int pfd,char *fname)
- {
- int fd,n;
- char buf[MAX];
- if((fd = open(fname,O_RDONLY)) < 0)
- {
- fprintf(stderr,"Fail to open %s : %s.\n",fname,strerror(errno));
- return -1;
- }
- while(n = read(fd,buf,sizeof(buf)))
- {
- write(pfd,buf,n);
- }
- close(pfd);
- return 0;
- }
- int main(int argc,char *argv[])
- {
- int pid;
- int fd[2];
- if(argc < 3)
- {
- fprintf(stderr,"usage %s argv[1] argv[2].\n",argv[0]);
- exit(EXIT_FAILURE);
- }
- if(pipe(fd) < 0)
- {
- perror("Fail to pipe");
- exit(EXIT_FAILURE);
- }
- if((pid = fork()) < 0)
- {
- perror("Fail to fork");
- exit(EXIT_FAILURE);
- }else if(pid == 0){
- close(fd[1]);
- child_work(fd[0],argv[2]);
- }else{
- close(fd[0]);
- father_work(fd[1],argv[1]);
- wait(NULL);
- }
- exit(EXIT_SUCCESS);
- }
点击(此处)折叠或打开
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- int main(int argc,char *argv[])
- {
- int fd;
- if(argc < 2)
- {
- fprintf(stderr,"usage : %s argv[1].\n",argv[0]);
- exit(EXIT_FAILURE);
- }
- if(mkfifo(argv[1],0666) < 0 && errno != EEXIST)
- {
- fprintf(stderr,"Fail to mkfifo %s : %s.\n",argv[1],strerror(errno));
- exit(EXIT_FAILURE);
- }
- if((fd = open(argv[1],O_WRONLY)) < 0)
- {
- fprintf(stderr,"Fail to open %s : %s.\n",argv[1],strerror(errno));
- exit(EXIT_FAILURE);
- }
- printf("open for write success.\n");
- return 0;
- }
B.open for read
点击(此处)折叠或打开
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- int main(int argc,char *argv[])
- {
- int fd;
- if(argc < 2)
- {
- fprintf(stderr,"usage : %s argv[1].\n",argv[0]);
- exit(EXIT_FAILURE);
- }
- if(mkfifo(argv[1],0666) < 0 && errno != EEXIST)
- {
- fprintf(stderr,"Fail to mkfifo %s : %s.\n",argv[1],strerror(errno));
- exit(EXIT_FAILURE);
- }
- if((fd = open(argv[1],O_RDONLY)) < 0)
- {
- fprintf(stderr,"Fail to open %s : %s.\n",argv[1],strerror(errno));
- exit(EXIT_FAILURE);
- }
- printf("open for read success.\n");
- return 0;
- }
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #define MAX 655360
- int main(int argc,char *argv[])
- {
- int n,fd;
- char buf[MAX];
- if(argc < 2)
- {
- fprintf(stderr,"usage : %s argv[1].\n",argv[0]);
- exit(EXIT_FAILURE);
- }
- if(mkfifo(argv[1],0666) < 0 && errno != EEXIST)
- {
- fprintf(stderr,"Fail to mkfifo %s : %s.\n",argv[1],strerror(errno));
- exit(EXIT_FAILURE);
- }
- if((fd = open(argv[1],O_WRONLY )) < 0)
- {
- fprintf(stderr,"Fail to open %s : %s.\n",argv[1],strerror(errno));
- exit(EXIT_FAILURE);
- }
- printf("open for write success.\n");
- while(1)
- {
- printf(">");
- scanf("%d",&n);
- n = write(fd,buf,n);
- printf("write %d bytes.\n",n);
- }
- exit(EXIT_SUCCESS);
- }
点击(此处)折叠或打开
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <errno.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #define MAX 655360
- int main(int argc,char *argv[])
- {
- int fd,n;
- char buf[MAX];
- if(argc < 2)
- {
- fprintf(stderr,"usage : %s argv[1].\n",argv[0]);
- exit(EXIT_FAILURE);
- }
- if(mkfifo(argv[1],0666) < 0 && errno != EEXIST)
- {
- fprintf(stderr,"Fail to mkfifo %s : %s.\n",argv[1],strerror(errno));
- exit(EXIT_FAILURE);
- }
- if((fd = open(argv[1],O_RDONLY )) < 0)
- {
- fprintf(stderr,"Fail to open %s : %s.\n",argv[1],strerror(errno));
- exit(EXIT_FAILURE);
- }
- printf("open for read success.\n");
- while(1)
- {
- printf(">");
- scanf("%d",&n);
- n = read(fd,buf,n);
- printf("Read %d bytes.\n",n);
- }
- exit(EXIT_SUCCESS);
- }
读者可以将这两个程序运行,然后输入read和write FIFO大小就可以看到效果。
管道和FIFO 二的更多相关文章
- 管道和FIFO 一
管道和FIFO 管道(pipe) 管道在Unix及Linux进程间通信是最基础的,很容易理解.管道就像一个自来水管,一端注入水,一端放出水,水只能在一个方向上流动,而不能双向流动.管道 ...
- linux系统编程之管道(三):命令管道(FIFO)
一,匿名管道PIPE局限性 管道的主要局限性正体现在它的特点上: 只支持单向数据流: 只能用于具有亲缘关系的进程之间: 没有名字: 管道的缓冲区是有限的(管道制存在于内存中,在管道创建时,为缓冲区分配 ...
- 第四章:管道与FIFO
4.1:概述 管道是最初的Unix IPC形式,可追溯到1973年的Unix第三版.尽管对于许多操作来说很有用,但它们的根本局限在于没有名字,从而只能由亲缘关系的进程使用.这一点随FIFO的加入得改正 ...
- linux进程间通信-有名管道(FIFO)
有名管道(FIFO) 命名管道也被称为FIFO文件,是一种特殊的文件.由于linux所有的事物都可以被视为文件,所以对命名管道的使用也就变得与文件操作非常统一. (1)创建命名管道 用如下两个函数中的 ...
- 第4章 管道和FIFO
4.1 管道 管道是由pipe函数创建的,提供一个单向数据流. 头文件 #include <unistd.h> 函数原型 int pipe(int fd[2]); 返回值 成功则为0,出错 ...
- Linux系统编程——进程间通信:命名管道(FIFO)
命名管道的概述 无名管道,因为没有名字,仅仅能用于亲缘关系的进程间通信(很多其它详情.请看<无名管道>).为了克服这个缺点.提出了命名管道(FIFO).也叫有名管道.FIFO 文件. 命名 ...
- 第4章 管道与FIFO
4.1 概述 管道只在亲缘进程间使用,FIFO在任意进程间使用 4.2 管道 #include <unistd.h> ]) fd[0]用来读管道,fd[1]用来写管道 1)命令who | ...
- [转] IPC之管道、FIFO、socketpair
管道和FIFO作为最初的UNIX IPC形式,现在已用得较少.SocketPair可作为全双工版本的管道,较为常用,这里简单做个笔记 管道 * 只用于有亲缘关系的进程间通信 * 单向,即半双工 (双向 ...
- linux 有名管道(FIFO)
http://blog.csdn.net/firefoxbug/article/details/8137762 linux 有名管道(FIFO) 管道的缓冲区是有限的(管道制存在于内存中,在管道创建时 ...
随机推荐
- linux内核分析第五周-分析system_call中断处理过程
本实验目的:通过以一个简单的menu小程序,跟踪系统调用的过程,分析与总结系统调用的机制和三层进入的过程. 实验原理:系统调用处理过程与中断处理的机制 系统调用是通过软中断指令 INT 0x80 实现 ...
- Git合并分支或者冲突
假设冲突文件是 test/TestCase.php 下面分5种情况讨论. 1.本地不变. 然后远程别人有更新. git pull 这种最简单,没有冲突,本地工作区直接更新 2.我本 ...
- HDU 3315 My Brute(二分图最佳匹配+尽量保持原先匹配)
http://acm.hdu.edu.cn/showproblem.php?pid=3315 题意: 有S1到Sn这n个勇士要和X1到Xn这n个勇士决斗,初始时,Si的决斗对象是Xi. 如果Si赢了X ...
- IIS Express 添加MIME映射
IIS Express没有提供图形化界面来配置MIME类型,但提供了配置MIME类型的命令行工具. IIS Express中添加MIME映射.操作如下: 在DOS窗口下进入IIS Express安装目 ...
- vnc viewer 点击system 卡死现象
转自:http://zhangjunli177.blog.163.com/blog/static/1386073082012103052527557/ VNC viewer desktop dead ...
- Hystrix熔断机制原理剖析
一.前言 在分布式系统架构中多个系统之间通常是通过远程RPC调用进行通信,也就是 A 系统调用 B 系统服务,B 系统调用 C 系统的服务.当尾部应用 C 发生故障而系统 B 没有服务降级时候可能会导 ...
- 2-13 搭建LAMP环境并部署Ucenter和Ucenter-home网站
环境: VMware Virtual Machine : XGan63.cn IP: 192.168.31.63 (Bridge) 已配置本地yum源 ---> /mnt 已配置网络yum源 - ...
- iOS UI-应用管理(使用Cell模板)
一.Model // // BWApp.h // IOS_0112_应用管理 // // Created by ma c on 16/1/12. // Copyright (c) 2016年 博文科技 ...
- thread.event说明
Python中的threading.Event()操控多线程的过程有: - 定义事件:man_talk_event = threading.Event() - 创建线程,传入对应事件:t1 = thr ...
- 黑暗世界的搜索引擎 https://fofa.so/ https://www.shodan.io https://www.zoomeye.org 查找设备漏洞
from:http://www.freebuf.com/sectool/121339.html 什么是 Shodan? 首先,Shodan 是一个搜索引擎,但它与 Google 这种搜索网址的搜索引擎 ...