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

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 "./scheduler_test.h"
  36. #include "hx_ut_debug.h"
  37. #include "ut_param_util.h"
  38. #include "microsleep.h"
  39. #include "./timeout_op.h"
  40. #include "./shutdown_op.h"
  41. #include "./remove_op.h"
  42. #include "./test_callback.h"
  43. HXSchedulerTest::HXSchedulerTest() :
  44.     m_pSched(0),
  45.     m_done(false),
  46.     m_failed(false),
  47.     m_nextOpID(0),
  48.     m_finalOpID(0),
  49.     m_highestTimeout(0),
  50.     m_lastCallbackHandle(0)
  51. {
  52.     CreateScheduler();
  53. }
  54. HXSchedulerTest::~HXSchedulerTest()
  55. {
  56.     HX_RELEASE(m_pSched);
  57. }
  58. const char* HXSchedulerTest::DefaultCommandLine() const
  59. {
  60.     return "tscheduler tscheduler.in";
  61. }
  62. void HXSchedulerTest::GetCommandInfo(UTVector<HLXUnitTestCmdInfo*>& cmds)
  63. {
  64.     cmds.Resize(4);
  65.     
  66.     cmds[0] = new HLXUnitTestCmdInfoDisp<HXSchedulerTest>(this, 
  67.     "Reset",
  68.     &HXSchedulerTest::HandleResetCmd,
  69.     1);
  70.     cmds[1] = new HLXUnitTestCmdInfoDisp<HXSchedulerTest>(this, 
  71.     "Timeout",
  72.     &HXSchedulerTest::HandleTimeoutCmd,
  73.     3);
  74.     cmds[2] = new HLXUnitTestCmdInfoDisp<HXSchedulerTest>(this, 
  75.     "CancelLast",
  76.     &HXSchedulerTest::HandleCancelLastCmd,
  77.     3);
  78.     cmds[3] = new HLXUnitTestCmdInfoDisp<HXSchedulerTest>(this, 
  79.     "RunScheduler",
  80.     &HXSchedulerTest::HandleRunSchedulerCmd,
  81.     1);
  82. }
  83. HLXCmdBasedTest* HXSchedulerTest::Clone() const
  84. {
  85.     return new HXSchedulerTest();
  86. }
  87. void HXSchedulerTest::OperationFailed()
  88. {
  89.     m_failed = true;
  90. }
  91. bool HXSchedulerTest::RemoveHandle(CallbackHandle handle)
  92. {
  93.     return (m_pSched->Remove(handle) == HXR_OK);
  94. }
  95. void HXSchedulerTest::StopScheduler()
  96. {
  97.     m_pSched->StopScheduler();
  98.     m_done = true;
  99. }
  100. bool HXSchedulerTest::OnOperation(UINT32 operationID)
  101. {
  102.     bool ret = false;
  103.     if (operationID == m_nextOpID)
  104.     {
  105. m_nextOpID++;
  106. ret = true;
  107.     }
  108.     else
  109.     {
  110. DPRINTF(D_ERROR, ("HXSchedulerTest::OnOperation() : out of order operation detectedn"));
  111. OperationFailed();
  112. StopScheduler();
  113.     }
  114.     return ret;
  115. }
  116. ULONG32 HXSchedulerTest::GetMSFromStart()
  117. {
  118.     ULONG32 ret = 0;
  119.     HXTimeval now = m_pSched->GetCurrentSchedulerTime();
  120.     ret = (now.tv_sec - m_startTime.tv_sec) * 1000;
  121.     
  122.     if (now.tv_usec < m_startTime.tv_sec)
  123.     {
  124. ret -= 1000;
  125. now.tv_usec += 1000000;
  126.     }
  127.     ret += (now.tv_usec - m_startTime.tv_usec) / 1000;
  128.     return ret;
  129. }
  130. bool HXSchedulerTest::HandleResetCmd(const UTVector<UTString>& info)
  131. {
  132.     m_done = false;
  133.     m_failed = false;
  134.     m_nextOpID = 0;
  135.     m_finalOpID = 0;
  136.     m_highestTimeout = 0;
  137.     CreateScheduler();
  138.     return true;
  139. }
  140. bool HXSchedulerTest::HandleTimeoutCmd(const UTVector<UTString>& info)
  141. {
  142.     // Handles commands of the following form
  143.     // Timeout <operationID> <timeout>
  144.     bool ret = false;
  145.     unsigned int opID = 0;
  146.     unsigned int timeout = 0;
  147.     if (!UTParamUtil::GetUInt(info[1], opID) ||
  148. !UTParamUtil::GetUInt(info[2], timeout))
  149.     {
  150. DPRINTF(D_ERROR, ("HXSchedulerTest::HandleTimeoutCmd() : failed to convert parametersn"));
  151.     }
  152.     else
  153.     {
  154. AddCallback(opID, timeout, new TimeoutOp(timeout));
  155. ret = true;
  156.     }
  157.     return ret;
  158. }
  159. bool HXSchedulerTest::HandleCancelLastCmd(const UTVector<UTString>& info)
  160. {
  161.     // Handles commands of the following form
  162.     // CancelLast <operationID> <timeout>
  163.     bool ret = false;
  164.     unsigned int opID = 0;
  165.     unsigned int timeout = 0;
  166.     if (!UTParamUtil::GetUInt(info[1], opID) ||
  167. !UTParamUtil::GetUInt(info[2], timeout))
  168.     {
  169. DPRINTF(D_ERROR, ("HXSchedulerTest::HandleCancelLastCmd() : failed to convert parametersn"));
  170.     }
  171.     else
  172.     {
  173. AddCallback(opID, timeout, new RemoveOp(m_lastCallbackHandle));
  174. ret = true;
  175.     }
  176.     return ret;
  177. }
  178. bool HXSchedulerTest::HandleRunSchedulerCmd(const UTVector<UTString>& info)
  179. {
  180.     return RunScheduler();
  181. }
  182. void HXSchedulerTest::AddCallback(unsigned int operationID, 
  183.   unsigned int timeout,
  184.   TestOperation* pOp)
  185. {
  186.     CallbackHandle ret = 0;
  187.     IHXCallback* pCB = new HXSchedulerTestCB(operationID,
  188.      this, 
  189.      pOp);
  190.     m_lastCallbackHandle = m_pSched->RelativeEnter(pCB, timeout);
  191.     if (m_finalOpID < (operationID + 1))
  192. m_finalOpID = operationID + 1;
  193.     if (timeout > m_highestTimeout)
  194. m_highestTimeout = timeout;
  195. }
  196. void HXSchedulerTest::CreateScheduler()
  197. {
  198.     HX_RELEASE(m_pSched);
  199.     
  200.     m_pSched = new HXScheduler(0);
  201.     m_pSched->AddRef();    
  202. }
  203. bool HXSchedulerTest::RunScheduler()
  204. {
  205.     bool ret = false;
  206.     m_nextOpID = 0;
  207.     m_failed = false;
  208.     m_done = false;
  209.     // Add a Shutdown operation to make sure we terminate
  210.     AddCallback(m_finalOpID,
  211. m_highestTimeout + 500,
  212. new ShutdownOp());
  213.     m_startTime = m_pSched->GetCurrentSchedulerTime();
  214.     m_pSched->StartScheduler();
  215.     while(!m_done)
  216.     {
  217. ProcessEvents();
  218.     }
  219.     HX_RELEASE(m_pSched);
  220.     if (m_failed)
  221.     {
  222. DPRINTF(D_ERROR, ("HXSchedulerTest::RunScheduler() : An operation failedn"));
  223.     }
  224.     else if (m_finalOpID != m_nextOpID)
  225.     {
  226. DPRINTF(D_ERROR, ("HXSchedulerTest::RunScheduler() : Next OpID %d did not match Final OpID %dn",
  227.   m_nextOpID,
  228.   m_finalOpID));
  229.     }
  230.     else
  231. ret = true;
  232.     return ret;
  233. }