- 论坛徽章:
- 0
|
#include <unistd.h>
#include <stdio.h>
#include <string.h>
void writeG(int fd,char *str,int len)/*写入固定长度报文*/
{
char buf[255];
memset(buf,0,sizeof(buf));
sprintf(buf,"%s",str);
write(fd,buf,len);/*管道输入*/
}
char *readG(int fd,int len)/*读取固定长度报文*/
{
char buf[255];
memset(buf,0,sizeof(buf));
read(fd,buf,len); /*管道输出*/
return buf;/*返回管道输出数据*/
}
void writeC(int fd,char *str)
{
char buf[255];
sprintf(buf,"%04d%s",strlen(str),str);/*报文头增加报文长度*/
write(fd,buf,strlen(buf));
}
char *readC(int fd)
{
char buf[255];
int i,j;
memset(buf,0,sizeof(buf));
j = read(fd,buf,4);/*读入长度域*/
i = atoi(buf);/*转化长度域为整型*/
j = read(fd,buf,i);/*读入后续报文*/
return buf;/*返回读入的报文*/
}
void main()
{
int fildes1[2],fildes2[2];
pid_t pid;
int i,j;
char buf[256];
if(pipe(fildes1)<0||pipe(fildes2)<0)
{
fprintf(stderr,"pipe error!\n");
}
if((pid=fork())<0)
{
fprintf(stderr,"fork error!\n");
}
if(pid==0)
{
close(fildes1[1]);
close(fildes2[0]);
strcpy(buf,readG(fildes1[0],11));
fprintf(stderr,"[child]buf=[%s]\n",buf);
writeC(fildes2[1],buf);
strcpy(buf,readG(fildes1[0],11));
fprintf(stderr,"[child]buf=[%s]\n",buf);
writeC(fildes2[1],buf);
return;
}
close(fildes1[0]);
close(fildes2[1]);
writeG(fildes1[1],"Hello!",11);
writeG(fildes1[1],"World!",11);
fprintf(stderr,"[father]buf=[%s]\n",readC(fildes2[0]));
fprintf(stderr,"[father]buf=[%s]\n",readC(fildes2[0]));
}回复 5# flyingeagle1015
|
|