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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: wcorecom.cpp,v 1.3.36.1 2004/07/09 02:05:53 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 "hlxclib/windows.h"
  50. #include "hxcom.h"
  51. #include "hxtypes.h"
  52. #include "hxresult.h"
  53. #include "hxcomm.h"
  54. #include "ihxpckts.h"
  55. #include "hxcore.h"
  56. #include "hxcleng.h"
  57. #include "hxcorcom.h"
  58. #include "platform/win/wcorecom.h"
  59. #include <tchar.h>
  60. #include "hxheap.h"
  61. #ifdef _DEBUG
  62. #undef HX_THIS_FILE
  63. static const char HX_THIS_FILE[] = __FILE__;
  64. #endif
  65. #ifndef WIN32_PLATFORM_PSPC
  66. extern HINSTANCE g_hInstance;
  67. #else
  68. extern HMODULE g_hInstance;
  69. #endif
  70. #define CORECOMM_CLASS "HXEngineCommInternal"
  71. #define CORECOMM_NAME CORECOMM_CLASS
  72. #define CORECOMM_STOPAUDIOMSG "HXEngineStopAudioInternalMsg"
  73. #define CORECOMM_RELOADPLUGINS "HXEngineReloadPlugins"
  74. #define CORECOMM_UNLOADPLUGINS "HXEngineUnloadPlugins"
  75. #define OLDWND_CLASS "RealAudioInternal"
  76. UINT32 WinCoreComm::m_uStopAudioMsg = 0;
  77. UINT32 WinCoreComm::m_uUnloadPluginsMsg = 0;
  78. UINT32 WinCoreComm::m_uReloadPluginsMsg = 0;
  79. // --------------------------------------------------------------------------
  80. //  constructor
  81. // --------------------------------------------------------------------------
  82. WinCoreComm::WinCoreComm(HXClientEngine* pEngine)
  83.     : HXCoreComm(pEngine)
  84.     , m_hWnd(NULL)
  85.     , m_bReady(FALSE)
  86. #ifdef _WIN32
  87.     , m_ulOriginalThreadId(0)
  88. #endif /* _WIN32 */
  89. {
  90.     Init();
  91. }
  92. // --------------------------------------------------------------------------
  93. //  destructor
  94. // --------------------------------------------------------------------------
  95. WinCoreComm::~WinCoreComm()
  96. {
  97.     Shutdown();
  98. }
  99. // --------------------------------------------------------------------------
  100. //  StopAllOtherAudioPlayers
  101. //
  102. //  Stop the other players in all other processes.
  103. // --------------------------------------------------------------------------
  104. STDMETHODIMP
  105. WinCoreComm::StopAllOtherAudioPlayers()
  106. {
  107.     EnumAction ea;
  108.     ea.pComm = this;
  109.     ea.uAction = WCCACTION_STOPAUDIO;
  110.     EnumWindows((WNDENUMPROC)CoreCommEnumProc, (LPARAM)&ea);
  111.     return HXR_OK;
  112. }
  113. // --------------------------------------------------------------------------
  114. //  AskAllOtherPlayersToUnload
  115. //
  116. //  Asks players in all other processes to stop and then unload all of the
  117. //  DLLs not in use.
  118. // --------------------------------------------------------------------------
  119. STDMETHODIMP
  120. WinCoreComm::AskAllOtherPlayersToUnload()
  121. {
  122.     EnumAction ea;
  123.     ea.pComm = this;
  124.     ea.uAction = WCCACTION_UNLOADPLUGINS;
  125.     EnumWindows((WNDENUMPROC)CoreCommEnumProc, (LPARAM)&ea);
  126.     return HXR_OK;
  127. }
  128. // --------------------------------------------------------------------------
  129. //  AskAllOtherPlayersToReload
  130. //
  131. //  Asks players in all other processes to reload all DLLs
  132. // --------------------------------------------------------------------------
  133. STDMETHODIMP
  134. WinCoreComm::AskAllOtherPlayersToReload()
  135. {
  136.     EnumAction ea;
  137.     ea.pComm = this;
  138.     ea.uAction = WCCACTION_RELOADPLUGINS;
  139.     EnumWindows((WNDENUMPROC)CoreCommEnumProc, (LPARAM)&ea);
  140.     return HXR_OK;
  141. }
  142. // --------------------------------------------------------------------------
  143. //  Init
  144. //
  145. //  Register the window class, create a hidden window for callbacks.
  146. // --------------------------------------------------------------------------
  147. BOOL
  148. WinCoreComm::Init()
  149. {
  150.     if (!m_bReady && !m_hWnd)
  151.     {
  152. if (!m_uStopAudioMsg)
  153. {
  154.     m_uStopAudioMsg = RegisterWindowMessage(OS_STRING(CORECOMM_STOPAUDIOMSG));
  155.     if (!m_uStopAudioMsg)
  156.     {
  157. goto exit;
  158.     }
  159. }
  160. if (!m_uUnloadPluginsMsg)
  161. {
  162.     m_uUnloadPluginsMsg = RegisterWindowMessage(OS_STRING(CORECOMM_UNLOADPLUGINS));
  163.     if (!m_uUnloadPluginsMsg)
  164.     {
  165. goto exit;
  166.     }
  167. }
  168. if (!m_uReloadPluginsMsg)
  169. {
  170.     m_uReloadPluginsMsg = RegisterWindowMessage(OS_STRING(CORECOMM_RELOADPLUGINS));
  171.     if (!m_uReloadPluginsMsg)
  172.     {
  173. goto exit;
  174.     }
  175. }
  176. WNDCLASS wc;
  177. memset(&wc, 0, sizeof(WNDCLASS));
  178. wc.lpfnWndProc     = (WNDPROC)WinCoreComm::CoreCommWndProc;
  179. wc.hInstance     = g_hInstance;
  180. wc.lpszClassName    = TEXT(CORECOMM_CLASS);
  181. if (RegisterClass(&wc))
  182. {
  183.     m_hWnd = CreateWindow(OS_STRING(CORECOMM_CLASS),  // class name
  184.   OS_STRING(CORECOMM_NAME),   // window name
  185.   WS_POPUP,     // style
  186.   CW_USEDEFAULT,    // x
  187.   CW_USEDEFAULT,    // y
  188.   CW_USEDEFAULT,    // cx
  189.   CW_USEDEFAULT,    // cy
  190.   NULL,     // parent
  191.   NULL,     // menu
  192.   g_hInstance,     // instance
  193.   NULL);    // create params
  194. #ifdef _WIN32
  195.     m_ulOriginalThreadId = GetCurrentThreadId();
  196. #endif
  197. }
  198. if (m_hWnd)
  199. {
  200.     // Store a pointer to ourself within the Window
  201. #ifdef _WIN32     
  202.     SetWindowLong(m_hWnd, GWL_USERDATA, (LONG)this);
  203. #else
  204.     SetWindowLong(m_hWnd, DWL_USER, (LONG)this);
  205. #endif /* _WIN32 */
  206.     m_bReady = TRUE;
  207. }
  208.     }
  209. exit:
  210.     return m_bReady;
  211. }
  212. // --------------------------------------------------------------------------
  213. //  Shutdown
  214. //
  215. //  Close the window and unregister the window class.
  216. // --------------------------------------------------------------------------
  217. BOOL
  218. WinCoreComm::Shutdown()
  219. {
  220.     if (m_bReady)
  221.     {
  222. if (m_hWnd)
  223. {
  224. #ifdef _WIN32
  225.     if (m_ulOriginalThreadId == GetCurrentThreadId())
  226.     {
  227. DestroyWindow(m_hWnd);
  228.     }
  229.     else
  230.     {
  231. SendMessage(m_hWnd, WM_CLOSE, 0, 0);
  232.     }
  233. #else
  234.     DestroyWindow(m_hWnd);
  235. #endif
  236.     m_hWnd = NULL;
  237. }
  238. UnregisterClass(OS_STRING(CORECOMM_CLASS), g_hInstance);
  239. m_bReady = FALSE;
  240.     }
  241.     return TRUE;
  242. }
  243. // --------------------------------------------------------------------------
  244. //  CoreCommWndProc
  245. //
  246. //  Handle messages sent to the Core comm object from other Core comm 
  247. //  objects.
  248. // --------------------------------------------------------------------------
  249. LRESULT CALLBACK
  250. WinCoreComm::CoreCommWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
  251. {
  252.     if (uMsg == m_uStopAudioMsg || uMsg == m_uUnloadPluginsMsg || 
  253. uMsg == m_uReloadPluginsMsg)
  254.     {
  255. // Retrieve a pointer to the WinCoreComm from the GWL_USER area
  256. #ifdef _WIN32
  257. WinCoreComm* pComm = (WinCoreComm*)GetWindowLong(hWnd, GWL_USERDATA);
  258. #else
  259. WinCoreComm* pComm = (WinCoreComm*)GetWindowLong(hWnd, DWL_USER);
  260. #endif /* _WIN32 */
  261. if (pComm)
  262. {
  263.     if (uMsg == m_uStopAudioMsg)
  264.     {
  265. return pComm->StopAudioPlayback();
  266.     }
  267.     if (uMsg == m_uUnloadPluginsMsg)
  268.     {
  269. return pComm->UnloadPlugins();
  270.     }
  271.     if (uMsg == m_uReloadPluginsMsg)
  272.     {
  273. return pComm->ReloadPlugins();
  274.     }
  275. }
  276.     }
  277.     else if (uMsg == WM_CLOSE)
  278.     {
  279. DestroyWindow(hWnd);
  280. return 0;
  281.     }
  282.     return DefWindowProc(hWnd, uMsg, wParam, lParam);
  283. }
  284. // --------------------------------------------------------------------------
  285. //  CoreCommEnumProc
  286. //
  287. //  Enumerate windows and look for PN internal Core and Core comm windows
  288. //  to communicate with.
  289. // --------------------------------------------------------------------------
  290. BOOL CALLBACK
  291. WinCoreComm::CoreCommEnumProc(HWND hWnd, LPARAM lParam)
  292. {
  293.     EnumAction* pEa = (EnumAction*)lParam;
  294.     // Enumerate until ProcessWindow tells us to stop
  295.     return pEa->pComm->ProcessWindow(hWnd, pEa->uAction);
  296. }
  297. // --------------------------------------------------------------------------
  298. //  ProcessWindow
  299. //
  300. //  Called by the CoreCommEnumProc to handle an individual window.
  301. // --------------------------------------------------------------------------
  302. BOOL
  303. WinCoreComm::ProcessWindow(HWND hWnd, UINT32 uAction)
  304. {
  305.     if (hWnd != m_hWnd)
  306.     {
  307. // Only tell windows other than ours to perform the action
  308. switch (uAction)
  309. {
  310.     case WCCACTION_STOPAUDIO:
  311.     {
  312. StopAudioWindow(hWnd);
  313.     }
  314.     break;
  315.     case WCCACTION_UNLOADPLUGINS:
  316.     {
  317. UnloadWindowPlugins(hWnd);
  318.     }
  319.     break;
  320.     case WCCACTION_RELOADPLUGINS:
  321.     {
  322. ReloadWindowPlugins(hWnd);
  323.     }
  324.     break;
  325. default:
  326.     // Unknown action- stop enumerating.
  327.     return FALSE;
  328. }
  329.     }
  330.     // keep enumerating
  331.     return TRUE;
  332. }
  333. // --------------------------------------------------------------------------
  334. //  StopAudioWindow
  335. //
  336. //  Called by the ProcessWindow handler to direct a window to stop using the
  337. //  audio.
  338. // --------------------------------------------------------------------------
  339. void
  340. WinCoreComm::StopAudioWindow(HWND hWnd)
  341. {
  342.     char pClassName[256]; /* Flawfinder: ignore */
  343.     if (GetClassName(hWnd, OS_STRING2(pClassName, 255), 255))
  344.     {
  345. if (!strcmp(pClassName, CORECOMM_CLASS))
  346. {
  347.     // A 6.0 engine
  348.     SendMessage(hWnd, m_uStopAudioMsg, 0, 0);
  349. }
  350. else if (!strcmp(pClassName, OLDWND_CLASS))
  351. {
  352.     // a 4.0 or 5.0 audio window
  353.     SendMessage(hWnd, PWM_RELEASE_AUDIO_DEVICE, 0, 0);
  354. }
  355.     }
  356. }
  357. // --------------------------------------------------------------------------
  358. //  UnloadPlugins
  359. //
  360. //  Called by the ProcessWindow handler to direct a window to stop and then 
  361. //  unload its plugins.
  362. // --------------------------------------------------------------------------
  363. void
  364. WinCoreComm::UnloadWindowPlugins(HWND hWnd)
  365. {
  366.     char pClassName[256]; /* Flawfinder: ignore */
  367.     if (GetClassName(hWnd, OS_STRING2(pClassName, 255), 255))
  368.     {
  369. if (!strcmp(pClassName, CORECOMM_CLASS))
  370. {
  371.     // A 6.0 engine
  372.     SendMessage(hWnd, m_uUnloadPluginsMsg, 0, 0);
  373. }
  374.     }
  375. }
  376. // --------------------------------------------------------------------------
  377. //  ReloadPlugins
  378. //
  379. //  Called by the ProcessWindow handler to direct a window to reload plugins.
  380. // --------------------------------------------------------------------------
  381. void
  382. WinCoreComm::ReloadWindowPlugins(HWND hWnd)
  383. {
  384.     char pClassName[256]; /* Flawfinder: ignore */
  385.     if (GetClassName(hWnd, OS_STRING2(pClassName, 255), 255))
  386.     {
  387. if (!strcmp(pClassName, CORECOMM_CLASS))
  388. {
  389.     // A 6.0 engine
  390.     SendMessage(hWnd, m_uReloadPluginsMsg, 0, 0);
  391. }
  392.     }
  393. }