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

词法分析

开发平台:

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: RefHash3KeysIdPool.c,v $
  58.  * Revision 1.5  2003/05/21 21:08:04  knoaman
  59.  * gcc 2.95.x is generating an internal error for some template definitions, so
  60.  * we use the default memory manger in such cases.
  61.  *
  62.  * Revision 1.4  2003/05/16 06:01:52  knoaman
  63.  * Partial implementation of the configurable memory manager.
  64.  *
  65.  * Revision 1.3  2003/05/15 19:04:35  knoaman
  66.  * Partial implementation of the configurable memory manager.
  67.  *
  68.  * Revision 1.2  2002/11/04 15:22:04  tng
  69.  * C++ Namespace Support.
  70.  *
  71.  * Revision 1.1.1.1  2002/02/01 22:22:12  peiyongz
  72.  * sane_include
  73.  *
  74.  * Revision 1.4  2001/07/19 18:43:18  peiyongz
  75.  * fix: detect null poiniter in enumerator's ctor.
  76.  *
  77.  * Revision 1.3  2001/06/04 13:45:04  tng
  78.  * The "hash" argument clashes with STL hash.  Fixed by Pei Yong Zhang.
  79.  *
  80.  * Revision 1.2  2001/05/11 13:26:29  tng
  81.  * Copyright update.
  82.  *
  83.  * Revision 1.1  2001/03/21 21:56:12  tng
  84.  * Schema: Add Schema Grammar, Schema Validator, and split the DTDValidator into DTDValidator, DTDScanner, and DTDGrammar.
  85.  *
  86.  */
  87. // ---------------------------------------------------------------------------
  88. //  Include
  89. // ---------------------------------------------------------------------------
  90. #if defined(XERCES_TMPLSINC)
  91. #include <xercesc/util/RefHash3KeysIdPool.hpp>
  92. #endif
  93. #include <xercesc/util/NullPointerException.hpp>
  94. XERCES_CPP_NAMESPACE_BEGIN
  95. // ---------------------------------------------------------------------------
  96. //  RefHash3KeysIdPool: Constructors and Destructor
  97. // ---------------------------------------------------------------------------
  98. template <class TVal>
  99. RefHash3KeysIdPool<TVal>::RefHash3KeysIdPool( const unsigned int modulus
  100.                                             , const bool         adoptElems
  101.                                             , const unsigned int initSize
  102.                                             , MemoryManager* const manager) :
  103.     fMemoryManager(manager)
  104.     , fAdoptedElems(adoptElems)
  105.     , fBucketList(0)
  106.     , fHashModulus(modulus)
  107.     , fHash(0)
  108.     , fIdPtrs(0)
  109.     , fIdPtrsCount(initSize)
  110.     , fIdCounter(0)
  111. {
  112.     initialize(modulus);
  113.     // create default hasher
  114.     fHash = new (fMemoryManager) HashXMLCh();
  115.     //
  116.     //  Allocate the initial id pointers array. We don't have to zero them
  117.     //  out since the fIdCounter value tells us which ones are valid. The
  118.     //  zeroth element is never used (and represents an invalid pool id.)
  119.     //
  120.     if (!fIdPtrsCount)
  121.         fIdPtrsCount = 256;
  122.     fIdPtrs = (TVal**) fMemoryManager->allocate(fIdPtrsCount * sizeof(TVal*)); //new TVal*[fIdPtrsCount];
  123.     fIdPtrs[0] = 0;
  124. }
  125. template <class TVal>
  126. RefHash3KeysIdPool<TVal>::RefHash3KeysIdPool( const unsigned int modulus
  127.                                             , const bool         adoptElems
  128.                                             , HashBase*          hashBase
  129.                                             , const unsigned int initSize
  130.                                             , MemoryManager* const manager) :
  131. fMemoryManager(manager)
  132.     , fAdoptedElems(adoptElems)
  133.     , fBucketList(0)
  134.     , fHashModulus(modulus)
  135.     , fHash(0)
  136.     , fIdPtrs(0)
  137.     , fIdPtrsCount(initSize)
  138.     , fIdCounter(0)
  139. {
  140.     initialize(modulus);
  141.     // set hasher
  142.     fHash = hashBase;
  143.     //
  144.     //  Allocate the initial id pointers array. We don't have to zero them
  145.     //  out since the fIdCounter value tells us which ones are valid. The
  146.     //  zeroth element is never used (and represents an invalid pool id.)
  147.     //
  148.     if (!fIdPtrsCount)
  149.         fIdPtrsCount = 256;
  150.     fIdPtrs = (TVal**) fMemoryManager->allocate(fIdPtrsCount * sizeof(TVal*)); //new TVal*[fIdPtrsCount];
  151.     fIdPtrs[0] = 0;
  152. }
  153. template <class TVal>
  154. RefHash3KeysIdPool<TVal>::RefHash3KeysIdPool( const unsigned int modulus
  155.                                             , const unsigned int initSize
  156.                                             , MemoryManager* const manager) :
  157. fMemoryManager(manager)
  158.     , fAdoptedElems(true)
  159.     , fBucketList(0)
  160.     , fHashModulus(modulus)
  161.     , fHash(0)
  162.     , fIdPtrs(0)
  163.     , fIdPtrsCount(initSize)
  164.     , fIdCounter(0)
  165. {
  166.     initialize(modulus);
  167.     // create default hasher
  168.     fHash = new (fMemoryManager) HashXMLCh();
  169.     //
  170.     //  Allocate the initial id pointers array. We don't have to zero them
  171.     //  out since the fIdCounter value tells us which ones are valid. The
  172.     //  zeroth element is never used (and represents an invalid pool id.)
  173.     //
  174.     if (!fIdPtrsCount)
  175.         fIdPtrsCount = 256;
  176.     fIdPtrs = (TVal**) fMemoryManager->allocate(fIdPtrsCount * sizeof(TVal*)); //new TVal*[fIdPtrsCount];
  177.     fIdPtrs[0] = 0;
  178. }
  179. template <class TVal> void RefHash3KeysIdPool<TVal>::initialize(const unsigned int modulus)
  180. {
  181. if (modulus == 0)
  182.         ThrowXML(IllegalArgumentException, XMLExcepts::HshTbl_ZeroModulus);
  183.     // Allocate the bucket list and zero them
  184.     fBucketList = (RefHash3KeysTableBucketElem<TVal>**) fMemoryManager->allocate
  185.     (
  186.         fHashModulus * sizeof(RefHash3KeysTableBucketElem<TVal>*)
  187.     ); //new RefHash3KeysTableBucketElem<TVal>*[fHashModulus];
  188.     for (unsigned int index = 0; index < fHashModulus; index++)
  189.         fBucketList[index] = 0;
  190. }
  191. template <class TVal> RefHash3KeysIdPool<TVal>::~RefHash3KeysIdPool()
  192. {
  193.     removeAll();
  194.     // Then delete the bucket list & hasher & id pointers list
  195.     fMemoryManager->deallocate(fIdPtrs); //delete [] fIdPtrs;
  196.     fMemoryManager->deallocate(fBucketList); //delete [] fBucketList;
  197.     delete fHash;
  198. }
  199. // ---------------------------------------------------------------------------
  200. //  RefHash3KeysIdPool: Element management
  201. // ---------------------------------------------------------------------------
  202. template <class TVal> bool RefHash3KeysIdPool<TVal>::isEmpty() const
  203. {
  204.     // Just check the bucket list for non-empty elements
  205.     for (unsigned int buckInd = 0; buckInd < fHashModulus; buckInd++)
  206.     {
  207.         if (fBucketList[buckInd] != 0)
  208.             return false;
  209.     }
  210.     return true;
  211. }
  212. template <class TVal> bool RefHash3KeysIdPool<TVal>::
  213. containsKey(const void* const key1, const int key2, const int key3) const
  214. {
  215.     unsigned int hashVal;
  216.     const RefHash3KeysTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, key3, hashVal);
  217.     return (findIt != 0);
  218. }
  219. template <class TVal> void RefHash3KeysIdPool<TVal>::removeAll()
  220. {
  221.     // Clean up the buckets first
  222.     for (unsigned int buckInd = 0; buckInd < fHashModulus; buckInd++)
  223.     {
  224.         // Get the bucket list head for this entry
  225.         RefHash3KeysTableBucketElem<TVal>* curElem = fBucketList[buckInd];
  226.         RefHash3KeysTableBucketElem<TVal>* nextElem;
  227.         while (curElem)
  228.         {
  229.             // Save the next element before we hose this one
  230.             nextElem = curElem->fNext;
  231.             // If we adopted the data, then delete it too
  232.             //    (Note:  the userdata hash table instance has data type of void *.
  233.             //    This will generate compiler warnings here on some platforms, but they
  234.             //    can be ignored since fAdoptedElements is false.
  235.             if (fAdoptedElems)
  236.                 delete curElem->fData;
  237.             // Then delete the current element and move forward
  238.             delete curElem;
  239.             curElem = nextElem;
  240.         }
  241.         // Clean out this entry
  242.         fBucketList[buckInd] = 0;
  243.     }
  244.     // Reset the id counter
  245.     fIdCounter = 0;
  246. }
  247. // ---------------------------------------------------------------------------
  248. //  RefHash3KeysIdPool: Getters
  249. // ---------------------------------------------------------------------------
  250. template <class TVal> TVal*
  251. RefHash3KeysIdPool<TVal>::getByKey(const void* const key1, const int key2, const int key3)
  252. {
  253.     unsigned int hashVal;
  254.     RefHash3KeysTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, key3, hashVal);
  255.     if (!findIt)
  256.         return 0;
  257.     return findIt->fData;
  258. }
  259. template <class TVal> const TVal*
  260. RefHash3KeysIdPool<TVal>::getByKey(const void* const key1, const int key2, const int key3) const
  261. {
  262.     unsigned int hashVal;
  263.     const RefHash3KeysTableBucketElem<TVal>* findIt = findBucketElem(key1, key2, key3, hashVal);
  264.     if (!findIt)
  265.         return 0;
  266.     return findIt->fData;
  267. }
  268. template <class TVal> TVal*
  269. RefHash3KeysIdPool<TVal>::getById(const unsigned int elemId)
  270. {
  271.     // If its either zero or beyond our current id, its an error
  272.     if (!elemId || (elemId > fIdCounter))
  273.         ThrowXML(IllegalArgumentException, XMLExcepts::Pool_InvalidId);
  274.     return fIdPtrs[elemId];
  275. }
  276. template <class TVal> const TVal*
  277. RefHash3KeysIdPool<TVal>::getById(const unsigned int elemId) const
  278. {
  279.     // If its either zero or beyond our current id, its an error
  280.     if (!elemId || (elemId > fIdCounter))
  281.         ThrowXML(IllegalArgumentException, XMLExcepts::Pool_InvalidId);
  282.     return fIdPtrs[elemId];
  283. }
  284. // ---------------------------------------------------------------------------
  285. //  RefHash3KeysIdPool: Putters
  286. // ---------------------------------------------------------------------------
  287. template <class TVal> unsigned int
  288. RefHash3KeysIdPool<TVal>::put(void* key1, int key2, int key3, TVal* const valueToAdopt)
  289. {
  290.     // First see if the key exists already
  291.     unsigned int hashVal;
  292.     RefHash3KeysTableBucketElem<TVal>* newBucket = findBucketElem(key1, key2, key3, hashVal);
  293.     //
  294.     //  If so,then update its value. If not, then we need to add it to
  295.     //  the right bucket
  296.     //
  297.     if (newBucket)
  298.     {
  299.         if (fAdoptedElems)
  300.             delete newBucket->fData;
  301.         newBucket->fData = valueToAdopt;
  302.         newBucket->fKey1 = key1;
  303.         newBucket->fKey2 = key2;
  304.         newBucket->fKey3 = key3;
  305.     }
  306.      else
  307.     {
  308.     // Revisit: the gcc compiler 2.95.x is generating an
  309.     // internal compiler error message. So we use the default
  310.     // memory manager for now.
  311. #if defined (XML_GCC_VERSION) && (XML_GCC_VERSION < 29600)
  312.         newBucket = new RefHash3KeysTableBucketElem<TVal>(key1, key2, key3, valueToAdopt, fBucketList[hashVal]);
  313. #else
  314.         newBucket = new (fMemoryManager) RefHash3KeysTableBucketElem<TVal>(key1, key2, key3, valueToAdopt, fBucketList[hashVal]);
  315. #endif
  316.         fBucketList[hashVal] = newBucket;
  317.     }
  318.     //
  319.     //  Give this new one the next available id and add to the pointer list.
  320.     //  Expand the list if that is now required.
  321.     //
  322.     if (fIdCounter + 1 == fIdPtrsCount)
  323.     {
  324.         // Create a new count 1.5 times larger and allocate a new array
  325.         unsigned int newCount = (unsigned int)(fIdPtrsCount * 1.5);
  326.         TVal** newArray = (TVal**) fMemoryManager->allocate
  327.         (
  328.             newCount * sizeof(TVal*)
  329.         ); //new TVal*[newCount];
  330.         // Copy over the old contents to the new array
  331.         memcpy(newArray, fIdPtrs, fIdPtrsCount * sizeof(TVal*));
  332.         // Ok, toss the old array and store the new data
  333.         fMemoryManager->deallocate(fIdPtrs); //delete [] fIdPtrs;
  334.         fIdPtrs = newArray;
  335.         fIdPtrsCount = newCount;
  336.     }
  337.     const unsigned int retId = ++fIdCounter;
  338.     fIdPtrs[retId] = valueToAdopt;
  339.     // Set the id on the passed element
  340.     valueToAdopt->setId(retId);
  341.     // Return the id that we gave to this element
  342.     return retId;
  343. }
  344. // ---------------------------------------------------------------------------
  345. //  RefHash3KeysIdPool: Private methods
  346. // ---------------------------------------------------------------------------
  347. template <class TVal> RefHash3KeysTableBucketElem<TVal>* RefHash3KeysIdPool<TVal>::
  348. findBucketElem(const void* const key1, const int key2, const int key3, unsigned int& hashVal)
  349. {
  350.     // Hash the key
  351.     hashVal = fHash->getHashVal(key1, fHashModulus);
  352.     if (hashVal > fHashModulus)
  353.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  354.     // Search that bucket for the key
  355.     RefHash3KeysTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  356.     while (curElem)
  357.     {
  358. if (fHash->equals(key1, curElem->fKey1) && (key2==curElem->fKey2) && (key3==curElem->fKey3))
  359.             return curElem;
  360.         curElem = curElem->fNext;
  361.     }
  362.     return 0;
  363. }
  364. template <class TVal> const RefHash3KeysTableBucketElem<TVal>* RefHash3KeysIdPool<TVal>::
  365. findBucketElem(const void* const key1, const int key2, const int key3, unsigned int& hashVal) const
  366. {
  367.     // Hash the key
  368.     hashVal = fHash->getHashVal(key1, fHashModulus);
  369.     if (hashVal > fHashModulus)
  370.         ThrowXML(RuntimeException, XMLExcepts::HshTbl_BadHashFromKey);
  371.     // Search that bucket for the key
  372.     const RefHash3KeysTableBucketElem<TVal>* curElem = fBucketList[hashVal];
  373.     while (curElem)
  374.     {
  375.         if (fHash->equals(key1, curElem->fKey1) && (key2==curElem->fKey2) && (key3==curElem->fKey3))
  376.             return curElem;
  377.         curElem = curElem->fNext;
  378.     }
  379.     return 0;
  380. }
  381. // ---------------------------------------------------------------------------
  382. //  RefHash3KeysIdPoolEnumerator: Constructors and Destructor
  383. // ---------------------------------------------------------------------------
  384. template <class TVal> RefHash3KeysIdPoolEnumerator<TVal>::
  385. RefHash3KeysIdPoolEnumerator(RefHash3KeysIdPool<TVal>* const toEnum, const bool adopt)
  386. : fAdoptedElems(adopt), fCurIndex(0), fToEnum(toEnum)
  387. {
  388.     if (!toEnum)
  389.         ThrowXML(NullPointerException, XMLExcepts::CPtr_PointerIsZero);
  390.     //
  391.     //  Find the next available bucket element in the pool. We use the id
  392.     //  array since its very easy to enumerator through by just maintaining
  393.     //  an index. If the id counter is zero, then its empty and we leave the
  394.     //  current index to zero.
  395.     //
  396.     if (toEnum->fIdCounter)
  397.         fCurIndex = 1;
  398. }
  399. template <class TVal> RefHash3KeysIdPoolEnumerator<TVal>::~RefHash3KeysIdPoolEnumerator()
  400. {
  401.     if (fAdoptedElems)
  402.         delete fToEnum;
  403. }
  404. // ---------------------------------------------------------------------------
  405. //  RefHash3KeysIdPoolEnumerator: Enum interface
  406. // ---------------------------------------------------------------------------
  407. template <class TVal> bool RefHash3KeysIdPoolEnumerator<TVal>::hasMoreElements() const
  408. {
  409.     // If our index is zero or past the end, then we are done
  410.     if (!fCurIndex || (fCurIndex > fToEnum->fIdCounter))
  411.         return false;
  412.     return true;
  413. }
  414. template <class TVal> TVal& RefHash3KeysIdPoolEnumerator<TVal>::nextElement()
  415. {
  416.     // If our index is zero or past the end, then we are done
  417.     if (!fCurIndex || (fCurIndex > fToEnum->fIdCounter))
  418.         ThrowXML(NoSuchElementException, XMLExcepts::Enum_NoMoreElements);
  419.     // Return the current element and bump the index
  420.     return *fToEnum->fIdPtrs[fCurIndex++];
  421. }
  422. template <class TVal> void RefHash3KeysIdPoolEnumerator<TVal>::Reset()
  423. {
  424.     fCurIndex = 0;
  425. }
  426. XERCES_CPP_NAMESPACE_END