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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: opwaveff.cpp,v 1.2.32.3 2004/07/09 01:44:17 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. /* Parts of pmatch() are copyright: */
  50. /*-
  51.  * Copyright (c) 1991, 1993
  52.  * The Regents of the University of California.  All rights reserved.
  53.  *
  54.  * This code is derived from software contributed to Berkeley by
  55.  * Kenneth Almquist.
  56.  *
  57.  * Redistribution and use in source and binary forms, with or without
  58.  * modification, are permitted provided that the following conditions
  59.  * are met:
  60.  * 1. Redistributions of source code must retain the above copyright
  61.  *    notice, this list of conditions and the following disclaimer.
  62.  * 2. Redistributions in binary form must reproduce the above copyright
  63.  *    notice, this list of conditions and the following disclaimer in the
  64.  *    documentation and/or other materials provided with the distribution.
  65.  * 3. All advertising materials mentioning features or use of this software
  66.  *    must display the following acknowledgement:
  67.  * This product includes software developed by the University of
  68.  * California, Berkeley and its contributors.
  69.  * 4. Neither the name of the University nor the names of its contributors
  70.  *    may be used to endorse or promote products derived from this software
  71.  *    without specific prior written permission.
  72.  *
  73.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  74.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  75.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  76.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  77.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  78.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  79.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  80.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  81.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  82.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  83.  * SUCH DAMAGE.
  84.  *
  85.  */
  86. #include "hlxclib/stdlib.h"
  87. #include "hlxclib/string.h"
  88. #include "findfile.h"
  89. #include "platform/openwave/opwaveff.h"
  90. COpenwaveFindFile::COpenwaveFindFile (   const char *path,
  91. const char *delimiter,
  92. const char *pattern) : 
  93.     CFindFile (path, delimiter, pattern)
  94. {
  95.     // initialize platform-specific variables 
  96.     //m_dirHandle = NULL;
  97.     //m_dirEntry = NULL;
  98. }
  99. COpenwaveFindFile::~COpenwaveFindFile()
  100. {
  101. //    if (m_dirHandle != NULL)
  102. //    {
  103. //        OS_CloseDirectory();
  104. //    }
  105. }
  106. //
  107. // Open the directory; initialize the directory handle.
  108. // Return FALSE if the directory couldn't be opened.
  109. //
  110. BOOL COpenwaveFindFile::OS_OpenDirectory (const char *dirname)
  111. {
  112.     // don't call this before calling CloseDirectory()!
  113.     //if (m_dirHandle != NULL)
  114. //return FALSE;
  115.     //m_dirHandle = opendir (dirname);
  116.     //return (m_dirHandle == NULL ? FALSE:TRUE);
  117. return FALSE;
  118. }
  119. //
  120. // Get the next file in the directory.  This *does not*
  121. // filter out based on the pattern; every file is returned.
  122. //
  123. char* COpenwaveFindFile::OS_GetNextFile()
  124. {
  125.     //if (!m_dirHandle)
  126. //return NULL;
  127.     //m_dirEntry = readdir (m_dirHandle);
  128.     //if (m_dirEntry != NULL)
  129. //return (m_dirEntry->d_name);
  130.     //else
  131. //return NULL;
  132. return NULL;
  133. }
  134. //
  135. // release the directory
  136. //
  137. void COpenwaveFindFile::OS_CloseDirectory ()
  138. {
  139.     //if (m_dirHandle)
  140. //closedir (m_dirHandle);
  141.     //m_dirHandle = NULL;
  142. }
  143. BOOL COpenwaveFindFile::OS_InitPattern ()
  144. {
  145.     return (TRUE);
  146. }
  147. static int
  148. pmatch(const char* pattern, const char* string)
  149. {
  150.     const char *p, *q;
  151.     char c;
  152.     p = pattern;
  153.     q = string;
  154.     for (;;) {
  155. switch (c = *p++) {
  156. case '':
  157.     goto breakloop;
  158. case '?':
  159.     if (*q++ == '')
  160. return 0;
  161. break;
  162. case '*':
  163.     c = *p;
  164.     if (c != '?' && c != '*' && c != '[') {
  165. while (*q != c) {
  166.     if (*q == '')
  167. return 0;
  168.     q++;
  169. }
  170.     }
  171.     do {
  172. if (pmatch(p, q))
  173.     return 1;
  174.     } while (*q++ != '');
  175. return 0;
  176. case '[': {
  177. const char *endp;
  178. int invert, found;
  179. char chr;
  180. endp = p;
  181. if (*endp == '!')
  182. endp++;
  183. for (;;) {
  184. if (*endp == '')
  185. goto dft; /* no matching ] */
  186. if (*++endp == ']')
  187. break;
  188. }
  189. invert = 0;
  190. if (*p == '!') {
  191. invert++;
  192. p++;
  193. }
  194. found = 0;
  195. chr = *q++;
  196. if (chr == '')
  197. return 0;
  198. c = *p++;
  199. do {
  200.     if (*p == '-' && p[1] != ']') {
  201. p++;
  202. #if 0
  203. if (   collate_range_cmp(chr, c) >= 0
  204.     && collate_range_cmp(chr, *p) <= 0
  205.    )
  206.     found = 1;
  207. #endif
  208. p++;
  209.     } else {
  210. if (chr == c)
  211.     found = 1;
  212.     }
  213. } while ((c = *p++) != ']');
  214. if (found == invert)
  215.     return 0;
  216. break;
  217.     }
  218.     dft:
  219.     default:
  220. if (*q++ != c)
  221.     return 0;
  222.     break;
  223. }
  224.     }
  225. breakloop:
  226.     if (*q != '')
  227. return 0;
  228.     return 1;
  229. }
  230. BOOL COpenwaveFindFile::OS_FileMatchesPattern (const char * fname)
  231. {
  232.     return pmatch(m_pattern, fname);
  233. }
  234. void COpenwaveFindFile::OS_FreePattern ()
  235. {
  236. }