免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 5589 | 回复: 10
打印 上一主题 下一主题

[C] 一个管道的小程序输出时出现乱码,大家请给与指导 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-09-11 20:12 |只看该作者 |倒序浏览
#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],"",11);
    writeG(fildes1[1],"World!",11);
    fprintf(stderr,"[father]buf=[%s]\n",readC(fildes2[0]));
    fprintf(stderr,"[father]buf=[%s]\n",readC(fildes2[0]));
}

论坛徽章:
4
白羊座
日期:2013-09-17 21:59:30技术图书徽章
日期:2013-10-12 22:16:03白羊座
日期:2013-10-14 11:01:40双子座
日期:2013-12-17 18:26:39
2 [报告]
发表于 2013-09-11 21:52 |只看该作者
回复 1# xy2bl
  1. writeG(fildes1[1],"",11);
  2.     writeG(fildes1[1],"World!",11);
复制代码
这好像输出两次11字节长的数据,并且后面有无效数据


   

论坛徽章:
0
3 [报告]
发表于 2013-09-11 21:58 |只看该作者
return buf???????

论坛徽章:
0
4 [报告]
发表于 2013-09-12 08:47 |只看该作者
但是world能输出,hello却不能,我想知道为什么...回复 2# 井蛙夏虫


   

论坛徽章:
0
5 [报告]
发表于 2013-09-12 10:18 |只看该作者
乱码  -------- 3楼正解
hello却不能 --------- 程序中哪儿有hello?

论坛徽章:
0
6 [报告]
发表于 2013-09-12 10:57 |只看该作者
那return什么回复 3# thaldn


   

论坛徽章:
0
7 [报告]
发表于 2013-09-12 10:58 |只看该作者
#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


   

论坛徽章:
0
8 [报告]
发表于 2013-09-12 14:35 |只看该作者
不涉及到多线程,把buf定义为静态变量就行了。
readC和readG中“char buf[255];”改为“static char buf[255];”

论坛徽章:
0
9 [报告]
发表于 2013-09-12 15:20 |只看该作者
这是什么原理,或者说我犯了什么错误回复 8# flyingeagle1015


   

论坛徽章:
0
10 [报告]
发表于 2013-09-16 09:48 |只看该作者
直接定义char buf[255]是在栈上分配的,函数结束后这里的内容就不确定了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP