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

Symbian

开发平台:

Visual C++

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