async_timer_test.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

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 "async_timer_test.h"
  36. #include "hx_unit_test.h"
  37. #include "hx_ut_debug.h"
  38. #include "hxthread.h"
  39. #include "hxtick.h"
  40. HXAsyncTimerTest::HXAsyncTimerTest() :
  41.     m_ulTimerID(0),
  42.     m_bFailed(FALSE),
  43.     m_ulLastTime(0),
  44.     m_ulTimeoutPeriod(0),
  45.     m_ulTimeoutCount(0)
  46. {}
  47. HXAsyncTimerTest::~HXAsyncTimerTest()
  48. {}
  49. const char* HXAsyncTimerTest::DefaultCommandLine() const
  50. {
  51.     return "HXAsyncTimerTest";
  52. }
  53. bool HXAsyncTimerTest::Init(int argc, char* argv[])
  54. {
  55.     return true;
  56. }
  57. bool HXAsyncTimerTest::Start()
  58. {
  59.     BOOL bRet = FALSE;
  60.     SetInstance(this);
  61.     if (RunTimeoutTest(100) &&
  62. RunTimeoutTest(250) &&
  63. RunTimeoutTest(456) &&
  64. RunTimeoutTest(1000))
  65. bRet = true;
  66.     return bRet;
  67. }
  68. void HXAsyncTimerTest::Reset()
  69. {
  70. }
  71. bool HXAsyncTimerTest::RunTimeoutTest(ULONG32 ulPeriod)
  72. {
  73.     bool bRet = false;
  74.     m_ulLastTime = GetTickCount();
  75.     m_ulTimeoutCount = 10;
  76.     m_ulTimeoutPeriod = ulPeriod;
  77.     m_bFailed = false;
  78.     m_ulTimerID = HXAsyncTimer::SetTimer(m_ulTimeoutPeriod, 
  79.  &HXAsyncTimerTest::TimerFunc);
  80.     ULONG32 ulStartTime = GetTickCount();
  81.     ULONG32 ulEndTime = ulStartTime + 2 * m_ulTimeoutPeriod * m_ulTimeoutCount;
  82.     while((!m_bFailed) &&
  83.   (m_ulTimeoutCount > 0) && 
  84.   (GetTickCount() < ulEndTime))
  85.     {
  86. ProcessEvents();
  87.     }
  88.     if (!m_bFailed && (m_ulTimeoutCount == 0))
  89.     {
  90. bRet = true;
  91.     }
  92.     if (m_ulTimerID)
  93.     {
  94. HXAsyncTimer::KillTimer(m_ulTimerID);
  95. m_ulTimerID = 0;
  96.     }
  97.     return bRet;
  98. }
  99. void HXAsyncTimerTest::OnTimeout(UINT32 idEvent, ULONG32 ulTime)
  100. {
  101.     ULONG32 ulTimeDelta = ulTime - m_ulLastTime;
  102.     ULONG32 ulFudge = 2 * SchedulerQuantum();
  103.     DPRINTF(D_INFO, ("HXAsyncTimerTest::OnTimeout() : delta %d period %dn",
  104.      ulTimeDelta,
  105.      m_ulTimeoutPeriod));
  106.     
  107.     ULONG32 ulDelta = 0;
  108.     if (ulTimeDelta > m_ulTimeoutPeriod)
  109. ulDelta = ulTimeDelta - m_ulTimeoutPeriod;
  110.     else
  111. ulDelta = m_ulTimeoutPeriod - ulTimeDelta;
  112.     
  113.     if (ulDelta > ulFudge)
  114.     {
  115. DPRINTF(D_INFO, ("HXAsyncTimerTest::OnTimeout() : Delta was too largen"));
  116. m_bFailed = true;
  117.     }
  118.     m_ulTimeoutCount--;
  119.     m_ulLastTime = ulTime;
  120. }
  121. void HXAsyncTimerTest::TimerFunc(void* handle, UINT32 uMesg, UINT32 idEvent, 
  122.  ULONG32 ulTime)
  123. {
  124.     DPRINTF(D_INFO, ("HXAsyncTimerTest::TimerFunc(%p, %d, %d, %d)n",
  125.      handle, uMesg, idEvent, ulTime));
  126.     HXAsyncTimerTest* pTest = HXAsyncTimerTest::GetInstance();
  127.     if (pTest)
  128. pTest->OnTimeout(idEvent, ulTime);
  129. }
  130. static HXAsyncTimerTest* z_pTestInstance = 0;
  131. HXAsyncTimerTest* HXAsyncTimerTest::GetInstance()
  132. {
  133.     return z_pTestInstance;
  134. }
  135. void HXAsyncTimerTest::SetInstance(HXAsyncTimerTest* pInstance)
  136. {
  137.     z_pTestInstance = pInstance;
  138. }