clientpq.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. /****************************************************************************
  36.  * 
  37.  * Client side Priority Queue Time-Based Scheduler.
  38.  * Out there protecting the world!
  39.  *
  40.  */
  41. #include "clientpq.h"
  42. #include "hxthread.h"
  43. #include "hxheap.h"
  44. #ifdef _DEBUG
  45. #undef HX_THIS_FILE
  46. static const char HX_THIS_FILE[] = __FILE__;
  47. #endif
  48. ClientPQ::ClientPQ(CHXID* pIds)
  49.     : PQ(pIds),
  50.       m_pFreeList(NULL),
  51.       m_uNumFreeNodes(0),
  52.       m_uNumNodesToCache(DEFAULT_NODE_CACHE_SIZE),
  53.       m_pMutex(NULL)
  54. {
  55. #if defined(THREADS_SUPPORTED) || defined(_UNIX_THREADS_SUPPORTED)
  56.     HXMutex::MakeMutex(m_pMutex);
  57. #else
  58.     HXMutex::MakeStubMutex(m_pMutex);
  59. #endif
  60. }
  61. ClientPQ::~ClientPQ()
  62. {
  63.     while(m_pFreeList)
  64.     {
  65. PQElem* pElem = m_pFreeList;
  66. m_pFreeList = m_pFreeList->m_pNext;
  67. delete pElem;
  68.     }
  69.     HX_DELETE(m_pMutex);
  70. }
  71. int ClientPQ::execute(Timeval now)
  72. {
  73.     int     nCount = 0;
  74.     PQElem* pElem  = NULL;
  75.     
  76.     //Protect just the _remove_head call with the mutex.
  77.     m_pMutex->Lock();
  78.     pElem = PQ::get_execute_list(now);
  79.     PQElem* pElemNext = NULL;
  80.     while (pElem) 
  81.     {
  82.         // synch with remove.
  83.         pElem->m_bRemoved = TRUE;
  84.         if(!pElem->m_bDefunct)
  85.             nCount++;
  86.         m_pMutex->Unlock();
  87.         pElemNext = PQ::dispatch_element(pElem);
  88.         m_pMutex->Lock();
  89.         
  90.         PQ::destroy_element(pElem);
  91.         if (!pElemNext)
  92.             break;
  93.         pElem = pElemNext; 
  94.     }
  95.     m_pMutex->Unlock();
  96.     return nCount;
  97. }
  98. UINT32 ClientPQ::enter(Timeval tmVal, IHXCallback* pCallBack)
  99. {
  100.     UINT32 unRetVal = 0;
  101.     m_pMutex->Lock();
  102.     unRetVal = PQ::enter(tmVal, pCallBack);
  103.     m_pMutex->Unlock();
  104.     return unRetVal;
  105. }
  106. BOOL ClientPQ::removeifexists(UINT32 id)
  107. {
  108.     BOOL bReturn = FALSE;
  109.     m_pMutex->Lock();
  110.     
  111.     PQElem* pElem = (PQElem*)m_pIds->get(id);
  112.     if( pElem && !pElem->m_bRemoved)
  113.     {
  114.         bReturn = PQ::removeifexists(id);
  115.         pElem->m_bRemoved = bReturn;
  116.     }
  117.     m_pMutex->Unlock();
  118.     
  119.     return bReturn;    
  120. }   
  121. void
  122. ClientPQ::remove(UINT32 id)
  123. {
  124.     m_pMutex->Lock();
  125.     PQElem* pElem = (PQElem*)m_pIds->get(id);
  126.     if (pElem && !pElem->m_bRemoved)
  127.     {
  128.         HX_VERIFY(PQ::removeifexists(id) == TRUE);
  129.         pElem->m_bRemoved = 1;
  130.     }
  131.     m_pMutex->Unlock();
  132.     //HX_VERIFY(removeifexists(id) == TRUE);
  133. }