findfile.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "findfile.h"
  36. #if defined (_WINDOWS) || defined (_WIN32)
  37. #if !defined(WIN32_PLATFORM_PSPC)
  38. #include <dos.h>
  39. #endif /* !defined(WIN32_PLATFORM_PSPC) */
  40. #include "hlxclib/io.h"
  41. #include "platform/win/winff.h"
  42. #elif defined (_UNIX)
  43. #include "platform/unix/unixff.h"
  44. #elif defined (_SYMBIAN)
  45. #include "platform/symbian/symbianff.h"
  46. #elif defined (_OPENWAVE)
  47. #include "platform/openwave/opwaveff.h"
  48. #elif defined (_MACINTOSH)
  49. #include "platform/mac/macff.h"
  50. #endif
  51. #ifdef _UNIX
  52. #include <stdlib.h>
  53. #endif
  54. #include <string.h>
  55. #include "hxheap.h"
  56. #ifdef _DEBUG
  57. #undef HX_THIS_FILE
  58. static const char HX_THIS_FILE[] = __FILE__;
  59. #endif
  60. CFindFile*
  61. CFindFile::CreateFindFile(   const char *path,
  62.     const char *delimiter,
  63.     const char *pattern,
  64.     IUnknown** ppCommonObj)
  65. {
  66.     CFindFile* pFindFile = NULL;
  67. #if defined (_WINDOWS) || defined (_WIN32)
  68.     pFindFile = new CWinFindFile(path, delimiter, pattern);
  69. #elif defined (_UNIX)
  70.     pFindFile = new CUnixFindFile(path, delimiter, pattern);
  71. #elif defined (_MACINTOSH)
  72.     pFindFile = new CMacFindFile(path, delimiter, pattern);
  73. #elif defined (_SYMBIAN)
  74.     pFindFile = new CSymbianFindFile(path, delimiter, pattern, ppCommonObj);
  75. #endif
  76.     return pFindFile;
  77. }
  78. CFindFile::CFindFile (   const char *path,
  79.     const char *delimiter,
  80.     const char *pattern)
  81. {
  82.     m_searchPathDelimiter = NULL;
  83.     m_pattern = NULL;
  84.     m_curFilename = NULL;
  85.     m_pFilePath = NULL;
  86.     if (path == NULL)
  87. return;
  88.     m_searchPath = path;
  89.     if (delimiter)       
  90.     {
  91. m_searchPathDelimiter = new char [ strlen (delimiter) + 1 ];
  92. strcpy (m_searchPathDelimiter, delimiter); /* Flawfinder: ignore */
  93.     }
  94.     if (pattern)
  95.     {
  96. m_pattern = new char [ strlen (pattern) + 1 ];
  97. strcpy (m_pattern, pattern); /* Flawfinder: ignore */
  98.     }
  99.     m_curDir = NULL;
  100.     m_started = FALSE;
  101. }
  102. CFindFile::~CFindFile()
  103. {
  104.     if (m_searchPathDelimiter)
  105. delete [] m_searchPathDelimiter;
  106.     if (m_pattern)
  107. delete [] m_pattern;
  108.     if (m_curFilename)
  109. delete [] m_curFilename;
  110.     if (m_pFilePath)
  111. delete [] m_pFilePath;
  112. }
  113. char *CFindFile::FindFirst ()
  114. {
  115.     BOOL foundFirstDir = FALSE;
  116.     if (OS_InitPattern () == FALSE)
  117.     {
  118. return NULL;
  119.     }
  120.     if (m_searchPathDelimiter)
  121.     {
  122. m_curDir = strtok ((char*) ((const char*) m_searchPath), m_searchPathDelimiter);
  123.     }
  124.     else
  125.     {
  126. m_curDir = (char*) ((const char*) m_searchPath);
  127.     }
  128.     while (!foundFirstDir && m_curDir != NULL)
  129.     {
  130. if (OS_OpenDirectory (m_curDir) == TRUE)
  131. {
  132.     foundFirstDir = TRUE;
  133. }
  134. else
  135. {
  136.     if (m_searchPathDelimiter)
  137.     {
  138. m_curDir = strtok (NULL, m_searchPathDelimiter);
  139.     }
  140.     else
  141.     {
  142. m_curDir = NULL;
  143.     }
  144. }
  145.     }
  146.     if (foundFirstDir)
  147.     {
  148. m_started = TRUE;
  149. return (FindNext ());
  150.     }
  151.     else
  152.     {
  153. return NULL;
  154.     }
  155. }
  156. char *CFindFile::FindNext ()
  157. {
  158.     if (!m_started)
  159.     {
  160. return NULL;
  161.     }
  162.     char *fname = NULL;
  163.     BOOL doneWithDirs = FALSE;
  164.     if (m_curFilename != NULL)
  165.     {
  166. delete [] m_curFilename;
  167. m_curFilename = NULL;
  168.     }
  169.     // keep going until the file is found or we're out of
  170.     // directories to search for it in.
  171.     while (m_curFilename == NULL && doneWithDirs == FALSE)
  172.     {
  173. fname = OS_GetNextFile();
  174. // if we've got a file, see if it's a match
  175. if (fname != NULL)
  176. {
  177.     if (OS_FileMatchesPattern (fname))
  178.     {
  179. m_curFilename = new char [ strlen (fname) + 1 ];
  180. strcpy (m_curFilename, fname); /* Flawfinder: ignore */
  181.     }
  182. }
  183. // otherwise go on to the next directory
  184. else
  185. {
  186.     if (m_searchPathDelimiter)
  187.     {
  188. m_curDir = strtok (NULL, m_searchPathDelimiter);
  189.     }
  190.     else
  191.     {
  192. m_curDir = NULL;
  193.     }
  194.     if (m_curDir != NULL)
  195.     {
  196. // don't care if this fails; OS_GetNextFile() will
  197. // return null in that case
  198. OS_CloseDirectory ();
  199. doneWithDirs = (OS_OpenDirectory (m_curDir) == FALSE);
  200.     }
  201.     else
  202.     {
  203.                 OS_CloseDirectory ();
  204. // were're out of tokens, so we're done
  205. doneWithDirs = TRUE;
  206.     }
  207. }
  208.     }
  209.     if (m_curFilename)
  210.     {
  211. if (m_pFilePath)
  212. {
  213.     delete [] m_pFilePath;
  214.     m_pFilePath = 0;
  215. }
  216. m_pFilePath = new char[ strlen(m_curFilename) + strlen(m_curDir) + 
  217. strlen(OS_PATH_DELIMITER) + 1];
  218. if (!m_pFilePath)
  219.     return NULL;
  220. strcpy(m_pFilePath, m_curDir); /* Flawfinder: ignore */
  221. if (memcmp(&m_curDir[strlen(m_curDir) - 1], OS_PATH_DELIMITER, 1))
  222. {
  223.     strcat(m_pFilePath, OS_PATH_DELIMITER); /* Flawfinder: ignore */
  224. }
  225. strcat(m_pFilePath, m_curFilename); /* Flawfinder: ignore */
  226.     }
  227.     return (m_curFilename);
  228. }