symbian_dll_map.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 "platform/symbian/symbian_dll_map.h"
  36. #include "hxassert.h"
  37. class DLLMapInfo
  38. {
  39. public:
  40.     DLLMapInfo(void* pEntryPoint);
  41.     ~DLLMapInfo();
  42.     void* EntryPoint() const { return m_pEntryPoint;}
  43.     void OnLoad() {m_ulCount++;}
  44.     BOOL OnUnload();
  45. private:
  46.     void DoCleanup();
  47.     void* m_pEntryPoint;
  48.     UINT32 m_ulCount;
  49. };
  50. DLLMapInfo::DLLMapInfo(void* pEntryPoint) :
  51.     m_pEntryPoint(pEntryPoint),
  52.     m_ulCount(0)
  53. {}
  54. DLLMapInfo::~DLLMapInfo()
  55. {
  56.     if (m_ulCount != 0)
  57.     {
  58. DoCleanup();
  59.     }
  60. }
  61. BOOL DLLMapInfo::OnUnload()
  62. {
  63.     BOOL bRet = FALSE;
  64.     HX_ASSERT(m_ulCount);
  65.     if (m_ulCount > 0)
  66.     {
  67. m_ulCount--;
  68. if (m_ulCount == 0)
  69. {
  70.     DoCleanup();
  71.     bRet = TRUE;
  72. }
  73.     }
  74.     return bRet;
  75. }
  76. void DLLMapInfo::DoCleanup()
  77. {
  78. #ifdef _ARM
  79.     // Make the device behave like the emulator.
  80.     // The emulator calls E32Dll(EDllProcessDetach) when 
  81.     // Close() is called on the library handle. This does
  82.     // not occur on the device so we've added this code
  83.     // to do it.
  84.     TLibraryEntry pEntry = (TLibraryEntry)m_pEntryPoint;
  85.     
  86.     if (pEntry)
  87.     {
  88. pEntry(EDllProcessDetach);
  89.     }
  90. #endif
  91. }
  92. SymbianDLLMapImp::SymbianDLLMapImp()
  93. {}
  94. SymbianDLLMapImp::~SymbianDLLMapImp()
  95. {
  96.     HX_ASSERT(m_libList.IsEmpty());
  97.     while(!m_libList.IsEmpty())
  98.     {
  99. DLLMapInfo* pTmp = (DLLMapInfo*)m_libList.RemoveHead();
  100. HX_DELETE(pTmp);
  101.     }
  102. }
  103. void SymbianDLLMapImp::OnLoad(void* pDLLEntryPoint)
  104. {
  105.     DLLMapInfo* pInfo = FindInfo(pDLLEntryPoint);
  106.     if (!pInfo)
  107.     {
  108. pInfo = new DLLMapInfo(pDLLEntryPoint);
  109. if (pInfo && !m_libList.AddHead(pInfo))
  110. {
  111.     // The AddHead() failed
  112.     HX_DELETE(pInfo);
  113. }
  114.     }
  115.     if (pInfo)
  116.     {
  117. pInfo->OnLoad();
  118.     }
  119. }
  120. void SymbianDLLMapImp::OnUnload(void* pDLLEntryPoint)
  121. {
  122.     DLLMapInfo* pInfo = FindInfo(pDLLEntryPoint);
  123.     HX_ASSERT(pInfo);
  124.     if (pInfo)
  125.     {
  126. if (pInfo->OnUnload())
  127. {
  128.     // This was the last unload for this DLL.
  129.     // Remove it from our list and destroy the info
  130.     
  131.     LISTPOSITION pos = m_libList.GetHeadPosition();
  132.     while(pInfo && pos)
  133.     {
  134. if (pInfo == (DLLMapInfo*)m_libList.GetAt(pos))
  135. {
  136.     m_libList.RemoveAt(pos);
  137.     HX_DELETE(pInfo);
  138. }
  139. else
  140. {
  141.     m_libList.GetNext(pos);
  142. }
  143.     }
  144. }
  145.     }
  146. }
  147. DLLMapInfo* SymbianDLLMapImp::FindInfo(void* pDLLEntryPoint)
  148. {
  149.     DLLMapInfo* pRet = NULL;
  150.     CHXSimpleList::Iterator itr = m_libList.Begin();
  151.     for(; !pRet && (itr != m_libList.End()); ++itr)
  152.     {
  153. DLLMapInfo* pTmp = (DLLMapInfo*)*itr;
  154. if (pTmp && (pTmp->EntryPoint() == pDLLEntryPoint))
  155. {
  156.     pRet = pTmp;
  157. }
  158.     }
  159.     return pRet;
  160. }