ffscoex.cpp 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. // ffsco.cpp: implementation of the helper_coffs::ffsco class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. /*
  5. * Copyright 2004, ??? (www.???.com). All rights reserved.
  6. * Copyright 1990-2004, ???.
  7. *
  8. * See the COPYING file for the terms of usage and distribution.
  9. */
  10. //////////////////////////////////////////////////////////////////////
  11. // ...
  12. // create@2004-03-17
  13. // by ???
  14. //////////////////////////////////////////////////////////////////////
  15. #include "stdafx.h" //--i want remove it
  16. #include "ffscoex.h"
  17. #include <windows.h>
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char THIS_FILE[] = __FILE__;
  22. #endif
  23. #ifdef _UNICODE
  24. #include "CharacterConvert.h"
  25. #endif //#ifdef _UNICODE
  26. using helper_coffs::LPSFILEINFO;
  27. using helper_coffs::SFILEINFO;
  28. namespace helper_coffs
  29. {
  30. //////////////////////////////////////////////////////////////////////
  31. // Construction/Destruction
  32. //////////////////////////////////////////////////////////////////////
  33. ffscoex::ffscoex()
  34. : _limit(def_limit)
  35. , _dirs(0)
  36. , _strroot("")
  37. {
  38. }
  39. ffscoex::~ffscoex()
  40. {
  41. Clear();
  42. }
  43. //////////////////////////////////////////////////////////////////////
  44. string ffscoex::_uppercase_(IN string& s)
  45. {
  46. const char aazz = 'z' - 'Z';
  47. string rs;
  48. for (string::iterator it = s.begin(); s.end() != it; it++)
  49. {
  50. if ('a' <= *it && *it <= 'z')
  51. rs.append(1, *it - aazz);
  52. else
  53. rs.append(1, *it);
  54. }
  55. return rs;
  56. }
  57. //////////////////////////////////////////////////////////////////////
  58. /************************************************************************/
  59. /*
  60. 函数: match
  61. 描述: 文件匹配检测
  62. 参数:
  63. IN string fext_, 文件后叠
  64. IN string file_ 文件
  65. 返回:
  66. */
  67. /************************************************************************/
  68. int ffscoex::match(IN string fext_, IN string file_)
  69. {
  70. string fext = _uppercase_(fext_);
  71. string file = _uppercase_(file_);
  72. int pos = file.find_last_of('.');
  73. if (string::npos != pos)
  74. file = file.substr(pos);
  75. return (string::npos != fext.find(file));
  76. }
  77. /************************************************************************/
  78. /*
  79. 函数: limit
  80. 描述: 设置结果文件数目上限
  81. 参数:
  82. IN limit_ 文件数目上限
  83. 返回:
  84. */
  85. /************************************************************************/
  86. void ffscoex::limit(IN int limit_)
  87. {
  88. if (limit_ < 1)
  89. _limit = def_limit;
  90. if (limit_ < max_limit)
  91. _limit = limit_;
  92. }
  93. /************************************************************************/
  94. /*
  95. 函数: dir
  96. 描述: 判断s是否为目录
  97. 参数:
  98. IN string& s 目录
  99. 返回:
  100. */
  101. /************************************************************************/
  102. int ffscoex::dir(IN string& s)
  103. {
  104. #ifdef _UNICODE
  105. WCHAR wszFile[MAX_PATH] = {0};
  106. utf82unicode(s.c_str(), wszFile);
  107. return (FILE_ATTRIBUTE_DIRECTORY == GetFileAttributes(wszFile));
  108. #else
  109. return (FILE_ATTRIBUTE_DIRECTORY == GetFileAttributes(s.c_str()));
  110. #endif //#ifdef _UNICODE
  111. }
  112. /************************************************************************/
  113. /*
  114. 函数: find
  115. 描述: 查找文件
  116. 参数:
  117. IN string& path_, 目录路径
  118. IN string& fext_ 文件后叠
  119. 返回:
  120. */
  121. /************************************************************************/
  122. int ffscoex::find(IN string path_, IN string fext_)
  123. {
  124. recursivefind(path_, path_, fext_);
  125. //--dir
  126. for (typeT::iterator it_dir = _co_dir.begin(); _co_dir.end() != it_dir; it_dir++)
  127. _co.push_back(*it_dir);
  128. //--file
  129. for (typeT::iterator it_file = _co_file.begin(); _co_file.end() != it_file; it_file++)
  130. _co.push_back(*it_file);
  131. return count();
  132. }
  133. /************************************************************************/
  134. /*
  135. 函数: recursivefind
  136. 描述: 递归查找文件
  137. 参数:
  138. IN string root_, 相对要查找的目录作为根目录,注:不是磁盘的根目录
  139. IN string path_, 目录路径
  140. IN string fext_ 文件后叠
  141. 返回:
  142. */
  143. /************************************************************************/
  144. void ffscoex::recursivefind(IN const string& root_, IN string path_, IN string fext_)
  145. {
  146. string path = path_;
  147. if (path.size() > 0 && c_pathSeparator != path[path.size() - 1])
  148. path.append(s_pathSeparator);
  149. string fext = fext_;
  150. if (0 == fext.compare("*") || 0 == fext.compare("*.*"))
  151. fext = "";
  152. //string file = fext;
  153. string file = "*";
  154. string s = path + file;
  155. WIN32_FIND_DATA fileinfo;
  156. memset(&fileinfo, 0, sizeof(WIN32_FIND_DATA));
  157. #ifdef _UNICODE
  158. WCHAR wszFileName[MAX_PATH] = {0};
  159. ascii2unicode(s.c_str(), wszFileName);
  160. HANDLE handle = FindFirstFile( wszFileName, &fileinfo );
  161. #else
  162. HANDLE handle = FindFirstFile( s.c_str(), &fileinfo );
  163. #endif //#ifdef _UNICODE
  164. if (NULL != handle && INVALID_HANDLE_VALUE != handle)
  165. {
  166. //添加当前目录
  167. LPSFILEINFO lpCurrDir = new SFILEINFO;
  168. memcpy(lpCurrDir, &fileinfo, sizeof(WIN32_FIND_DATA));
  169. lpCurrDir->strRootDir = root_;
  170. lpCurrDir->strAllPath = path;
  171. _co_dir.push_back(lpCurrDir);
  172. do
  173. {
  174. if ('.' != fileinfo.cFileName[0])
  175. {
  176. //目录
  177. if(FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) //--目录
  178. {
  179. LPSFILEINFO lpSubDir = new SFILEINFO;
  180. memcpy(lpSubDir, &fileinfo, sizeof(WIN32_FIND_DATA));
  181. lpSubDir->strRootDir = root_;
  182. lpSubDir->strAllPath = path;
  183. #ifdef _UNICODE
  184. char szFileName[MAX_PATH] = {0};
  185. unicode2acsii(fileinfo.cFileName, szFileName);
  186. string strSubDir = path;
  187. strSubDir.append(szFileName);
  188. #else
  189. //子目录
  190. string strSubDir = lpSubDir->strAllPath + lpSubDir->cFileName;
  191. #endif //#ifdef _UNICODE
  192. //是否查找子目录
  193. if (1 == dirs())
  194. recursivefind(root_, strSubDir, fext);
  195. delete lpSubDir;
  196. }
  197. else
  198. {
  199. //文件
  200. LPSFILEINFO lpSFileInfo = new SFILEINFO;
  201. memcpy(lpSFileInfo, &fileinfo, sizeof(WIN32_FIND_DATA));
  202. lpSFileInfo->strRootDir = root_;
  203. #ifdef _UNICODE
  204. char szFileName[MAX_PATH] = {0};
  205. unicode2acsii(fileinfo.cFileName, szFileName);
  206. if (0 == fext.size() || match(fext, szFileName))
  207. {
  208. lpSFileInfo->strAllPath = path;
  209. lpSFileInfo->strAllPath.append(szFileName);
  210. _co_file.push_back(lpSFileInfo);
  211. }
  212. else
  213. {
  214. if(lpSFileInfo)
  215. delete lpSFileInfo;
  216. }
  217. #else
  218. if (0 == fext.size() || match(fext, fileinfo.cFileName))
  219. {
  220. lpSFileInfo->strAllPath = path + fileinfo.cFileName;
  221. _co_file.push_back(lpSFileInfo);
  222. }
  223. else
  224. {
  225. if(lpSFileInfo)
  226. delete lpSFileInfo;
  227. }
  228. #endif //#ifdef _UNICODE
  229. }
  230. }
  231. } while (FindNextFile( handle, &fileinfo ));
  232. FindClose(handle);
  233. }
  234. }
  235. /************************************************************************/
  236. /*
  237. 函数: Clear
  238. 描述: 清除
  239. 参数:
  240. 返回:
  241. */
  242. /************************************************************************/
  243. void ffscoex::Clear()
  244. {
  245. typeT::iterator it = _co_file.begin();
  246. for(;it!=_co_file.end();)
  247. {
  248. LPSFILEINFO lp = (*it);
  249. lp = NULL;
  250. ++it;
  251. }
  252. _co_file.clear();
  253. it = _co_dir.begin();
  254. for(;it!=_co_dir.end();)
  255. {
  256. LPSFILEINFO lp = (*it);
  257. lp = NULL;
  258. ++it;
  259. }
  260. _co_dir.clear();
  261. it = _co.begin();
  262. for(;it!=_co.end();)
  263. {
  264. LPSFILEINFO lp = (*it);
  265. if(lp != NULL)
  266. delete lp;
  267. lp = NULL;
  268. ++it;
  269. }
  270. _co.clear();
  271. }
  272. /************************************************************************/
  273. /*
  274. 函数: deldir
  275. 描述: 删除目录
  276. 参数:
  277. IN LPCTSTR pDir 目录
  278. 返回:
  279. */
  280. /************************************************************************/
  281. int ffscoex::deldir(IN LPCTSTR lpDir)
  282. {
  283. #ifdef _UNICODE
  284. if(lpDir == NULL || wcscmp(lpDir, _T("")) == 0)
  285. return 0;
  286. #else
  287. if(lpDir == NULL || strcmp(lpDir, "") == 0)
  288. return 0;
  289. #endif
  290. if( !PathFileExists(lpDir))
  291. return 0;
  292. TCHAR szPath[MAX_PATH] = {0};
  293. #ifdef _UNICODE
  294. wcscpy(szPath, lpDir);
  295. #else
  296. strcpy(szPath, lpDir);
  297. #endif
  298. lstrcat(szPath, _T("\\*"));
  299. WIN32_FIND_DATA fileinfo = { 0 };
  300. HANDLE handle = FindFirstFile(szPath, &fileinfo);
  301. if (NULL == handle && INVALID_HANDLE_VALUE == handle)
  302. return 0;
  303. do
  304. {
  305. // '.'和 '..'的系统文件去除;
  306. if (_T('.') != fileinfo.cFileName[0])
  307. {
  308. TCHAR szCurrPath[MAX_PATH] = {0};
  309. #ifdef _UNICODE
  310. wcscpy(szCurrPath, lpDir);
  311. #else
  312. strcpy(szCurrPath, lpDir);
  313. #endif
  314. lstrcat(szCurrPath, _T("\\"));
  315. lstrcat(szCurrPath, fileinfo.cFileName);
  316. SetFileAttributes(szCurrPath, FILE_ATTRIBUTE_NORMAL);//去掉所有属性;
  317. if ((FILE_ATTRIBUTE_DIRECTORY & fileinfo.dwFileAttributes) == FILE_ATTRIBUTE_DIRECTORY) // 目录;
  318. {
  319. deldir(szCurrPath);
  320. }
  321. else
  322. {
  323. if(!DeleteFile(szCurrPath))
  324. {
  325. DWORD dwError = GetLastError();
  326. //LOG4C_NO_FILENUM((LOG_NOTICE,"删除文件出错:%d",dwError));
  327. }
  328. }
  329. }
  330. } while (FindNextFile(handle, &fileinfo));
  331. FindClose(handle);
  332. //删除目录
  333. if(!RemoveDirectory(lpDir))
  334. {
  335. DWORD dwError = GetLastError();
  336. //LOG4C_NO_FILENUM((LOG_NOTICE,"删除文件夹出错:%d",dwError));
  337. //OutputDebugString(_T("**************删除目录失败**************\n"));
  338. return 0;
  339. }
  340. return 1;
  341. }
  342. }; //--namespace helper_coffs