hxsched.h
上传用户: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 "hxthread.h"
  36. #ifndef _IHXSCHEDULER_
  37. #define _IHXSCHEDULER_
  38. #include "hxengin.h"
  39. class ClientPQ;
  40. class Timeline;
  41. class HXMutex;
  42. struct IUnknown;
  43. class CHXID;
  44. typedef struct _HXTimeval HXTimeval;
  45. #include "timeval.h"
  46. class CAsyncTimer;
  47. class HXScheduler : public IHXScheduler
  48. {
  49. protected:
  50.     LONG32 m_lRefCount;
  51.     ClientPQ* m_pScheduler;
  52.     BOOL        m_bUseDeferredTask;
  53.     // Is set to TRUE for most of the time except when we need to remove all
  54.     // callbacks from the scheduler without actually exectuing the functions..
  55.     static BOOL m_sbProcess;
  56.     
  57.     /* special PQ for interrupt safe tasks */
  58.     ClientPQ*   m_pInterruptTimeScheduler;
  59.     CHXID*      m_pID;
  60.     IUnknown*   m_pContext;
  61.     /* semaphore to prevent a deferred interrupt task from interrupting
  62.      * a system task
  63.      */
  64.     BOOL m_bLocked; 
  65. public:
  66. HXScheduler(IUnknown* pContext);
  67. ~HXScheduler();
  68.     /*
  69.      * IUnknown methods
  70.      */
  71.     STDMETHOD(QueryInterface) (THIS_
  72. REFIID riid,
  73. void** ppvObj);
  74.     STDMETHOD_(ULONG32,AddRef) (THIS);
  75.     STDMETHOD_(ULONG32,Release) (THIS);
  76.     /*
  77.      * HXScheduler methods
  78.      */
  79.     /************************************************************************
  80.      * Method:
  81.      *     IHXScheduler::RelativeEnter
  82.      * Purpose:
  83.      *     enter objects in the service queue offset from time now
  84.      */
  85.     STDMETHOD_(CallbackHandle,RelativeEnter) (THIS_
  86. IHXCallback* pCallback,
  87. UINT32 ms);
  88.     /************************************************************************
  89.      * Method:
  90.      *     IHXScheduler::AbsoluteEnter
  91.      * Purpose:
  92.      *     enter objects in the service queue at absolute time
  93.      */
  94.     STDMETHOD_(CallbackHandle,AbsoluteEnter) (THIS_
  95. IHXCallback* pCallback,
  96. HXTimeval tVal);
  97.     /************************************************************************
  98.      * Method:
  99.      *     IHXScheduler::Remove
  100.      * Purpose:
  101.      *     remove objects from the service queue
  102.      */
  103.     STDMETHOD(Remove) (THIS_
  104.      CallbackHandle Handle);
  105.     /************************************************************************
  106.      * Method:
  107.      *     IHXScheduler::GetCurrentSchedulerTime
  108.      * Purpose:
  109.      *     gives the current time in the timeline of the scheduler...
  110.      */
  111.     STDMETHOD_(HXTimeval,GetCurrentSchedulerTime) (THIS);
  112.     /************************************************************************
  113.      * Method:
  114.      * OnTimeSync
  115.      * Purpose:
  116.      * called by audio services OR the player timer to set the 
  117.      * current time of playback..
  118.      *
  119.      */
  120.     HX_RESULT OnTimeSync(BOOL bAtInterrupt=FALSE);
  121.     HX_RESULT ExecuteCurrentFunctions(BOOL bAtInterrupt=FALSE);
  122.     HX_RESULT StartScheduler();
  123.     void UseDeferredTask(BOOL bUseDeferredTask) 
  124.     {m_bUseDeferredTask = bUseDeferredTask;};
  125.     HX_RESULT StartSchedulerTimerFixup();
  126.     HX_RESULT   StartSchedulerImplementation(BOOL TimerFixup);
  127.     
  128.     void StopScheduler();
  129.     BOOL GetNextEventDueTimeDiff(ULONG32 &ulEarliestDueTimeDiff);
  130.     BOOL IsEmpty();
  131.     BOOL IsAtInterruptTime();
  132.     void SetCoreMutex(HXMutex* pMutex) {m_pCoreMutex = pMutex;};
  133.     void SetInterrupt(BOOL bInterruptenable) 
  134.     {m_bIsInterruptEnabled = bInterruptenable;};
  135.     void NotifyPlayState(BOOL bInPlayingState);
  136.     BOOL AreImmediatesPending(void)  { return m_bImmediatesPending; }
  137. protected:
  138.     Timeval     m_CurrentTimeVal;
  139.     UINT32     m_ulLastUpdateTime;
  140.     HXMutex*     m_pCoreMutex;
  141.     BOOL     m_bIsInterruptEnabled;
  142.     Timeval      m_headTime;
  143.     Timeval     m_interruptHeadTime;
  144.     UINT32     m_ulSystemNextDueTime;
  145.     UINT32     m_ulInterruptNextDueTime;
  146.     BOOL     m_bImmediatesPending;
  147. #if defined(_WIN32) || defined(THREADS_SUPPORTED)
  148.     CAsyncTimer*    m_pAsyncTimer;
  149. #endif 
  150.     Timeline* m_pTimeline;
  151.     ULONG32 m_ulCurrentGranularity;
  152.     inline BOOL UpdateCurrentTime(BOOL bAtInterrupt,BOOL& bShouldServiceSystem, 
  153.   BOOL& bShouldServiceInterrupt);
  154. };
  155. #endif // _IHXSCHEDULER_