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

词法分析

开发平台:

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