管道通信(半双工)

#include "unpipc.h"
#include <iostream>
#include <myerror.h>

using namespace std;

void client(int,int),server(int,int);

int main(int argc,char **argv)
{
  int pipe1[2],pipe2[2];
  pid_t childpid;

  pipe(pipe1);     //创建管道
  pipe(pipe2);

  if((childpid=fork())==0)   //子进程,做服务器
    {
      close(pipe1[1]);    //关闭管道1的写入
      close(pipe2[0]);    //关闭管道2的读出

      server(pipe1[0],pipe2[1]);
      exit(0);    //终止子进程
    }
  close(pipe1[0]);
  close(pipe2[1]);

  client(pipe2[0],pipe1[1]);
  waitpid(childpid,NULL,0);    //等待子程序结束
  exit(0);
}


void client(int readfd,int writefd)
{
  size_t len;
  ssize_t n;
  char buff[MAXLINE];

  cout<<"enter the file name please:";
  fgets(buff,MAXLINE,stdin);
  len=strlen(buff);
  if(buff[len-1]=='\n')
    len--;
  write(writefd,buff,len);
  while((n=read(readfd,buff,MAXLINE))>0)
    write(STDOUT_FILENO,buff,n);
}

void server(int readfd,int writefd)
{
  int fd;
  ssize_t n;
  char buff[MAXLINE];

  if((n=read(readfd,buff,MAXLINE))==0)
    err_quit("end-of-file while reading pathname");
  buff[n]='\0';
  if((fd=open(buff,O_RDONLY))<0)
    {
      snprintf(buff+n,sizeof(buff)-n, ": can't open, %s\n",strerror(errno));

      n=strlen(buff);
      write(writefd,buff,n);
    }
  else
    {
      while((n=read(fd,buff,MAXLINE))>0)
	write(writefd,buff,n);
      close(fd);
    }
}




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值