ValueHashTableOf.c
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:14k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2002 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /**
  57.  * $Log: ValueHashTableOf.c,v $
  58.  * Revision 1.6  2003/05/16 06:01:52  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.5  2003/05/15 19:07:46  knoaman
  62.  * Partial implementation of the configurable memory manager.
  63.  *
  64.  * Revision 1.4  2002/11/04 15:22:05  tng
  65.  * C++ Namespace Support.
  66.  *
  67.  * Revision 1.3  2002/05/24 19:46:40  knoaman
  68.  * Initial checkin.
  69.  *
  70.  */
  71. // ---------------------------------------------------------------------------
  72. //  Include
  73. // ---------------------------------------------------------------------------
  74. #if defined(XERCES_TMPLSINC)
  75. #include <xercesc/util/ValueHashTableOf.hpp>
  76. #endif
  77. #include <xercesc/util/NullPointerException.hpp>
  78. XERCES_CPP_NAMESPACE_BEGIN
  79. // ---------------------------------------------------------------------------
  80. //  ValueHashTableOf: Constructors and Destructor
  81. // ---------------------------------------------------------------------------
  82. template <class TVal>
  83. ValueHashTableOf<TVal>::ValueHashTableOf( const unsigned int modulus
  84.                                         , HashBase* hashBase
  85.                                         , MemoryManager* const manager)
  86.     : fMemoryManager(manager)
  87.     , fBucketList(0)
  88.     , fHashModulus(modulus)
  89.     , fHash(0)
  90. {
  91. initialize(modulus);
  92. // set hasher
  93. fHash = hashBase;
  94. }
  95. template <class TVal>
  96. ValueHashTableOf<TVal>::ValueHashTableOf( const unsigned int modulus
  97.                                         , MemoryManager* const manager)
  98. : fMemoryManager(manager)
  99.     , fBucketList(0)
  100.     , fHashModulus(modulus)
  101.     , fHash(0)
  102. {
  103. initialize(modulus);
  104. // create default hasher
  105. fHash = new (fMemoryManager) HashXMLCh();
  106. }
  107. template <class TVal> void ValueHashTableOf<TVal>::initialize(const unsigned int modulus)
  108. {
  109. if (modulus == 0)
  110.         ThrowXML(IllegalArgumentException, XMLExcepts::HshTbl_ZeroModulus);
  111.     // Allocate the bucket list and zero them
  112.     fBucketList = (ValueHashTableBucketElem<TVal>**) fMemoryManager->allocate
  113.     (
  114.         fHashModulus * sizeof(ValueHashTableBucketElem<TVal>*)
  115.     ); //new ValueHashTableBucketElem<TVal>*[fHashModulus];
  116.     for (unsigned int index = 0; index < fHashModulus; index++)
  117.         fBucketList[index] = 0;
  118. }
  119. template <class TVal> ValueHashTableOf<TVal>::~ValueHashTableOf()
  120. {
  121.     removeAll();
  122.     // Then delete the bucket list & hasher
  123.     fMemoryManager->deallocate(fBucketList); //delete [] fBucketList;
  124. delete fHash;
  125. }
  126. // ---------------------------------------------------------------------------
  127. //  ValueHashTableOf: Element management
  128. // ---------------------------------------------------------------------------
  129. template <class TVal> bool ValueHashTableOf<TVal>::isEmpty() const
  130. {
  131.     // Just check the bucket list for non-empty elements
  132.     for (unsigned int buckInd = 0; buckInd < fHashModulus; buckInd++)
  133.     {
  134.         if (fBucketList[buckInd] != 0)
  135.             return false;
  136.     }
  137.     return true;
  138. }
  139. template <class TVal> bool ValueHashTableOf<TVal>::
  140. containsKey(const void* const key) const
  141. {
  142.     unsigned int hashVal;
  143.     const ValueHashTableBucketElem<TVal>* findIt = findBucketElem(key, hashVal);
  144.     return (findIt != 0);
  145. }
  146. template <class TVal> void ValueHashTableOf<TVal>::
  147. removeKey(const void* const key)
  148. {
  149.     unsigned int hashVal;
  150.     removeBucketElem(key, hashVal);
  151. }
  152. template <class TVal> void ValueHashTableOf<TVal>::removeAll()
  153. {
  154.     // Clean up the buckets first
  155.     for (unsigned int buckInd = 0; buckInd < fHashModulus; buckInd++)
  156.     {
  157.         // Get the bucket list head for this entry
  158.         ValueHashTableBucketElem<TVal>* curElem = fBucketList[buckInd];
  159.         ValueHashTableBucketElem<TVal>* nextElem;
  160.         while (curElem)
  161.         {
  162.             // Save the next element before we hose this one
  163.             nextElem = curElem->fNext;
  164.             // delete the current element and move forward
  165.             delete curElem;
  166.             curElem = nextElem;
  167.         }
  168.         // Clean out this entry
  169.         fBucketList[buckInd] = 0;
  170.     }
  171. }
  172. // ---------------------------------------------------------------------------
  173. //  ValueHashTableOf: Getters
  174. // ---------------------------------------------------------------------------
  175. template <class TVal> TVal& ValueHashTableOf<TVal>::get(const void* const key)
  176. {
  177.     unsigned int hashVal;
  178.     ValueHashTableBucketElem<TVal>* findIt = findBucketElem(key, hashVal);
  179.     if (!findIt)
  180.         ThrowXML(NoSuchElementException, XMLExcepts::HshTbl_NoSuchKeyExists);
  181.     return findIt->fData;
  182. }
  183. template <class TVal> const TVal& ValueHashTableOf<TVal>::
  184. get(const void* const key) const
  185. {
  186.     unsigned int hashVal;
  187.     const ValueHashTableBucketElem<TVal>* findIt = findBucketElem(key, hashVal);
  188.     if (!findIt)
  189.         ThrowXML(NoSuchElementException, XMLExcepts::HshTbl_NoSuchKeyExists);
  190.     return findIt->fData;
  191. }
  192. // ---------------------------------------------------------------------------
  193. //  ValueHashTableOf: Putters
  194. // ---------------------------------------------------------------------------
  195. template <class TVal> void ValueHashTableOf<TVal>::put(void* key, const TVal& valueToAdopt)
  196. {
  197.     // First see if the key exists already
  198.     unsigned int hashVal;
  199.     ValueHashTableBucketElem<TVal>* newBucket = findBucketElem(key, hashVal);
  200.     //
  201.     //  If so,then update its value. If not, then we need to add it to
  202.     //  the right bucket
  203.     //
  204.     if (newBucket)
  205.     {
  206.         newBucket->fData = valueToAdopt;
  207. newBucket->fKey = key;
  208.     }
  209.      else
  210.     {
  211.         newBucket = new (fMemoryManager) ValueHashTableBucketElem<TVal>(key, valueToAdopt, fBucketList[hashVal]);
  212.         fBucketList[hashVal] = newBucket;
  213.     }
  214. }
  215. // ---------------------------------------------------------------------------
  216. //  ValueHashTableOf: Private methods
  217. // ---------------------------------------------------------------------------
  218. template <class TVal> ValueHashTableBucketElem<TVal>* ValueHashTableOf<TVal>::
  219. findBucketElem(const void* const key, unsigned int& hashVal)
  220. {
  221.     // Hash the key
  222.     hashVal = fHash->getHashVal(key, fHashModulus);
  223.     if (hashVal > fHashModulus)
  224.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  225.     // Search that bucket for the key
  226.     ValueHashTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  227.     while (curElem)
  228.     {
  229. if (fHash->equals(key, curElem->fKey))
  230.             return curElem;
  231.         curElem = curElem->fNext;
  232.     }
  233.     return 0;
  234. }
  235. template <class TVal> const ValueHashTableBucketElem<TVal>* ValueHashTableOf<TVal>::
  236. findBucketElem(const void* const key, unsigned int& hashVal) const
  237. {
  238.     // Hash the key
  239.     hashVal = fHash->getHashVal(key, fHashModulus);
  240.     if (hashVal > fHashModulus)
  241.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  242.     // Search that bucket for the key
  243.     const ValueHashTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  244.     while (curElem)
  245.     {
  246.         if (fHash->equals(key, curElem->fKey))
  247.             return curElem;
  248.         curElem = curElem->fNext;
  249.     }
  250.     return 0;
  251. }
  252. template <class TVal> void ValueHashTableOf<TVal>::
  253. removeBucketElem(const void* const key, unsigned int& hashVal)
  254. {
  255.     // Hash the key
  256.     hashVal = fHash->getHashVal(key, fHashModulus);
  257.     if (hashVal > fHashModulus)
  258.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  259.     //
  260.     //  Search the given bucket for this key. Keep up with the previous
  261.     //  element so we can patch around it.
  262.     //
  263.     ValueHashTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  264.     ValueHashTableBucketElem<TVal>* lastElem = 0;
  265.     while (curElem)
  266.     {
  267.         if (fHash->equals(key, curElem->fKey))
  268.         {
  269.             if (!lastElem)
  270.             {
  271.                 // It was the first in the bucket
  272.                 fBucketList[hashVal] = curElem->fNext;
  273.             }
  274.              else
  275.             {
  276.                 // Patch around the current element
  277.                 lastElem->fNext = curElem->fNext;
  278.             }
  279.             // Delete the current element
  280.             delete curElem;
  281.             return;
  282.         }
  283.         // Move both pointers upwards
  284.         lastElem = curElem;
  285.         curElem = curElem->fNext;
  286.     }
  287.     // We never found that key
  288.     ThrowXML(NoSuchElementException, XMLExcepts::HshTbl_NoSuchKeyExists);
  289. }
  290. // ---------------------------------------------------------------------------
  291. //  ValueHashTableOfEnumerator: Constructors and Destructor
  292. // ---------------------------------------------------------------------------
  293. template <class TVal> ValueHashTableOfEnumerator<TVal>::
  294. ValueHashTableOfEnumerator(ValueHashTableOf<TVal>* const toEnum, const bool adopt)
  295. : fAdopted(adopt), fCurElem(0), fCurHash((unsigned int)-1), fToEnum(toEnum)
  296. {
  297.     if (!toEnum)
  298.         ThrowXML(NullPointerException, XMLExcepts::CPtr_PointerIsZero);
  299.     //
  300.     //  Find the next available bucket element in the hash table. If it
  301.     //  comes back zero, that just means the table is empty.
  302.     //
  303.     //  Note that the -1 in the current hash tells it to start from the
  304.     //  beginning.
  305.     //
  306.     findNext();
  307. }
  308. template <class TVal> ValueHashTableOfEnumerator<TVal>::~ValueHashTableOfEnumerator()
  309. {
  310.     if (fAdopted)
  311.         delete fToEnum;
  312. }
  313. // ---------------------------------------------------------------------------
  314. //  ValueHashTableOfEnumerator: Enum interface
  315. // ---------------------------------------------------------------------------
  316. template <class TVal> bool ValueHashTableOfEnumerator<TVal>::hasMoreElements() const
  317. {
  318.     //
  319.     //  If our current has is at the max and there are no more elements
  320.     //  in the current bucket, then no more elements.
  321.     //
  322.     if (!fCurElem && (fCurHash == fToEnum->fHashModulus))
  323.         return false;
  324.     return true;
  325. }
  326. template <class TVal> TVal& ValueHashTableOfEnumerator<TVal>::nextElement()
  327. {
  328.     // Make sure we have an element to return
  329.     if (!hasMoreElements())
  330.         ThrowXML(NoSuchElementException, XMLExcepts::Enum_NoMoreElements);
  331.     //
  332.     //  Save the current element, then move up to the next one for the
  333.     //  next time around.
  334.     //
  335.     ValueHashTableBucketElem<TVal>* saveElem = fCurElem;
  336.     findNext();
  337.     return saveElem->fData;
  338. }
  339. template <class TVal> void ValueHashTableOfEnumerator<TVal>::Reset()
  340. {
  341.     fCurHash = (unsigned int)-1;
  342.     fCurElem = 0;
  343.     findNext();
  344. }
  345. // ---------------------------------------------------------------------------
  346. //  ValueHashTableOfEnumerator: Private helper methods
  347. // ---------------------------------------------------------------------------
  348. template <class TVal> void ValueHashTableOfEnumerator<TVal>::findNext()
  349. {
  350.     //
  351.     //  If there is a current element, move to its next element. If this
  352.     //  hits the end of the bucket, the next block will handle the rest.
  353.     //
  354.     if (fCurElem)
  355.         fCurElem = fCurElem->fNext;
  356.     //
  357.     //  If the current element is null, then we have to move up to the
  358.     //  next hash value. If that is the hash modulus, then we cannot
  359.     //  go further.
  360.     //
  361.     if (!fCurElem)
  362.     {
  363.         fCurHash++;
  364.         if (fCurHash == fToEnum->fHashModulus)
  365.             return;
  366.         // Else find the next non-empty bucket
  367.         while (true)
  368.         {
  369.             if (fToEnum->fBucketList[fCurHash])
  370.                 break;
  371.             // Bump to the next hash value. If we max out return
  372.             fCurHash++;
  373.             if (fCurHash == fToEnum->fHashModulus)
  374.                 return;
  375.         }
  376.         fCurElem = fToEnum->fBucketList[fCurHash];
  377.     }
  378. }
  379. XERCES_CPP_NAMESPACE_END