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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxovmgr.cpp,v 1.2.20.1 2004/07/09 02:08:40 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 "hxresult.h"
  52. #include "hxstrutl.h"
  53. #include "hxstring.h"
  54. #include "hxcomm.h"
  55. #include "ihxpckts.h"
  56. #include "hxfiles.h"
  57. #include "hxcore.h"
  58. #include "hxmon.h"
  59. #include "hxprefs.h"
  60. #include "hxwin.h"
  61. #include "hxslist.h"
  62. #include "hxthread.h"
  63. #include "hxovmgr.h"
  64. #include "hxtick.h"
  65. #define DEFAULT_THERMOSTAT_FACTOR 2.0
  66. //#define _DEBUG_LOG 
  67. HXOverlayManager::HXOverlayManager(IUnknown* pContext)
  68.     :   m_lRefCount(0)
  69.     ,   m_pContext(pContext)
  70.     ,   m_pCurrentOverlayOwner(NULL)
  71.     ,   m_CallbackHandle(NULL)
  72.     ,   m_pScheduler(NULL)
  73.     ,   m_pOldOverlaySite(NULL)
  74.     ,   m_pNewOverlaySite(NULL)
  75.     ,   m_fThemoStatFactor(DEFAULT_THERMOSTAT_FACTOR)
  76.     ,   m_bChangingOwner(FALSE)
  77. {
  78.     m_pContext->AddRef();
  79. #if defined(THREADS_SUPPORTED) || defined(_UNIX_THREADS_SUPPORTED)
  80.     HXMutex::MakeMutex(m_pMutex);
  81. #else
  82.     HXMutex::MakeStubMutex(m_pMutex);
  83. #endif
  84. }
  85. HXOverlayManager::~HXOverlayManager()
  86.     Close();
  87. }
  88. void HXOverlayManager::Initialize()
  89. {
  90.     m_pContext->QueryInterface(IID_IHXScheduler, (void**)&m_pScheduler);
  91.     IHXPreferences*    pPreferences    = NULL;
  92.     IHXBuffer*         pBuffer         = NULL;
  93.     if (HXR_OK == m_pContext->QueryInterface(IID_IHXPreferences,(void**)&pPreferences))
  94.     {   
  95.         if (pPreferences->ReadPref("ThermoStatFactor", pBuffer) == HXR_OK)
  96.         {
  97.             m_fThemoStatFactor = atof((char*)pBuffer->GetBuffer());  /* is this ANSI? if not use the next line */
  98.             //sscanf((char*)pBuffer->GetBuffer(), "%f", &m_fThemoStatFactor); 
  99.         }
  100.         HX_RELEASE(pBuffer);
  101.     }
  102.     HX_RELEASE(pPreferences);
  103. }
  104. void
  105. HXOverlayManager::Close()
  106.     CSiteStats* pStats;
  107.     CStatPoint* pPoint;
  108.     while (m_ListOfSiteStats.GetCount())
  109.     {
  110.         pStats = (CSiteStats*) m_ListOfSiteStats.RemoveHead();
  111.         while(pStats->samples.GetCount())
  112.         {
  113.             pPoint = (CStatPoint*) pStats->samples.RemoveHead();
  114.             HX_DELETE(pPoint);
  115.         }
  116.         HX_DELETE(pStats);
  117.     }
  118.     if (m_CallbackHandle)
  119.     {
  120.         m_pScheduler->Remove(m_CallbackHandle);
  121.         m_CallbackHandle = 0;
  122.     }
  123.     HX_RELEASE(m_pContext);
  124.     HX_RELEASE(m_pScheduler);
  125.     HX_DELETE(m_pMutex);
  126. }
  127. /*
  128.  * IUnknown methods
  129.  */
  130. /////////////////////////////////////////////////////////////////////////
  131. // Method:
  132. // IUnknown::QueryInterface
  133. // Purpose:
  134. // Implement this to export the interfaces supported by your 
  135. // object.
  136. //
  137. STDMETHODIMP HXOverlayManager::QueryInterface(REFIID riid, void** ppvObj)
  138. {
  139.     QInterfaceList qiList[] =
  140.         {
  141.             { GET_IIDHANDLE(IID_IHXOverlayManager), (IHXOverlayManager*)this },
  142.             { GET_IIDHANDLE(IID_IHXCallback), (IHXCallback*)this },
  143.             { GET_IIDHANDLE(IID_IUnknown), (IUnknown*)(IHXOverlayManager*)this },
  144.         };
  145.     
  146.     return ::QIFind(qiList, QILISTSIZE(qiList), riid, ppvObj);
  147. }
  148. /////////////////////////////////////////////////////////////////////////
  149. // Method:
  150. // IUnknown::AddRef
  151. // Purpose:
  152. // Everyone usually implements this the same... feel free to use
  153. // this implementation.
  154. //
  155. STDMETHODIMP_(ULONG32) HXOverlayManager::AddRef()
  156. {
  157.     return InterlockedIncrement(&m_lRefCount);
  158. }
  159. /////////////////////////////////////////////////////////////////////////
  160. // Method:
  161. // IUnknown::Release
  162. // Purpose:
  163. // Everyone usually implements this the same... feel free to use
  164. // this implementation.
  165. //
  166. STDMETHODIMP_(ULONG32) HXOverlayManager::Release()
  167. {
  168.     if (InterlockedDecrement(&m_lRefCount) > 0)
  169.     {
  170. return m_lRefCount;
  171.     }
  172.     delete this;
  173.     return 0;
  174. }
  175. STDMETHODIMP HXOverlayManager::HasOverlay(THIS_
  176.                 IHXOverlayResponse* pResp
  177.                 ) 
  178. {
  179.     m_pMutex->Lock();
  180.     HX_RESULT res = HXR_FAIL;
  181.     if (!m_pCurrentOverlayOwner)
  182.     {
  183.         m_pCurrentOverlayOwner = pResp;
  184.         res = HXR_OK;
  185.     }
  186.     m_pMutex->Unlock();
  187.     return res;
  188. }
  189. STDMETHODIMP HXOverlayManager::AddStats(THIS_
  190.                                          IHXOverlayResponse* pResp,
  191.                                          UINT32    ulNumPixels) 
  192. {
  193.     if (m_bChangingOwner)
  194.         return HXR_OK;
  195.     m_pMutex->Lock();
  196.     CSiteStats* pStats;
  197.     CStatPoint* pPoint;
  198.     UINT32 time = HX_GET_TICKCOUNT();
  199.     BOOL bExisted = FALSE;
  200.     CHXSimpleList::Iterator i;
  201.     for (i = m_ListOfSiteStats.Begin(); i != m_ListOfSiteStats.End(); ++i)
  202.     {
  203.         pStats = (CSiteStats*)*i;
  204.         if (pStats->pResp == pResp)
  205.         {
  206. #ifdef _DEBUG_LOG
  207.             FILE* f = fopen("c:\overlay.txt", "a+");
  208.             if (f)
  209.             {
  210.                 fprintf(f, "Owner: %p  Pixels: %dn", pResp, ulNumPixels);
  211.                 fclose(f);
  212.             }
  213. #endif
  214.             AddStatPoint(pStats, ulNumPixels, time);
  215.             bExisted = TRUE;
  216.         }
  217.         while(pStats->samples.GetCount())
  218.         {
  219.             pPoint = (CStatPoint*) pStats->samples.GetHead();
  220.             if (pPoint->ulTime + 1000 > time)
  221.             {
  222.                 break;
  223.             }
  224.             pStats->ulNumPixelsPerSecond -= pPoint->ulPixels;
  225.             pStats->samples.RemoveHead();
  226.             HX_DELETE(pPoint);
  227.         }
  228. #ifdef _DEBUG_LOG
  229.             FILE* f = fopen("c:\overlay.txt", "a+");
  230.             if (f)
  231.             {
  232.                 fprintf(f, "*Owner: %p  Pixels: %d Count: %dn", pStats->pResp, pStats->ulNumPixelsPerSecond, pStats->samples.GetCount());
  233.                 fclose(f);
  234.             }
  235. #endif
  236.     }
  237.     if (!bExisted)
  238.     {
  239.         pStats                          = new CSiteStats;
  240.         pStats->ulFirstTime             = time;
  241.         pStats->ulNumPixelsPerSecond    = 0;
  242.         pStats->pResp                   = pResp;
  243.         m_ListOfSiteStats.AddTail(pStats);
  244.         AddStatPoint(pStats, ulNumPixels, time);
  245.     }
  246.     ValidateCurrentOwner();
  247.     m_pMutex->Unlock();
  248.     return HXR_OK;
  249. }
  250. void HXOverlayManager::AddStatPoint(CSiteStats* pStats, UINT32 ulNumPixels, UINT32 ulTime)
  251. {
  252.     CStatPoint* pPoint;
  253.     pPoint = new CStatPoint;
  254.     pPoint->ulTime = ulTime;
  255.     pPoint->ulPixels = ulNumPixels;
  256.     pStats->ulNumPixelsPerSecond  += pPoint->ulPixels;
  257.     pStats->samples.AddTail(pPoint);
  258. }
  259. void HXOverlayManager::ValidateCurrentOwner()
  260. {
  261.     if (!m_pCurrentOverlayOwner)
  262.     {
  263.         return;
  264.     }
  265.     IHXOverlayResponse* pMaxResp = NULL;
  266.     UINT32  ulMaxNumPixelsPerSecond = 0;
  267.     UINT32  ulCurrentNumPixelsPerSecond = 0;
  268.     CSiteStats* pStats = NULL;
  269.     CHXSimpleList::Iterator i;
  270.     for (i = m_ListOfSiteStats.Begin(); i != m_ListOfSiteStats.End(); ++i)
  271.     {
  272. pStats = (CSiteStats*)*i;
  273.         if (pStats->pResp == m_pCurrentOverlayOwner)
  274.         {
  275.             ulCurrentNumPixelsPerSecond = pStats->ulNumPixelsPerSecond;
  276.         }
  277.         if (ulMaxNumPixelsPerSecond < pStats->ulNumPixelsPerSecond)
  278.         {
  279.             ulMaxNumPixelsPerSecond = pStats->ulNumPixelsPerSecond;
  280.             pMaxResp = pStats->pResp;
  281.         }
  282.     }
  283. #ifdef _DEBUG_LOG
  284.         FILE* f = fopen("c:\overlay.txt", "a+");
  285.         fprintf(f, "CurrentOvOwner = %p  Pels: %d ttt Max: %p Pels: %dn", m_pCurrentOverlayOwner, ulCurrentNumPixelsPerSecond, pMaxResp, ulMaxNumPixelsPerSecond);
  286.         fclose(f);
  287. #endif
  288.     UINT32  ulTempMaxNumPixelsPerSecond = 0;
  289.     if ((double)ulMaxNumPixelsPerSecond > (double)ulCurrentNumPixelsPerSecond * 2)
  290.     {
  291. #ifdef _DEBUG_LOG
  292.         FILE* f = fopen("c:\overlay.txt", "a+");
  293.         if (f)
  294.         {
  295.             CHXSimpleList::Iterator i;
  296.             for (i = m_ListOfSiteStats.Begin(); i != m_ListOfSiteStats.End(); ++i)
  297.             {
  298.         pStats = (CSiteStats*)*i;
  299.                 fprintf(f, "Owner: %p  Pixels: %d NumSamples: %d n", pStats->pResp , pStats->ulNumPixelsPerSecond, pStats->samples.GetCount());
  300.                 if (pStats->pResp == m_pCurrentOverlayOwner)
  301.                 {
  302.                     fprintf(f, "** Current Owner: %p Current Num: %dn", pStats->pResp , pStats->ulNumPixelsPerSecond);
  303.                 }
  304.                 if (ulTempMaxNumPixelsPerSecond < pStats->ulNumPixelsPerSecond)
  305.                 {
  306.                     fprintf(f, "** Current Max Owner: %p Current Num: %dn", pStats->pResp , pStats->ulNumPixelsPerSecond);
  307.                     ulTempMaxNumPixelsPerSecond = pStats->ulNumPixelsPerSecond;
  308.                 }
  309.             }
  310.             fclose(f);
  311.         }
  312. #endif
  313.         ScheduleCallback(m_pCurrentOverlayOwner,   pMaxResp);
  314.     }
  315. }
  316. void HXOverlayManager::ScheduleCallback(IHXOverlayResponse* pOld, IHXOverlayResponse* pNew)
  317. {
  318.     if (m_pScheduler && !m_CallbackHandle)
  319.     {
  320.         m_CallbackHandle = m_pScheduler->RelativeEnter(this, 0);
  321.         m_pOldOverlaySite = pOld;
  322.         m_pNewOverlaySite = pNew;
  323.     }
  324. }
  325. /************************************************************************
  326.  *  Method:
  327.  *    IHXCallback::Func
  328.  */
  329. STDMETHODIMP HXOverlayManager::Func(void)
  330. {
  331.     m_bChangingOwner = TRUE;
  332.     m_pMutex->Lock();
  333.     AddRef();
  334.     if (m_pOldOverlaySite && m_pNewOverlaySite)
  335.     {
  336.        if (HXR_OK == m_pOldOverlaySite->OverlayRevoked())
  337.        {
  338.             m_pCurrentOverlayOwner = NULL;
  339.             if (HXR_OK == m_pNewOverlaySite->OverlayGranted())
  340.             {
  341.                 m_pCurrentOverlayOwner = m_pNewOverlaySite;
  342.             }
  343.        }
  344.     }
  345.     m_pNewOverlaySite        = NULL;
  346.     m_pOldOverlaySite        = NULL;
  347.     m_CallbackHandle         = 0;
  348.     Release();
  349.     
  350.     m_pMutex->Unlock();
  351.     m_bChangingOwner = FALSE;
  352.     return HXR_OK;
  353. }
  354. STDMETHODIMP HXOverlayManager::RemoveOverlayRequest(THIS_ IHXOverlayResponse* pResp ) 
  355. {
  356.     m_pMutex->Lock();
  357.     
  358.     HX_RESULT res = HXR_FAIL;
  359.     if (pResp == m_pNewOverlaySite && m_CallbackHandle)
  360.     {
  361.         m_pScheduler->Remove(m_CallbackHandle);
  362.         m_CallbackHandle = 0;
  363.         m_pNewOverlaySite = NULL;
  364.         m_pOldOverlaySite = NULL;    
  365.     }
  366.     if (m_pCurrentOverlayOwner == pResp)
  367.     {
  368.         m_pCurrentOverlayOwner = NULL;
  369.     }
  370.     CSiteStats* pStats;
  371.     CStatPoint* pPoint;
  372.     LISTPOSITION pos = NULL;
  373.     
  374.     pos = m_ListOfSiteStats.GetHeadPosition();
  375.     while (pos)
  376.     {
  377.         pStats = (CSiteStats*)m_ListOfSiteStats.GetAt(pos);
  378.         if (pStats->pResp == pResp)
  379.         {
  380.             res = HXR_OK;
  381.             while(pStats->samples.GetCount())
  382.             {
  383.                 pPoint = (CStatPoint*) pStats->samples.RemoveHead();
  384.                 HX_DELETE(pPoint);
  385.             }
  386.             HX_DELETE(pStats);
  387.             m_ListOfSiteStats.RemoveAt(pos);
  388.             break;
  389.         }
  390.         m_ListOfSiteStats.GetNext(pos);
  391.     }
  392.     m_pMutex->Unlock();
  393.     return res;
  394. }