refclock.h
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:7k
源码类别:

P2P编程

开发平台:

Visual C++

  1. //------------------------------------------------------------------------------
  2. // File: RefClock.h
  3. //
  4. // Desc: DirectShow base classes - defines the IReferenceClock interface.
  5. //
  6. // Copyright (c) Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8. #ifndef __BASEREFCLOCK__
  9. #define __BASEREFCLOCK__
  10. #include "dsschedule.h"
  11. const UINT RESOLUTION = 1;                      /* High resolution timer */
  12. const INT ADVISE_CACHE = 4;                     /* Default cache size */
  13. const LONGLONG MAX_TIME = 0x7FFFFFFFFFFFFFFF;   /* Maximum LONGLONG value */
  14. inline LONGLONG WINAPI ConvertToMilliseconds(const REFERENCE_TIME& RT)
  15. {
  16.     /* This converts an arbitrary value representing a reference time
  17.        into a MILLISECONDS value for use in subsequent system calls */
  18.     return (RT / (UNITS / MILLISECONDS));
  19. }
  20. /* This class hierarchy will support an IReferenceClock interface so
  21.    that an audio card (or other externally driven clock) can update the
  22.    system wide clock that everyone uses.
  23.    The interface will be pretty thin with probably just one update method
  24.    This interface has not yet been defined.
  25.  */
  26. /* This abstract base class implements the IReferenceClock
  27.  * interface.  Classes that actually provide clock signals (from
  28.  * whatever source) have to be derived from this class.
  29.  *
  30.  * The abstract class provides implementations for:
  31.  *  CUnknown support
  32.  *      locking support (CCritSec)
  33.  * client advise code (creates a thread)
  34.  *
  35.  * Question: what can we do about quality?  Change the timer
  36.  * resolution to lower the system load?  Up the priority of the
  37.  * timer thread to force more responsive signals?
  38.  *
  39.  * During class construction we create a worker thread that is destroyed during
  40.  * destuction.  This thread executes a series of WaitForSingleObject calls,
  41.  * waking up when a command is given to the thread or the next wake up point
  42.  * is reached.  The wakeup points are determined by clients making Advise
  43.  * calls.
  44.  *
  45.  * Each advise call defines a point in time when they wish to be notified.  A
  46.  * periodic advise is a series of these such events.  We maintain a list of
  47.  * advise links and calculate when the nearest event notification is due for.
  48.  * We then call WaitForSingleObject with a timeout equal to this time.  The
  49.  * handle we wait on is used by the class to signal that something has changed
  50.  * and that we must reschedule the next event.  This typically happens when
  51.  * someone comes in and asks for an advise link while we are waiting for an
  52.  * event to timeout.
  53.  *
  54.  * While we are modifying the list of advise requests we
  55.  * are protected from interference through a critical section.  Clients are NOT
  56.  * advised through callbacks.  One shot clients have an event set, while
  57.  * periodic clients have a semaphore released for each event notification.  A
  58.  * semaphore allows a client to be kept up to date with the number of events
  59.  * actually triggered and be assured that they can't miss multiple events being
  60.  * set.
  61.  *
  62.  * Keeping track of advises is taken care of by the CAMSchedule class.
  63.  */
  64. class CBaseReferenceClock
  65. : public CUnknown, public IReferenceClock, public CCritSec
  66. {
  67. protected:
  68.     virtual ~CBaseReferenceClock();     // Don't let me be created on the stack!
  69. public:
  70.     CBaseReferenceClock(TCHAR *pName, LPUNKNOWN pUnk, HRESULT *phr, CAMSchedule * pSched = 0 );
  71.     STDMETHODIMP NonDelegatingQueryInterface(REFIID riid,void ** ppv);
  72.     DECLARE_IUNKNOWN
  73.     /* IReferenceClock methods */
  74.     // Derived classes must implement GetPrivateTime().  All our GetTime
  75.     // does is call GetPrivateTime and then check so that time does not
  76.     // go backwards.  A return code of S_FALSE implies that the internal
  77.     // clock has gone backwards and GetTime time has halted until internal
  78.     // time has caught up. (Don't know if this will be much use to folk,
  79.     // but it seems odd not to use the return code for something useful.)
  80.     STDMETHODIMP GetTime(REFERENCE_TIME *pTime);
  81.     // When this is called, it sets m_rtLastGotTime to the time it returns.
  82.     /* Provide standard mechanisms for scheduling events */
  83.     /* Ask for an async notification that a time has elapsed */
  84.     STDMETHODIMP AdviseTime(
  85.         REFERENCE_TIME baseTime,        // base reference time
  86.         REFERENCE_TIME streamTime,      // stream offset time
  87.         HEVENT hEvent,                  // advise via this event
  88.         DWORD_PTR *pdwAdviseCookie          // where your cookie goes
  89.     );
  90.     /* Ask for an asynchronous periodic notification that a time has elapsed */
  91.     STDMETHODIMP AdvisePeriodic(
  92.         REFERENCE_TIME StartTime,       // starting at this time
  93.         REFERENCE_TIME PeriodTime,      // time between notifications
  94.         HSEMAPHORE hSemaphore,          // advise via a semaphore
  95.         DWORD_PTR *pdwAdviseCookie          // where your cookie goes
  96.     );
  97.     /* Cancel a request for notification(s) - if the notification was
  98.      * a one shot timer then this function doesn't need to be called
  99.      * as the advise is automatically cancelled, however it does no
  100.      * harm to explicitly cancel a one-shot advise.  It is REQUIRED that
  101.      * clients call Unadvise to clear a Periodic advise setting.
  102.      */
  103.     STDMETHODIMP Unadvise(DWORD_PTR dwAdviseCookie);
  104.     /* Methods for the benefit of derived classes or outer objects */
  105.     // GetPrivateTime() is the REAL clock.  GetTime is just a cover for
  106.     // it.  Derived classes will probably override this method but not
  107.     // GetTime() itself.
  108.     // The important point about GetPrivateTime() is it's allowed to go
  109.     // backwards.  Our GetTime() will keep returning the LastGotTime
  110.     // until GetPrivateTime() catches up.
  111.     virtual REFERENCE_TIME GetPrivateTime();
  112.     /* Provide a method for correcting drift */
  113.     STDMETHODIMP SetTimeDelta( const REFERENCE_TIME& TimeDelta );
  114.     CAMSchedule * GetSchedule() const { return m_pSchedule; }
  115. private:
  116.     REFERENCE_TIME m_rtPrivateTime;     // Current best estimate of time
  117.     DWORD          m_dwPrevSystemTime;  // Last vaule we got from timeGetTime
  118.     REFERENCE_TIME m_rtLastGotTime;     // Last time returned by GetTime
  119.     REFERENCE_TIME m_rtNextAdvise;      // Time of next advise
  120.     UINT           m_TimerResolution;
  121. #ifdef PERF
  122.     int m_idGetSystemTime;
  123. #endif
  124. // Thread stuff
  125. public:
  126.     void TriggerThread()                 // Wakes thread up.  Need to do this if
  127.     { // time to next advise needs reevaluating.
  128. EXECUTE_ASSERT(SetEvent(m_pSchedule->GetEvent()));
  129.     }
  130. private:
  131.     BOOL           m_bAbort;            // Flag used for thread shutdown
  132.     HANDLE         m_hThread;           // Thread handle
  133.     HRESULT AdviseThread();             // Method in which the advise thread runs
  134.     static DWORD __stdcall AdviseThreadFunction(LPVOID); // Function used to get there
  135. protected:
  136.     CAMSchedule * const m_pSchedule;
  137.     void Restart (IN REFERENCE_TIME rtMinTime = 0I64) ;
  138. };
  139. #endif