pq.h
上传用户: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. #ifndef _PQ_H_
  36. #define _PQ_H_
  37. #include "id.h"
  38. #include "hxcom.h"
  39. #include "hxtypes.h"
  40. #include "hxcomm.h"
  41. #include "hxengin.h"
  42. #include "hxassert.h"
  43. #include "timeval.h"
  44. class CHXID;
  45. /*
  46.  * Timing resolution is equal to 1/RESOLUTION seconds.
  47.  * BUCKET_TIME is the amount of time that we would like buckets allocated for.
  48.  * NUM_BUCKETS is the number of buckets that we will allocate.
  49.  * USEC_PER_BUCKET is the number of microseconds per bucket.
  50.  */
  51. #define RESOLUTION 64
  52. #define BUCKET_TIME 8
  53. #define NUM_BUCKETS (RESOLUTION * BUCKET_TIME)
  54. #define USEC_PER_BUCKET (1000000 / RESOLUTION)
  55. #define PQ_UNINITIALIZED 1
  56. class PQElem 
  57. {
  58. public:
  59.     FAST_CACHE_MEM
  60.     PQElem() : m_pCallback(0), m_pNext(0), m_bDefunct(0), m_Id(0), m_bRemoved(0)
  61.     {
  62. m_Time.tv_sec   = 0;
  63. m_Time.tv_usec  = 0;
  64.     }
  65.     IHXCallback* m_pCallback;
  66.     PQElem*      m_pNext;
  67.     Timeval      m_Time;
  68.     BOOL      m_bDefunct;
  69.     BOOL      m_bRemoved;
  70.     UINT32 m_Id;
  71. };
  72. class PQ
  73. {
  74. protected:
  75.     PQElem* _remove_head(Timeval now);
  76.     PQElem*     dispatch_element(PQElem* pElem);
  77.     void        destroy_element(PQElem* pElem);
  78.     PQElem* m_pBuckets[NUM_BUCKETS];
  79.     PQElem* m_pHead;
  80.     PQElem* m_pNextZeroInsertion;
  81.     LONG32 m_lElementCount;
  82.     Timeval m_Bucket0Time;
  83.     Timeval m_HeadTime;
  84.     CHXID* m_pIds;
  85.     BOOL m_bOwnID;
  86. public:
  87. PQ(CHXID* pIds = NULL);
  88.     virtual ~PQ();
  89.     virtual int execute(Timeval now);
  90.     virtual UINT32 enter(Timeval t, IHXCallback* i);
  91.     virtual PQElem* get_execute_list(Timeval now);
  92.     virtual PQElem* execute_element(PQElem* pElem);
  93.     virtual void free_callback(IHXCallback* pCb) { pCb->Release(); }
  94.     virtual PQElem* new_elem(void)  { return (new PQElem); }
  95.     virtual void free_elem(PQElem*& pElem) { delete pElem; }
  96.     virtual void free_mem() { }
  97.     virtual void remove(UINT32 handle);
  98.     virtual BOOL removeifexists(UINT32 handle);
  99.     int empty() { return m_lElementCount == 0; }
  100.     int immediate() { return (!empty()) && (m_HeadTime.tv_sec == 0 && m_HeadTime.tv_usec == 0); }
  101.     Timeval head_time();
  102.     BOOL exists(UINT32 handle);
  103. };
  104. inline Timeval
  105. PQ::head_time()
  106. {
  107.     //ASSERT (m_HeadTime.tv_sec > 0);XXXSMP It should be ok that HeadTime == 0
  108.     return m_HeadTime;
  109. }
  110. #endif