symbian_dll.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 "dllacces.h"
  36. #include <e32std.h>
  37. #include <stdio.h>
  38. #include <string.h>
  39. #include "platform/symbian/isymbian_dll_map.h"
  40. #include "platform/symbian/symbian_dll_map_inst.h"
  41. #include "hxassert.h"
  42. const char ErrLoadFailed[] = "DLL not loaded";
  43. const char ErrNoOrd1[] = "Function ordinal 1 no presentn";
  44. const char ErrSymbolNotFound[] = "Symbol not found";
  45. const char ErrInvalidOrdinal[] = "Invalid function ordinal";
  46. typedef int (*GetSym2Ord)(const char* pSymbolName);
  47. class SymbianDLLAccess : public DLLAccessImp
  48. {
  49. public:
  50.     SymbianDLLAccess();
  51.     virtual ~SymbianDLLAccess();
  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 void CreateName(const char* short_name, const char* long_name, 
  58.       char* out_buf, UINT32& out_buf_len, 
  59.       UINT32 nMajor, UINT32 nMinor);
  60. private:
  61.     RLibrary m_handle;
  62.     const char* m_pErrorStr;
  63. };
  64. static HBufC* CreateNameDesc(const char* dllName)
  65. {
  66.     TInt length = strlen(dllName);
  67.     HBufC* pRet = HBufC::NewMax(length);
  68.     if (pRet)
  69.     {
  70. for (TInt i = 0;i < length ; i++)
  71. {
  72.     pRet->Des()[i] = dllName[i];
  73. }
  74.     }
  75.     return pRet;
  76. }
  77. SymbianDLLAccess::SymbianDLLAccess()
  78. {}
  79. SymbianDLLAccess::~SymbianDLLAccess()
  80. {
  81.     Close();
  82. }
  83. int SymbianDLLAccess::Open(const char* dllName)
  84. {
  85.     int ret = DLLAccess::NO_LOAD;
  86.     Close();
  87.     HBufC* pDllName = CreateNameDesc(dllName);
  88.     TInt res = m_handle.Load(pDllName->Des());
  89.     delete pDllName;
  90.     if (res == KErrNone)
  91.     {
  92. ISymbianDLLMap* pDLLMap = HXSymbianDLLMapInstance::GetInstance();
  93. void* pEntrypoint = (void*)m_handle.EntryPoint();
  94. HX_ASSERT(pDLLMap);
  95. if (pDLLMap && pEntrypoint)
  96. {
  97.     pDLLMap->OnLoad(pEntrypoint);
  98. }
  99. ret = DLLAccess::DLL_OK;
  100.     }
  101.     else
  102.     {
  103. if (res == KErrNoMemory)
  104. {
  105.     ret = DLLAccess::OUT_OF_MEMORY;
  106. }
  107. m_pErrorStr = ErrLoadFailed;
  108.     }
  109.     return ret;
  110. }
  111. int SymbianDLLAccess::Close()
  112. {
  113.     if (m_handle.Handle())
  114.     {
  115. ISymbianDLLMap* pDLLMap = HXSymbianDLLMapInstance::GetInstance();
  116. void* pEntrypoint = (void*)m_handle.EntryPoint();
  117. HX_ASSERT(pDLLMap);
  118. if (pDLLMap && pEntrypoint)
  119. {
  120.     pDLLMap->OnUnload(pEntrypoint);
  121. }
  122. m_handle.Close();
  123.     }
  124.     return DLLAccess::DLL_OK;
  125. }
  126. void* SymbianDLLAccess::GetSymbol(const char* symbolName)
  127. {
  128.     void* pRet = 0;
  129.     // Get the GetSymbol2Ord function from the DLL.
  130.     // This should always be the function in ordinal 1
  131.     GetSym2Ord getSymbol2Ord = (GetSym2Ord)m_handle.Lookup(1);
  132.     
  133.     if (getSymbol2Ord)
  134.     {
  135. // Get the ordinal value for the specified symbol
  136. int symbolOrdinal = getSymbol2Ord(symbolName);
  137. if (symbolOrdinal > 1)
  138. {
  139.     // Use the ordinal to get the pointer to the symbol
  140.     pRet = (void*)m_handle.Lookup(symbolOrdinal);
  141.     if (!pRet)
  142. m_pErrorStr = ErrInvalidOrdinal;
  143. }
  144. else
  145.     m_pErrorStr = ErrSymbolNotFound;
  146.     }
  147.     else
  148. m_pErrorStr = ErrNoOrd1;
  149.     return pRet;
  150. }
  151. const char* SymbianDLLAccess::GetErrorStr() const
  152. {
  153.     return m_pErrorStr;
  154. }
  155. char* SymbianDLLAccess::CreateVersionStr(const char* dllName) const
  156. {
  157.     return 0;
  158. }
  159. void
  160. SymbianDLLAccess::CreateName(const char* short_name, const char* long_name, 
  161.       char* out_buf, UINT32& out_buf_len, 
  162.       UINT32 nMajor, UINT32 nMinor)
  163. {
  164.     UINT32  long_name_len;
  165.     out_buf[0] = 0;
  166.     long_name_len = strlen(long_name);
  167.     if (long_name_len + DLLAccess::EXTRA_BUF_LEN > out_buf_len)
  168.     {
  169. ASSERT(0);
  170. out_buf_len = 0;
  171. return;
  172.     }
  173.     out_buf_len = sprintf(out_buf, "%s.dll", long_name); /* Flawfinder: ignore */
  174. }
  175. DLLAccessImp* DLLAccess::CreatePlatformDLLImp()
  176. {
  177.     return new SymbianDLLAccess();
  178. }