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

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. // define all guids here once...
  36. #include "hxcom.h"
  37. #include "hxtypes.h"
  38. #include "hxassert.h"
  39. #include "hxresult.h"
  40. #include "hxcomm.h"
  41. #include "ihxpckts.h"
  42. #include "hxfiles.h"
  43. #include "hxcore.h"
  44. #include "hxslist.h"
  45. #include "hxcleng.h"
  46. #include "dllpath.h"
  47. #include "hxdll.h"
  48. #include "hxheap.h"
  49. #ifdef _DEBUG
  50. #undef HX_THIS_FILE
  51. static const char HX_THIS_FILE[] = __FILE__;
  52. #endif
  53. ENABLE_DLLACCESS_PATHS(HXCore);
  54. #if !defined(HELIX_CONFIG_NOSTATICS)
  55. HXClientEngine*    g_pEngine   = NULL;
  56. UINT16     g_uNumEngines = 0;
  57. #else
  58. #include "globals/hxglobals.h"
  59. const HXClientEngine* const g_pEngine   = NULL;
  60. const UINT16     g_uNumEngines = 0;
  61. #endif
  62. /////////////////////////////////////////////////////////////////////////////
  63. //
  64. // Function:
  65. //
  66. // CreateEngine()
  67. //
  68. // Purpose:
  69. //
  70. //
  71. // Parameters:
  72. //
  73. // Return:
  74. //
  75. // HX_RESULT
  76. // Error code indicating the success or failure of the function.
  77. //
  78. // Notes:
  79. //
  80. //
  81. STDAPI
  82. ENTRYPOINT(CreateEngine)(IHXClientEngine** ppEngine)
  83. {
  84. #if defined(HELIX_CONFIG_NOSTATICS)
  85.     UINT16& g_uNumEngines = (UINT16&)HXGlobalInt16::Get(&::g_uNumEngines);
  86.     HXClientEngine*& g_pEngine =
  87. (HXClientEngine*&)HXGlobalPtr::Get(&::g_pEngine);
  88. #endif
  89.     g_uNumEngines++;
  90.     
  91.     if (g_pEngine)
  92.     {
  93. *ppEngine = g_pEngine;
  94. return HXR_OK;
  95.     }
  96.     *ppEngine = new HXClientEngine;
  97.     if (*ppEngine)
  98.     {
  99. (*ppEngine)->AddRef();
  100. g_pEngine = (HXClientEngine*) (*ppEngine);
  101. return HXR_OK;
  102.     }
  103.     return HXR_OUTOFMEMORY;
  104. }
  105. /////////////////////////////////////////////////////////////////////////////
  106. //
  107. // Function:
  108. //
  109. // CloseEngine()
  110. //
  111. // Purpose:
  112. //
  113. //
  114. // Parameters:
  115. //
  116. // Return:
  117. //
  118. // HX_RESULT
  119. // Error code indicating the success or failure of the function.
  120. //
  121. // Notes:
  122. //
  123. //
  124. STDAPI
  125. ENTRYPOINT(CloseEngine)(IHXClientEngine* pEngine)
  126. {
  127. #if defined(HELIX_CONFIG_NOSTATICS)
  128.     UINT16& g_uNumEngines = (UINT16&)HXGlobalInt16::Get(&::g_uNumEngines);
  129.     HXClientEngine*& g_pEngine =
  130. (HXClientEngine*&)HXGlobalPtr::Get(&::g_pEngine);
  131. #endif
  132.     if (g_pEngine && pEngine)
  133.     {
  134. if (g_uNumEngines > 0)
  135. {
  136.     g_uNumEngines--;
  137. }
  138. if (g_uNumEngines == 0)
  139. {
  140.     g_pEngine->Close();
  141.     g_pEngine->Release();
  142.     g_pEngine = NULL;
  143.     /* check for memory leaks for debug core with release top level client
  144.      * You have to set HXCoreOnlyMemoryLeak key under HKEY_CLASSES_ROOT and
  145.      * set its value to 1.
  146.      */
  147. #if defined(_DEBUG) && !defined(_WINCE) && !defined(_VXWORKS)
  148.     if (::HXDebugOptionEnabled("HXCoreOnlyMemoryLeak")==TRUE)
  149.     {
  150. HX_DUMP_LEAKS();
  151.     }
  152. #endif
  153. }
  154.     }
  155.     return HXR_OK;
  156. }