symbianff.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:7k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: symbianff.cpp,v 1.5.36.3 2004/07/09 01:44:20 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer and/or licensor of the Original Code and owns the
  34.  * copyrights in the portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. /************************************************************************
  50.  *  Includes
  51.  */
  52. #include <stdlib.h>
  53. #include "hlxclib/string.h"
  54. #include "hxassert.h"
  55. #include "findfile.h"
  56. #include "hxdir.h"
  57. #include "platform/symbian/symbianff.h"
  58. #include "symbsessionmgr.h"
  59. static int pmatch(const char* pattern, const char* string);
  60. /************************************************************************
  61.  *  CSymbianFindFile
  62.  */
  63. CSymbianFindFile::CSymbianFindFile (  const char *path,
  64.                                       const char *delimiter,
  65.                                       const char *pattern,
  66.       IUnknown** ppCommonObj,
  67.       BOOL bFindDirs)
  68.     : CFindFile(path, delimiter, pattern)
  69.     , m_pSessionManager(NULL)
  70.     , m_bOpen(FALSE)
  71.     , m_bFindDirs(bFindDirs)
  72. {
  73.     CSymbSessionMgr::Create(m_pSessionManager, ppCommonObj);
  74.     // make sure path ends with a '' 
  75.     if (m_searchPath.IsEmpty() || (m_searchPath.Right(1) != OS_SEPARATOR_STRING))
  76.     {
  77. m_searchPath += OS_SEPARATOR_STRING;
  78.     }
  79. }
  80. CSymbianFindFile::~CSymbianFindFile()
  81. {
  82.     Close();
  83.     HX_RELEASE(m_pSessionManager);
  84. }
  85. BOOL CSymbianFindFile::GetSession(void)
  86. {
  87.     if (m_pSessionManager)
  88.     {
  89. return (m_pSessionManager->GetSession(m_symbSession) == HXR_OK);
  90.     }
  91.     
  92.     return FALSE;
  93. }
  94. BOOL CSymbianFindFile::OS_OpenDirectory(const char *dirname)
  95. {
  96.     BOOL bRetVal = FALSE;
  97.     if (GetSession())
  98.     {
  99. OS_STRING_TYPE osFileName(dirname);
  100. TPtrC symbNameDesc((TText*) ((OS_TEXT_PTR) osFileName));
  101. OS_CloseDirectory();
  102. bRetVal = (m_symbDir.Open(m_symbSession, 
  103.   symbNameDesc, 
  104.   m_bFindDirs ? KEntryAttDir : KEntryAttNormal) == KErrNone);
  105. m_bOpen = bRetVal;
  106.     }
  107.     return bRetVal;
  108. }
  109. char* CSymbianFindFile::OS_GetNextFile()
  110. {
  111.     char* pFileName = NULL;
  112.     if (m_bOpen && GetSession())
  113.     {
  114. TEntry* psymbDirEntry = new TEntry;
  115. if (psymbDirEntry)
  116. {
  117.     BOOL bTryAgain;
  118.     do
  119.     {
  120. bTryAgain = FALSE;
  121. if (m_symbDir.Read(*psymbDirEntry) == KErrNone)
  122. {
  123.     m_DirFileName = OS_STRING2((OS_TEXT_PTR) psymbDirEntry->iName.Ptr(),
  124.        psymbDirEntry->iName.Length());
  125.     pFileName = m_DirFileName;
  126. }
  127.     } while (bTryAgain);
  128.     delete psymbDirEntry;
  129. }
  130.     }
  131.     return pFileName;
  132. }
  133. void CSymbianFindFile::OS_CloseDirectory()
  134. {
  135.     Close();
  136. }
  137. void CSymbianFindFile::Close()
  138. {
  139.     if (m_bOpen)
  140.     {
  141. m_symbDir.Close();
  142. m_bOpen = FALSE;
  143.     }
  144. }
  145. BOOL CSymbianFindFile::OS_InitPattern()
  146. {
  147.     return TRUE;
  148. }
  149. BOOL CSymbianFindFile::OS_FileMatchesPattern (const char * fname)
  150. {
  151.     return pmatch(m_pattern, fname);
  152. }
  153. void CSymbianFindFile::OS_FreePattern ()
  154. {
  155.     ;
  156. }
  157. /************************************************************************
  158.  *  Tools
  159.  */
  160. static int
  161. pmatch(const char* pattern, const char* string)
  162. {
  163.     const char *p, *q;
  164.     char c;
  165.     p = pattern;
  166.     q = string;
  167.     for (;;) {
  168. switch (c = *p++) {
  169. case '':
  170.     goto breakloop;
  171. case '?':
  172.     if (*q++ == '')
  173. return 0;
  174. break;
  175. case '*':
  176.     c = *p;
  177.     if (c != '?' && c != '*' && c != '[') {
  178. while (*q != c) {
  179.     if (*q == '')
  180. return 0;
  181.     q++;
  182. }
  183.     }
  184.     do {
  185. if (pmatch(p, q))
  186.     return 1;
  187.     } while (*q++ != '');
  188. return 0;
  189. case '[': {
  190. const char *endp;
  191. int invert, found;
  192. char chr;
  193. endp = p;
  194. if (*endp == '!')
  195. endp++;
  196. for (;;) {
  197. if (*endp == '')
  198. goto dft; /* no matching ] */
  199. if (*++endp == ']')
  200. break;
  201. }
  202. invert = 0;
  203. if (*p == '!') {
  204. invert++;
  205. p++;
  206. }
  207. found = 0;
  208. chr = *q++;
  209. if (chr == '')
  210. return 0;
  211. c = *p++;
  212. do {
  213.     if (*p == '-' && p[1] != ']') {
  214. p++;
  215. #if 0
  216. if (   collate_range_cmp(chr, c) >= 0
  217.     && collate_range_cmp(chr, *p) <= 0
  218.    )
  219.     found = 1;
  220. #endif
  221. p++;
  222.     } else {
  223. if (chr == c)
  224.     found = 1;
  225.     }
  226. } while ((c = *p++) != ']');
  227. if (found == invert)
  228.     return 0;
  229. break;
  230.     }
  231.     dft:
  232.     default:
  233. if (*q++ != c)
  234.     return 0;
  235.     break;
  236. }
  237.     }
  238. breakloop:
  239.     if (*q != '')
  240. return 0;
  241.     return 1;
  242. }