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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxoptsc.h,v 1.2.32.1 2004/07/09 02:06:18 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. #ifndef _IHXOptimizedScheduler_
  50. #define _IHXOptimizedScheduler_
  51. class  ClientPQ;
  52. class  CHXID;
  53. class  HXMutex;
  54. struct IUnknown;
  55. struct IHXScheduler;
  56. typedef struct _HXTimeval HXTimeval;
  57. #include "timeval.h"
  58. class CAsyncTimer;
  59. // HXOptimizedSchedulerBase is a base class that allows the core
  60. // to control the scheduler object without knowing the actual 
  61. // implementation of the object.
  62. class HXOptimizedSchedulerBase : public IHXOptimizedScheduler
  63. {
  64. public:
  65.     /*
  66.      *  IUnknown methods
  67.      */
  68.     STDMETHOD(QueryInterface) (THIS_
  69. REFIID riid,
  70. void** ppvObj) PURE;
  71.     STDMETHOD_(ULONG32,AddRef) (THIS) PURE;
  72.     STDMETHOD_(ULONG32,Release) (THIS) PURE;
  73.     /*
  74.      * IHXOptimizedScheduler methods
  75.      */
  76.     /************************************************************************
  77.      * Method:
  78.      *     IHXOptimizedScheduler::RelativeEnter
  79.      * Purpose:
  80.      *     Schedule a callback to be executed "ms" milliseconds from now
  81.      *     This function is less percise then AbsoluteEnter and should only
  82.      *     be used when accurate timing is not critical.
  83.      */
  84.     STDMETHOD_(CallbackHandle,RelativeEnter) (THIS_
  85. IHXCallback* pCallback,
  86. UINT32 ms) PURE;
  87.     /************************************************************************
  88.      * Method:
  89.      *     IHXOptimizedScheduler::AbsoluteEnter
  90.      * Purpose:
  91.      *     Schedule a callback to be executed at time "tVal".
  92.      */
  93.     STDMETHOD_(CallbackHandle,AbsoluteEnter) (THIS_
  94. IHXCallback* pCallback,
  95. HXTimeval tVal) PURE;
  96.     /************************************************************************
  97.      * Method:
  98.      *     IHXOptimizedScheduler::Remove
  99.      * Purpose:
  100.      *     Remove a callback from the scheduler.
  101.      */
  102.     STDMETHOD(Remove) (THIS_
  103.      CallbackHandle Handle) PURE;
  104.     /************************************************************************
  105.      * Method:
  106.      *     IHXOptimizedScheduler::GetCurrentSchedulerTime
  107.      * Purpose:
  108.      *     Gives the current time (in the timeline of the scheduler).
  109.      */
  110.     STDMETHOD_(HXTimeval,GetCurrentSchedulerTime) (THIS) PURE;
  111.     // Scheduler control functions
  112.     virtual HX_RESULT StartScheduler() PURE;
  113.     virtual void StopScheduler() PURE;
  114. };
  115. class HXOptimizedScheduler : public HXOptimizedSchedulerBase
  116. {
  117. public:
  118. HXOptimizedScheduler(IUnknown* pContext);
  119. ~HXOptimizedScheduler();
  120.     /*
  121.      * IUnknown methods
  122.      */
  123.     STDMETHOD(QueryInterface) (THIS_
  124. REFIID riid,
  125. void** ppvObj);
  126.     STDMETHOD_(ULONG32,AddRef) (THIS);
  127.     STDMETHOD_(ULONG32,Release) (THIS);
  128.     /*
  129.      * HXOptimizedScheduler methods
  130.      */
  131.     /************************************************************************
  132.      * Method:
  133.      *     IHXOptimizedScheduler::RelativeEnter
  134.      * Purpose:
  135.      *     enter objects in the service queue offset from time now
  136.      */
  137.     STDMETHOD_(CallbackHandle,RelativeEnter) (THIS_
  138. IHXCallback* pCallback,
  139. UINT32 ms);
  140.     /************************************************************************
  141.      * Method:
  142.      *     IHXOptimizedScheduler::AbsoluteEnter
  143.      * Purpose:
  144.      *     enter objects in the service queue at absolute time
  145.      */
  146.     STDMETHOD_(CallbackHandle,AbsoluteEnter) (THIS_
  147. IHXCallback* pCallback,
  148. HXTimeval tVal);
  149.     /************************************************************************
  150.      * Method:
  151.      *     IHXOptimizedScheduler::Remove
  152.      * Purpose:
  153.      *     remove objects from the service queue
  154.      */
  155.     STDMETHOD(Remove) (THIS_
  156.      CallbackHandle Handle);
  157.     /************************************************************************
  158.      * Method:
  159.      *     IHXOptimizedScheduler::GetCurrentSchedulerTime
  160.      * Purpose:
  161.      *     gives the current time in the timeline of the scheduler...
  162.      */
  163.     STDMETHOD_(HXTimeval,GetCurrentSchedulerTime) (THIS);
  164.     HX_RESULT ExecuteCurrentFunctions();
  165.     HX_RESULT StartScheduler();
  166.     
  167.     void StopScheduler();
  168.     BOOL GetNextEventDueTime(UINT32& ulNumMs);
  169. protected:
  170.     LONG32     m_lRefCount;
  171.     ClientPQ*     m_pPQ;
  172.     CHXID*     m_pID;
  173.     IUnknown*     m_pContext;
  174.     IHXScheduler*  m_pScheduler;
  175.     HXTimeval     m_CurrentTimeVal;
  176.     UINT32     m_ulLastUpdateTime;
  177.     UINT32     m_ulLastSyncTime;
  178.     HXMutex*     m_pMutex;
  179.     /* Used to schedule events in a separate thread */
  180.     friend void* ThreadRoutine (void * pArg);
  181.     inline void UpdateCurrentTime(Timeval* pNow);
  182.     HXThread*     m_pThread;
  183.     HXEvent*     m_pQuitEvent;
  184.     HXEvent*     m_pSleepEvent;
  185.     ULONG32     m_ulCurrentGranularity;
  186.     BOOL     m_bIsDone;
  187. };
  188. #endif // _IHXOptimizedScheduler_