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

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 "hxtypes.h"
  36. #include "hxcom.h"
  37. #include "hlxclib/string.h"
  38. #include "hlxclib/stdio.h"
  39. #include "hxassert.h"
  40. #include "dllacces.h"
  41. #include "dllpath.h"
  42. #include "hxstrutl.h"
  43. #include "hxdir.h" // for OS_SEPARATOR_CHAR
  44. #if !defined(_STATICALLY_LINKED) || !defined(HELIX_CONFIG_CONSOLIDATED_CORE)
  45. #error this file should exist only for consolidated core builds!
  46. #endif
  47. class MetaDLLAccess : public DLLAccessImp
  48. {
  49. public:
  50.     MetaDLLAccess();
  51.     virtual ~MetaDLLAccess();
  52.     virtual int Open(const char* dllName);
  53.     virtual int Close() ;
  54.     virtual void* GetSymbol(const char* symbolName);
  55.     virtual const char* GetErrorStr() const;
  56.     virtual char* CreateVersionStr(const char* dllName) const;
  57.     virtual DLLAccessPath* GetDLLAccessPath();
  58.     virtual void CreateName(const char* short_name, const char* long_name, 
  59.       char* out_buf, UINT32& out_buf_len, 
  60.       UINT32 nMajor, UINT32 nMinor);
  61. private:
  62.     DLLAccessImp* m_pActualDLLAccessImp;
  63. };
  64. MetaDLLAccess::MetaDLLAccess()
  65.   : m_pActualDLLAccessImp(NULL)
  66. {
  67.     // default to platform-specific implementation, although
  68.     // if Open() fails it will fall back to static implementation.
  69.     m_pActualDLLAccessImp = DLLAccess::CreatePlatformDLLImp();
  70. }
  71. MetaDLLAccess::~MetaDLLAccess()
  72. {
  73.     HX_DELETE(m_pActualDLLAccessImp);
  74. }
  75. int
  76. MetaDLLAccess::Open(const char* dllName)
  77. {
  78.     int ret = DLLAccess::NO_LOAD;
  79.     
  80.     ret = m_pActualDLLAccessImp->Open(dllName);
  81.     if (ret != DLLAccess::DLL_OK)
  82.     {
  83.         // couldn't find it in platform-specific (dynamic)
  84.         // DLL so look in the statically-linked implementation
  85.         HX_DELETE(m_pActualDLLAccessImp);
  86.         
  87.         // we may (probably do) need to strip the name from the
  88.         // full pathname.
  89.         const char* justName = strrchr(dllName, OS_SEPARATOR_CHAR);
  90.         if (justName)
  91.         {
  92.             justName++; // get past the separator character
  93.         }
  94.         else
  95.         {
  96.             justName = dllName;
  97.         }
  98.         
  99.         m_pActualDLLAccessImp = DLLAccess::CreateStaticDLLImp();
  100.         ret = m_pActualDLLAccessImp->Open(justName);
  101.         
  102.         if (ret != DLLAccess::DLL_OK)
  103.         {
  104.             HX_DELETE(m_pActualDLLAccessImp);
  105.         }
  106.     }
  107.     
  108.     HX_ASSERT(m_pActualDLLAccessImp);
  109.     return ret;
  110. }
  111. int
  112. MetaDLLAccess::Close()
  113. {
  114.     int ret = DLLAccess::DLL_OK;
  115.     
  116.     HX_ASSERT(m_pActualDLLAccessImp);
  117.     if (m_pActualDLLAccessImp)
  118.     {
  119.         ret = m_pActualDLLAccessImp->Close();
  120.     }
  121.     return ret;
  122. }
  123. void*
  124. MetaDLLAccess::GetSymbol(const char* symbolName)
  125. {
  126.     HX_ASSERT(m_pActualDLLAccessImp);
  127.     if (m_pActualDLLAccessImp)
  128.     {
  129.         return m_pActualDLLAccessImp->GetSymbol(symbolName);
  130.     }
  131.     else
  132.     {
  133.         return NULL;
  134.     }
  135. }
  136. const char*
  137. MetaDLLAccess::GetErrorStr() const
  138. {
  139.     HX_ASSERT(m_pActualDLLAccessImp);
  140.     if (m_pActualDLLAccessImp)
  141.     {
  142.         return m_pActualDLLAccessImp->GetErrorStr();
  143.     }
  144.     else
  145.     {
  146.         return NULL;
  147.     }
  148. }
  149. char*
  150. MetaDLLAccess::CreateVersionStr(const char* dllName) const
  151. {
  152.     HX_ASSERT(m_pActualDLLAccessImp);
  153.     if (m_pActualDLLAccessImp)
  154.     {
  155.         return m_pActualDLLAccessImp->CreateVersionStr(dllName);
  156.     }
  157.     else
  158.     {
  159.         return NULL;
  160.     }
  161. }
  162. DLLAccessPath*
  163. MetaDLLAccess::GetDLLAccessPath()
  164. {
  165.     HX_ASSERT(m_pActualDLLAccessImp);
  166.     if (m_pActualDLLAccessImp)
  167.     {
  168.         return m_pActualDLLAccessImp->GetDLLAccessPath();
  169.     }
  170.     else
  171.     {
  172.         return 0;
  173.     }
  174. }
  175. void
  176. MetaDLLAccess::CreateName(const char* short_name, const char* long_name, 
  177.       char* out_buf, UINT32& out_buf_len, 
  178.       UINT32 nMajor, UINT32 nMinor)
  179. {
  180.     DLLAccessImp* pDLLAccessImp = NULL;
  181.     if (1)
  182.     {
  183.         pDLLAccessImp = DLLAccess::CreateStaticDLLImp();
  184.     }
  185.     else
  186.     {
  187.         pDLLAccessImp = DLLAccess::CreatePlatformDLLImp();
  188.     }
  189.     pDLLAccessImp->CreateName(short_name, long_name, out_buf, out_buf_len, nMajor, nMinor);
  190.     HX_DELETE(pDLLAccessImp);
  191. }
  192. DLLAccessImp* DLLAccess::CreateMetaDLLImp()
  193. {
  194.     return new MetaDLLAccess();
  195. }