1、什么是管道

  管道是半双工的,数据只能向一个方向流动;需要双方通信时,需要建立起两个管道; 只能用于父子进程或者兄弟进程之间(具有亲缘关系的进程); 单独构成一种独立的文件系统:管道对于管道两端的进程而言,就是一个文件,但它不是普通的文件,它不属于某种文件系统,而是自立门户,单独构成一种文件系统,并且只存在于内存中。数据的读出和写入:一个进程向管道中写的内容被管道另一端的进程读出。写入的内容每次都添加在管道缓冲区的末尾,并且每次都是从缓冲区的头部读出数据。

2、管道的创建

  int pipe(int fd[2])

  该函数创建的管道的两端处于一个中间进程,在实际应用中并没有太大意义,一般在pipe()创建管道后,再fork()一个子进程,然后通过管道实现父子进程之间的通信。

3、管道的读写规则

  管道两端可分别用描述字fd[0]以及fd[1]来描述,需要注意的是,管道的两端是固定了任务的。即一端只能用于读,由描述字fd[0]表示,称其为管道读端;另一端则只能用于写,由描述字fd[1]来表示,称其为管道写端。

4、pipe函数

  头文件:#include<unistd.h>

  函数原型: int pipe(int fd[2])

  函数参数:fd[2],管道的两个文件描述符,之后就是可以直接操作这两个文件描述符。其中fd[0]为读取端,fd[1]为写入端

  返回值:成功返回0,否则返回-1

  读fd[0]: close(fd[1]); read(fd[0], buf, BUF_SIZE);

  写fd[1]: close(fd[0]); read(fd[1], buf, strlen(buf));

5、例子

  

 #include <unistd.h>
#include <stdio.h> int main()
{
int fd[];
char buf[];
pid_t pid; if(pipe(fd) != )
{
printf("pipe error\n");
return ;
} pid = fork(); if(pid == -)
{
printf("fork error\n");
return ;
} else if(pid > )
{
printf("This is the father process, here write a string to the pipe\n");
char s[] = "Hello! write a string in the father process\n";
close(fd[]);
write(fd[], s, sizeof(s)); // 向管道中写入数据 }
else
{
printf("This is the child process, here read a string from the pipe\n");
close(fd[]);
read(fd[], buf, sizeof(buf)); //从管道中读取数据
printf("%s", buf);
}
waitpid(pid, NULL, );
return ;
}

  输出结果为:

  This is the father process, here write a string to the pipe

  This is the child process, here read a string from the pipe

  Hello! write a string in the father process

  当管道中数据被读取后,管道为空。之后再read操作将默认的被阻塞,等待某些数据被写入。如需要设置为非阻塞,则可做如下设置:

  fcntl(filedes[0], F_SETFL, O_NONBLOCK);

  fcntl(filedes[1], F_SETFL, O_NONBLOCK);

6、dup2详解

  用来复制一个现存的文件描述符,使两个文件描述符指向同一个file结构体。

  其中头文件:#include <unistd.h>

  函数原型:int dup2(int oldhandle, int newhandle);

  例子还是使用上面那个例子,如下:

 #include <unistd.h>
#include <stdio.h> int main()
{
int fd[];
char buf[];
pid_t pid;
int newfd;
if(pipe(fd) != )
{
printf("pipe error\n");
return ;
} pid = fork(); if(pid == -)
{
printf("fork error\n");
return ;
} else if(pid > )
{
printf("This is the father process, here write a string to the pipe\n");
char s[] = "Hello! write a string in the father process\n";
close(fd[]);
write(fd[], s, sizeof(s)); // 向管道中写入数据 }
else
{
printf("This is the child process, here read a string from the pipe\n");
close(fd[]);
dup2(fd[], newfd);
read(newfd, buf, sizeof(buf)); //从管道中读取数据
printf("%s", buf);
}
waitpid(pid, NULL, );
return ;
}

  运行的结果还是一样。只是在36行代码中调用了dup2,把fd[0]复制给newfd。



linux中pipe和dup2详解的更多相关文章

  1. (转)linux 中特殊符号用法详解

    linux 中特殊符号用法详解 原文:https://www.cnblogs.com/lidabo/p/4323979.html # 井号 (comments)#管理员  $普通用户 脚本中 #!/b ...

  2. Linux中mpstat命令参数详解

    Linux中mpstat命令参数详解 mpstat 是 Multiprocessor Statistics的缩写,是实时系统监控工具.其报告与CPU的一些统计信息,这些信息存放在 /proc/stat ...

  3. linux中mv命令使用详解

    mv命令是move的缩写,可以用来移动文件或者将文件改名(move (rename) files),是Linux系统下常用的命令,经常用来备份文件或者目录. 1.命令格式: mv [选项] 源文件或目 ...

  4. 【转】linux 中dd命令使用详解

    原文网址:http://xiaozhuang.blog.51cto.com/4396589/850657 原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究 ...

  5. linux中Cron定时任务系统命令详解

    分类:Linux VPS教程 作者:阿川 发布时间:October 13, 2011 有很多同学在购买VPS之后,需要用到计划任务.但是又对计划任务不太了解,所以.今天我们的帮助中心主要是给大家提供一 ...

  6. Linux中THIS_MODULE宏定义详解

    一直都在耿耿于怀,这个THIS_MODULE到底是个什么玩意,linux内核中无处不在的东西.今天上网搜了一下,算是基本明白了.网上牛人写的已经比较详细,另外目前暂时没有时间往更深层次分析,所以直接贴 ...

  7. linux 中特殊符号用法详解

    # 井号 (comments)#管理员  $普通用户 脚本中 #!/bin/bash   #!/bin/sh井号也常出现在一行的开头,或者位于完整指令之后,这类情况表示符号后面的是注解文字,不会被执行 ...

  8. [fork]Linux中的fork函数详解

    ---------------------------------------------------------------------------------------------------- ...

  9. Linux中top命令参数详解

    此文摘自(https://www.cnblogs.com/ggjucheng/archive/2012/01/08/2316399.html) 简介 top命令是Linux下常用的性能分析工具,能够实 ...

随机推荐

  1. 岛屿的个数12 · Number of Islands12

    [抄题]: 给一个01矩阵,求不同的岛屿的个数. 0代表海,1代表岛,如果两个1相邻,那么这两个1属于同一个岛.我们只考虑上下左右为相邻. [ [1, 1, 0, 0, 0], [0, 1, 0, 0 ...

  2. Jdeveloper下Svn的使用

    Jdeveloper下Svn的使用 官方pdf:jdeveloper使用svn 官方网地址:http://www.oracle.com/technetwork/cn/java/subversion-0 ...

  3. springMVC框架介绍以及运行流程(图解)

    1 Springmvc是什么? spring web mvc和struts2都属于表现层的框架,spring web mvc是spring框架的一部分(所以spring mvc与spring之间不需要 ...

  4. iconv()错误

    //转换字符编码过程中报错,数据会丢失,解决办法:设置第二个参数为gbk//IGNORE $strexport=iconv('UTF-8',"GBK",$strexport); $ ...

  5. [OS] 修改屏幕分辨率(用Remote Desktop Connection 或者 用工具:Remote Desktop Connection Manager)

    用Remote Desktop Connection Remote Desktop Connection Manager

  6. sublime相关资源

    Sublime Text 全程指南 http://zh.lucida.me/blog/sublime-text-complete-guide/ Sublime官网Package安装 https://p ...

  7. asp.net 在自己指定的文件夹下面弄个App.config来读取配置

    .注意首先你要在你的应用程序的根目录下面新建一个Config的文件夹,然后在你新建的Config文件夹下面建立一个MyApp.config文件,根据标准的App.config复制一个过来稍作修改就好, ...

  8. 《官方资料》 例如:string 函数 、分组函数

    site:www.mysql.com SUBSTRING_INDEX ----------------------------------------------------------------- ...

  9. windows7文件夹怎样默认图片大图显示?

    先打开一个含有图片的文件夹,在文件夹空白处右键选择属性,打开自定义选项卡. 确定自定义选项卡 显示的是:“优化此文件夹:图片”. 然后,选择:组织--文件夹和搜索选项--查看--文件夹视图,应用到文件 ...

  10. Reverting back to the R12.1.1 and R12.1.3 Homepage Layout

    Reverting back to the 12.1.1 Homepage Layout Set the following profiles: FND: Applications Navigator ...