symbian_dll.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: symbian_dll.cpp,v 1.10.2.3 2004/07/09 01:43:27 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "dllacces.h"
  50. #include <e32std.h>
  51. #include <stdio.h>
  52. #include <string.h>
  53. #include "platform/symbian/isymbian_dll_map.h"
  54. #include "platform/symbian/symbian_dll_map_inst.h"
  55. #include "hxassert.h"
  56. const char ErrLoadFailed[] = "DLL not loaded";
  57. const char ErrNoOrd1[] = "Function ordinal 1 no presentn";
  58. const char ErrSymbolNotFound[] = "Symbol not found";
  59. const char ErrInvalidOrdinal[] = "Invalid function ordinal";
  60. typedef int (*GetSym2Ord)(const char* pSymbolName);
  61. class SymbianDLLAccess : public DLLAccessImp
  62. {
  63. public:
  64.     SymbianDLLAccess();
  65.     virtual ~SymbianDLLAccess();
  66.     virtual int Open(const char* dllName);
  67.     virtual int Close() ;
  68.     virtual void* GetSymbol(const char* symbolName);
  69.     virtual const char* GetErrorStr() const;
  70.     virtual char* CreateVersionStr(const char* dllName) const;
  71.     virtual void CreateName(const char* short_name, const char* long_name, 
  72.       char* out_buf, UINT32& out_buf_len, 
  73.       UINT32 nMajor, UINT32 nMinor);
  74. private:
  75.     RLibrary m_handle;
  76.     const char* m_pErrorStr;
  77. };
  78. static HBufC* CreateNameDesc(const char* dllName)
  79. {
  80.     TInt length = strlen(dllName);
  81.     HBufC* pRet = HBufC::NewMax(length);
  82.     if (pRet)
  83.     {
  84. for (TInt i = 0;i < length ; i++)
  85. {
  86.     pRet->Des()[i] = dllName[i];
  87. }
  88.     }
  89.     return pRet;
  90. }
  91. SymbianDLLAccess::SymbianDLLAccess()
  92. {}
  93. SymbianDLLAccess::~SymbianDLLAccess()
  94. {
  95.     Close();
  96. }
  97. int SymbianDLLAccess::Open(const char* dllName)
  98. {
  99.     int ret = DLLAccess::NO_LOAD;
  100.     Close();
  101.     HBufC* pDllName = CreateNameDesc(dllName);
  102.     TInt res = m_handle.Load(pDllName->Des());
  103.     delete pDllName;
  104.     if (res == KErrNone)
  105.     {
  106. ISymbianDLLMap* pDLLMap = HXSymbianDLLMapInstance::GetInstance();
  107. void* pEntrypoint = (void*)m_handle.EntryPoint();
  108. HX_ASSERT(pDLLMap);
  109. if (pDLLMap && pEntrypoint)
  110. {
  111.     pDLLMap->OnLoad(pEntrypoint);
  112. }
  113. ret = DLLAccess::DLL_OK;
  114.     }
  115.     else
  116.     {
  117. if (res == KErrNoMemory)
  118. {
  119.     ret = DLLAccess::OUT_OF_MEMORY;
  120. }
  121. m_pErrorStr = ErrLoadFailed;
  122.     }
  123.     return ret;
  124. }
  125. int SymbianDLLAccess::Close()
  126. {
  127.     if (m_handle.Handle())
  128.     {
  129. ISymbianDLLMap* pDLLMap = HXSymbianDLLMapInstance::GetInstance();
  130. void* pEntrypoint = (void*)m_handle.EntryPoint();
  131. HX_ASSERT(pDLLMap);
  132. if (pDLLMap && pEntrypoint)
  133. {
  134.     pDLLMap->OnUnload(pEntrypoint);
  135. }
  136. m_handle.Close();
  137.     }
  138.     return DLLAccess::DLL_OK;
  139. }
  140. void* SymbianDLLAccess::GetSymbol(const char* symbolName)
  141. {
  142.     void* pRet = 0;
  143.     // Get the GetSymbol2Ord function from the DLL.
  144.     // This should always be the function in ordinal 1
  145.     GetSym2Ord getSymbol2Ord = (GetSym2Ord)m_handle.Lookup(1);
  146.     
  147.     if (getSymbol2Ord)
  148.     {
  149. // Get the ordinal value for the specified symbol
  150. int symbolOrdinal = getSymbol2Ord(symbolName);
  151. if (symbolOrdinal > 1)
  152. {
  153.     // Use the ordinal to get the pointer to the symbol
  154.     pRet = (void*)m_handle.Lookup(symbolOrdinal);
  155.     if (!pRet)
  156. m_pErrorStr = ErrInvalidOrdinal;
  157. }
  158. else
  159.     m_pErrorStr = ErrSymbolNotFound;
  160.     }
  161.     else
  162. m_pErrorStr = ErrNoOrd1;
  163.     return pRet;
  164. }
  165. const char* SymbianDLLAccess::GetErrorStr() const
  166. {
  167.     return m_pErrorStr;
  168. }
  169. char* SymbianDLLAccess::CreateVersionStr(const char* dllName) const
  170. {
  171.     return 0;
  172. }
  173. void
  174. SymbianDLLAccess::CreateName(const char* short_name, const char* long_name, 
  175.       char* out_buf, UINT32& out_buf_len, 
  176.       UINT32 nMajor, UINT32 nMinor)
  177. {
  178.     UINT32  long_name_len;
  179.     out_buf[0] = 0;
  180.     long_name_len = strlen(long_name);
  181.     if (long_name_len + DLLAccess::EXTRA_BUF_LEN > out_buf_len)
  182.     {
  183. ASSERT(0);
  184. out_buf_len = 0;
  185. return;
  186.     }
  187.     out_buf_len = sprintf(out_buf, "%s.dll", long_name); /* Flawfinder: ignore */
  188. }
  189. DLLAccessImp* DLLAccess::CreatePlatformDLLImp()
  190. {
  191.     return new SymbianDLLAccess();
  192. }