免费注册 查看新帖 |

Chinaunix

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

[C++] help?? about c++ queue [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-23 12:11 |只看该作者 |倒序浏览
This is my class "XDir".

  1. /*
  2. * =====================================================================================
  3. *
  4. *        Filename:  XDir.cpp
  5. *
  6. *     Description:  class file
  7. *
  8. *         Version:  1.0
  9. *         Created:  07/22/2006 11:12:51 AM EDT
  10. *        Revision:  none
  11. *        Compiler:  gcc
  12. *
  13. *          Author:  PH.C.XT (Mn),
  14. *         Company:  
  15. *
  16. * =====================================================================================
  17. */
  18. #include<stdio.h>
  19. #include<stdlib.h>
  20. #include "XDir.h"
  21. #include<queue>
  22. #include<dirent.h>
  23. #include<sys/types.h>
  24. #include<sys/stat.h>
  25. #include<string.h>

  26. XDir::XDir(char *path)
  27. {
  28.                 pathname=path;
  29.                 //if(*(pathname+strlen(pathname))!='/')
  30.                 //                *(pathname+strlen(pathname))='/';
  31.                 //printf("%s\n",pathname);
  32. }
  33. //is dir
  34. bool XDir::IsDir()
  35. {
  36.                 struct stat statebuf;
  37.                 int state;
  38.                 if((state=lstat(pathname,&statebuf))<0)
  39.                 {
  40.                                 //fprintf(stdout,"Failed to stat the path name \"%s\" %d\n",pathname,state);
  41.                             //perror("stat error");
  42.                                 return false;
  43.                 }
  44.                 //while((state=lstat(pathname,statebuf))==-1);
  45.                 if(!S_ISDIR(statebuf.st_mode))
  46.                 {
  47.                                 //fprintf(stdout,"Sorry.This %s is not dir.\n",pathname);
  48.                                 return false;
  49.                 }
  50.                 //free(statebuf);
  51.                 return true;
  52. }
  53.                
  54. //scan dir
  55. bool XDir::ScanDir()
  56. {
  57.                 //to add your code
  58.                 queue<XDir*> dirque;
  59.                 XDir *dir=new XDir(pathname);
  60.                 if(!dir->IsDir())
  61.                                 return false;
  62.                 //dir.pathname=pathname;
  63.                 dirque.push(dir);
  64.                 printf("Top dir is %s\n\n",dir->pathname);
  65.         while(dirque.size()>0)
  66.                 {
  67.                                 //char *name=(char *)malloc(sizeof(char));
  68.                                 XDir *tmpdir=(XDir *)dirque.front();
  69.                                 char **filenames=(char **)malloc(sizeof(char));
  70.                                 //tmpdir=dirque.front();
  71.                                 printf("\nCurrent dir is %s\n\n",tmpdir->pathname);
  72.                                 int i,num;
  73.                                 if((num=tmpdir->GetFiles(filenames))==-1)
  74.                                 {
  75.                                                 return false;
  76.                                                 //dirque.pop();
  77.                                                 //continue;
  78.                                 }
  79.                                 for(i=0;i<num;i++)                                               
  80.                                 {
  81.                                                 char fullpath[256]="";
  82.                                                 strcpy(fullpath,tmpdir->pathname);
  83.                                                 fullpath[strlen(fullpath)]='/';
  84.                                                 strcat(fullpath,filenames[i]);
  85.                                                 if(IsDir(fullpath) && strcmp(".",filenames[i])!=0 && strcmp("..",filenames[i])!=0)
  86.                                                 {
  87.                                                                 XDir *tmp=new XDir(fullpath);
  88.                                                                 //tmp->pathname=fullpath;
  89.                                                                 dirque.push(tmp);
  90.                                                                 printf("-------\n%s\n-----\n",tmp->pathname);
  91.                                                 }
  92.                                                 //printf("%s\n",fullpath);
  93.                                 }
  94.                                 dirque.pop();
  95.                                 //free(filenames);
  96.                                 delete tmpdir;
  97.                                 //tmpdir=NULL;
  98.                 }
  99.                 //delete dir;
  100.                 return true;
  101. }
  102. bool XDir::IsDir(char *path)
  103. {
  104.                 struct stat statebuf;
  105.                 int state;
  106.                 if((state=lstat(path,&statebuf))<0)
  107.                 {
  108.                                 //fprintf(stdout,"Failed to stat the path name \"%s\" %d\n",pathname,state);
  109.                                 //perror("stat error");
  110.                                 return false;
  111.                 }
  112.                 //while((state=lstat(pathname,statebuf))==-1);
  113.                 if(!S_ISDIR(statebuf.st_mode))
  114.                 {
  115.                                 //fprintf(stdout,"Sorry.This %s is not dir.\n",pathname);
  116.                                 return false;
  117.                 }
  118.                 //free(statebuf);
  119.                 return true;
  120. }
  121.                
  122. //get files in the dir
  123. int XDir::GetFiles(char **filenames)
  124. {
  125.                 struct dirent **entries;
  126.                 int i,num;
  127.                 if((num=scandir(pathname,&entries,0,alphasort))==-1)
  128.                 {
  129.                                 perror("failed to scan dir ");
  130.                                 return -1;               
  131.                 }
  132.                 for(i=0;i<num;i++)
  133.                 {
  134.                                 *(filenames+i)=(char *)malloc(256);
  135.                                 strcpy(filenames[i],entries[i]->d_name);
  136.                 }
  137.                 return num;
  138. }
复制代码

when I use func "ScanDir" to list a dir, the dir has many files and child dirs. Always errors happen below.

xiaotao@xiaotao-laptop:~/xtl/DirSearch$ ./testdir ~/Astar
Top dir is /home/xiaotao/Astar


Current dir is /home/xiaotao/Astar

-------
/home/xiaotao/Astar/A1
-----
-------
/home/xiaotao/Astar/A2
-----
-------
/home/xiaotao/Astar/A5
-----

Current dir is /home/xiaotao/Astar/pku2380.c~

failed to scan dir : Not a directory

论坛徽章:
0
2 [报告]
发表于 2006-07-23 12:13 |只看该作者

Queue ??

Actually /home/xiaotao/Astar/pku2380.c~ can not be inserted to queue. why the file in the front of queue?

论坛徽章:
0
3 [报告]
发表于 2006-07-24 16:23 |只看该作者

problem has been solved

because heap.Now I have corrected it.

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
4 [报告]
发表于 2006-07-24 16:27 |只看该作者
Please modify your program to make it can print the directory name, so we can help you happily.

论坛徽章:
0
5 [报告]
发表于 2006-07-25 17:15 |只看该作者

Thank you

I have corrected it . let me appreciate you.

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
6 [报告]
发表于 2006-07-25 18:04 |只看该作者
if( !dir->IsDir() )

It call IsDir without any parameters, why?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP