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

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. // include
  36. #include "hxtypes.h"
  37. #include "hxcom.h"
  38. #include "hxengin.h"
  39. // pxcomlib
  40. #include "pxcallbk.h"
  41. // hxdebug
  42. #include "hxheap.h"
  43. #ifdef _DEBUG
  44. #undef HX_THIS_FILE
  45. static char HX_THIS_FILE[] = __FILE__;
  46. #endif
  47. PXCallback::PXCallback(UINT32 ulInstance)
  48. {
  49.     m_lRefCount            = 0;
  50.     m_pScheduler           = NULL;
  51.     m_pResponse            = NULL;
  52.     m_ulCallbackHandle     = 0;
  53.     m_bCallbackPending     = FALSE;
  54.     m_bReportSchedulerTime = TRUE;
  55.     m_ulTimeDelta          = 0;
  56.     m_ulInstance           = ulInstance;
  57. }
  58. PXCallback::~PXCallback()
  59. {
  60.     Deallocate();
  61. }
  62. STDMETHODIMP PXCallback::QueryInterface(REFIID riid, void** ppvObj)
  63. {
  64.     HX_RESULT retVal = HXR_OK;
  65.     if (IsEqualIID(riid, IID_IUnknown))
  66.     {
  67.         AddRef();
  68.         *ppvObj = (IUnknown*) this;
  69.     }
  70.     else if (IsEqualIID(riid, IID_IHXCallback))
  71.     {
  72.         AddRef();
  73.         *ppvObj = (IHXCallback*) this;
  74.     }
  75.     else
  76.     {
  77.         *ppvObj = NULL;
  78.         retVal  = HXR_NOINTERFACE;
  79.     }
  80.     return retVal;
  81. }
  82. STDMETHODIMP_(UINT32) PXCallback::AddRef()
  83. {
  84.     return InterlockedIncrement(&m_lRefCount);
  85. }
  86. STDMETHODIMP_(UINT32) PXCallback::Release()
  87. {
  88.     
  89.     if (InterlockedDecrement(&m_lRefCount) > 0)
  90.     {
  91.         return m_lRefCount;
  92.     }
  93.     delete this;
  94.     return 0;
  95. }
  96. STDMETHODIMP PXCallback::Func()
  97. {
  98.     HX_RESULT retVal = HXR_UNEXPECTED;
  99.     if (m_pScheduler && m_pResponse)
  100.     {
  101.         // Compute time in milliseconds
  102.         HXTimeval cTime  = m_pScheduler->GetCurrentSchedulerTime();
  103.         UINT32     ulTime = (cTime.tv_sec * 1000) + ((cTime.tv_usec + 500) / 1000);
  104.         if (!m_bReportSchedulerTime)
  105.         {
  106.             ulTime -= m_ulTimeDelta;
  107.         }
  108.         // Clear the pending callback flag
  109.         m_bCallbackPending = FALSE;
  110.         m_ulCallbackHandle = 0;
  111.         // Call back to the response interface
  112.         retVal = m_pResponse->HandleCallback(ulTime, m_ulInstance);
  113.     }
  114.     return retVal;
  115. }
  116. HX_RESULT PXCallback::Init(IUnknown* pContext, PXCallbackResponse* pResponse,
  117.                            BOOL bReportSchedulerTime, UINT32 ulCurrentTime)
  118. {
  119.     HX_RESULT retVal = HXR_OK;
  120.     if (pContext && pResponse)
  121.     {
  122.         // Clear out everything if necessary
  123.         Deallocate();
  124.         // Init members
  125.         retVal = pContext->QueryInterface(IID_IHXScheduler,
  126.                                           (void**) &m_pScheduler);
  127.         if (SUCCEEDED(retVal))
  128.         {
  129.             m_pResponse            = pResponse;
  130.             m_ulCallbackHandle     = 0;
  131.             m_bCallbackPending     = FALSE;
  132.             m_bReportSchedulerTime = bReportSchedulerTime;
  133.             m_pResponse->AddRef();
  134.             if (!m_bReportSchedulerTime)
  135.             {
  136.                 // If the caller says NOT to report scheduler time, then the 
  137.                 // caller should have provided a current time for us to use.
  138.                 // Therefore, we need to compute the delta between the scheduler time
  139.                 // and the caller's current time.
  140.                 //
  141.                 // Compute the current scheduler time
  142.                 HXTimeval cTime  = m_pScheduler->GetCurrentSchedulerTime();
  143.                 UINT32     ulTime = (cTime.tv_sec * 1000) + ((cTime.tv_usec + 500) / 1000);
  144.                 // Compute the delta between the current scheduler time and the caller's current time
  145.                 m_ulTimeDelta = ulTime - ulCurrentTime;
  146.             }
  147.         }
  148.     }
  149.     else
  150.     {
  151.         retVal = HXR_INVALID_PARAMETER;
  152.     }
  153.     return retVal;
  154. }
  155. HX_RESULT PXCallback::ScheduleRelativeCallback(UINT32 ulTimeFromNow)
  156. {
  157.     HX_RESULT retVal = HXR_OK;
  158.     if (m_pScheduler)
  159.     {
  160.         // Remove any pending callback
  161.         RemovePendingCallback();
  162.         // Schedule a callback for ulTimeFromNow milliseconds from now
  163.         m_ulCallbackHandle = m_pScheduler->RelativeEnter(this, ulTimeFromNow);
  164.         // Set the callback flag
  165.         m_bCallbackPending = TRUE;
  166.     }
  167.     else
  168.     {
  169.         retVal = HXR_UNEXPECTED;
  170.     }
  171.     return retVal;
  172. }
  173. HX_RESULT PXCallback::ScheduleAbsoluteCallback(HXTimeval cTime)
  174. {
  175.     HX_RESULT retVal = HXR_OK;
  176.     if (m_pScheduler)
  177.     {
  178.         // Remove any pending callback
  179.         RemovePendingCallback();
  180.         // Schedule a callback for ulTimeFromNow milliseconds from now
  181.         m_ulCallbackHandle = m_pScheduler->AbsoluteEnter(this, cTime);
  182.         // Set the callback flag
  183.         m_bCallbackPending = TRUE;
  184.     }
  185.     else
  186.     {
  187.         retVal = HXR_UNEXPECTED;
  188.     }
  189.     return retVal;
  190. }
  191. void PXCallback::Deallocate()
  192. {
  193.     if (IsCallbackPending())
  194.     {
  195.         RemovePendingCallback();
  196.     }
  197.     HX_RELEASE(m_pScheduler);
  198.     HX_RELEASE(m_pResponse);
  199. }