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

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. #if !defined(_CARBON) && !defined(_MAC_UNIX)
  36. #error requires Carbon
  37. #endif
  38. #include <string.h>
  39. #include "platform/mac/macff.h"
  40. #include "platform/mac/cfwrappers.h"
  41. #include "platform/mac/fullpathname.h"
  42. //static int pmatch(const char* pattern, const char* string);
  43. CMacFindFile::CMacFindFile ( const char *path,
  44. const char *delimiter,
  45. const char *pattern) :
  46.     CFindFile (path, delimiter, pattern)
  47. {
  48. m_FSIterator = 0;
  49. m_pszOutFileName = NULL;
  50. }
  51. CMacFindFile::~CMacFindFile()
  52. {
  53. OS_CloseDirectory();
  54. }
  55. //
  56. // Open the directory; initialize the directory handle.
  57. // Return FALSE if the directory couldn't be opened.
  58. //
  59. BOOL CMacFindFile::OS_OpenDirectory (const char *dirname)
  60. {
  61. FSRef dirRef;
  62. OSErr err;
  63. OS_CloseDirectory(); // in case one was open
  64. // open an FSIterator for the supplied directory path
  65. #ifdef _MAC_MACHO
  66. err = FSRefFromPosixPath(dirname, &dirRef);
  67. #else
  68. err = FSRefFromHFSPath(dirname, &dirRef);
  69. #endif
  70. require_noerr_quiet(err, CantGetRefForDirPath);
  71. err = FSOpenIterator(&dirRef, kFSIterateFlat, &m_FSIterator);
  72. require_noerr(err, CantMakeIterator);
  73. return TRUE;
  74. CantMakeIterator:
  75. CantGetRefForDirPath:
  76. return FALSE;
  77. }
  78. //
  79. // release the directory
  80. //
  81. void CMacFindFile::OS_CloseDirectory ()
  82. {
  83. HX_VECTOR_DELETE(m_pszOutFileName);
  84. if (m_FSIterator)
  85. {
  86. OSErr err;
  87. err = FSCloseIterator(m_FSIterator);
  88. check_noerr(err);
  89. m_FSIterator = 0;
  90. }
  91. return;
  92. }
  93. //
  94. // Get the next file in the directory. Filters according to pattern
  95. //
  96. char* CMacFindFile::OS_GetNextFile()
  97. {
  98. require_nonnull_return(m_FSIterator, NULL); // be sure OS_OpenDirectory happened
  99. OSErr err;
  100. ItemCount actualCount;
  101. HFSUniStr255 uniName;
  102. FSCatalogInfo catInfo;
  103. Boolean bIsDir;
  104. const ItemCount kWantOneItem = 1;
  105. Boolean * kDontCareIfContainerChanged = NULL;
  106. FSSpec * kDontWantFSSpecs = NULL;
  107. FSRef * kDontWantFSRefs = NULL;
  108. // reset our output string; we'll return nil if we fail, anyway
  109. HX_VECTOR_DELETE(m_pszOutFileName);
  110. // get an item, looping if we got a directory
  111. do
  112. {
  113. err = FSGetCatalogInfoBulk(m_FSIterator, 
  114. kWantOneItem, &actualCount,
  115. kDontCareIfContainerChanged,
  116. kFSCatInfoNodeFlags, &catInfo,
  117. kDontWantFSRefs, kDontWantFSSpecs, 
  118. &uniName);
  119. bIsDir = ((catInfo.nodeFlags & kFSNodeIsDirectoryMask) != 0);
  120.                 
  121. #ifdef _MAC_MACHO
  122.                 if (!err && m_pattern)
  123.                 {
  124.                     if (!strcmp(m_pattern, "*.bundle"))
  125.                     {
  126.                         // if we're looking for bundles let's assume we can
  127.                         // call directories whose names end with ".bundle"
  128.                         // files so plugin counters work.
  129.                         CHXCFString str(uniName);
  130.                         CFStringRef strR = str;
  131.                         char buf[1024];
  132.                         CFStringGetCString(strR, buf, 1023, kCFStringEncodingMacRoman);
  133.                         
  134.                         // xxxbobclark use a better way to figure out if it's really a bundle
  135.                         
  136.                         if (strstr(buf, ".bundle"))
  137.                         {
  138.                             bIsDir = false; // fake it because it's a bundle
  139.                         }
  140.                     }
  141.                 }
  142. #endif
  143. } while (err == noErr && bIsDir);
  144. if (err == noErr)
  145. {
  146. // got a file; convert to a C-string and return a pointer
  147. #ifdef _MAC_MACHO
  148.                 CHXCFString str(uniName);
  149.                 CFStringRef strR = str;
  150.                 char buf[1024];
  151.                 size_t bufSize = 1023;
  152.                 CFStringGetCString(strR, buf, bufSize, kCFStringEncodingMacRoman);
  153.                 CHXString strName(buf);
  154. #else
  155.                 CHXString strName;
  156. strName.SetFromHFSUniStr255(uniName, CFStringGetSystemEncoding());
  157. #endif
  158. m_pszOutFileName = new char[1 + strName.GetLength()];
  159. check_nonnull(m_pszOutFileName);
  160. if (m_pszOutFileName)
  161. {
  162. strcpy(m_pszOutFileName, (const char *) strName); /* Flawfinder: ignore */
  163. }
  164. }
  165. else
  166. {
  167. // no more found; return the nil pointer
  168. }
  169. return m_pszOutFileName;
  170. }
  171. BOOL CMacFindFile::OS_InitPattern ()
  172. {
  173.     return TRUE;
  174. }
  175. BOOL CMacFindFile::OS_FileMatchesPattern (const char * fname)
  176. {
  177.     return pmatch(m_pattern, fname);
  178. }
  179. void CMacFindFile::OS_FreePattern ()
  180. {
  181.     return;
  182. }
  183. // pmatch is copied from unixff.cpp...
  184. /* Parts of pmatch() are copyright: */
  185. /*-
  186.  * Copyright (c) 1991, 1993
  187.  * The Regents of the University of California.  All rights reserved.
  188.  *
  189.  * This code is derived from software contributed to Berkeley by
  190.  * Kenneth Almquist.
  191.  *
  192.  * Redistribution and use in source and binary forms, with or without
  193.  * modification, are permitted provided that the following conditions
  194.  * are met:
  195.  * 1. Redistributions of source code must retain the above copyright
  196.  *    notice, this list of conditions and the following disclaimer.
  197.  * 2. Redistributions in binary form must reproduce the above copyright
  198.  *    notice, this list of conditions and the following disclaimer in the
  199.  *    documentation and/or other materials provided with the distribution.
  200.  * 3. All advertising materials mentioning features or use of this software
  201.  *    must display the following acknowledgement:
  202.  * This product includes software developed by the University of
  203.  * California, Berkeley and its contributors.
  204.  * 4. Neither the name of the University nor the names of its contributors
  205.  *    may be used to endorse or promote products derived from this software
  206.  *    without specific prior written permission.
  207.  *
  208.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  209.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  210.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  211.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  212.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  213.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  214.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  215.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  216.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  217.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  218.  * SUCH DAMAGE.
  219.  *
  220.  */
  221. int CMacFindFile::pmatch(const char* pattern, const char* string)
  222. {
  223.     const char *p, *q;
  224.     char c;
  225.     p = pattern;
  226.     q = string;
  227.     for (;;) {
  228. switch (c = *p++) {
  229. case '':
  230.     goto breakloop;
  231. case '?':
  232.     if (*q++ == '')
  233. return 0;
  234. break;
  235. case '*':
  236.     c = *p;
  237.     if (c != '?' && c != '*' && c != '[') {
  238. while (*q != c) {
  239.     if (*q == '')
  240. return 0;
  241.     q++;
  242. }
  243.     }
  244.     do {
  245. if (pmatch(p, q))
  246.     return 1;
  247.     } while (*q++ != '');
  248. return 0;
  249. case '[': {
  250. const char *endp;
  251. int invert, found;
  252. char chr;
  253. endp = p;
  254. if (*endp == '!')
  255. endp++;
  256. for (;;) {
  257. if (*endp == '')
  258. goto dft; /* no matching ] */
  259. if (*++endp == ']')
  260. break;
  261. }
  262. invert = 0;
  263. if (*p == '!') {
  264. invert++;
  265. p++;
  266. }
  267. found = 0;
  268. chr = *q++;
  269. if (chr == '')
  270. return 0;
  271. c = *p++;
  272. do {
  273.     if (*p == '-' && p[1] != ']') {
  274. p++;
  275. #if 0
  276. if (   collate_range_cmp(chr, c) >= 0
  277.     && collate_range_cmp(chr, *p) <= 0
  278.    )
  279.     found = 1;
  280. #endif
  281. p++;
  282.     } else {
  283. if (chr == c)
  284.     found = 1;
  285.     }
  286. } while ((c = *p++) != ']');
  287. if (found == invert)
  288.     return 0;
  289. break;
  290.     }
  291.     dft:
  292.     default:
  293. if (*q++ != c)
  294.     return 0;
  295.     break;
  296. }
  297.     }
  298. breakloop:
  299.     if (*q != '')
  300. return 0;
  301.     return 1;
  302. }
  303. // ------------------------------------------------------------------------------------
  304. #ifdef _DEBUG
  305. void CMacFindFile::TestFF(const char *directorypath, const char *pfilter)
  306. {
  307. CFindFile* pFileFinder =NULL;
  308. char * pszDllName;
  309. int count = 0;
  310. CHXString s1;
  311. Str255 s1Pasc;
  312. pFileFinder = CFindFile::CreateFindFile(directorypath, 0, pfilter);
  313. pszDllName = pFileFinder->FindFirst();
  314. while (pszDllName)
  315. {
  316. count ++;
  317. CHXString s2;
  318. s2.Format("%s: %d %sr", pfilter, (short) count, pszDllName);
  319. if (s1.GetLength() + s2.GetLength() > 255)
  320. {
  321. s1.MakeStr255(s1Pasc);
  322. DebugStr(s1Pasc);
  323. s1.Empty();
  324. }
  325. s1 += s2;
  326. char *path = pFileFinder->GetCurFilePath();
  327. char *filename = pFileFinder->GetCurFilename();
  328. char *dirpath = pFileFinder->GetCurDirectory();
  329. pszDllName = pFileFinder->FindNext();
  330. }
  331. delete pFileFinder;
  332. s1.MakeStr255(s1Pasc);
  333. DebugStr(s1Pasc);
  334. }
  335. #endif