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

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 "hxmap.h"
  36. #include "platform/mac/cresload.h"
  37. CResourceLoader::CResourceLoader(FSSpec& theFileSpec)
  38.  : m_theResFile(-1)
  39.  , m_ulRefCount(0)
  40.  , m_theFileSpec(theFileSpec)
  41.  , m_theHandleMap(0)
  42. {
  43.     m_theHandleMap = new CHXMapPtrToPtr();
  44. }
  45. CResourceLoader::~CResourceLoader()
  46. {
  47.     zm_theResourceLoader = NULL;
  48.     HX_ASSERT(m_theHandleMap->IsEmpty());
  49.     delete m_theHandleMap;
  50.     m_theHandleMap = 0;
  51.     
  52.     // close the resource file
  53.     ::CloseResFile(m_theResFile);
  54.     m_theResFile = -1;
  55. }
  56. CResourceLoader* 
  57. CResourceLoader::CreateInstance(FSSpec& theFileSpec)
  58. {
  59.     if (NULL == zm_theResourceLoader)
  60.     {
  61.      zm_theResourceLoader = new CResourceLoader(theFileSpec);
  62.     }
  63.     zm_theResourceLoader->AddRef();
  64.     return zm_theResourceLoader;
  65. }
  66. UINT32 
  67. CResourceLoader::AddRef()
  68. {
  69.     InterlockedIncrement(&m_ulRefCount);
  70.     return m_ulRefCount;
  71. }
  72. UINT32 
  73. CResourceLoader::Release()
  74. {
  75.     if (InterlockedDecrement(&m_ulRefCount) > 0)
  76.     {
  77.      return m_ulRefCount;
  78.     }
  79.     delete this;
  80.     return 0;
  81. }
  82. Handle 
  83. CResourceLoader::LoadResource(ResType theType, INT16 id)
  84. {
  85.     Handle hRes = 0;
  86.     // save the old file
  87.     INT16 thePrevResFile = ::CurResFile();
  88.     if (m_theResFile == -1)
  89.     {
  90.      m_theResFile = ::FSpOpenResFile(&m_theFileSpec, fsRdPerm);
  91.     }
  92.     if (m_theResFile != -1)
  93.     {
  94.      // set our's current
  95.      ::UseResFile(m_theResFile);
  96.      // load the resource
  97.      hRes = ::Get1Resource(theType, id);
  98.      // do the mapping stuff here in case we already have this handle around...
  99.      if (hRes)
  100.      {
  101.     long thisHandleCount = 0;
  102.     (void)m_theHandleMap->Lookup(hRes, (void*&)thisHandleCount);
  103.     thisHandleCount++;
  104.     (void)m_theHandleMap->SetAt(hRes, (void*)thisHandleCount);
  105.      }
  106.     
  107.      // reset old res file
  108.      ::UseResFile(thePrevResFile);
  109.     }
  110.     return hRes;
  111. }
  112. void
  113. CResourceLoader::UnloadResource(Handle hRes)
  114. {
  115.     // see if the handle has more than one mapped to it; we may not need to
  116.     // release the resource.
  117.     HX_ASSERT(hRes != nil);
  118.     if (!hRes) return;
  119.     
  120.     long thisHandleCount = 0;
  121.     (void)m_theHandleMap->Lookup(hRes, (void*&)thisHandleCount);
  122.     HX_ASSERT(thisHandleCount > 0);
  123.     thisHandleCount--;
  124.     
  125.     if (thisHandleCount == 0)
  126.     {
  127. // unload the resource
  128. ::ReleaseResource(hRes);
  129. (void)m_theHandleMap->RemoveKey(hRes);
  130.     }
  131.     else
  132.     {
  133. (void)m_theHandleMap->SetAt(hRes, (void*)thisHandleCount);
  134.     }
  135. }