RefHash2KeysTableOf.c
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:15k
源码类别:

xml/soap/webservice

开发平台:

C/C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 2001 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) 2001, 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: RefHash2KeysTableOf.c,v $
  58.  * Revision 1.5  2001/07/19 18:43:18  peiyongz
  59.  * fix: detect null poiniter in enumerator's ctor.
  60.  *
  61.  * Revision 1.4  2001/06/04 13:45:03  tng
  62.  * The "hash" argument clashes with STL hash.  Fixed by Pei Yong Zhang.
  63.  *
  64.  * Revision 1.3  2001/05/11 13:26:28  tng
  65.  * Copyright update.
  66.  *
  67.  * Revision 1.2  2001/03/14 13:18:21  tng
  68.  * typo: should use fKey1
  69.  *
  70.  * Revision 1.1  2001/02/27 18:24:00  tng
  71.  * Schema: Add utility RefHash2KeysTableOf.
  72.  *
  73.  */
  74. // ---------------------------------------------------------------------------
  75. //  Include
  76. // ---------------------------------------------------------------------------
  77. #if defined(XERCES_TMPLSINC)
  78. #include <util/RefHash2KeysTableOf.hpp>
  79. #endif
  80. #include <util/NullPointerException.hpp>
  81. // ---------------------------------------------------------------------------
  82. //  RefHash2KeysTableOf: Constructors and Destructor
  83. // ---------------------------------------------------------------------------
  84. template <class TVal> RefHash2KeysTableOf<TVal>::RefHash2KeysTableOf(const unsigned int modulus, const bool adoptElems)
  85. : fAdoptedElems(adoptElems), fBucketList(0), fHashModulus(modulus)
  86. {
  87.     initialize(modulus);
  88. // create default hasher
  89. fHash = new HashXMLCh();
  90. }
  91. template <class TVal> RefHash2KeysTableOf<TVal>::RefHash2KeysTableOf(const unsigned int modulus, const bool adoptElems, HashBase* hashBase)
  92. : fAdoptedElems(adoptElems), fBucketList(0), fHashModulus(modulus)
  93. {
  94. initialize(modulus);
  95. // set hasher
  96. fHash = hashBase;
  97. }
  98. template <class TVal> RefHash2KeysTableOf<TVal>::RefHash2KeysTableOf(const unsigned int modulus)
  99. : fAdoptedElems(true), fBucketList(0), fHashModulus(modulus)
  100. {
  101. initialize(modulus);
  102. // create default hasher
  103. fHash = new HashXMLCh();
  104. }
  105. template <class TVal> void RefHash2KeysTableOf<TVal>::initialize(const unsigned int modulus)
  106. {
  107. if (modulus == 0)
  108.         ThrowXML(IllegalArgumentException, XMLExcepts::HshTbl_ZeroModulus);
  109.     // Allocate the bucket list and zero them
  110.     fBucketList = new RefHash2KeysTableBucketElem<TVal>*[fHashModulus];
  111.     for (unsigned int index = 0; index < fHashModulus; index++)
  112.         fBucketList[index] = 0;
  113. }
  114. template <class TVal> RefHash2KeysTableOf<TVal>::~RefHash2KeysTableOf()
  115. {
  116.     removeAll();
  117.     // Then delete the bucket list & hasher
  118.     delete [] fBucketList;
  119. delete fHash;
  120. }
  121. // ---------------------------------------------------------------------------
  122. //  RefHash2KeysTableOf: Element management
  123. // ---------------------------------------------------------------------------
  124. template <class TVal> bool RefHash2KeysTableOf<TVal>::isEmpty() const
  125. {
  126.     // Just check the bucket list for non-empty elements
  127.     for (unsigned int buckInd = 0; buckInd < fHashModulus; buckInd++)
  128.     {
  129.         if (fBucketList[buckInd] != 0)
  130.             return false;
  131.     }
  132.     return true;
  133. }
  134. template <class TVal> bool RefHash2KeysTableOf<TVal>::
  135. containsKey(const void* const key1, const int key2) const
  136. {
  137.     unsigned int hashVal;
  138.     const RefHash2KeysTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, hashVal);
  139.     return (findIt != 0);
  140. }
  141. template <class TVal> void RefHash2KeysTableOf<TVal>::
  142. removeKey(const void* const key1, const int key2)
  143. {
  144.     unsigned int hashVal;
  145.     removeBucketElem(key1, key2, hashVal);
  146. }
  147. template <class TVal> void RefHash2KeysTableOf<TVal>::removeAll()
  148. {
  149.     // Clean up the buckets first
  150.     for (unsigned int buckInd = 0; buckInd < fHashModulus; buckInd++)
  151.     {
  152.         // Get the bucket list head for this entry
  153.         RefHash2KeysTableBucketElem<TVal>* curElem = fBucketList[buckInd];
  154.         RefHash2KeysTableBucketElem<TVal>* nextElem;
  155.         while (curElem)
  156.         {
  157.             // Save the next element before we hose this one
  158.             nextElem = curElem->fNext;
  159.             // If we adopted the data, then delete it too
  160.             //    (Note:  the userdata hash table instance has data type of void *.
  161.             //    This will generate compiler warnings here on some platforms, but they
  162.             //    can be ignored since fAdoptedElements is false.
  163.             if (fAdoptedElems)
  164.                 delete curElem->fData;
  165.             // Then delete the current element and move forward
  166.             delete curElem;
  167.             curElem = nextElem;
  168.         }
  169.         // Clean out this entry
  170.         fBucketList[buckInd] = 0;
  171.     }
  172. }
  173. // ---------------------------------------------------------------------------
  174. //  RefHash2KeysTableOf: Getters
  175. // ---------------------------------------------------------------------------
  176. template <class TVal> TVal* RefHash2KeysTableOf<TVal>::get(const void* const key1, const int key2)
  177. {
  178.     unsigned int hashVal;
  179.     RefHash2KeysTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, hashVal);
  180.     if (!findIt)
  181.         return 0;
  182.     return findIt->fData;
  183. }
  184. template <class TVal> const TVal* RefHash2KeysTableOf<TVal>::
  185. get(const void* const key1, const int key2) const
  186. {
  187.     unsigned int hashVal;
  188.     const RefHash2KeysTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, hashVal);
  189.     if (!findIt)
  190.         return 0;
  191.     return findIt->fData;
  192. }
  193. // ---------------------------------------------------------------------------
  194. //  RefHash2KeysTableOf: Putters
  195. // ---------------------------------------------------------------------------
  196. template <class TVal> void RefHash2KeysTableOf<TVal>::put(void* key1, int key2, TVal* const valueToAdopt)
  197. {
  198.     // First see if the key exists already
  199.     unsigned int hashVal;
  200.     RefHash2KeysTableBucketElem<TVal>* newBucket = findBucketElem(key1, key2, hashVal);
  201.     //
  202.     //  If so,then update its value. If not, then we need to add it to
  203.     //  the right bucket
  204.     //
  205.     if (newBucket)
  206.     {
  207.         if (fAdoptedElems)
  208.             delete newBucket->fData;
  209.         newBucket->fData = valueToAdopt;
  210. newBucket->fKey1 = key1;
  211. newBucket->fKey2 = key2;
  212.     }
  213.      else
  214.     {
  215.         newBucket = new RefHash2KeysTableBucketElem<TVal>(key1, key2, valueToAdopt, fBucketList[hashVal]);
  216.         fBucketList[hashVal] = newBucket;
  217.     }
  218. }
  219. // ---------------------------------------------------------------------------
  220. //  RefHash2KeysTableOf: Private methods
  221. // ---------------------------------------------------------------------------
  222. template <class TVal> RefHash2KeysTableBucketElem<TVal>* RefHash2KeysTableOf<TVal>::
  223. findBucketElem(const void* const key1, const int key2, unsigned int& hashVal)
  224. {
  225.     // Hash the key
  226.     hashVal = fHash->getHashVal(key1, fHashModulus);
  227.     if (hashVal > fHashModulus)
  228.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  229.     // Search that bucket for the key
  230.     RefHash2KeysTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  231.     while (curElem)
  232.     {
  233. if (fHash->equals(key1, curElem->fKey1) && (key2==curElem->fKey2))
  234.             return curElem;
  235.         curElem = curElem->fNext;
  236.     }
  237.     return 0;
  238. }
  239. template <class TVal> const RefHash2KeysTableBucketElem<TVal>* RefHash2KeysTableOf<TVal>::
  240. findBucketElem(const void* const key1, const int key2, unsigned int& hashVal) const
  241. {
  242.     // Hash the key
  243.     hashVal = fHash->getHashVal(key1, fHashModulus);
  244.     if (hashVal > fHashModulus)
  245.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  246.     // Search that bucket for the key
  247.     const RefHash2KeysTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  248.     while (curElem)
  249.     {
  250.         if (fHash->equals(key1, curElem->fKey1) && (key2==curElem->fKey2))
  251.             return curElem;
  252.         curElem = curElem->fNext;
  253.     }
  254.     return 0;
  255. }
  256. template <class TVal> void RefHash2KeysTableOf<TVal>::
  257. removeBucketElem(const void* const key1, const int key2, unsigned int& hashVal)
  258. {
  259.     // Hash the key
  260.     hashVal = fHash->getHashVal(key1, fHashModulus);
  261.     if (hashVal > fHashModulus)
  262.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  263.     //
  264.     //  Search the given bucket for this key. Keep up with the previous
  265.     //  element so we can patch around it.
  266.     //
  267.     RefHash2KeysTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  268.     RefHash2KeysTableBucketElem<TVal>* lastElem = 0;
  269.     while (curElem)
  270.     {
  271.         if (fHash->equals(key1, curElem->fKey1) && (key2==curElem->fKey2))
  272.         {
  273.             if (!lastElem)
  274.             {
  275.                 // It was the first in the bucket
  276.                 fBucketList[hashVal] = curElem->fNext;
  277.             }
  278.              else
  279.             {
  280.                 // Patch around the current element
  281.                 lastElem->fNext = curElem->fNext;
  282.             }
  283.             // If we adopted the elements, then delete the data
  284.             if (fAdoptedElems)
  285.                 delete curElem->fData;
  286.             // Delete the current element
  287.             delete curElem;
  288.             return;
  289.         }
  290.         // Move both pointers upwards
  291.         lastElem = curElem;
  292.         curElem = curElem->fNext;
  293.     }
  294.     // We never found that key
  295.     ThrowXML(NoSuchElementException, XMLExcepts::HshTbl_NoSuchKeyExists);
  296. }
  297. // ---------------------------------------------------------------------------
  298. //  RefHash2KeysTableOfEnumerator: Constructors and Destructor
  299. // ---------------------------------------------------------------------------
  300. template <class TVal> RefHash2KeysTableOfEnumerator<TVal>::
  301. RefHash2KeysTableOfEnumerator(RefHash2KeysTableOf<TVal>* const toEnum, const bool adopt)
  302. : fAdopted(adopt), fCurElem(0), fCurHash((unsigned int)-1), fToEnum(toEnum)
  303. {
  304.     if (!toEnum)  
  305.         ThrowXML(NullPointerException, XMLExcepts::CPtr_PointerIsZero);        
  306.     //
  307.     //  Find the next available bucket element in the hash table. If it
  308.     //  comes back zero, that just means the table is empty.
  309.     //
  310.     //  Note that the -1 in the current hash tells it to start from the
  311.     //  beginning.
  312.     //
  313.     findNext();
  314. }
  315. template <class TVal> RefHash2KeysTableOfEnumerator<TVal>::~RefHash2KeysTableOfEnumerator()
  316. {
  317.     if (fAdopted)
  318.         delete fToEnum;
  319. }
  320. // ---------------------------------------------------------------------------
  321. //  RefHash2KeysTableOfEnumerator: Enum interface
  322. // ---------------------------------------------------------------------------
  323. template <class TVal> bool RefHash2KeysTableOfEnumerator<TVal>::hasMoreElements() const
  324. {
  325.     //
  326.     //  If our current has is at the max and there are no more elements
  327.     //  in the current bucket, then no more elements.
  328.     //
  329.     if (!fCurElem && (fCurHash == fToEnum->fHashModulus))
  330.         return false;
  331.     return true;
  332. }
  333. template <class TVal> TVal& RefHash2KeysTableOfEnumerator<TVal>::nextElement()
  334. {
  335.     // Make sure we have an element to return
  336.     if (!hasMoreElements())
  337.         ThrowXML(NoSuchElementException, XMLExcepts::Enum_NoMoreElements);
  338.     //
  339.     //  Save the current element, then move up to the next one for the
  340.     //  next time around.
  341.     //
  342.     RefHash2KeysTableBucketElem<TVal>* saveElem = fCurElem;
  343.     findNext();
  344.     return *saveElem->fData;
  345. }
  346. template <class TVal> void RefHash2KeysTableOfEnumerator<TVal>::Reset()
  347. {
  348.     fCurHash = (unsigned int)-1;
  349.     fCurElem = 0;
  350.     findNext();
  351. }
  352. // ---------------------------------------------------------------------------
  353. //  RefHash2KeysTableOfEnumerator: Private helper methods
  354. // ---------------------------------------------------------------------------
  355. template <class TVal> void RefHash2KeysTableOfEnumerator<TVal>::findNext()
  356. {
  357.     //
  358.     //  If there is a current element, move to its next element. If this
  359.     //  hits the end of the bucket, the next block will handle the rest.
  360.     //
  361.     if (fCurElem)
  362.         fCurElem = fCurElem->fNext;
  363.     //
  364.     //  If the current element is null, then we have to move up to the
  365.     //  next hash value. If that is the hash modulus, then we cannot
  366.     //  go further.
  367.     //
  368.     if (!fCurElem)
  369.     {
  370.         fCurHash++;
  371.         if (fCurHash == fToEnum->fHashModulus)
  372.             return;
  373.         // Else find the next non-empty bucket
  374.         while (true)
  375.         {
  376.             if (fToEnum->fBucketList[fCurHash])
  377.                 break;
  378.             // Bump to the next hash value. If we max out return
  379.             fCurHash++;
  380.             if (fCurHash == fToEnum->fHashModulus)
  381.                 return;
  382.         }
  383.         fCurElem = fToEnum->fBucketList[fCurHash];
  384.     }
  385. }