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

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. /*
  36.  *         Class Implementation for CQTVideoRenderer::CVideoSchedulerCallback
  37.  */
  38. #include "hxtypes.h"
  39. #include "hxwintyp.h"
  40. #include "hxresult.h"
  41. #include "hxcom.h"
  42. #include "hxevent.h"
  43. #include "hxcomm.h"
  44. #include "hxengin.h"
  45. #include "hxerror.h"
  46. #include "hxtick.h"
  47. #include "hxassert.h"
  48. #include "timeval.h"
  49. #include "vdclback.h"
  50. CVideoSchedulerCallback::CVideoSchedulerCallback
  51. (
  52.     FP_CALLBACK pFunc,
  53.     void* cookie,
  54.     IUnknown* pIUnknown,
  55.     BOOL bUseOptimizedScheduler
  56. )
  57.     : m_lRefCount(0) 
  58.     , m_pScheduler(NULL)
  59.     , m_pFunc(pFunc)
  60.     , m_pOptimizedScheduler(NULL)
  61.     , m_bPendingCallback(FALSE)
  62.     , m_bInCallback(FALSE)
  63.     , m_PendingHandle(0)
  64.     , m_bIsInterruptSafe(bUseOptimizedScheduler)
  65.     , m_cookie(cookie)
  66. {
  67.     if (bUseOptimizedScheduler)
  68.     {
  69.         if (HXR_OK != pIUnknown->QueryInterface(IID_IHXOptimizedScheduler, 
  70. (void **) &m_pOptimizedScheduler))
  71.         {
  72.          // just for good luck
  73.     m_pOptimizedScheduler = NULL;
  74. }
  75.     }
  76.     if (m_pOptimizedScheduler == NULL)
  77.     {
  78. if (HXR_OK != pIUnknown->QueryInterface(IID_IHXScheduler, 
  79. (void **) &m_pScheduler))
  80. {
  81.     m_pScheduler = NULL;
  82. }
  83.     }
  84. }
  85. STDMETHODIMP
  86. CVideoSchedulerCallback::Close()
  87. {
  88.     // the optimized scheduler has presidence so we check it first
  89.     if (m_bPendingCallback && m_pOptimizedScheduler)
  90.     {
  91. m_pOptimizedScheduler->Remove(m_PendingHandle);
  92. m_bPendingCallback = FALSE;
  93. m_PendingHandle = 0;
  94.     }
  95.     HX_RELEASE(m_pOptimizedScheduler);
  96.     if (m_bPendingCallback && m_pScheduler)
  97.     {
  98. m_pScheduler->Remove(m_PendingHandle);
  99. m_bPendingCallback = FALSE;
  100. m_PendingHandle = 0;
  101.     }
  102.     HX_RELEASE(m_pScheduler);
  103.     return HXR_OK;
  104. }
  105. CVideoSchedulerCallback::~CVideoSchedulerCallback()
  106. {
  107.     Close();
  108. }
  109. STDMETHODIMP
  110. CVideoSchedulerCallback::ScheduleCallback
  111. (
  112.     UINT32 ulRelativeTime, 
  113.     UINT32 ulTicksTime
  114. )
  115. {
  116.     // this new callback is going to take presidence over the
  117.     // current one so remove it.
  118.     if (m_pOptimizedScheduler != NULL || m_pScheduler != NULL)
  119.     {
  120. IHXCallback* pCallback = NULL;
  121. if (HXR_OK == QueryInterface(IID_IHXCallback, (void**)&pCallback))
  122. {
  123.     HXTimeval lTime;
  124.     // Always use the optimized scheduler if we have one
  125.     if (m_pOptimizedScheduler != NULL)
  126.     {
  127. lTime = m_pOptimizedScheduler->GetCurrentSchedulerTime();
  128.     }
  129.     else
  130.     {
  131. lTime = m_pScheduler->GetCurrentSchedulerTime();
  132.     }
  133.     UINT32 ulCurrentTime = HX_GET_BETTERTICKCOUNT();
  134.     // if ulTicksTime is in the future, add the difference to lTime,
  135.     // if it's in the past, don't add anything to lTime so we schedule
  136.     // an imediate callback.
  137.     if (ulCurrentTime < ulTicksTime)
  138.     {
  139. UINT32 ulTimeDiff = CALCULATE_ELAPSED_TICKS(ulCurrentTime,
  140.     ulTicksTime);
  141. lTime.tv_usec += ulTimeDiff * MILLISECOND;
  142. if (lTime.tv_usec >= SECOND)
  143. {
  144.     lTime.tv_sec += lTime.tv_usec / SECOND;
  145.     lTime.tv_usec %= SECOND;
  146. }
  147.     }
  148.     
  149.     // we want to do the right thing here and remove a callback before we schedule a new one
  150.     // but we should never do that.
  151.     HX_ASSERT(!m_bPendingCallback);
  152.     if (m_bPendingCallback)
  153.     {
  154. // Always use the optimized scheduler if we have one
  155. if (m_pOptimizedScheduler != NULL)
  156. {
  157.     m_pOptimizedScheduler->Remove(m_PendingHandle);
  158. }
  159. else if (m_pScheduler)
  160. {
  161.     m_pScheduler->Remove(m_PendingHandle);
  162. }
  163.     }
  164.     
  165.     m_bPendingCallback = TRUE;
  166.     // Always use the optimized scheduler if we have one
  167.     if (m_pOptimizedScheduler != NULL)
  168.     {
  169.         m_PendingHandle = m_pOptimizedScheduler->AbsoluteEnter(pCallback, lTime);
  170.     }
  171.     else
  172.     {
  173.         m_PendingHandle = m_pScheduler->AbsoluteEnter(pCallback, lTime);
  174.     }
  175. }
  176. HX_RELEASE(pCallback);
  177.     }
  178.     return HXR_OK;
  179. }
  180. STDMETHODIMP
  181. CVideoSchedulerCallback::Func(void)
  182. {
  183.     m_bInCallback = TRUE;
  184.     if (m_pFunc != NULL )
  185.     {
  186. HX_ASSERT(m_bPendingCallback);
  187. HXTimeval lTime;
  188. // Always use the optimized scheduler if we have one
  189. if (m_pOptimizedScheduler != NULL)
  190. {
  191.     lTime = m_pOptimizedScheduler->GetCurrentSchedulerTime();
  192. }
  193. else
  194. {
  195.     lTime = m_pScheduler->GetCurrentSchedulerTime();
  196. }
  197. m_PendingHandle = 0;
  198. m_bPendingCallback = FALSE;
  199. m_pFunc(m_cookie);
  200.     }
  201.     m_bInCallback = FALSE;
  202.     return HXR_OK;
  203. }
  204. STDMETHODIMP_(BOOL)
  205. CVideoSchedulerCallback::ShouldKickStartScheduler()
  206. {
  207.     return !(m_bPendingCallback || (!m_bPendingCallback && m_bInCallback));
  208. }
  209. /////////////////////////////////////////////////////////////////////////
  210. //  Method:
  211. //      IUnknown::QueryInterface
  212. //  Purpose:
  213. //      Implement this to export the interfaces supported by your 
  214. //      object.
  215. //
  216. STDMETHODIMP 
  217. CVideoSchedulerCallback::QueryInterface
  218. (
  219.     REFIID riid, 
  220.     void** ppvObj
  221. )
  222. {
  223.     if (IsEqualIID(riid, IID_IUnknown))
  224.     {
  225. AddRef();
  226. *ppvObj = this;
  227. return HXR_OK;
  228.     }
  229.     else if (IsEqualIID(riid, IID_IHXCallback))
  230.     {
  231. AddRef();
  232. *ppvObj = (IHXCallback*)this;
  233. return HXR_OK;
  234.     }
  235.     else if (IsEqualIID(riid, IID_IHXInterruptSafe))
  236.     {
  237. AddRef();
  238. *ppvObj = (IHXInterruptSafe*)this;
  239. return HXR_OK;
  240.     }
  241.     *ppvObj = NULL;
  242.     return HXR_NOINTERFACE;
  243. }
  244. /////////////////////////////////////////////////////////////////////////
  245. //  Method:
  246. //      IUnknown::AddRef
  247. //  Purpose:
  248. //      Everyone usually implements this the same... feel free to use
  249. //      this implementation.
  250. //
  251. STDMETHODIMP_(ULONG32) 
  252. CVideoSchedulerCallback::AddRef()
  253. {
  254.     return InterlockedIncrement(&m_lRefCount);
  255. }
  256. /////////////////////////////////////////////////////////////////////////
  257. //  Method:
  258. //      IUnknown::Release
  259. //  Purpose:
  260. //      Everyone usually implements this the same... feel free to use
  261. //      this implementation.
  262. //
  263. STDMETHODIMP_(ULONG32)
  264. CVideoSchedulerCallback::Release()
  265. {
  266.     if (InterlockedDecrement(&m_lRefCount) > 0)
  267.     {
  268. return m_lRefCount;
  269.     }
  270.     delete this;
  271.     return 0;
  272. }
  273. STDMETHODIMP_(BOOL)
  274. CVideoSchedulerCallback::IsInterruptSafe()
  275. {
  276.     return m_bIsInterruptSafe;
  277. }