timeline.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

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. #ifndef _TIMELINE_
  36. #define _TIMELINE_
  37. // forward decl...
  38. struct IHXCallback;
  39. struct IHXInterruptState;
  40. class HXPlayer;
  41. class HXScheduler;
  42. class   Timeline;
  43. class   CHXMapLongToObj;
  44. class CHXMapPtrToPtr;
  45. #ifdef _MACINTOSH
  46. #ifndef _MAC_MACHO
  47. #include <timer.h>
  48. #endif
  49. typedef struct TMInfo
  50. {
  51.     TMTask  tmTask; // original and revised TM task record
  52.     long    tmRefCon; // space to pass application specific data
  53. }TMInfo, *TMInfoPtr;
  54. #endif
  55. #if defined(_UNIX) || defined(_SYMBIAN) || defined(__TCS__)
  56. #define CALLBACK
  57. #endif
  58. class Timeline
  59. {
  60. public:
  61.     Timeline(void);
  62.     ~Timeline();
  63.     HX_RESULT     Init(IUnknown* pUnknown, BOOL bUseDeferredTask = TRUE);
  64.     HX_RESULT     Pause(void);
  65.     HX_RESULT     Resume(void);
  66.     HX_RESULT     Seek(ULONG32 ulSeekTime);
  67.     HX_RESULT     SetStartTime(ULONG32 ulTime);
  68.     HX_RESULT     SetGranularity(ULONG32 ulNumMillisecs);
  69.     HX_RESULT     OnTimeSync(BOOL bAtInterrupt = FALSE);
  70.     void     Done(void);
  71. #if defined(_WINDOWS) || defined(_SYMBIAN)
  72. public:
  73.     static void CALLBACK
  74.     NonMMTimerProc( 
  75. void*    hwnd, // handle of window for timer messages 
  76. UINT32   uMsg, // WM_TIMER message
  77. UINT32   idEvent, // timer identifier
  78. ULONG32  dwTime  // current system time
  79.     );
  80. protected:
  81.     UINT32 m_uiTimerID;
  82.     UINT32 m_uiTimerIDFixup;
  83. #if !defined(HELIX_CONFIG_NOSTATICS)
  84.     static CHXMapLongToObj  m_zTimerMap;
  85. #else
  86.     static const CHXMapLongToObj* const m_zTimerMap;
  87. #endif
  88.     static void KillTimerFixup(UINT  idTimer, struct TimerObjects*  pTimerObject);
  89. #endif
  90. #ifdef _MACINTOSH
  91. public:
  92.     static pascal void DeferredTaskProc(long param);
  93.     static pascal void MacTimerProc(TMInfoPtr task);
  94.     HX_BITFIELD m_bUseDeferredTasks : 1;
  95.     
  96.     // m_bIsQuitting and m_bAnyCallbackPending need to be UINT32s because
  97.     // emergency interrupt removal assumes it.
  98.     UINT32 m_bIsQuitting;
  99.     UINT32 m_bAnyCallbackPending;
  100.     DeferredTask m_DeferredTaskStruct;
  101.     TMInfo m_tmInfo;   
  102.     TimerUPP m_uppTask;
  103.     IHXInterruptState* m_pInterruptState;
  104.     
  105. #ifdef THREADS_SUPPORTED
  106.     HXMutex* m_pCoreMutex;
  107.     void SetCoreMutex(HXMutex* pMutex) {m_pCoreMutex = pMutex;};
  108. #endif
  109.     
  110.     void InterruptTimeSync (void);
  111.     struct GestaltDeferredStruct
  112.     {
  113. UINT32* quitting;
  114. UINT32* pending;
  115. ProcessSerialNumber psn;
  116.     };
  117. #endif
  118. #if defined(_UNIX) || defined(_MACINTOSH) || defined(__TCS__) || defined(_OPENWAVE)
  119. public:
  120.     static void CallAllTimeSyncs(void);
  121. protected:
  122. #if !defined(HELIX_CONFIG_NOSTATICS)
  123.     static CHXMapPtrToPtr   m_zTimerMap;
  124. #else
  125.     static const CHXMapPtrToPtr* const m_zTimerMap;
  126. #endif
  127. #endif /* _UNIX || _MACINTOSH */
  128. protected:
  129.     ULONG32 m_ulGranularity;
  130.     HX_BITFIELD m_bIsTimerPending : 1;
  131.     HX_BITFIELD m_bPaused : 1;
  132.     HX_BITFIELD m_bTimerFixup : 1;
  133.     HXPlayer* m_pPlayer;
  134.     HXScheduler* m_pScheduler;
  135.     ULONG32 m_ulLastCallbackTime;
  136. public:
  137.     void SetTimerFixup(BOOL val){m_bTimerFixup = val;};
  138. protected:
  139. };
  140. struct TimerObjects
  141. {
  142.     Timeline* m_pTimeline;
  143.     UINT32 m_uiTimer;
  144. };
  145. #endif //_TIMELINE_