symbianff.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 and/or licensor of the Original Code and owns the copyrights 
  21.  * in the portions 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. /************************************************************************
  36.  *  Includes
  37.  */
  38. #include <stdlib.h>
  39. #include "hlxclib/string.h"
  40. #include "hxassert.h"
  41. #include "findfile.h"
  42. #include "hxdir.h"
  43. #include "platform/symbian/symbianff.h"
  44. #include "symbsessionmgr.h"
  45. static int pmatch(const char* pattern, const char* string);
  46. /************************************************************************
  47.  *  CSymbianFindFile
  48.  */
  49. CSymbianFindFile::CSymbianFindFile (  const char *path,
  50.                                       const char *delimiter,
  51.                                       const char *pattern,
  52.       IUnknown** ppCommonObj,
  53.       BOOL bFindDirs)
  54.     : CFindFile(path, delimiter, pattern)
  55.     , m_pSessionManager(NULL)
  56.     , m_bOpen(FALSE)
  57.     , m_bFindDirs(bFindDirs)
  58. {
  59.     CSymbSessionMgr::Create(m_pSessionManager, ppCommonObj);
  60.     // make sure path ends with a '' 
  61.     if (m_searchPath.IsEmpty() || (m_searchPath.Right(1) != OS_SEPARATOR_STRING))
  62.     {
  63. m_searchPath += OS_SEPARATOR_STRING;
  64.     }
  65. }
  66. CSymbianFindFile::~CSymbianFindFile()
  67. {
  68.     Close();
  69.     HX_RELEASE(m_pSessionManager);
  70. }
  71. BOOL CSymbianFindFile::GetSession(void)
  72. {
  73.     if (m_pSessionManager)
  74.     {
  75. return (m_pSessionManager->GetSession(m_symbSession) == HXR_OK);
  76.     }
  77.     
  78.     return FALSE;
  79. }
  80. BOOL CSymbianFindFile::OS_OpenDirectory(const char *dirname)
  81. {
  82.     BOOL bRetVal = FALSE;
  83.     if (GetSession())
  84.     {
  85. OS_STRING_TYPE osFileName(dirname);
  86. TPtrC symbNameDesc((TText*) ((OS_TEXT_PTR) osFileName));
  87. OS_CloseDirectory();
  88. bRetVal = (m_symbDir.Open(m_symbSession, 
  89.   symbNameDesc, 
  90.   m_bFindDirs ? KEntryAttDir : KEntryAttNormal) == KErrNone);
  91. m_bOpen = bRetVal;
  92.     }
  93.     return bRetVal;
  94. }
  95. char* CSymbianFindFile::OS_GetNextFile()
  96. {
  97.     char* pFileName = NULL;
  98.     if (m_bOpen && GetSession())
  99.     {
  100. TEntry* psymbDirEntry = new TEntry;
  101. if (psymbDirEntry)
  102. {
  103.     BOOL bTryAgain;
  104.     do
  105.     {
  106. bTryAgain = FALSE;
  107. if (m_symbDir.Read(*psymbDirEntry) == KErrNone)
  108. {
  109.     m_DirFileName = OS_STRING2((OS_TEXT_PTR) psymbDirEntry->iName.Ptr(),
  110.        psymbDirEntry->iName.Length());
  111.     pFileName = m_DirFileName;
  112. }
  113.     } while (bTryAgain);
  114.     delete psymbDirEntry;
  115. }
  116.     }
  117.     return pFileName;
  118. }
  119. void CSymbianFindFile::OS_CloseDirectory()
  120. {
  121.     Close();
  122. }
  123. void CSymbianFindFile::Close()
  124. {
  125.     if (m_bOpen)
  126.     {
  127. m_symbDir.Close();
  128. m_bOpen = FALSE;
  129.     }
  130. }
  131. BOOL CSymbianFindFile::OS_InitPattern()
  132. {
  133.     return TRUE;
  134. }
  135. BOOL CSymbianFindFile::OS_FileMatchesPattern (const char * fname)
  136. {
  137.     return pmatch(m_pattern, fname);
  138. }
  139. void CSymbianFindFile::OS_FreePattern ()
  140. {
  141.     ;
  142. }
  143. /************************************************************************
  144.  *  Tools
  145.  */
  146. static int
  147. pmatch(const char* pattern, const char* string)
  148. {
  149.     const char *p, *q;
  150.     char c;
  151.     p = pattern;
  152.     q = string;
  153.     for (;;) {
  154. switch (c = *p++) {
  155. case '':
  156.     goto breakloop;
  157. case '?':
  158.     if (*q++ == '')
  159. return 0;
  160. break;
  161. case '*':
  162.     c = *p;
  163.     if (c != '?' && c != '*' && c != '[') {
  164. while (*q != c) {
  165.     if (*q == '')
  166. return 0;
  167.     q++;
  168. }
  169.     }
  170.     do {
  171. if (pmatch(p, q))
  172.     return 1;
  173.     } while (*q++ != '');
  174. return 0;
  175. case '[': {
  176. const char *endp;
  177. int invert, found;
  178. char chr;
  179. endp = p;
  180. if (*endp == '!')
  181. endp++;
  182. for (;;) {
  183. if (*endp == '')
  184. goto dft; /* no matching ] */
  185. if (*++endp == ']')
  186. break;
  187. }
  188. invert = 0;
  189. if (*p == '!') {
  190. invert++;
  191. p++;
  192. }
  193. found = 0;
  194. chr = *q++;
  195. if (chr == '')
  196. return 0;
  197. c = *p++;
  198. do {
  199.     if (*p == '-' && p[1] != ']') {
  200. p++;
  201. #if 0
  202. if (   collate_range_cmp(chr, c) >= 0
  203.     && collate_range_cmp(chr, *p) <= 0
  204.    )
  205.     found = 1;
  206. #endif
  207. p++;
  208.     } else {
  209. if (chr == c)
  210.     found = 1;
  211.     }
  212. } while ((c = *p++) != ']');
  213. if (found == invert)
  214.     return 0;
  215. break;
  216.     }
  217.     dft:
  218.     default:
  219. if (*q++ != c)
  220.     return 0;
  221.     break;
  222. }
  223.     }
  224. breakloop:
  225.     if (*q != '')
  226. return 0;
  227.     return 1;
  228. }