概述
#include <iostream>
#include<sys/types.h>
#include<sys/stat.h>
#include<sys/fcntl.h>
#include<unistd.h>
#include<cstring>
#include<sys/wait.h>
using namespace std;
int main(int argc, char *argv[])
{
int result=-1;
int fd[2],nbyte;
pid_t pid;
char str[]="hello,world";
char str_recv[100];
result=pipe(fd);
int read_pipe=fd[0]; //这里有个坑,一开始我把读管道设置成了fd[1],写设置成了fd[0]
cout<<"read_pipe is "<<read_pipe<<endl;
int write_pipe=fd[1]; //管道的设置有严格的顺序,fd[0]才是读 fd[1]才是写
cout<<"write_pipe is "<<write_pipe<<endl;
pid=fork(); //创建一个进程
if(pid==-1)
{
perror("pid:error");
}
if(pid==0) //子进程
{
cout<<"11111"<<endl;
close(read_pipe);
cout<<"str is "<<str<<endl;
result=write(write_pipe,str,strlen(str));
cout<<"write result value is "<<result<<endl;
return 0;
}
if(pid>0) //父进程
{
wait(NULL); //等待子进程结束
close(write_pipe);
memset(&str_recv,0,sizeof(str_recv));
nbyte=read(read_pipe,str_recv,sizeof(str_recv));
cout<<"recv "<< nbyte <<" data,data is text : "<<str_recv <<endl;
}
return 0;
}
ps:当管道的写端没有关闭时,写请求的字节数目大于阈值PIPE_BUF(在include/linux/limits.h中可以查看),写操作的返回值是管道中目前的数据字节数。如果请求的字节数(读管道)不大于PIPE_BUF,则返回管道中的现有字节数(管道中数据量小于请求数据量),或者返回请求的字节数(管道中数据量不小于请求的数据量)
当写入的数据大于128K时,缓冲区的数据将被持续写入管道,如果没有进程读取,则会一直阻塞
最后
以上就是鲜艳大树为你收集整理的linux编程——管道操作的全部内容,希望文章能够帮你解决linux编程——管道操作所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复