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

P2P编程

开发平台:

Visual C++

  1. //------------------------------------------------------------------------------
  2. // File: RefClock.cpp
  3. //
  4. // Desc: DirectShow base classes - implements the IReferenceClock interface.
  5. //
  6. // Copyright (c)  Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8. #include <streams.h>
  9. #include <limits.h>
  10. // 'this' used in constructor list
  11. #pragma warning(disable:4355)
  12. STDMETHODIMP CBaseReferenceClock::NonDelegatingQueryInterface(
  13.     REFIID riid,
  14.     void ** ppv)
  15. {
  16.     HRESULT hr;
  17.     if (riid == IID_IReferenceClock)
  18.     {
  19.         hr = GetInterface((IReferenceClock *) this, ppv);
  20.     }
  21.     else
  22.     {
  23.         hr = CUnknown::NonDelegatingQueryInterface(riid, ppv);
  24.     }
  25.     return hr;
  26. }
  27. CBaseReferenceClock::~CBaseReferenceClock()
  28. {
  29.     if (m_TimerResolution) timeEndPeriod(m_TimerResolution);
  30.     m_pSchedule->DumpLinkedList();
  31.     if (m_hThread)
  32.     {
  33.         m_bAbort = TRUE;
  34.         TriggerThread();
  35.         WaitForSingleObject( m_hThread, INFINITE );
  36.         EXECUTE_ASSERT( CloseHandle(m_hThread) );
  37.         m_hThread = 0;
  38.         EXECUTE_ASSERT( CloseHandle(m_pSchedule->GetEvent()) );
  39. delete m_pSchedule;
  40.     }
  41. }
  42. // A derived class may supply a hThreadEvent if it has its own thread that will take care
  43. // of calling the schedulers Advise method.  (Refere to CBaseReferenceClock::AdviseThread()
  44. // to see what such a thread has to do.)
  45. CBaseReferenceClock::CBaseReferenceClock( TCHAR *pName, LPUNKNOWN pUnk, HRESULT *phr, CAMSchedule * pShed )
  46. : CUnknown( pName, pUnk )
  47. , m_rtLastGotTime(0)
  48. , m_TimerResolution(0)
  49. , m_bAbort( FALSE )
  50. , m_pSchedule( pShed ? pShed : new CAMSchedule(CreateEvent(NULL, FALSE, FALSE, NULL)) )
  51. , m_hThread(0)
  52. {
  53.     ASSERT(m_pSchedule);
  54.     if (!m_pSchedule)
  55.     {
  56. *phr = E_OUTOFMEMORY;
  57.     }
  58.     else
  59.     {
  60. // Set up the highest resolution timer we can manage
  61. TIMECAPS tc;
  62. m_TimerResolution = (TIMERR_NOERROR == timeGetDevCaps(&tc, sizeof(tc)))
  63.     ? tc.wPeriodMin
  64.     : 1;
  65. timeBeginPeriod(m_TimerResolution);
  66. /* Initialise our system times - the derived clock should set the right values */
  67. m_dwPrevSystemTime = timeGetTime();
  68. m_rtPrivateTime = (UNITS / MILLISECONDS) * m_dwPrevSystemTime;
  69. #ifdef PERF
  70.     m_idGetSystemTime = MSR_REGISTER(TEXT("CBaseReferenceClock::GetTime"));
  71. #endif
  72. if ( !pShed )
  73. {
  74.     DWORD ThreadID;
  75.     m_hThread = ::CreateThread(NULL,                  // Security attributes
  76.        (DWORD) 0,             // Initial stack size
  77.        AdviseThreadFunction,  // Thread start address
  78.        (LPVOID) this,         // Thread parameter
  79.        (DWORD) 0,             // Creation flags
  80.        &ThreadID);            // Thread identifier
  81.     if (m_hThread)
  82.     {
  83. SetThreadPriority( m_hThread, THREAD_PRIORITY_TIME_CRITICAL );
  84.     }
  85.     else
  86.     {
  87. *phr = E_FAIL;
  88. EXECUTE_ASSERT( CloseHandle(m_pSchedule->GetEvent()) );
  89. delete m_pSchedule;
  90.     }
  91. }
  92.     }
  93. }
  94. void CBaseReferenceClock::Restart (IN REFERENCE_TIME rtMinTime)
  95. {
  96.     Lock();
  97.     m_rtLastGotTime = rtMinTime ;
  98.     Unlock();
  99. }
  100. STDMETHODIMP CBaseReferenceClock::GetTime(REFERENCE_TIME *pTime)
  101. {
  102.     HRESULT hr;
  103.     if (pTime)
  104.     {
  105.         REFERENCE_TIME rtNow;
  106.         Lock();
  107.         rtNow = GetPrivateTime();
  108.         if (rtNow > m_rtLastGotTime)
  109.         {
  110.             m_rtLastGotTime = rtNow;
  111.             hr = S_OK;
  112.         }
  113.         else
  114.         {
  115.             hr = S_FALSE;
  116.         }
  117.         *pTime = m_rtLastGotTime;
  118.         Unlock();
  119.         MSR_INTEGER(m_idGetSystemTime, LONG((*pTime) / (UNITS/MILLISECONDS)) );
  120.     }
  121.     else hr = E_POINTER;
  122.     return hr;
  123. }
  124. /* Ask for an async notification that a time has elapsed */
  125. STDMETHODIMP CBaseReferenceClock::AdviseTime(
  126.     REFERENCE_TIME baseTime,         // base reference time
  127.     REFERENCE_TIME streamTime,       // stream offset time
  128.     HEVENT hEvent,                  // advise via this event
  129.     DWORD_PTR *pdwAdviseCookie)         // where your cookie goes
  130. {
  131.     CheckPointer(pdwAdviseCookie, E_POINTER);
  132.     *pdwAdviseCookie = 0;
  133.     // Check that the event is not already set
  134.     ASSERT(WAIT_TIMEOUT == WaitForSingleObject(HANDLE(hEvent),0));
  135.     HRESULT hr;
  136.     const REFERENCE_TIME lRefTime = baseTime + streamTime;
  137.     if ( lRefTime <= 0 || lRefTime == MAX_TIME )
  138.     {
  139.         hr = E_INVALIDARG;
  140.     }
  141.     else
  142.     {
  143.         *pdwAdviseCookie = m_pSchedule->AddAdvisePacket( lRefTime, 0, HANDLE(hEvent), FALSE );
  144.         hr = *pdwAdviseCookie ? NOERROR : E_OUTOFMEMORY;
  145.     }
  146.     return hr;
  147. }
  148. /* Ask for an asynchronous periodic notification that a time has elapsed */
  149. STDMETHODIMP CBaseReferenceClock::AdvisePeriodic(
  150.     REFERENCE_TIME StartTime,         // starting at this time
  151.     REFERENCE_TIME PeriodTime,        // time between notifications
  152.     HSEMAPHORE hSemaphore,           // advise via a semaphore
  153.     DWORD_PTR *pdwAdviseCookie)          // where your cookie goes
  154. {
  155.     CheckPointer(pdwAdviseCookie, E_POINTER);
  156.     *pdwAdviseCookie = 0;
  157.     HRESULT hr;
  158.     if (StartTime > 0 && PeriodTime > 0 && StartTime != MAX_TIME )
  159.     {
  160.         *pdwAdviseCookie = m_pSchedule->AddAdvisePacket( StartTime, PeriodTime, HANDLE(hSemaphore), TRUE );
  161.         hr = *pdwAdviseCookie ? NOERROR : E_OUTOFMEMORY;
  162.     }
  163.     else hr = E_INVALIDARG;
  164.     return hr;
  165. }
  166. STDMETHODIMP CBaseReferenceClock::Unadvise(DWORD_PTR dwAdviseCookie)
  167. {
  168.     return m_pSchedule->Unadvise(dwAdviseCookie);
  169. }
  170. REFERENCE_TIME CBaseReferenceClock::GetPrivateTime()
  171. {
  172.     CAutoLock cObjectLock(this);
  173.     /* If the clock has wrapped then the current time will be less than
  174.      * the last time we were notified so add on the extra milliseconds
  175.      *
  176.      * The time period is long enough so that the likelihood of
  177.      * successive calls spanning the clock cycle is not considered.
  178.      */
  179.     DWORD dwTime = timeGetTime();
  180.     {
  181.         m_rtPrivateTime += Int32x32To64(UNITS / MILLISECONDS, (DWORD)(dwTime - m_dwPrevSystemTime));
  182.         m_dwPrevSystemTime = dwTime;
  183.     }
  184.     return m_rtPrivateTime;
  185. }
  186. /* Adjust the current time by the input value.  This allows an
  187.    external time source to work out some of the latency of the clock
  188.    system and adjust the "current" time accordingly.  The intent is
  189.    that the time returned to the user is synchronised to a clock
  190.    source and allows drift to be catered for.
  191.    For example: if the clock source detects a drift it can pass a delta
  192.    to the current time rather than having to set an explicit time.
  193. */
  194. STDMETHODIMP CBaseReferenceClock::SetTimeDelta(const REFERENCE_TIME & TimeDelta)
  195. {
  196. #ifdef DEBUG
  197.     // Just break if passed an improper time delta value
  198.     LONGLONG llDelta = TimeDelta > 0 ? TimeDelta : -TimeDelta;
  199.     if (llDelta > UNITS * 1000) {
  200.         DbgLog((LOG_TRACE, 0, TEXT("Bad Time Delta")));
  201.         //DebugBreak();
  202.     }
  203.     // We're going to calculate a "severity" for the time change. Max -1
  204.     // min 8.  We'll then use this as the debug logging level for a
  205.     // debug log message.
  206.     const LONG usDelta = LONG(TimeDelta/10);      // Delta in micro-secs
  207.     DWORD delta        = abs(usDelta);            // varying delta
  208.     // Severity == 8 - ceil(log<base 8>(abs( micro-secs delta)))
  209.     int   Severity     = 8;
  210.     while ( delta > 0 )
  211.     {
  212.         delta >>= 3;                              // div 8
  213.         Severity--;
  214.     }
  215.     // Sev == 0 => > 2 second delta!
  216.     DbgLog((LOG_TIMING, Severity < 0 ? 0 : Severity,
  217.         TEXT("Sev %2i: CSystemClock::SetTimeDelta(%8ld us) %lu -> %lu ms."),
  218.         Severity, usDelta, DWORD(ConvertToMilliseconds(m_rtPrivateTime)),
  219.         DWORD(ConvertToMilliseconds(TimeDelta+m_rtPrivateTime)) ));
  220.     // Don't want the DbgBreak to fire when running stress on debug-builds.
  221.     #ifdef BREAK_ON_SEVERE_TIME_DELTA
  222.         if (Severity < 0)
  223.             DbgBreakPoint(TEXT("SetTimeDelta > 16 seconds!"),
  224.                           TEXT(__FILE__),__LINE__);
  225.     #endif
  226. #endif
  227.     CAutoLock cObjectLock(this);
  228.     m_rtPrivateTime += TimeDelta;
  229.     // If time goes forwards, and we have advises, then we need to
  230.     // trigger the thread so that it can re-evaluate its wait time.
  231.     // Since we don't want the cost of the thread switches if the change
  232.     // is really small, only do it if clock goes forward by more than
  233.     // 0.5 millisecond.  If the time goes backwards, the thread will
  234.     // wake up "early" (relativly speaking) and will re-evaluate at
  235.     // that time.
  236.     if ( TimeDelta > 5000 && m_pSchedule->GetAdviseCount() > 0 ) TriggerThread();
  237.     return NOERROR;
  238. }
  239. // Thread stuff
  240. DWORD __stdcall CBaseReferenceClock::AdviseThreadFunction(LPVOID p)
  241. {
  242.     return DWORD(reinterpret_cast<CBaseReferenceClock*>(p)->AdviseThread());
  243. }
  244. HRESULT CBaseReferenceClock::AdviseThread()
  245. {
  246.     DWORD dwWait = INFINITE;
  247.     // The first thing we do is wait until something interesting happens
  248.     // (meaning a first advise or shutdown).  This prevents us calling
  249.     // GetPrivateTime immediately which is goodness as that is a virtual
  250.     // routine and the derived class may not yet be constructed.  (This
  251.     // thread is created in the base class constructor.)
  252.     while ( !m_bAbort )
  253.     {
  254.         // Wait for an interesting event to happen
  255.         DbgLog((LOG_TIMING, 3, TEXT("CBaseRefClock::AdviseThread() Delay: %lu ms"), dwWait ));
  256.         WaitForSingleObject(m_pSchedule->GetEvent(), dwWait);
  257.         if (m_bAbort) break;
  258.         // There are several reasons why we need to work from the internal
  259.         // time, mainly to do with what happens when time goes backwards.
  260.         // Mainly, it stop us looping madly if an event is just about to
  261.         // expire when the clock goes backward (i.e. GetTime stop for a
  262.         // while).
  263.         const REFERENCE_TIME  rtNow = GetPrivateTime();
  264.         DbgLog((LOG_TIMING, 3,
  265.               TEXT("CBaseRefClock::AdviseThread() Woke at = %lu ms"),
  266.               ConvertToMilliseconds(rtNow) ));
  267.         // We must add in a millisecond, since this is the resolution of our
  268.         // WaitForSingleObject timer.  Failure to do so will cause us to loop
  269.         // franticly for (approx) 1 a millisecond.
  270.         m_rtNextAdvise = m_pSchedule->Advise( 10000 + rtNow );
  271.         LONGLONG llWait = m_rtNextAdvise - rtNow;
  272.         ASSERT( llWait > 0 );
  273.         llWait = ConvertToMilliseconds(llWait);
  274.         // DON'T replace this with a max!! (The type's of these things is VERY important)
  275.         dwWait = (llWait > REFERENCE_TIME(UINT_MAX)) ? UINT_MAX : DWORD(llWait);
  276.     };
  277.     return NOERROR;
  278. }