管道和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) 管道的缓冲区是有限的(管道制存在于内存中,在管道创建时 ...
随机推荐
- 20145319 return-to-libc攻击实验
20145319 Return-to-libc攻击实验 一 实验内容 return-to-libc实验是一个基于缓冲区溢出攻击实验的基础上的一种攻击实验 缓冲区溢出攻击相关知识: 原理:通过一段包含s ...
- FZU 1901 Period II(KMP中的next)题解
题意:给你一串字符串,问你前后缀相同情况有几种,并输出后缀位置(?这里一直没看懂length是什么,但是这样理解答案也对,然后还要加上本身长度) 思路:这里好好讲讲next的用法.我们都知道next代 ...
- HTML 入门1
HTML 入门1 一,什么是HTML 超文本标记语言 二,如何写一个HTML文件? 1 通过sublime的文件->新建->保存 "文件名.html"格式 2,在 ...
- 关于UDP很好的书籍和文章(整理、持续更新)
文章 告知你不为人知的 UDP:疑难杂症和使用(必看)
- Oracle Sourcing Implementation and Administration Guide(转)
原文地址 Oracle Sourcing Implementation and Administration Guide
- Android学习必备--java工具15个
Weka .Weka集成了数据挖掘工作的机器学习算法.这些算法可以直接应用于一个数据集上或者你可以自己编写代码来调用.Weka包括一系列的工具,如数据预处理.分类.回归.聚类.关联规则以及可视化. M ...
- EM算法及其应用(一)
EM算法及其应用(一) EM算法及其应用(二): K-means 与 高斯混合模型 EM算法是期望最大化 (Expectation Maximization) 算法的简称,用于含有隐变量的情况下,概率 ...
- 互评Alpha版本
作业要求[https://edu.cnblogs.com/campus/nenu/2018fall/homework/2323] 队名:二次元梦之队 组长:刘莹莹 组员:周昊 潘世维 王玉潘 赵美增 ...
- 理解 Socket
原文链接 题外话 前几天和朋友聊天,朋友问我怎么最近不写博客了,一个是因为最近在忙着公司使用的一些控件的开发,浏览器兼容性搞死人 但主要是因为这段时间一直在看html5的东西,看到web socket ...
- npm 与 package.json 快速入门
npm 是前端开发广泛使用的包管理工具,之前使用 Weex 时看了阮一峰前辈的文章了解了一些,这次结合官方文章总结一下,加深下理解吧! 读完本文你将了解: 什么是 npm 安装 npm 更新 npm ...