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

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 "carray.h"
  38. #include "hxdeque.h"
  39. #include "hxheap.h"
  40. #ifdef _DEBUG
  41. #undef HX_THIS_FILE
  42. static const char HX_THIS_FILE[] = __FILE__;
  43. #endif
  44. const u_long32 HX_deque::INVALID_INDEX = 0xffffffff;
  45. const u_long32 HX_deque::INITIAL_ALLOCATION = 50;
  46. HX_deque::HX_deque(u_long32 initial_allocation)
  47.     :
  48.     array(0),
  49.     num_items(0)
  50. {
  51.     init(initial_allocation);
  52. }
  53. HX_deque::~HX_deque()
  54. {
  55.     delete array;
  56. }
  57. void
  58. HX_deque::init(u_long32 initial_allocation)
  59. {
  60.     array = new CHXPtrArray();
  61.     array->SetSize(HX_SAFEINT(initial_allocation));
  62.     back_index = 0;
  63.     front_index = 1;
  64. }
  65. void
  66. HX_deque::grow()
  67. {
  68.     UINT32 new_middle;
  69.     new_middle = (UINT32) array->GetSize();
  70.     array->SetSize(array->GetSize() * 2);
  71.     if (back_index < front_index)
  72.     {
  73. for (INT32 i = back_index; i >= 0; --i)
  74. {
  75.     (*array)[HX_SAFEUINT(new_middle + i)] = (*array)[HX_SAFEUINT(i)];
  76. }
  77. back_index += new_middle;
  78.     }
  79. }
  80. u_long32
  81. HX_deque::translate_index(u_long32 index)
  82. {
  83.     if (index >= size())
  84.     {
  85. HX_ASSERT(0);
  86. return 0;
  87.     }
  88.     if (front_index + index > (u_long32) array->GetSize() - 1)
  89.     {
  90. return front_index + index - array->GetSize();
  91.     }
  92.     return front_index + index;
  93. }
  94. void*&
  95. HX_deque::operator[](u_long32 index)
  96. {
  97.     if (index >= size())
  98.     {
  99. HX_ASSERT(0);
  100. index = 0;
  101.     }
  102.     return (*array)[HX_SAFEUINT(translate_index(index))];
  103. }
  104. void*&
  105. HX_deque::front()
  106. {
  107.     if (empty())
  108.     {
  109. HX_ASSERT(0);
  110.     }
  111.     return (*array)[HX_SAFEUINT(front_index)];
  112. }
  113. void*&
  114. HX_deque::back()
  115. {
  116.     if (empty())
  117.     {
  118. HX_ASSERT(0);
  119.     }
  120.     return (*array)[HX_SAFEUINT(back_index)];
  121. }
  122. void
  123. HX_deque::push_front(void* item)
  124. {
  125.     if (num_items == (u_long32) array->GetSize())
  126.     {
  127. grow();
  128.     }
  129.     if (front_index == 0)
  130.     {
  131. front_index = array->GetSize() - 1;
  132.     }
  133.     else
  134.     {
  135. --front_index;
  136.     }
  137.     (*array)[HX_SAFEUINT(front_index)] = item;
  138.     ++num_items;
  139. }
  140. void
  141. HX_deque::push_back(void* item)
  142. {
  143.     if (num_items == (u_long32) array->GetSize())
  144.     {
  145. grow();
  146.     }
  147.     if (back_index == (u_long32) array->GetSize() - 1)
  148.     {
  149. back_index = 0;
  150.     }
  151.     else
  152.     {
  153. ++back_index;
  154.     }
  155.     (*array)[HX_SAFEUINT(back_index)] = item;
  156.     ++num_items;
  157. }
  158. void* 
  159. HX_deque::pop_front()
  160. {
  161.     if (empty())
  162.     {
  163. HX_ASSERT(0);
  164. return 0;
  165.     }
  166.     void*   return_value;
  167.     
  168.     return_value = (*array)[HX_SAFEUINT(front_index)];
  169.     if (front_index == (u_long32) array->GetSize() - 1)
  170.     {
  171. front_index = 0;
  172.     }
  173.     else
  174.     {
  175. ++front_index;
  176.     }
  177.     --num_items;
  178.     return return_value;
  179. }
  180. void*
  181. HX_deque::pop_back()
  182. {
  183.     if (empty())
  184.     {
  185. HX_ASSERT(0);
  186. return 0;
  187.     }
  188.     void*   return_value;
  189.     return_value = (*array)[HX_SAFEUINT(back_index)];
  190.     if (back_index == 0)
  191.     {
  192. back_index = array->GetSize() - 1;
  193.     }
  194.     else
  195.     {
  196. --back_index;
  197.     }
  198.     --num_items;
  199.     return return_value;
  200. }