stataccs.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 "stataccs.h"
  43. #include "hxstrutl.h"
  44. #ifndef HELIX_CONFIG_NOSTATICS
  45. extern BOOL g_bReportHXCreateInstancePointer;
  46. #endif
  47. //#define DLLACCESS_VERBOSE
  48. #if defined(_DEBUG) && defined(DLLACCESS_VERBOSE)
  49. #define DLLACCESS_FPRINTF(x) fprintf x
  50. #else 
  51. #define DLLACCESS_FPRINTF(x)
  52. #endif 
  53. #if defined(_WINDOWS) || defined(_SYMBIAN)
  54. #define DLL_SUFFIX ".dll"
  55. #elif defined(_MACINTOSH)
  56. #if defined(_CARBON)
  57. #ifdef _MAC_MACHO
  58. #define DLL_SUFFIX ".bundle"
  59. #else
  60. #define DLL_SUFFIX ".shlb"
  61. #endif
  62. #else // #if defined(_CARBON)
  63. #define DLL_SUFFIX ".dll"
  64. #endif // #if defined(_CARBON) #else
  65. #endif // #elif defined(_MACINTOSH)
  66. class StaticDLLAccess : public DLLAccessImp
  67. {
  68. public:
  69.     StaticDLLAccess();
  70.     virtual ~StaticDLLAccess();
  71.     virtual int Open(const char* dllName);
  72.     virtual int Close() ;
  73.     virtual void* GetSymbol(const char* symbolName);
  74.     virtual const char* GetErrorStr() const;
  75.     virtual char* CreateVersionStr(const char* dllName) const;
  76.     virtual DLLAccessPath* GetDLLAccessPath();
  77.     virtual void CreateName(const char* short_name, const char* long_name, 
  78.       char* out_buf, UINT32& out_buf_len, 
  79.       UINT32 nMajor, UINT32 nMinor);
  80. private:
  81.     enum {ErrorBufSize = 256};
  82.     char* m_pDLLName;
  83.     char m_pErrorMesg[ErrorBufSize]; /* Flawfinder: ignore */
  84. };
  85. StaticDLLAccess::StaticDLLAccess() :
  86.     m_pDLLName(0)
  87. {
  88.     m_pErrorMesg[0] = '';
  89. }
  90. StaticDLLAccess::~StaticDLLAccess()
  91. {
  92.     HX_VECTOR_DELETE(m_pDLLName);
  93. }
  94. int StaticDLLAccess::Open(const char* dllName)
  95. {
  96.     int ret = DLLAccess::NO_LOAD;
  97.     
  98.     DLLACCESS_FPRINTF((stderr, "open dll %s...", dllName));
  99.     BOOL found = FALSE;
  100.     
  101.     DLLACCESS_FPRINTF((stderr, "received request to open %sn", dllName));
  102.     
  103.     char* pTmpDllName = new_string(dllName);
  104.     
  105.     // Make sure this is lower-case
  106.     strlwr(pTmpDllName);
  107. #if defined(_UNIX)
  108.     char* searcher = pTmpDllName + strlen(pTmpDllName);
  109.     while (--searcher && (searcher > pTmpDllName) && (*(searcher - 1) != '/'))
  110.     {
  111.         if (*searcher == '.') //strip off .so.x.y
  112.             *searcher = '';
  113.     }
  114. #ifdef HELIX_FEATURE_SERVER //is this really server-specific?
  115.     if (*(searcher - 1) == '/')
  116.     {
  117.         memmove(pTmpDllName, searcher, (strlen(searcher) + 1));
  118.     }
  119. #endif
  120. #elif defined(DLL_SUFFIX)
  121.     // Strip off DLL_SUFFIX
  122.     char* searcher = strstr(pTmpDllName, DLL_SUFFIX);
  123.     if (searcher)
  124.     {
  125.         *searcher = '';
  126.     }
  127. #endif
  128.     m_pDLLName = new_string(pTmpDllName);
  129.     delete [] pTmpDllName;
  130.     pTmpDllName = 0;
  131.     for (const DLLMAP *mapentry = g_dllMap; mapentry->dllName; mapentry++)
  132.     {
  133. if (!strcmp(mapentry->dllName, m_pDLLName))
  134. {
  135.     found = TRUE;
  136.     ret = DLLAccess::DLL_OK;
  137. #if !defined (_MACINTOSH) && !defined(_WIN16) &&!defined(HELIX_CONFIG_NOSTATICS)
  138.             if(g_bReportHXCreateInstancePointer)
  139.             {
  140.                 printf ("    Entry Point %s %pn", mapentry->dllName, mapentry->funcptr);
  141.             }     
  142. #endif
  143.     DLLACCESS_FPRINTF((stderr, "succeededn"));
  144. }
  145.     }
  146.     if (!found) 
  147.     {        
  148. SafeSprintf(m_pErrorMesg, ErrorBufSize, 
  149.     "Application not linked against module %s", m_pDLLName);
  150. DLLACCESS_FPRINTF((stderr, "%sn", errMsg));
  151. DLLACCESS_FPRINTF((stderr, "failedn"));
  152.     }
  153.     return ret;
  154. }
  155. int StaticDLLAccess::Close()
  156. {
  157.     return DLLAccess::DLL_OK;
  158. }
  159. void* StaticDLLAccess::GetSymbol(const char* symbolName)
  160. {
  161.     void* pRet = 0;
  162.     for (const DLLMAP *item = &g_dllMap[0]; item->dllName; item++) 
  163.     {
  164. if (!strcmp(item->dllName, m_pDLLName) && 
  165.     !strcmp(item->entryPoint, symbolName))
  166. {
  167.     DLLACCESS_FPRINTF((stderr, "succeededn"));
  168.     pRet = (void*)item->funcptr;
  169. }
  170.     }
  171.     if (!pRet)
  172.     {
  173. SafeSprintf(m_pErrorMesg, ErrorBufSize, 
  174.     "Symbol "%s" not available in dll "%s"", 
  175.     symbolName, m_pDLLName);
  176. DLLACCESS_FPRINTF((stderr, "%sn", m_pErrorMesg));
  177.     }
  178.     return pRet;
  179. }
  180. const char* StaticDLLAccess::GetErrorStr() const
  181. {
  182.     return m_pErrorMesg;
  183. }
  184. char* StaticDLLAccess::CreateVersionStr(const char* dllName) const
  185. {
  186.     return 0;
  187. }
  188. DLLAccessPath* StaticDLLAccess::GetDLLAccessPath()
  189. {
  190.     // The static code does not use an access path
  191.     return 0;
  192. }
  193. void
  194. StaticDLLAccess::CreateName(const char* short_name, const char* long_name, 
  195.       char* out_buf, UINT32& out_buf_len, 
  196.       UINT32 nMajor, UINT32 nMinor)
  197. {
  198.     out_buf[0] = 0;
  199.     SafeStrCpy(out_buf, long_name, out_buf_len);
  200. }
  201. DLLAccessImp* DLLAccess::CreateStaticDLLImp()
  202. {
  203.     return new StaticDLLAccess();
  204. }