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

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 "hxtypes.h"
  36. #include "hxassert.h"
  37. #include "debug.h"
  38. #include "timeval.h"
  39. #include "hxcom.h"
  40. #include "hxengin.h"
  41. #include "ihxpckts.h"
  42. #include "hxfiles.h"
  43. #include "id.h"
  44. #include "pq.h"
  45. #include "hxheap.h"
  46. #ifdef _DEBUG
  47. #undef HX_THIS_FILE
  48. static const char HX_THIS_FILE[] = __FILE__;
  49. #endif
  50. #ifdef WIN32
  51. /*
  52.  * XXX This is the 3.0 bug that Glenn found. 
  53.  * We need to fix this correctly!
  54.  */
  55. #define float double
  56. #endif
  57. PQ::PQ(CHXID* pIds)
  58. {
  59. //    int i;
  60.     m_pHead = 0;
  61.     m_pNextZeroInsertion = 0;
  62.     m_lElementCount = 0;
  63.     m_HeadTime.tv_sec = PQ_UNINITIALIZED;
  64.     gettimeofday(&m_Bucket0Time, 0);
  65.     m_Bucket0Time.tv_usec = 0;
  66.     memset (m_pBuckets, 0, NUM_BUCKETS * sizeof (PQElem*));
  67.     if (pIds)
  68.     {
  69. m_pIds = pIds;
  70. m_bOwnID = FALSE;
  71.     }
  72.     else
  73.     {
  74. m_pIds = new CHXID;
  75. m_bOwnID = TRUE;
  76.     }
  77. }
  78. PQ::~PQ()
  79. {
  80.     Timeval now;
  81.     now.tv_sec = 0x7fffffff;
  82.     now.tv_usec = 0x7fffffff;
  83.     PQElem* pElem = _remove_head(now);
  84.     while (pElem) 
  85.     {
  86. PQElem* pElemNext = pElem->m_pNext;
  87. m_pIds->destroy(pElem->m_Id);
  88. if (!pElem->m_bDefunct)
  89.     free_callback(pElem->m_pCallback);
  90. free_elem(pElem);
  91. if (!pElemNext)
  92.     break;
  93. pElem = pElemNext; 
  94.     }
  95.     for (int i = 0; i < NUM_BUCKETS; i++)
  96.     {
  97. PQElem* pElem = m_pBuckets[i];
  98. while (pElem) 
  99. {
  100.     PQElem* pElemNext = pElem->m_pNext;
  101.     m_pIds->destroy(pElem->m_Id);
  102.     if (!pElem->m_bDefunct)
  103. free_callback(pElem->m_pCallback);
  104.     free_elem(pElem);
  105.     if (!pElemNext)
  106. break;
  107.     pElem = pElemNext; 
  108. }
  109.     }
  110.     if (m_bOwnID)
  111.     {
  112. HX_DELETE(m_pIds);
  113.     }
  114. }
  115. UINT32
  116. PQ::enter(Timeval t, IHXCallback* pCallback)
  117. {
  118. #ifdef WIN32
  119.     /*
  120.      * Normalize t for NT
  121.      */
  122.     t.tv_usec = (t.tv_usec / 1000) * 1000;
  123. #endif
  124.     PQElem** pq;
  125.     PQElem* q;
  126.     PQElem* i = new_elem();
  127.     HX_ASSERT (i);
  128.     pCallback->AddRef();
  129.     i->m_pCallback  = pCallback;
  130.     i->m_bRemoved = 0;
  131. #ifdef SMP_PQ_DEBUG
  132.     if (pCallback < 0x8000)
  133.     {
  134. printf ("Bad Callback!! BAD BAD BAD!n");
  135. volatile int* pCrashMe = 0;
  136. *pCrashMe = 5;
  137.     }
  138. #endif
  139.     int bucket = (int)((t.tv_sec  - m_Bucket0Time.tv_sec)  * RESOLUTION +
  140.            (t.tv_usec - m_Bucket0Time.tv_usec) / (float)USEC_PER_BUCKET);
  141.     if ((bucket < NUM_BUCKETS) && (bucket >= 0))
  142.     {
  143. i->m_pNext = m_pBuckets[bucket];
  144.      i->m_Time = t;
  145.      m_pBuckets[bucket] = i;
  146.     }
  147.     else
  148.     {
  149. if (t.tv_sec == 0)
  150. {
  151.     if (m_pNextZeroInsertion)
  152.     {
  153. i->m_pNext = m_pNextZeroInsertion->m_pNext;
  154. m_pNextZeroInsertion->m_pNext = i;
  155. m_pNextZeroInsertion = i;
  156. i->m_Time = t;
  157. goto inserted;
  158.     }
  159.     else
  160.     {
  161. m_pNextZeroInsertion = i;
  162.     }
  163. }
  164. for (pq = &m_pHead; (q = *pq) != 0; pq = &q->m_pNext)
  165. {
  166.     if (q->m_Time >= t)
  167. break;
  168. }
  169. *pq = i;
  170. i->m_pNext = q;
  171. i->m_Time = t;
  172.     }
  173. inserted:
  174.     if ((m_HeadTime.tv_sec == PQ_UNINITIALIZED) || (m_HeadTime > t))
  175.      m_HeadTime = t;
  176.     m_lElementCount++;
  177.     i->m_Id = m_pIds->create((void *)i);
  178. //{FILE* f1 = ::fopen("c:\temp\pq.txt", "a+"); ::fprintf(f1, "enter: %lun", i->m_Id);::fclose(f1);}
  179.     return i->m_Id;
  180. }
  181. void
  182. PQ::remove(UINT32 id)
  183. {
  184. //{FILE* f1 = ::fopen("c:\temp\pq.txt", "a+"); ::fprintf(f1, "remove: %lun", id);::fclose(f1);}
  185.     PQElem* i = (PQElem*)m_pIds->get(id);
  186.     HX_ASSERT(i);
  187.     if (i)
  188.     {
  189. i->m_bDefunct = 1;
  190. free_callback(i->m_pCallback);
  191.     }
  192. }
  193. BOOL
  194. PQ::removeifexists(UINT32 id)
  195. {
  196.     PQElem* i = (PQElem*)m_pIds->get(id);
  197.     
  198.     if (i)
  199.     {
  200. //{FILE* f1 = ::fopen("c:\temp\pq.txt", "a+"); ::fprintf(f1, "removeifexists: %lun", id);::fclose(f1);}
  201. i->m_bDefunct = 1;
  202. free_callback(i->m_pCallback);
  203. return TRUE;
  204.     }
  205.     return FALSE;
  206. }
  207. BOOL
  208. PQ::exists(UINT32 id)
  209. {
  210.     return ((PQElem*)m_pIds->get(id) != 0);
  211. }
  212. int
  213. PQ::execute(Timeval now)
  214. {
  215.     PQElem* pElem = _remove_head(now);
  216.     int ulCount = 0;
  217.     /* Make sure head time is uninitialized ONLY if element count is zero */
  218.     HX_ASSERT(m_HeadTime.tv_sec != PQ_UNINITIALIZED || m_lElementCount == 0);
  219.     while (pElem) 
  220.     {
  221.         PQElem* pElemNext = dispatch_element(pElem);
  222.         if (!pElem->m_bDefunct)
  223.             ulCount++;
  224.         destroy_element(pElem);
  225.         if (!pElemNext)
  226.             break;
  227.         pElem = pElemNext; 
  228.     }
  229.     return ulCount;
  230. }
  231. PQElem*
  232. PQ::get_execute_list(Timeval now)
  233. {
  234.     return _remove_head(now);
  235. }
  236. PQElem*
  237. PQ::execute_element(PQElem* pElem)
  238. {
  239.     PQElem* pElemNext = dispatch_element(pElem);
  240.     destroy_element(pElem);
  241.     return pElemNext;
  242. }
  243. PQElem*
  244. PQ::_remove_head(Timeval now)
  245. {
  246.     int i;
  247.     PQElem* out_list = 0;
  248.     PQElem* current = 0;
  249.     m_pNextZeroInsertion = NULL;
  250.     int bucket = (int)((now.tv_sec  - m_Bucket0Time.tv_sec)  * RESOLUTION +
  251.            (now.tv_usec - m_Bucket0Time.tv_usec) / (float)USEC_PER_BUCKET);
  252.     // We are not yet ready to empty the first bucket
  253.     if (bucket < 0)
  254.     {
  255.      m_HeadTime.tv_sec = PQ_UNINITIALIZED;
  256.      for (i = 0; i < NUM_BUCKETS; i++)
  257.          if (m_pBuckets[i])
  258.          {
  259.           m_HeadTime = m_pBuckets[i]->m_Time;
  260.           break;
  261.          }
  262.     }
  263.     else
  264.     {
  265.      if (bucket >= NUM_BUCKETS)
  266.          bucket = NUM_BUCKETS - 1;
  267.      for (i = 0; i <= bucket; i++)
  268.      {
  269.          if (!m_pBuckets[i])
  270.           continue;
  271.          if (!out_list)
  272.           out_list = m_pBuckets[i];
  273.          if (current)
  274.          {
  275.           // Concatenate with previous bucket's list
  276.           current->m_pNext = m_pBuckets[i];
  277.          }
  278.          current = m_pBuckets[i];
  279.          while (current->m_pNext)
  280.          {
  281. current = current->m_pNext;
  282.           m_lElementCount--;
  283.          }
  284.     m_lElementCount--;
  285.      }
  286.      // Update the first bucket's time stamp.
  287.      Timeval t;
  288.      t.tv_sec = 0;
  289.      t.tv_usec = (int)((float)USEC_PER_BUCKET * (bucket + 1));
  290.      m_Bucket0Time += t;
  291. #ifdef WIN32
  292. /*
  293.  * Adjust Bucket0Time.tv_usec for NT
  294.  */
  295. m_Bucket0Time.tv_usec = (m_Bucket0Time.tv_usec / 1000) * 1000;
  296. #endif
  297.      // Move the buckets up
  298. memmove (m_pBuckets, &m_pBuckets[bucket + 1], (NUM_BUCKETS - bucket - 1) *
  299.          sizeof (void *));
  300.      // Zero all new buckets
  301. for (i = NUM_BUCKETS - 1;; i--, bucket--)
  302.      {
  303.          m_pBuckets[i] = 0;
  304.          if (!bucket)
  305.           break;
  306.      }
  307.      // Recalculate the m_HeadTime
  308.      m_HeadTime.tv_sec = PQ_UNINITIALIZED;
  309.      for (i = 0; i < NUM_BUCKETS; i++)
  310.          if (m_pBuckets[i])
  311.          {
  312.           m_HeadTime = m_pBuckets[i]->m_Time;
  313.           break;
  314.          }
  315.     }
  316.     PQElem* h;
  317.     if (!m_pHead)
  318. return out_list;
  319.     h = m_pHead;
  320.     /*
  321.      * Keep track of the head time from the buckets
  322.      */
  323.     Timeval TempHeadTime = m_HeadTime;
  324.     
  325.     if ((m_HeadTime.tv_sec == PQ_UNINITIALIZED) || (h->m_Time < m_HeadTime))
  326.      m_HeadTime = h->m_Time;
  327.     if (h->m_Time != (LONG32)0 && now < h->m_Time)
  328. return out_list;
  329.     PQElem* last;
  330.     for (;;)
  331.     {
  332. last = m_pHead;
  333. m_lElementCount--;
  334. m_pHead = last->m_pNext;
  335. if (!m_pHead)
  336.     break;
  337. if (m_pHead->m_Time != (LONG32)0 && now < m_pHead->m_Time)
  338. {
  339.     last->m_pNext = 0;
  340.     break;
  341. }
  342.     }
  343.     /*
  344.      * If the head time from the alternate queue is earlier than the head
  345.      * time from the buckets, keep the head time from the alternate queue
  346.      */
  347.     if (m_pHead &&
  348.         (TempHeadTime.tv_sec == PQ_UNINITIALIZED || m_pHead->m_Time < TempHeadTime))
  349. TempHeadTime = m_pHead->m_Time;
  350.     /*
  351.      * Now reset m_HeadTime to the time of the queue which will be ready
  352.      * first
  353.      */
  354.     if (m_HeadTime == (LONG32)0 || TempHeadTime < m_HeadTime)
  355.      m_HeadTime = TempHeadTime;
  356.     if (current)
  357.     {
  358. last->m_pNext = out_list;
  359. out_list = h;
  360.     }
  361.     else
  362.      return h;
  363.     return out_list;
  364. }
  365. PQElem* PQ::dispatch_element(PQElem* pElem)
  366. {
  367.     PQElem* pRet = NULL;
  368.     
  369.     if (pElem)
  370.     {
  371.         pRet = pElem->m_pNext;
  372.         if (!pElem->m_bDefunct && pElem->m_pCallback)
  373.         {
  374.             pElem->m_pCallback->Func();
  375.             free_callback(pElem->m_pCallback);
  376.         }
  377.     }
  378.     
  379.     return pRet;
  380. }
  381. void PQ::destroy_element(PQElem* pElem)
  382. {
  383.     if (pElem && m_pIds)
  384.     {
  385.         m_pIds->destroy(pElem->m_Id);
  386.         free_elem(pElem);
  387.     }
  388. }